diff --git a/.gitignore b/.gitignore
index 7909d367..0b468357 100755
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,6 @@
+# SPISEA-generated isochrones from test functions
+spisea/tests/isochrones/
+
# Compiled files
*.py[co]
*.a
@@ -51,4 +54,7 @@ distribute-*.tar.gz
# OS Generated Files
.DS_Store
-._*
\ No newline at end of file
+._*
+
+# Test files generated
+spisea/tests/isochrones
diff --git a/.readthedocs.yml b/.readthedocs.yml
index 01ce5488..40ae08cb 100644
--- a/.readthedocs.yml
+++ b/.readthedocs.yml
@@ -9,6 +9,13 @@ version: 2
#conda:
# environment: .environment.yml
+# Set the version of Python and other tools you might need
+build:
+ os: ubuntu-22.04
+ tools:
+ python: "3.7"
+
+
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
@@ -16,9 +23,8 @@ sphinx:
# Optionally build your docs in additional formats such as PDF and ePub
formats: all
-# Optionally set the version of Python and requirements required to build your docs
+# Set the requirements required to build your docs
python:
- version: 3.7
install:
- - requirements: docs/requirements.txt
+ - requirements: docs/requirements.txt
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 00000000..8ef8b191
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,39 @@
+FROM ubuntu:20.04
+
+RUN apt-get update && apt-get upgrade -y && apt-get clean
+
+RUN apt-get install -y curl python3 python3-dev python3-distutils python3-pip git wget
+
+RUN pip3 install astropy pysynphot scipy numpy matplotlib
+
+RUN ln -s /usr/bin/python3 /usr/bin/python
+
+RUN export PYTHONPATH=$PYTHONPATH:/SPISEA
+
+RUN cd / && git clone https://github.com/astropy/SPISEA.git
+
+ENV PYTHONPATH "${PYTHONPATH}:/SPISEA/"
+
+# Add data to cdbs folder
+RUN mkdir /cdbs
+WORKDIR /cdbs
+RUN wget https://archive.stsci.edu/hlsps/reference-atlases/hlsp_reference-atlases_hst_multi_everything_multi_v10_sed.tar
+RUN wget https://archive.stsci.edu/hlsps/reference-atlases/hlsp_reference-atlases_hst_multi_star-galaxy-models_multi_v3_synphot2.tar
+RUN tar -xvf hlsp_reference-atlases_hst_multi_everything_multi_v10_sed.tar && rm hlsp_reference-atlases_hst_multi_everything_multi_v10_sed.tar
+RUN tar -xvf hlsp_reference-atlases_hst_multi_star-galaxy-models_multi_v3_synphot2.tar && rm hlsp_reference-atlases_hst_multi_star-galaxy-models_multi_v3_synphot2.tar
+
+# Move data folders to cdbs
+RUN mv /cdbs/grp/redcat/trds/comp /cdbs
+RUN mv /cdbs/grp/redcat/trds/mtab /cdbs
+RUN mv /cdbs/grp/redcat/trds/grid /cdbs
+
+RUN mkdir /cdbs/models
+WORKDIR /cdbs/models
+RUN wget http://astro.berkeley.edu/~jlu/spisea/spisea_models.tar.gz && wget http://astro.berkeley.edu/~jlu/spisea/spisea_cdbs.tar.gz
+RUN tar -xvf spisea_cdbs.tar.gz && tar -xvf spisea_models.tar.gz && rm spisea_cdbs.tar.gz && rm spisea_models.tar.gz
+
+ENV PYSYN_CDBS /cdbs/models/cdbs/
+ENV SPISEA_MODELS /cdbs/models
+
+
+
diff --git a/README.md b/README.md
index cbb42b51..0b8ef4ce 100755
--- a/README.md
+++ b/README.md
@@ -1,3 +1,7 @@
+
+
+
+
# SPISEA: Stellar Population Interface for Stellar Evolution and Atmospheres
SPISEA is an python package that generates single-age, single-metallicity
@@ -24,24 +28,22 @@ demonstrating how to use SPISEA.
If you use SPISEA in your research, please cite [Hosek et al. (2020)](https://ui.adsabs.harvard.edu/abs/2020arXiv200606691H/abstract).
-## Version Update
-Version 1 of this software package was called PyPopStar. Due to a naming conflict,
-we have renamed the package of SPISEA for version 2 and beyond.
-For reference, v2.0.0 has the same functionality as v1.0.1.
-
-Instructions for updating from version 1 to version 2 are provided in
-the documentation [here](https://spisea.readthedocs.io/en/latest/version_switch.html#version).
+## Change Log
+SPISEA is actively supported and is growing in functionality, and
+subsequently has had several updates since its
+initial release. See the
+[main documentation page](https://spisea.readthedocs.io/en/latest/)
+for the change log describing the updates in each release.
## Contributions
-We encourage contributions to SPISEA, particularly those that add
-support for star formation histories, new models, higher spectral
-resolution, etc. For feature additions, we ask that users make their
+We welcome and encourage contributions to SPISEA!
+ For feature additions, we ask that users make their
own fork of the repository, make their changes, and then submit a pull
request to the "dev" branch.
All contributions will be acknowledged on the
-[contributors page](https://spisea.readthedocs.io/en/dev/contributors.html#contributors). Contributors
-with features used in code releases will be co-authors in future SPISEA software papers.
+[contributors page](https://spisea.readthedocs.io/en/dev/contributors.html#contributors) (with permission).
+Contributors with features used in code releases will be co-authors in future SPISEA software papers.
## License
This project is Copyright (c) Matthew Hosek Jr., Jessica Lu, Casey
@@ -51,4 +53,8 @@ the [Astropy package template](https://github.com/astropy/package-template)
which is licensed under the BSD 3-clause license. See the licenses folder for
more information. This program is distributed in the hope that it will
be useful, but WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+PARTICULAR PURPOSE.
+
+
+Logo by Natasha Abrams
diff --git a/SPISEA_logo_final.png b/SPISEA_logo_final.png
new file mode 100644
index 00000000..94e53dd3
Binary files /dev/null and b/SPISEA_logo_final.png differ
diff --git a/docs/Quick_Start_Make_Cluster.ipynb b/docs/Quick_Start_Make_Cluster.ipynb
index c84a30ff..dd574b2e 100755
--- a/docs/Quick_Start_Make_Cluster.ipynb
+++ b/docs/Quick_Start_Make_Cluster.ipynb
@@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "This is a quick start guide to making a synthetic cluster using the SPISEA package. The cluster is constructed using a user-specified isochrone and initial mass function (IMF). Detailed documentation is provided in the ReadtheDocs page (https://pypopstar.readthedocs.io/en/latest/).\n",
+ "This is a quick start guide to making a synthetic cluster using the SPISEA package. The cluster is constructed using a user-specified isochrone and initial mass function (IMF). Detailed documentation is provided in the ReadtheDocs page (https://spisea.readthedocs.io/en/latest/index.html).\n",
"\n",
"Before starting this tutorial, it is assumed that SPISEA has been installed and the user's python path has been altered to include the SPISEA top-level directory"
]
@@ -80,20 +80,29 @@
"# the HST WFC3-IR F127M, F139M, and F153M filters\n",
"filt_list = ['wfc3,ir,f127m', 'wfc3,ir,f139m', 'wfc3,ir,f153m']\n",
"\n",
- "# Make Isochrone object. Note that is calculation will take a few minutes, unless the \n",
- "# isochrone has been generated previously.\n",
+ "# Specify the directory we want the output isochrone\n",
+ "# table saved in. If the directory does not already exist,\n",
+ "# SPISEA will create it.\n",
+ "iso_dir = 'isochrones/'\n",
+ "\n",
+ "# Make IsochronePhot object. Note that this will take a minute or two, \n",
+ "# unless the isochrone has been generated previously.\n",
+ "#\n",
+ "# Note that this is not show all of the user options \n",
+ "# for IsochronePhot. See docs for complete list of options.\n",
"my_iso = synthetic.IsochronePhot(logAge, AKs, dist, metallicity=0,\n",
" evo_model=evo_model, atm_func=atm_func,\n",
- " red_law=red_law, filters=filt_list)"
+ " red_law=red_law, filters=filt_list,\n",
+ " iso_dir=iso_dir)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
- "Once calculated, the isochrone will be written as a fits file to a location set by the \"iso_dir\" keyword (not shown here; default location is current working directory). In the future, the IsochronePhot function will read this file directly rather than recalculating the isochrone again. \n",
+ "Once calculated, the isochrone will be written as a fits file to a location set by the \"iso_dir\" keyword (note: if iso_dir is not defined, the isochrone is saved in the current working directory by default). In the future, the IsochronePhot function will read this file directly rather than recalculating the isochrone again. \n",
"\n",
- "The file name will be the following: \"iso_logAge_AKs_distance_metallicity.fits, using the specified values"
+ "The output file is named as: \"iso_logAge_AKs_distance_metallicity.fits, using the specified values"
]
},
{
@@ -108,35 +117,35 @@
" L Teff ... m_hst_f153m \n",
" W K ... \n",
"---------------------- ------------------ ... ------------------\n",
- " 8.660109049222469e+24 2997.482453641835 ... 21.152021446472187\n",
- " 9.046193280874383e+24 3008.7858260184175 ... 21.10504146351601\n",
- " 9.449142476745298e+24 3020.1687795233192 ... 21.058402938590124\n",
- " 9.869958611246552e+24 3031.631609685951 ... 21.011969614374383\n",
- " 1.076707529684324e+25 3054.6500837349886 ... 20.919821469802322\n",
- "1.0829426036763875e+25 3065.3879429582494 ... 20.915499755622307\n",
- "1.1480726894593663e+25 3078.908328291189 ... 20.85389598461618\n",
- " 1.221834686575575e+25 3093.002145149403 ... 20.788339065157267\n",
- "1.3043887291289771e+25 3107.5858797888227 ... 20.717377389444135\n",
- "1.3956010100862058e+25 3122.5861578385725 ... 20.64218049226777\n",
+ " 8.660109049222469e+24 2997.482453641835 ... 21.1520214464892\n",
+ " 9.046193280874383e+24 3008.7858260184175 ... 21.10504146353302\n",
+ " 9.449142476745298e+24 3020.1687795233192 ... 21.058402938607138\n",
+ " 9.869958611246552e+24 3031.631609685951 ... 21.011969614391397\n",
+ " 1.076707529684324e+25 3054.6500837349886 ... 20.919821469819336\n",
+ "1.0829426036763875e+25 3065.3879429582494 ... 20.91549975563932\n",
+ "1.1480726894593663e+25 3078.908328291189 ... 20.853895984633194\n",
+ " 1.221834686575575e+25 3093.002145149403 ... 20.78833906517428\n",
+ "1.3043887291289771e+25 3107.5858797888227 ... 20.71737738946115\n",
+ "1.3956010100862058e+25 3122.5861578385725 ... 20.64218049228478\n",
" ... ... ... ...\n",
- " 3.146902975957394e+32 13997.739388490047 ... 5.930259429665395\n",
- "3.1460717791216517e+32 13998.892300822487 ... 5.9308025346063955\n",
- "3.1452525359273068e+32 14000.139431008332 ... 5.93136239765411\n",
- " 3.144405489181849e+32 14001.378759406476 ... 5.931929284462485\n",
- "3.1435076384266162e+32 14002.5320654016 ... 5.9324947269685415\n",
- "3.1426231762052773e+32 14003.694937388533 ... 5.93305773061722\n",
- "3.1418572729129726e+32 14004.747427385868 ... 5.933555391417904\n",
- "3.1412514101696487e+32 14005.539485757616 ... 5.9339401294056975\n",
- " 3.14065875101774e+32 14006.427618268113 ... 5.934341601398296\n",
- " 3.140072730828415e+32 14007.35269293023 ... 5.934748981956298\n",
+ " 3.146902975957394e+32 13997.739388490047 ... 5.930259429682409\n",
+ "3.1460717791216517e+32 13998.892300822487 ... 5.930802534623409\n",
+ "3.1452525359273068e+32 14000.139431008332 ... 5.931362397671123\n",
+ " 3.144405489181849e+32 14001.378759406476 ... 5.931929284479498\n",
+ "3.1435076384266162e+32 14002.5320654016 ... 5.932494726985555\n",
+ "3.1426231762052773e+32 14003.694937388533 ... 5.933057730634233\n",
+ "3.1418572729129726e+32 14004.747427385868 ... 5.933555391434915\n",
+ "3.1412514101696487e+32 14005.539485757616 ... 5.9339401294227105\n",
+ " 3.14065875101774e+32 14006.427618268113 ... 5.934341601415309\n",
+ " 3.140072730828415e+32 14007.35269293023 ... 5.9347489819733115\n",
"Length = 694 rows\n"
]
}
],
"source": [
- "# The individual points in the isochrone can be accessed using the points subfunction \n",
- "# on the isochrone object. This produces an astropy table that contains the \n",
- "# list of stellar masses in the isochrone and their associated properties\n",
+ "# The stars in the isochrone and associated properties \n",
+ "# are stored in an astropy table called \"points\" \n",
+ "# within the IsochronePhot object. \n",
"print(my_iso.points)"
]
},
@@ -154,7 +163,17 @@
}
],
"source": [
- "# The isochrone table has meta keywords describing its properties\n",
+ "# The isochrone table has meta keywords describing its input properties:\n",
+ "# REDLAW: which redlaw object was used\n",
+ "# ATMFUNC: atmosphere grid was used\n",
+ "# EVOMODEL: evolution model grid used\n",
+ "# LOGAGE: log(Age) of isochrone\n",
+ "# AKS: total extinction used\n",
+ "# DISTANCE: distance used\n",
+ "# METAL_IN: metallicity requested by user, in [M/H]\n",
+ "# METAL_ACT: actual metallicity of model, in [M/H] \n",
+ "# (only relevant if user chooses metallicity other than defined grid-points)\n",
+ "# WAVEMIN, WAVEMAX: the minimum and maximum wavelengths of the stellar spectra (angstroms)\n",
"print(my_iso.points.meta)"
]
},
@@ -172,6 +191,7 @@
}
],
"source": [
+ "# See Isochrone Object documentation for column definitions\n",
"print('The columns in the isochrone table are: {0}'.format(my_iso.points.keys()))"
]
},
@@ -189,6 +209,7 @@
}
],
"source": [
+ "# Example case:\n",
"# Identify a 1 M_sun star, print F127M, F139M, and F153M mags\n",
"idx = np.where( abs(my_iso.points['mass'] - 1.0) == min(abs(my_iso.points['mass'] - 1.0)) )[0]\n",
"f127m = np.round(my_iso.points[idx[0]]['m_hst_f127m'], decimals=3)\n",
@@ -205,7 +226,7 @@
{
"data": {
"text/plain": [
- ""
+ ""
]
},
"execution_count": 7,
@@ -226,7 +247,7 @@
}
],
"source": [
- "# Make a color-magnitude diagram\n",
+ "# Make a color-magnitude diagram from the isochrone\n",
"py.figure(1, figsize=(10,10))\n",
"py.clf()\n",
"py.plot(my_iso.points['m_hst_f127m'] - my_iso.points['m_hst_f153m'], \n",
@@ -250,7 +271,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "PopStar offers a range of initial mass functions (IMFs) a user can use from to make the cluster. In addition to the parameters defining the IMF, the user can pass in a PopStar multiplicity object, which defines the multiplicity properties of the population. The default multiplicity is None (e.g. all stars are single).\n",
+ "SPISEA offers a range of initial mass functions (IMFs) a user can use from to make the cluster. In addition to the parameters defining the IMF, the user can input a SPISEA multiplicity object, which defines the multiplicity properties of the population. The default multiplicity is None (e.g. all stars are single).\n",
"\n",
"Here we define a Kroupa IMF using the Multiplicity properties defined in Lu+13. "
]
@@ -261,10 +282,12 @@
"metadata": {},
"outputs": [],
"source": [
- "# Make multiplicity object\n",
+ "# Make multiplicity object Here, we use the MultiplicityUnresolved object, \n",
+ "# based on Lu+13. This means that star systems will be unresolved, i.e., \n",
+ "# that all components of a star system are combined into a single \"star\" in the cluster\n",
"imf_multi = multiplicity.MultiplicityUnresolved()\n",
"\n",
- "# Make IMF object; we'll use a broken power law with the parameters from Kroupa+01.\n",
+ "# Make IMF object; we'll use a broken power law with the parameters from Kroupa+01\n",
"\n",
"# NOTE: when defining the power law slope for each segment of the IMF, we define\n",
"# the entire exponent, including the negative sign. For example, if dN/dm $\\propto$ m^-alpha,\n",
@@ -280,10 +303,16 @@
"metadata": {},
"source": [
"### Step 3: Make the Cluster \n",
- "#### Option 1: No compact objects\n",
- "To create the cluster, the user passes in an isochrone object, and imf object, and specifies the total cluster mass. Here we will make a 10^5 M_sun cluster using the isochrone and imf we have defined.\n",
+ "#### Option 1: Resolved Cluster without compact objects\n",
+ "\n",
+ "Here we make a resolved cluster using the ResolvedCluster object. \n",
+ "\n",
+ "To create the cluster, the user passes in an isochrone object, and imf object, and specifies the total cluster mass. Here we will make a 10^5 M_sun cluster using the isochrone and imf we have defined. \n",
"\n",
- "The individual star systems in the cluster and their properties are stored in an astropy table accessed by the star_systems subfunction on the cluster object. Note that the photometry of these star systems includes the contributions from all companions, which are generated probabilistically using the multiplicity defined in the IMF object."
+ "###### Some Notes\n",
+ "1. Unless an IFMR object is defined, no compact objects are included. Stars that have evolved into compact objects will be dropped from the cluster. \n",
+ "2. Stars generated by the IMF object that have masses below the lowest mass in the evolution model are dropped from the cluster.\n",
+ "2. If you wish to create a cluster with differential extinction included in the output photometry, then you can use the ResolvedClusterDiffRedden object. It is the same as ResolvedCluster, but with an additional parameter to define dAKs, which characterizes the spread of extinction within the cluster"
]
},
{
@@ -297,32 +326,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "Found 69 stars out of mass range\n",
- " mass isMultiple ... m_hst_f153m N_companions\n",
- "------------------- ---------- ... ------------------ ------------\n",
- " 0.3902825393188909 False ... 19.198675247781733 0\n",
- "0.36442534730486614 False ... 19.299625963230316 0\n",
- " 0.2960597619579401 False ... 19.622871173104592 0\n",
- " 4.020275631753382 True ... 14.942859924256084 1\n",
- "0.22535244432792711 False ... 20.04719216513875 0\n",
- " 0.4337891871272154 False ... 19.043037175056032 0\n",
- " 0.2550352762897599 False ... 19.84725853661653 0\n",
- " 0.3886897076801539 False ... 19.204793244269553 0\n",
- " 0.2207786288985551 False ... 20.07793050759004 0\n",
- " 3.1627242881250925 True ... 15.435498104534354 1\n",
- " ... ... ... ... ...\n",
- " 2.0209398200626008 False ... 15.286966341315408 0\n",
- " 0.5562568588776408 False ... 18.69391283084209 0\n",
- "0.29658992418674723 True ... 18.867557762455142 1\n",
- " 1.8149463760632611 False ... 16.059048383668213 0\n",
- " 0.9636380994477444 False ... 17.85758316236885 0\n",
- " 0.5042624118055835 False ... 18.83026179414743 0\n",
- "0.29801917051230525 False ... 19.612203004764787 0\n",
- " 0.2934590032614954 False ... 19.6370312274348 0\n",
- "0.23754184269272524 False ... 19.967395454198524 0\n",
- " 0.4400444501504912 False ... 19.022931594125073 0\n",
- " 3.3262445603993838 False ... 15.366054043628987 0\n",
- "Length = 79950 rows\n"
+ "Found 74 stars out of mass range\n"
]
}
],
@@ -331,22 +335,70 @@
"mass = 10**5.\n",
"\n",
"# Make cluster object\n",
- "cluster = synthetic.ResolvedCluster(my_iso, my_imf, mass)\n",
+ "cluster = synthetic.ResolvedCluster(my_iso, my_imf, mass)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "The individual stars (or star systems) in the cluster are stored in an astropy table called \"star_systems\" within the cluster object. If a multiplicity object is used, then an additional \"companions\" table is created that contains the properties of the companions to the primary star within each star system. See cluster object documentation for a description of the columns in these tables. \n",
"\n",
+ "If a multiplicity object is used, then the photometry in the star_systems table is the COMBINED photometry of the system; it includes the contributions from all companions."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " mass isMultiple ... m_hst_f153m N_companions\n",
+ "------------------- ---------- ... ------------------ ------------\n",
+ " 0.6876030977679913 False ... 18.389044207067464 0\n",
+ " 0.5955047093772027 False ... 18.59784842254386 0\n",
+ "0.22888954345052595 False ... 20.023421078238613 0\n",
+ " 0.7674862431783736 True ... 18.0051258246746 1\n",
+ " 0.5642222892161842 False ... 18.674063270037458 0\n",
+ " 1.089763617194751 False ... 17.646195710306777 0\n",
+ " 0.5764417363236184 False ... 18.644066247034154 0\n",
+ " 0.6945802953923282 False ... 18.373593985664552 0\n",
+ " 0.2918079653214152 False ... 19.646020445469127 0\n",
+ " 0.2654043135986742 False ... 19.784918937378045 0\n",
+ " ... ... ... ... ...\n",
+ "0.21788083183588838 False ... 20.09740516281386 0\n",
+ " 0.2084958320428418 False ... 20.160477086462425 0\n",
+ " 7.177783813711204 True ... 13.76389690674836 1\n",
+ " 0.6970980816560024 True ... 18.15184809900597 1\n",
+ " 0.6631502158305624 False ... 18.441648615714623 0\n",
+ " 1.2947809690914678 False ... 17.3222437955907 0\n",
+ "0.25029053901467957 False ... 19.87836996594056 0\n",
+ " 0.9500007704623843 False ... 17.88252985999676 0\n",
+ " 0.4392328921597474 False ... 19.02554009274596 0\n",
+ " 0.2605330473087063 False ... 19.813906355345033 0\n",
+ " 0.2341168935953943 False ... 19.990680958036442 0\n",
+ "Length = 78379 rows\n"
+ ]
+ }
+ ],
+ "source": [
"# Look at star systems table\n",
"print(cluster.star_systems)"
]
},
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": 11,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- "The cluster table contains these columns: ['mass', 'isMultiple', 'systemMass', 'Teff', 'L', 'logg', 'isWR', 'mass_current', 'phase', 'm_hst_f127m', 'm_hst_f139m', 'm_hst_f153m', 'N_companions']\n"
+ "The cluster table contains these columns: ['mass', 'isMultiple', 'systemMass', 'Teff', 'L', 'logg', 'isWR', 'mass_current', 'phase', 'metallicity', 'm_hst_f127m', 'm_hst_f139m', 'm_hst_f153m', 'N_companions']\n"
]
}
],
@@ -356,7 +408,49 @@
},
{
"cell_type": "code",
- "execution_count": 11,
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "system_idx mass ... m_hst_f139m m_hst_f153m \n",
+ "---------- ------------------- ... ------------------ ------------------\n",
+ " 3 0.24675997749084191 ... 20.563701959287826 19.90251395648469\n",
+ " 13 0.37427415165641575 ... 19.935549695054327 19.26089149163212\n",
+ " 21 1.1031866473217342 ... 18.27788436660256 17.62478259245194\n",
+ " 27 0.2261763927189317 ... 20.700050305132947 20.041654817137246\n",
+ " 30 0.24351327466283715 ... 20.585549714235427 19.924810664357523\n",
+ " 33 1.3739797199235617 ... 17.787945415289006 17.192454221341634\n",
+ " 36 0.8853706000102676 ... 18.68802065076431 17.993905280315655\n",
+ " 36 0.5642335448205728 ... 19.37010845835326 18.674035221483344\n",
+ " 47 0.2966822705750629 ... 20.28632611434612 19.61948187143378\n",
+ " 54 0.24975150440679514 ... 20.543655971454946 19.88205619159839\n",
+ " ... ... ... ... ...\n",
+ " 78351 1.2376751887661364 ... 18.035126418759774 17.412404186653344\n",
+ " 78354 0.31213069455188613 ... 20.204014011448535 19.535371598871034\n",
+ " 78357 0.27679441089161594 ... 20.38923702443474 19.72453916098156\n",
+ " 78360 0.9014988021676168 ... 18.657742310702165 17.965414404445802\n",
+ " 78364 0.6888881335136626 ... 19.08900955643712 18.386198639570274\n",
+ " 78366 0.6980230969223282 ... 19.068990255125353 18.365970287906695\n",
+ " 78366 4.727838039253875 ... 15.020104863055376 14.6509524800243\n",
+ " 78367 1.653298517897867 ... 17.061733897360025 16.51120386646886\n",
+ " 78367 3.3438186255283364 ... 15.73063278758436 15.355422018083411\n",
+ " 78370 0.9370632968186573 ... 18.59248602156636 17.905121399833412\n",
+ " 78371 0.230895129296845 ... 20.66949566003222 20.010460212653776\n",
+ "Length = 16156 rows\n"
+ ]
+ }
+ ],
+ "source": [
+ "# The companions table is accessed in a similar way\n",
+ "print(cluster.companions)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
"metadata": {
"scrolled": true
},
@@ -364,16 +458,16 @@
{
"data": {
"text/plain": [
- ""
+ ""
]
},
- "execution_count": 11,
+ "execution_count": 13,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
- "image/png": "iVBORw0KGgoAAAANSUhEUgAAAlUAAAJbCAYAAADNDGHCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdeXjdZZ3//+d9Ts45SU72pWn2Ji1d6L5BoVBoWZRFQZQZFBlFB0ZFR5lxm6/OiOL2Vb+I/EZUVFRGRR1H3BiQnYKUpS3d6EKXpG2WZk9OcpKc8zk59++PT5IW7JK0SU6W1+O6eiX5nCXv04uLvq77fn/et7HWIiIiIiJnxpPoAkREREQmA4UqERERkRGgUCUiIiIyAhSqREREREaAQpWIiIjICFCoEhERERkBSYkuYCTl5eXZGTNmJLoMERERmcQ2bdrUbK3Nf/P1SRWqZsyYwcaNGxNdhoiIiExixpiDx7uu7T8RERGREaBQJSIiIjICFKpERERERsCk6qkSERGZyhzHoaamht7e3kSXMikkJydTUlKCz+cb0vMVqkRERCaJmpoa0tPTmTFjBsaYRJczoVlraWlpoaamhoqKiiG9Rtt/IiIik0Rvby+5ubkKVCPAGENubu6wVv0UqkRERCYRBaqRM9y/S4UqERERGTFpaWkj9l533HEH3/rWt0bs/UabQpWIiIhMWNZa4vF4ossAFKpERERkFNTX17NmzRqWLFnCggULeO655wB48MEHWbhwIQsWLOAzn/nM4PMfffRRli1bxuLFi7nkkksGr+/cuZOLL76YyspK7rnnHgCqq6uZN28eH/nIR1i2bBmHDx8+4fumpaXxuc99jsWLF7Nq1SoaGhoAaGpq4p3vfCcrV65k5cqV/PWvfz3jz6y7/0RERCajT3wCtmwZ2fdcsgTuvntIT/3lL3/JW97yFj73uc/R19dHd3c3dXV1fOYzn2HTpk1kZ2dz+eWX8/vf/57Vq1dzyy23sH79eioqKmhtbR18n927d/P000/T2dnJnDlz+PCHPwzAnj17+MlPfsK99957wve99tprCYfDrFq1iq985St8+tOf5oc//CGf//zn+fjHP87tt9/OBRdcwKFDh3jLW97Crl27zuivR6FKRERERtzKlSv5wAc+gOM4XHvttSxZsoSnnnqKiy++mPx89yziG2+8kfXr1+P1elmzZs3g6IKcnJzB97nqqqsIBAIEAgGmTZs2uNJUXl7OqlWrAHjllVeO+77XXnstfr+fq6++GoDly5fz+OOPA/DEE0+wc+fOwd8TCoXo7OwkPT39tD+zQpWIiMhkNMQVpdGyZs0a1q9fz8MPP8xNN93Epz71KTIyMo77XGvtCe+0CwQCg997vV5isRgAwWDwDa8/EZ/PN/jex74+Ho+zYcMGUlJShvfBTkI9VSIiIjLiDh48yLRp07jlllv44Ac/yObNmzn33HN59tlnaW5upq+vjwcffJCLLrqI8847j2effZaqqiqAN2z/DcWJ3vdkLr/8cv7zP/9z8OctI7BVqpUqERERGXHPPPMM3/zmN/H5fKSlpfHAAw9QWFjI1772NdauXYu1liuvvJJrrrkGgPvuu4/rrruOeDzOtGnTBrfphuJk73si99xzD7fddhuLFi0iFouxZs0avv/975/RZzYnWzKbaFasWGE3btyY6DJEREQSYteuXcybNy/RZUwqx/s7NcZsstauePNztf0nIiIiMgIUqkRERERGgEKViIiIyAhQqBIREZlEJlOvdKIN9+9SoUpERGSSSE5OpqWlRcFqBFhraWlpITk5eciv0UgFERGRSaKkpISamhqampoSXcqkkJycTElJyZCfr1AlIuNHby+8/jrs3g27dsHs2fDudye6KpEJw+fzDR71ImNPoUpExl5bmxuadu06GqB274aqKojHjz7v3e9WqBKRCUOhSkRGh7Vw+PDR0HRsgGpsPP5rSkrgkktg3TpYuxZKS8e2ZhGRM6BQJSJnJhqFffveGJp27YI9eyAcPvlr8/Lc8DQQpGbNghMcqioiMt4pVInI0IRCx1912r8f+vqOPq+0FIqLoaAA6urcPqkB6elw0UVHQ9SCBeDRTcgiMjkoVInIUdZCff3frjrt3u0GpAFJSXDWWW4ouv56KC93+6RqauDll+GVV9yglZx8NEBdcgksX+6+VkRkEtL/3USmoljMvcvu1VfhpZfcQDRw110odPR56ekwbx5ceqn7dd48mDsXysrc1z75JDz1FHzzm+42oNcL554L//ZvbpA67zw3WImITAEKVSJTSXMzPPwwvP/9f/vYunXw3ve+MTwVFbk9TvE4bN3qBqgf/ADWr3f7pYyBJUvgYx9zX3/hhW4QExGZghSqRCaj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\n",
+ "image/png": "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93PGmWfi//jHnSGg116b5ApFREQmLoWqMcTlclZrbVYW8595hrnxOIFHH8Xs2AF/+AO43UmuUEREZOJSqBprgkFMejppxkA8Dt/4hjMA9AMfSHZlIiIiE5pC1ViTkXHk5z/8AXbuhP/5H3DpngMREZFk0r/EY1UsBrfdBgsWwHvfm+xqREREJjx1qsaq3/8e9uyBhx5Sl0pERGQU0L/GY1E0CrffDmedBVdfnexqREREBHWqxqbf/haqquCRR8CYZFcjIiIiqFM19kQizh1/S5fCFVckuxoRERE5TJ2qsebXv4b9++Huu9WlEhERGUXUqRpL+vrgW9+Cc86Byy9PdjUiIiLyFupUjSX33gsHD8IvfqEulYiIyCijTtVY0dsL3/42vOtdsHp1sqsRERGRd1Cnaqz45S+httbZU6UulYiIyKijTtVY0NPjdKkuuABWrUp2NSIiInIU6lSNBffcA/X18MAD6lKJiIiMUupUjXZdXXDHHbByJVx0UbKrERERkWNQp2q0u+02aGyEhx9OdiUiIiJyHOpUjWZvvgl33gkf+5gzm0pERERGLYWq0cpa+PSnISvLWf4TERGRUU3Lf6PV734H69c7m9Tz85NdjYiIiJyAOlWjUUcHfOELzpLfRz+a7GpERERkENSpGo3+4z+gpQUefxxcyr0iIiJjgf7FHm22boWf/AQ++UlYvDjZ1YiIiMggKVSNJokEfOpTzh6qb34z2dWIiIjISdDy32hy773wyitw//2QnZ3sakREROQkqFM1WrS2wpe/DCtWwPXXJ7saEREROUkKVaPF177m3PV39906309ERGQMUqgaDbZvh5/9DD7xCZg/P9nViIiIyClQqEo2a+Ff/gUyMuDrX092NSIiInKKtFE92R5/HJ58En74Q01OFxERGcPUqUq2e++FKVOcUQoiIiIyZilUJVsiAbm54PMluxIRERE5DSMeqowxs40xr73lK2iM+fw7nnORMabzLc/5z5Guc0QcOABPPw0VFcmuRERERE7TiO+pstbuAhYBGGPcQB3w56M89Xlr7RUjWduIshZuvtn5/qMfJbsaEREROU3J3qh+MbDPWnsgyXWMvF//Gp56yjnnT50qERGRMS/Ze6quBR48xmPnGmO2GWMeN8bMO9YbGGNuMcZsNsZsbm5uHp4qh1p9vTNGYcUK+PjHk12NiIiIDIGk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\n",
"text/plain": [
""
]
@@ -406,30 +500,19 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "#### Option 2: Compact objects (white dwarfs, neutron stars, and black holes)\n",
- "This is quite similar to the above, but includes compact objects. The additional piece of information required is to choose an initial-final mass relation (IFMR.) Currently there's only one choice in PopStar, so that makes your decision easy...\n",
+ "#### Option 2: Resolved cluster with compact objects (white dwarfs, neutron stars, and black holes)\n",
+ "This is quite similar to the above, but includes compact objects. The additional piece of information required is to choose an initial-final mass relation (IFMR.)\n",
"\n",
"The output is the same as if we were making a cluster without using an IFMR. However, you can tell that compact objects are made by looking at the 'phase' keyword. Black holes have 'phase' = 103, neutron stars have 'phase' = 102, and white dwarfs have 'phase' = 101. For these compact objects, the luminosity and temperature will return values of zero, and photometry will return nan, since we are assuming they are totally dark.\n",
"\n",
- "Here, we make 4 different clusters, each of mass $10^6 M_\\odot$, by taking different combinations of age (either 100 Myr or 10 Gyr) and IMF (top-heavy or Kroupa). We then look at the different distributions of BH and WD masses. (Since NSs are all assigned a single mass in the IFMR, the mass distribution there is not very interesting. However, the relative number of NSs for each cluster will be different.)"
+ "Here, we make 4 different clusters, each of mass $10^6 M_\\odot$, by taking different combinations of age (either 100 Myr or 10 Gyr) and IMF (top-heavy or Kroupa). We then look at the different distributions of BH and WD masses. "
]
},
{
"cell_type": "code",
- "execution_count": 12,
+ "execution_count": 14,
"metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Found 5564 stars out of mass range\n",
- "Found 4249 stars out of mass range\n",
- "Found 100598 stars out of mass range\n",
- "Found 74050 stars out of mass range\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"# Create isochrone object \n",
"filt_list = ['wfc3,ir,f153m'] # We won't be doing much with synthetic photometry here, so only 1 filter\n",
@@ -440,15 +523,41 @@
"\n",
"my_iso_old = synthetic.IsochronePhot(10, 0, 10,\n",
" evo_model = evolution.MISTv1(),\n",
- " filters=filt_list)\n",
- "# Create IMF object \n",
+ " filters=filt_list)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Create IMF objects \n",
"massLimits = np.array([0.1, 0.5, 120])\n",
"powers_kroupa = np.array([-1.3, -2.3])\n",
"powers_theavy = np.array([-1.3, -1.3]) # top heavy\n",
"trunc_kroupa = imf.IMF_broken_powerlaw(massLimits, powers_kroupa)\n",
- "trunc_theavy = imf.IMF_broken_powerlaw(massLimits, powers_theavy)\n",
- "\n",
- "# Make cluster \n",
+ "trunc_theavy = imf.IMF_broken_powerlaw(massLimits, powers_theavy)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Found 5586 stars out of mass range\n",
+ "Found 4106 stars out of mass range\n",
+ "Found 99584 stars out of mass range\n",
+ "Found 73734 stars out of mass range\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Make clusters \n",
"cluster_mass = 10**6\n",
"cluster_young_theavy = synthetic.ResolvedCluster(my_iso_young, trunc_theavy, cluster_mass, ifmr=my_ifmr)\n",
"cluster_old_theavy = synthetic.ResolvedCluster(my_iso_old, trunc_theavy, cluster_mass, ifmr=my_ifmr)\n",
@@ -464,22 +573,22 @@
},
{
"cell_type": "code",
- "execution_count": 13,
+ "execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
- ""
+ ""
]
},
- "execution_count": 13,
+ "execution_count": 17,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
- "image/png": "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\n",
+ "image/png": "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\n",
"text/plain": [
""
]
diff --git a/docs/add_atmo_models.rst b/docs/add_atmo_models.rst
index e625b718..3fbe6e54 100644
--- a/docs/add_atmo_models.rst
+++ b/docs/add_atmo_models.rst
@@ -4,8 +4,38 @@
Adding Atmosphere Models
========================================
Stellar atmosphere grids are implemented in SPISEA using STSci's `pysynphot `_ and CDBS infrastructure.
-Adding a new atmosphere grid involves saving the models in a new sub-directory under your ``PYSYN_CDBS`` directory and creating a new function in ``atmospheres.py`` to access those files.
+Adding a new atmosphere grid involves saving the models in a new
+sub-directory under your ``PYSYN_CDBS`` directory and creating a new
+function in ``atmospheres.py`` to access those files.
-Detailed documentation on this is coming soon. In the meantime, let us know on the Github `issue tracker
+We'd recommend looking at the existing atmosphere model directories as
+a template for how to make a new one. Some general notes:
+
+* The new atmosphere grid you implement should be placed in the
+ ``/cdbs/grid/`` directory
+
+* Inside the new directory you need two things: a ``catalog.fits``
+ file (which tells SPISEA the Teff, logg, and metallicity of the
+ atmospheres in your grid) and then the atmosphere model files
+ themselves.
+
+* The ``catalog.fits`` file MUST follow the format where one column
+ labeled 'INDEX', which gives the ',,' for
+ each atmosphere, and then one column labeled 'FILENAME', which gives the path to the file containing that atmosphere.
+
+* There is some flexibility as to how the atmosphere model
+ files are organized. In ``BTSettle_2015_rebin``, you'll see that each
+ file is simply stored in the same directory as the ``catalog.fits``
+ file, with one model per file. In ``phoenix_v16_rebin``, the files are
+ separated into sub-directory by metallicity, and then there is one
+ file for each teff and then multiple columns within that file for
+ different logg. It doesn't matter what you choose, as long as it is
+ reflected in the 'INDEX' column of catalog.fits.
+
+* For the atmospheres, use units of angstroms for the wavelength and
+ "FLAM" for flux ([erg/s/cm^2/A]; see `pysynphot docs
+ `_)
+
+More detailed documentation on this is coming soon. In the meantime, let us know on the Github `issue tracker
`_ if you'd like to
implement a new atmospheric model grid.
diff --git a/docs/add_evo_models.rst b/docs/add_evo_models.rst
index c1f4a30f..49655466 100644
--- a/docs/add_evo_models.rst
+++ b/docs/add_evo_models.rst
@@ -14,7 +14,7 @@ have the new models you add be added to the SPISEA package and made
available to the community, please fork or branch off of the
development repository and then submit merge requests to add your
changes to the package. These contributions will be added to the
-master branch (with attributes given!) in the next code update.
+main branch (with attributes given!) in the next code update.
.. _setup:
diff --git a/docs/add_filters.rst b/docs/add_filters.rst
index 1bbfef12..4fe10c88 100644
--- a/docs/add_filters.rst
+++ b/docs/add_filters.rst
@@ -12,8 +12,10 @@ If the user wants to add new photometric filters to SPISEA, there are 4 main ste
call the new function in ``filters.py`` when the new filter
string is called.
4) Edit the ``get_obs_str()`` function in ``synthetic.py`` to
- convert between column name and filter string (e.g input string
- for get_filter_info) for the new filters.
+ convert between column name and filter string (e.g input string
+ for get_filter_info) for the new filters.
+ 5) Add the filter to the ``filt_list`` in the ``test_filters()`` function in ``tests/test_models.py`` to
+ ensure the filter can be loaded properly.
Additional documentation on this is coming soon. In the meantime, let us know on the Github `issue tracker
`_ if you'd like to
diff --git a/docs/atmo_models.rst b/docs/atmo_models.rst
index 12a1b155..4fc8cb2d 100644
--- a/docs/atmo_models.rst
+++ b/docs/atmo_models.rst
@@ -24,20 +24,17 @@ spectrum of each star in the isochrone model.
PopStar uses the pysynphot framework to extract the model atmosphere,
and the the output spectrum is a `pysynphot.Icat object `_.
-The atmosphere model grids currently supported are:
-
-* get_merged_atmosphere (default for stars)
-* get_wd_atmospheres (default for white dwarfs)
-* get_castelli_atmosphere
-* get_phoenixv16_atmosphere
-* get_BTSettl_2015_atmosphere
-* get_BTSettl_atmosphere
-* get_wdKoester_atmosphere
-* get_kurucz_atmosphere
-* get_phoenix_atmosphere
-* get_nextgen_atmosphere
-* get_amesdusty_atmosphere
-
+Below is a table of atmosphere model grids currently supported by
+SPISEA. Note that the resolution column reports the original
+resolution of the atmosphere model grid. These are available in the
+`spisea_cdbs_highres.tar.gz` file on the installation page. However, the default grid SPISEA
+uses has degraded the resolution of all atmosphere grids to R = 250
+(the `spisea_cdbs.tar.gz` file).
+
+.. figure:: images/atm_models.png
+ :width: 900
+ :height: 196
+ :align: center
Model Atmosphere Classes
-------------------------
@@ -45,6 +42,8 @@ Model Atmosphere Classes
.. autofunction:: atmospheres.get_wd_atmosphere
+.. autofunction:: atmospheres.get_bb_atmosphere
+
.. autofunction:: atmospheres.get_castelli_atmosphere
.. autofunction:: atmospheres.get_phoenixv16_atmosphere
diff --git a/docs/conf.py b/docs/conf.py
index 4dd45e9d..f10e26c1 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -14,7 +14,7 @@
#
import os
import sys
-import pdb
+
sys.path.insert(0, os.path.abspath('../spisea/'))
sys.path.insert(0, os.path.abspath('../'))
@@ -25,9 +25,10 @@
author = 'Matthew Hosek Jr, Jessica R. Lu, Casey Y. Lam'
# The short X.Y version
-version = '2.0'
+version = '2.4'
# The full version, including alpha/beta/rc tags
-release = '2.0.0'
+release = '2.4'
+
# -- General configuration ---------------------------------------------------
diff --git a/docs/contributors.rst b/docs/contributors.rst
index e84ecef8..1944147e 100644
--- a/docs/contributors.rst
+++ b/docs/contributors.rst
@@ -9,7 +9,8 @@ Matthew Hosek Jr -- Lead Developer; collaboratively developed all aspects of cod
Casey Lam -- implemented first IFMR module (IFMR_Raithel18)
-Abhimat Gautam -- implemented non-solar metallicity evolution model support for MIST models
+Abhimat Gautam -- implemented non-solar metallicity evolution model
+support for MIST models as well as blackbody atmosphere function
Kelly Lockhart -- helped develop UnresolvedCluster class
@@ -17,13 +18,33 @@ Dongwon Kim -- code testing/debugging
Siyao Jia -- helped with early code and documentation development
-Natasha Adams -- developed resolved multiplicity capabilities
+Natasha Abrams -- developed resolved multiplicity capabilities
(ResolvedMultiplicityDK class)
Michael Medford -- developed resolved multiplicity capabilities
(ResolvedMultiplicityDK class)
-Sam Rose -- developed metallicity-dependent IFMR (IFMR_Spera15)
+Sam Rose -- developed metallicity-dependent IFMRs (IFMR_Spera15 and IFMR_N20_Sukhbold)
Rebecca Lewis -- added HAWK-I filter support, code testing/debugging
+Manuel Parra-Royón -- installation using Docker containers and Singularity
+
+Javier Moldón -- installation using Docker containers and Singularity
+
+Winston Zhang -- bugfix to make redlaw paths correct regardless of
+what operating system is used
+
+Sage Hironaka Remulla -- added Rubin Observatory filters
+
+Lingfeng Wei -- bugfix to improve creation of iso_dir in
+IsochronePhot, implemented faster cluster generation and test
+functions for primary and companion star mass generation (v2.3),
+updated random state generators (v2.4)
+
+Macy Huston -- New metallicity bound + isochrone filter checks,
+imf_mass_lim bugfix, roman filter bugfix, added Euclid filters, Synthpop compatibility
+updates (v2.2), improvements for reading in/updated existing isochrone
+files, Vega mag to ST mag conversion function (v2.4)
+
+Anna Pusack -- Added IRTF L-band filter support
diff --git a/docs/evo_models.rst b/docs/evo_models.rst
index b064f3f0..98d3541c 100644
--- a/docs/evo_models.rst
+++ b/docs/evo_models.rst
@@ -12,23 +12,47 @@ Stellar evolution models are defined as classes in
The evolution object is an input for the :ref:`isochrone_objects`.
-The stellar evolution model classes currently supported by SPISEA
-are:
-
-* MISTv1 (default)
-* MergedBaraffePisaEkstromParsec
-* MergedPisaEkstromParsec
-* Baraffe15
-* Ekstrom12
-* Parsec
-* Pisa
-
-Currently, only the MISTv1 grid offers non-solar metallicity models
-(-4 < [Fe/H] <0.5). All other grids have solar metallicity only.
+Below is a table of the evolution model grids currently supported by SPISEA.
+
+.. figure:: images/evo_models_f2.png
+ :width: 900
+ :height: 210
+ :align: center
+
+Please note the stellar mass range, age range, and metallicity values of the evolution
+model grid you choose:
+
+* Stars generated from the :ref:`imf_objects` (controlled by the
+ `massLimits` variable) that fall outside of the mass range of the
+ evolution model will be dropped from the final cluster table, unless
+ the IFMR is defined (which will catch all the high mass stars and
+ get their compact object values)
+
+* SPISEA will throw an error if you request an age outside of the
+ evolution model age range
+
+* SPISEA will use the evolution model with the closest available
+ metallicity to the requested value
+
If you require other evolution models or need to
expand the existing grids, please see
:ref:`add_evo_models`.
+ModelMismatch Error
+-----------------------------------------
+Since SPISEA v2.1.4, we began tracking the version of the evolution
+model grid (e.g., the evolution models stored in
+``/evolution``).
+Each evolution model class has a required model grid
+version assigned to it. If your evolution model grid
+does not match or exceed the minimum version required by
+your desired evolution model, a ``ModelMismatch``
+exception will be raised.
+
+To resolve the ``ModelMismatch`` error, please
+re-download the latest version of the evolution
+model grid in the installation instructions (:ref:`models`).
+
Base Evolution Model Class
------------------------------------
@@ -39,14 +63,10 @@ Specific Evolution Model Classes
--------------------------------------
.. autoclass:: evolution.MISTv1
:show-inheritance:
-
-
+
.. autoclass:: evolution.MergedBaraffePisaEkstromParsec
:show-inheritance:
-
-.. autoclass:: evolution.MergedPisaEkstromParsec
- :show-inheritance:
-
+
.. autoclass:: evolution.Baraffe15
:show-inheritance:
diff --git a/docs/extinction.rst b/docs/extinction.rst
old mode 100644
new mode 100755
index c8c84039..6b93be6b
--- a/docs/extinction.rst
+++ b/docs/extinction.rst
@@ -15,28 +15,29 @@ oject.
The reddening law is reported in terms of A_lambda / A_Ks, and thus is normalized to A_Ks = 1.
The red_law object is passed into the :ref:`isochrone_objects` in order to
-define the extinction for the stars. See the `Quick Start `_
+define the extinction for the stars. See the `Quick Start `_
for an example.
Available extinction laws:
* RedLawPowerLaw
* RedLawBrokenPowerLaw
+* RedLawRiekeLebofsky
* RedLawCardelli
-* RedLawDamineli16
-* RedLawDeMarchi16
+* RedLawIndebetouw05
+* RedLawRomanZuniga07
* RedLawFitzpatrick09
+* RedLawNishiyama09 (default)
+* RedLawSchoedel10
* RedLawFritz11
-* RedLawHosek18 (deprecated)
+* RedLawDamineli16
+* RedLawDeMarchi16
+* RedLawSchlafly16
* RedLawHosek18b
-* RedLawNishiyama09 (default)
* RedLawNoguerasLara18
-* RedLawRomanZuniga07
-* RedLawRiekeLebofsky
-* RedLawSchlafly16
+* RedLawNoguerasLara20
-
Extinction Law Classes
--------------------------
@@ -45,41 +46,48 @@ Extinction Law Classes
.. autoclass:: reddening.RedLawBrokenPowerLaw
:members: broken_powerlaw
+
+.. autoclass:: reddening.RedLawRiekeLebofsky
+ :members: RiekeLebofsky85
.. autoclass:: reddening.RedLawCardelli
:members: Cardelli89
-.. autoclass:: reddening.RedLawDamineli16
- :members: Damineli16
+.. autoclass:: reddening.RedLawIndebetouw05
+ :members: Indebetouw05
+
+.. autoclass:: reddening.RedLawRomanZuniga07
+ :members: RomanZuniga07
-.. autoclass:: reddening.RedLawDeMarchi16
- :members: DeMarchi16
-
.. autoclass:: reddening.RedLawFitzpatrick09
- :members: Fitzpatrick09
+ :members: Fitzpatrick09
+
+.. autoclass:: reddening.RedLawNishiyama09
+ :members: Nishiyama09
+
+.. autoclass:: reddening.RedLawSchoedel10
+ :members: Schoedel10
.. autoclass:: reddening.RedLawFritz11
:members: Fritz11
+
+.. autoclass:: reddening.RedLawDamineli16
+ :members: Damineli16
-.. _Hosek_old:
-.. autoclass:: reddening.RedLawHosek18
- :members: Hosek18
+.. autoclass:: reddening.RedLawDeMarchi16
+ :members: DeMarchi16
+
+.. autoclass:: reddening.RedLawSchlafly16
+ :members: Schlafly16
.. _Hosek_new:
.. autoclass:: reddening.RedLawHosek18b
:members: Hosek18b
-.. autoclass:: reddening.RedLawNishiyama09
- :members: Nishiyama09
-
.. autoclass:: reddening.RedLawNoguerasLara18
:members: NoguerasLara18
-.. autoclass:: reddening.RedLawRomanZuniga07
- :members: RomanZuniga07
+.. autoclass:: reddening.RedLawNoguerasLara20
+ :members: NoguerasLara20
-.. autoclass:: reddening.RedLawRiekeLebofsky
- :members: RiekeLebofsky85
-.. autoclass:: reddening.RedLawSchlafly16
- :members: Schlafly16
diff --git a/docs/filters.rst b/docs/filters.rst
index 85e70e4f..3112d4a1 100644
--- a/docs/filters.rst
+++ b/docs/filters.rst
@@ -7,16 +7,16 @@ Photometric Filters
The user can specify what filters are used for synthetic photometry
when defining the :ref:`isochrone_objects`. Each filter is
identified by a unique string, and an array of such strings
-are passed into the Isochrone call.
+are passed into the Isochrone call.
For example::
-
+
# Use the HST WFC3-IR F127M and F153M filters, along with NIRC2 Kp
filt_list = ['wfc3,ir,f127m', 'wfc3,ir,f153m', 'nirc2,Kp']
my_iso = synthetic.IsochronePhot(logAge, AKs, dist, metallicity=0,
evo_model=evo_model, atm_func=atm_func,
red_law=red_law, filters=filt_list)
-
+
These strings follow the format ``,``.
Note that there is no space after the comma, and case matters.
@@ -31,28 +31,34 @@ Available filters:
* 2MASS
* CTIO_OSIRIS
* DeCam
+* Euclid
* GAIA
* HAWK-I
* Hubble Space Telescope
+* IRTF
* Johnson-Cousins
* Johnson-Glass
* JWST
* Keck NIRC
* Keck NIRC2
-* NACO
+* NACO
* PanStarrs 1
+* Roman Space Telescope
* UKIRT
+* Vera C. Rubin Observatory
* VISTA
* ZTF
-
+
Filter Sets
------------
-
+
**2MASS**
-`Two-Micron Sky Survey `_ Filters: J, H, Ks
+`Two-Micron Sky Survey `_
+
+Filters: J, H, Ks
Example: ``'2mass,H'``
@@ -61,7 +67,9 @@ Example: ``'2mass,H'``
`OSIRIS imager
`_
-on the CTIO telescope. Filters: H, K
+on the CTIO telescope.
+
+Filters: H, K
Example: ``'ctio_osiris,H'``
@@ -69,10 +77,20 @@ Example: ``'ctio_osiris,H'``
**DeCam**
`Dark Energy Camera `_
+
Filters: u, g, r, i, z, Y
Example: ``'decam,r'``
+**Euclid**
+
+Euclid space telescope `NISP filters `_
+and `VIS single filter `_
+
+Filters: VIS, Y, J, H
+
+Example: ``'euclid,Y'``
+
**GAIA**
The `GAIA Space Telescope filters `_.
@@ -100,7 +118,9 @@ Example: ``'hawki,J'``
**Hubble Space Telescope**
-HST filters are defined by their `pysynphot OBSMODE strings `_.
+HST filters are defined by their `pysynphot OBSMODE strings
+`_. These
+are defined in the ``cdbs/mtab/`` and ``cdbs/comp/`` directories.
Example: ``'wfc3,ir,f125w'``
@@ -108,14 +128,17 @@ Example: ``'wfc3,ir,f125w'``
**Johnson-Cousins**
Johnson-Cousin filters (downloaded from
-http://www.aip.de/en/research/facilities/stella/instruments/data/johnson-ubvri-filter-curves). Filters:
-U, B, V, R, I
+http://www.aip.de/en/research/facilities/stella/instruments/data/johnson-ubvri-filter-curves).
+
+Filters: U, B, V, R, I
Example: ``'ubv,B'``
**Johnson-Glass**
-Johnson-Glass passbands taken from `Bessell et al. 1988 `_
+Johnson-Glass passbands taken from `Bessell et al. 1988
+`_
+
Filters: J, H, K
Example: ``'jg,K'``
@@ -124,14 +147,16 @@ Example: ``'jg,K'``
JWST NIRCam filters, downloaded from `NIRCam website `_. The filter functions in the nircam_throughputs/modAB_mean/nrc_plus_ote folder is used.
-Filters: F070W, F090W, F115W, F140M, F150W, F150W2, F162M, F164N, F182M, F187N, F200W, F210M, F212N, F250M, F277W, F300M, F322W2, F323N, F335M, F356W, F360M, F405N, F410M, F430M, F444W, F460M, F466N, F470N, F480M,
+Filters: F070W, F090W, F115W, F140M, F150W, F150W2, F162M, F164N, F182M, F187N, F200W, F210M, F212N, F250M, F277W, F300M, F322W2, F323N, F335M, F356W, F360M, F405N, F410M, F430M, F444W, F460M, F466N, F470N, F480M
Example: ``'jwst,F356W'``
-
+
**Keck NIRC**
-`NIRC1 filters `_ on the Keck Telescope
+`NIRC1 filters `_ on the Keck
+Telescope
+
Filters: H, K
Example: ``'nirc1,H'``
@@ -141,6 +166,7 @@ Example: ``'nirc1,H'``
`NIRC2 filters `_
on the Keck Telescope ()
+
Filters: J, H, Hcont, K, Kp, Ks, Kcont, Lp, Ms, Brgamma, FeII
Example: ``'nirc2,Ks'``
@@ -149,7 +175,9 @@ Example: ``'nirc2,Ks'``
**NACO**
`ESO NACO filters `_
-Filters: J, H, Ks
+
+Filters: J, H, Ks, IB_2.00, IB_2.03, IB_2.06, IB_2.24, IB_2.27,
+IB_2.30, IB_2.33, IB_2.36
Example: ``'naco,H'``
@@ -157,22 +185,48 @@ Example: ``'naco,H'``
**PanStarrs1**
PanStarrs 1 filters from `Tonry et al. 2012 `_
+
Filters: g, r, i, z, y
Example: ``'ps1, g'``
+**Roman Space Telescope**
+
+Roman Space Telescope WFI filters are defined by their `pysynphot
+OBSMODE strings
+`_.
+These are defined in the ``cdbs/mtab/`` and ``cdbs/comp/``
+directories. Note that the 2021-07-16 version of these directories
+must be downloaded from from the `STScI reference atlases
+`_ for these to
+work. See :ref:`getting_started` for how to download these files.
+
+Filters: F062, F087, F106, F129, F158, W146, F184, F213
+
+Example: ``'roman,wfi,f062'``
+
**UKIRT**
-UKIRT Telescope (http://www.ukidss.org/technical/photom/photom.html)
+`UKIRT Telescope filters `_
+
Filters: J, H, K
Example: ``'ukirt,K'``
+**Vera C. Rubin Observatory**
+
+`Rubin Telescope filters `_
+
+Filters: u, g, r, i, z, y
+
+Example: ``'rubin,g'``
+
**VISTA**
`VISTA Telescope `_
+
Filters: Z, Y, J, H, K
Example: ``'vista,Y'``
@@ -180,6 +234,15 @@ Example: ``'vista,Y'``
**ZTF**
`ZTF Telescope `_
+
Filters: g, r, i
Example: ``'ztf,g'``
+
+**IRTF**
+
+`IRTF NSFCam `_
+
+Filters: L
+
+Example: ``'nsfcam,L'``
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index 304e9fed..dd2eeb96 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -9,7 +9,10 @@ instructions below. If you had already downloaded version 1 of the
code and are switching to version 2, please see :ref:`version`.
SPISEA is hosted on `GitHub `_.
-To begin, clone the git repository.
+To begin, clone the git repository in your desired code directory::
+
+ git clone https://github.com/astropy/SPISEA.git
+
The ``main`` branch contains the current release,
while the ``dev`` branch is for code development.
@@ -17,19 +20,18 @@ while the ``dev`` branch is for code development.
Dependencies
----------------
-* python (>=3.7; preferably via AstroConda, as it includes some necessary
- packages, like astropy and pysynphot)
+The basic SPISEA installation requires ~20 GB of memory, which is
+primarily for the suite of stellar evolution and atmosphere models.
+Other dependencies:
+
+* python (>=3.7, < 3.12)
* astropy
* pysynphot
* scipy
-* numpy (>= v1.17)
+* numpy (>= 1.17, < 2.0)
* matplotlib
-* STScI CDBS data package (Download from the `website
- `_
- or directly via ftp `here
- `_. You will need 2
- files: synphot1.tar.gz (63 MB unzipped) and synphot5.tar.gz (791 MB
- unzipped). See :ref:`set-up-cdbs` below for further instructions.)
+* `pytest-astropy-header `_
+* STScI CDBS data package (See :ref:`set-up-cdbs` below for instructions)
.. _Build:
@@ -49,18 +51,40 @@ directory.
Set Up CDBS Directory
---------------------------------
SPISEA uses the STScI CDBS infrastructure to store
-model atmospheres and HST filter functions. It requires
-a top-level ``cdbs`` directory with 3 sub-directories: ``comp``, ``grid``,
-and ``mtab``. The ``comp`` and ``mtab`` directories are downloaded as
-part of the ``synphot1.tar.gz`` file in the STSci CDBS download (grp/hst/cdbs/comp,
-grp/hst/cdbs/mtab). The ``grid`` directory will eventually hold all of
-the model atmospheres, but start by putting the Phoenix model
-directory from ``synphot5.tar.gz`` there (grp/hst/cdbs/grid/phoenix).
-You will add additional atmosphere model directories to ``cdbs/grid`` in
+model atmospheres and HST filter throughputs.
+In particular, it expects a top-level ``cdbs`` directory
+with 3 sub-directories: ``comp``, ``mtab``,
+and ``grid``. If you already have these set-up then you may
+proceed to the next section. Otherwise, follow the steps below.
+
+#. Create a cdbs directory on your machine::
+
+ mkdir /cdbs
+
+#. The CDBS files can be downloaded from this STScI `website
+ `_.
+ Download the ``synphot1_throughput-master.tar`` and
+ ``synphot5_pheonix-models.tar`` files and place them in your
+ cdbs directory.
+
+#. Untar each of the files. Once completed, a new directory named ``grp`` will appear.
+
+#. The ``comp``, ``mtab``, and ``grid`` sub-directories SPISEA needs
+ are under ``grp/redcat/trds/``. Move these directories directly to
+ ``/cdbs``.
+
+#. You may remove the (now empty) ``grp`` directory and
+ the tar files if desired.
+
+You should end up with a cdbs directory
+``/cdbs`` with sub-directories
+called ``comp``, ``mtab``, and ``grid``.
+You will add additional atmosphere models to ``cdbs/grid`` in
the :ref:`models` section below.
-So, you should end up with a single ``cdbs`` directory with
-the ``cdbs/comp``, ``cdbs/grid``, and ``cdbs/mtab`` sub-directories.
+Note: To use the Roman filters, the CDBS data version should be from
+2024-03-22 or later.
+
.. _models:
@@ -74,20 +98,23 @@ STScI CDBS conventions and should be placed in the ``cdbs/grid`` directory.
You will need to download 2 files:
* `spisea_models.tar.gz
- `_ (3.4 GB; 18 GB unzipped)
+ `_ (3.4 GB; 18 GB unzipped)
-* `spisea_cdbs.tar.gz `_ (142 MB; 248 MB unzipped)
+* `spisea_cdbs.tar.gz `_ (142 MB; 248 MB unzipped)
-You can also optionally download a third file, which contains higher-resolution versions of the atmospheres in ``spisea_cdbs.tar.gz``:
+You may **optionally** download a third file, which contains
+higher-resolution stellar atmospheres. Note that this file is quite
+large, and is not necessary for most SPISEA use cases:
-* `spisea_cdbs_highres.tar.gz `_ (50 GB; 74 GB unzipped)
+* `spisea_cdbs_highres.tar.gz `_ (50 GB; 74 GB unzipped)
SPISEA uses the low-resolution atmospheres (R = 250) in
``spisea_cdbs.tar.gz`` by default, as
-it is then much faster to calculate synthetic photometry and
+it is then much faster for synthetic photometry and
is sufficient in most applications. However, the user can change
this default; see :ref:`atmo_models` for
-more details.
+more details. **Unless you change this default,**
+``spisea_cdbs_highres.tar.gz`` **is not required.**
Once downloaded, ``spisea_cdbs.tar.gz`` (and
``spisea_cdbs_highres.tar.gz``, if desired) should be
@@ -97,18 +124,18 @@ The ``spisea_models.tar.gz`` file can be expanded
anywhere, though we recommend expanding it in the same location as
your ``cdbs`` directory.
-For example, if your cdbs directory is ``/g/lu/models/cdbs/``
-then you should put the .gz files in ``/g/lu/models/``
+For example, if your cdbs directory is ``//models/cdbs/``
+then you should put the .gz files in ``//models/``
and then unzip them from there::
- cd /g/lu/models/
- tar xvf spisea_cdbs.tar.gz
- tar xvf spisea_models.tar.gz
+ cd //models/
+ tar -xvf spisea_cdbs.tar.gz
+ tar -xvf spisea_models.tar.gz
``spisea_cdbs.tar.gz`` will put the model atmospheres in
``cdbs/grid``, and ``spisea_models.tar.gz`` will put the evolution
-models in a directory called ``evolution/``
+models in a new directory called ``evolution/``
.. _setup-paths:
@@ -154,9 +181,12 @@ To test the full range of
evolution models, atmosphere models, and photometric filters,
run the test functions by going into the ``SPISEA/spisea`` directory and running::
- py.test
+ pytest
-This will trigger the test functions we have implemented. If all is
+Note that this uses the python
+`pytest
+`_
+package. This will trigger the test functions we have implemented. If all is
well, you shouldn't get any errors. Warnings are (generally) fine.
TroubleShooting
@@ -173,4 +203,69 @@ either or both of the following warnings::
UserWarning: PYSYN_CDBS is undefined; functionality will be SEVERELY crippled.
UserWarning: SPISEA_MODELS is undefined; functionality will be SEVERELY crippled.
+
+==========================
+Build and deploy from Docker
+==========================
+
+Build your own SPISEA image for Docker Containers. This installation form contains SPISEA deployed in a container and includes the data sets, models and all the necessary paths and code.
+
+Requirements
+-----------------------
+
+- Linux, Windows or MacOS with Docker installed.
+- At least 2 CPUs and 4 GB of RAM and 16 GB of storage.
+
+Installation
+-----------------------
+
+To create the container image, clone this repository and build the container::
+
+ git clone https://github.com/astropy/SPISEA.git
+ cd SPISEA
+ docker build -t spisea .
+
+Usage
+-----------------------
+To open a shell ready play with SPISEA::
+
+ docker run -ti spisea bash
+
+To execute a script you have in your current folder::
+
+ docker run -ti -v $PWD:$PWD -w $PWD spisea python myscript.py
+
+==========================
+Deploy from DockerHub
+==========================
+
+If you don't want to build the image from scratch you can use a pre-build container image from `DockerHub `_ using the following commands::
+
+ docker pull amigahub/spisea:v1
+
+Then, to open a shell ready to play with SPISEA::
+
+ docker run -ti amigahub/spisea:v1 bash
+
+To execute a script you have in your current folder::
+
+ docker run -ti -v $PWD:$PWD -w $PWD spisea python myscript.py
+
+==========================
+Deploy from Singularity containers
+==========================
+
+Download the image from DockerHub and convert it into a ``.sif`` image for Singularity.::
+
+ singularity pull spisea.sif docker://amigahub/spisea:v1
+
+After downloading the image, you can use it in singularity by opening a shell on SPISEA image::
+
+ singularity shell spisea.sif
+
+
+
+
+
+
diff --git a/docs/ifmr.rst b/docs/ifmr.rst
index ee3f4fbb..a1072d84 100644
--- a/docs/ifmr.rst
+++ b/docs/ifmr.rst
@@ -21,7 +21,7 @@ Compact objects are included in the output tables produced by
* BH: phase = 103
See `Quick Start Example
-`_
+`_
for more examples of how to interact with the :ref:`cluster_objects`
output.
@@ -31,5 +31,8 @@ IFMR Base Classes
:members: generate_death_mass
.. autoclass:: ifmr.IFMR_Raithel18
- :members: generate_death_mass
+ :members: NS_mass, generate_death_mass
+
+.. autoclass:: ifmr.IFMR_N20_Sukhbold
+ :members: NS_mass, generate_death_mass
diff --git a/docs/images/atm_models.png b/docs/images/atm_models.png
new file mode 100644
index 00000000..b8bd00dd
Binary files /dev/null and b/docs/images/atm_models.png differ
diff --git a/docs/images/cluster_table.png b/docs/images/cluster_table.png
new file mode 100644
index 00000000..991e6dc8
Binary files /dev/null and b/docs/images/cluster_table.png differ
diff --git a/docs/images/evo_models_f2.png b/docs/images/evo_models_f2.png
new file mode 100644
index 00000000..bb64d6b3
Binary files /dev/null and b/docs/images/evo_models_f2.png differ
diff --git a/docs/images/isochrone_table.png b/docs/images/isochrone_table.png
new file mode 100644
index 00000000..f93759fd
Binary files /dev/null and b/docs/images/isochrone_table.png differ
diff --git a/docs/imf.rst b/docs/imf.rst
index a532b9f9..a99b8fe1 100644
--- a/docs/imf.rst
+++ b/docs/imf.rst
@@ -9,15 +9,16 @@ Initial Mass Functions (IMFs) are defined as classes in
from spisea.imf import imf
imf_obj = imf.
+Currently, the IMF is implemented as a power-law:
+dn / dm ~ m^-alpha. The Broken Power-Law IMF object
+gives users the flexibility to define the mass range
+and exponents of the IMF.
+
The IMF object is an input for the :ref:`cluster_objects`, and will
be used to draw the inital stellar mass distribution for the cluster.
A :ref:`multi_obj` may be passed to the IMF object to
form multiple star systems.
-The IMFs are defined as broken power laws. Additional functional forms
-may be implemented as sub-classes off of the base IMF class.
-
-
Base IMF Class
--------------
.. autoclass:: imf.imf.IMF
diff --git a/docs/index.rst b/docs/index.rst
index 0b43f278..048f5c8b 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,8 +1,13 @@
-.. sampledoc documentation master file, created by
+.. sampledoc documentation main file, created by
sphinx-quickstart on Tue Aug 11 05:04:40 2009.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
+.. figure:: ../SPISEA_logo_final.png
+ :width: 380
+ :height: 336
+ :align: center
+
==========================================================================
SPISEA: Stellar Population Interface for Stellar Evolution and Atmospheres
==========================================================================
@@ -24,8 +29,8 @@ Here is a brief list of things that SPISEA can do:
* make a spectrum of a star cluster in integrated light
-Please cite `Hosek et al. (2020) `_ if you use SPISEA in
-your research.
+SPISEA can be downloaded from `Github `_. Please cite `Hosek et al. (2020) `_ if you use SPISEA in
+your research.
Getting Started
----------------
@@ -63,23 +68,174 @@ Advanced Documentation
Contributions
---------------
-We encourage contributions to SPISEA, particular
-those that add support for star formation histories,
-new models, higher spectral resolution, etc.
+Have an idea? We'd love to have you join our team!
+We welcome and encourage contributions to SPISEA.
+
For feature additions, we ask that users make their
own fork of the repository, make their changes, and then submit a pull
request to the "dev" branch.
-All contributions will be acknowledged on the :ref:`contributors` page. Contributors with features used in code
+All contributions will be acknowledged on the :ref:`contributors` page
+(with permission). Contributors with features used in code
releases will be co-authors in future SPISEA software papers.
Change Log
----------
+2.4 (2026-03-20)
+ * Added backward compatibility for isochrone file names created
+ before v2.3
+ * When reading isochrone from existing file, only keep user
+ requested filters in resulting table.
+ * Changed the global random seed to a random generator within each class,
+ but still retaining the reproducibility. Test cluster files in
+ test_data also updated accordingly for testing purposes
+ * Added filter support for IRTF L-band
+ * Added conversion function between ST mags and Vega mags
+
+2.3 (2026-02-10)
+ * Achieves faster cluster generation (factor of about 2x) by using
+ replacing ragged arrays with masked arrays when calculating
+ multiplicity properties
+ * Added new test functions (and associated test data files) ensuring
+ that the primary mass and companion
+ mass distibutions remain the same as generated with SPISEA <= v2.2
+ * Added support to Euclid VIS filter
+
+
+2.2 (2026-01-16)
+ * Compatibility updates for SPISEA to work with `SynthPop
+ `_. Updates include:
+ * Low mass objects below the isochrone grid can optionally be kept
+ in clusters (off by default) and will have
+ ``current_mass=initial_mass`` and ``phase=98``, with no other
+ evolutionary information or photometry.
+ * Evolution model versions are now logged in IsochronePhot files
+ and checked if present.
+ * The option ``synthpop_extension`` is now available for MISTv1
+ version=1.2 evolution. This fills in the missing parameter space
+ down to initial mass 0.1Msun in isochrones where needed. Use of
+ this option will require downloading updated isochrone files.
+ * Added support for Euclid filters.
+
+2.1.15 (2025-10-25)
+ * Updated Roman filter name from outdated w146 to current f146. From
+ now on a STScI CDBS data version from 2024-03-22 or later is
+ required to use the Roman filter photometry.
+
+2.1.14 (2025-10-23)
+ * Added support for NACO intermediate bands
+ * Added metallicity bounds check when calling atmosphere model grid
+ * Added check to make sure desired filter columns are present in
+ isochrone file when deciding whether a new isochrone needs to be
+ calculated
+ * Small bugfix: ensures that imf_mass_limit is reset properly when
+ generating multiple clusters from same imf object
+
+2.1.13 (2024-12-10)
+ * Small bugfix to make iso_dir creation more robust
+
+2.1.12 (2024-12-02)
+ * Added support for Rubin Observatory filters
+
+2.1.11 (2023-09-15)
+ * Small bugfix to RedLawFritz11 so paths work regardless of
+ operating system used
+
+2.1.10 (2023-06-01)
+ * Added support for Roman Space Telescope filters (via pysynphot)
+
+ * Note: this requires the pysynphot ``cdbs/mtab`` and
+ ``cdbs/comp/`` directories to be at least the 2021-07-16 version or later. See :ref:`getting_started` for how to download these files
+
+2.1.9 (2023-01-10)
+ * Small bugfix: updating pytest setup.cfg and conftest.py files to
+ work with latest python/astropy versions
+ * Added additional print statements in verbose condition flags
+
+
+2.1.8 (2023-01-09)
+ * Small bugfix: Updating numpy array definitions to use
+ dtype='objects' instead of depreciated dtype='np.object'
+
+2.1.7 (2022-10-26)
+ * Made several updates to the extinction law objects, including:
+
+ * Added Indebetouw05, Schoedel10, Fritz11, and NoguerasLara20 laws
+ * Improved docs and added plotting functions for Nishiyama09 and RomanZuniga07 laws
+ * Updated K-band scale wavelength for Fitzpatrick07 and NoguerasLara18 to match published values
+ * Updated assorted "under the hood" functions to handle new laws
+ * Added more test functions for the extinction laws
+ * Updated :ref:`ext_law` page so laws are in chronological order
+
+2.1.6 (2022-09-15)
+ * Bugfix in how evolution object identifies what age and metallicity
+ model to pull from the grid of available models. Previously, it used
+ first grid model where grid model value >
+ requested value (numpy.searchsorted routine). Now, is takes grid model
+ where the difference between the grid model value and requested
+ value is minimized. This is most relevant for metallicity
+ selection for MIST isochrones, where the model grid metallicities are
+ spaced out.
+
+2.1.5 (2022-07-20)
+ * Added additional parameters to get_bb_atmosphere function to give
+ user control over the min and max wavelength values, as well as
+ wavelength sampling. See :ref:`atmo_models` for details.
+
+2.1.4 (2022-05-24)
+
+ * Expanded MISTv1 evolution model grid age range to logAge = 5.01 --
+ 10.30
+ * Begun version tracking for evolution model grid; updated grid
+ (with new MISTv1 age range) is grid 1.1
+ * A new ModelMismatch
+ exception will be raised if evolution model object requires a
+ higher version of the model grid than the user has installed. See
+ :ref:`evo_models` for details
+ * Fixed MISTv1 sub-directory names so proper Z_solar value
+ of 0.0142 is used (only naming convention, does not effect output
+ results)
+ * Updated evolution model and atmosphere model doc pages with tables
+ describing properties of installed options
+ * Small tweaks to installation instructions for clarity
+ * Updated test functions and removed outdated dependence on nose package
+
+2.1.3 (2022-04-23)
+
+ * Updates to documentation and Quick-Start Guide
+ * Fully depreciated Hosek18 extinction law to avoid confusion with Hosek18b
+
+2.1.2 (2022-04-01)
+
+ * New installation methods using Docker containers and Singularity
+
+
+2.1.1 (2022-03-30)
+
+ * Bugfix: fixed application of IFMR to objects in companions table
+ (ResolvedCluster and associated subclasses: applies when
+ multiplicity + IFMR are used)
+
+ * Minor additions to docs
+
+2.1.0 (2022-01-24)
+
+ * Added ability to create resolved multiple systems, with orbital
+ elements assigned to each companion (see :ref:`multi_obj`)
+
+ * Added new metallicity-dependent IFMR models (see
+ :ref:`ifmr_objects`)
+
+ * Added blackbody atmosphere class
+
+ * Additional test functions, filter functions, and documentation
+ updates
2.0.0 (2020-07-09)
- * Top-level software name change from PyPopStar to SPISEA (see :ref:`version` for instructions to do this)
+ * Top-level software name change from PyPopStar to SPISEA (see
+ :ref:`version` for instructions to do this). This version of code was released in `Hosek et al. (2020) `_.
1.0.1 (2020-06-24)
@@ -87,5 +243,7 @@ Change Log
1.0.0 (2019-12-01)
- * First Release
+ * Initial release
+
+Logo by Natasha Abrams
diff --git a/docs/make_cluster.rst b/docs/make_cluster.rst
index c58eb2a8..6af85cd7 100644
--- a/docs/make_cluster.rst
+++ b/docs/make_cluster.rst
@@ -39,7 +39,7 @@ has already been created::
massLimits = np.array([0.08, 0.5, 1, 120]) # mass segments
powers = np.array([-1.3, -2.3, -2.3]) # power-law exponents
my_imf = imf.IMF_broken_powerlaw(massLimits, powers,
- imf_multi)
+ multiplicity=imf_multi)
# Define the cluster mass
mass = 10**5 # Units: solar masses
@@ -51,9 +51,28 @@ has already been created::
See `Quick Start Example
-`_
+`_
for a detailed example for how to make different
cluster sub-classes and interact with the resulting output.
+Here is a table from Hosek et al. 2020 that describes
+the values in the cluster output table:
+
+
+.. figure:: images/cluster_table.png
+ :width: 405
+ :height: 550
+ :align: center
+
+Tips and Tricks: The Cluster Object
+-----------------------------------------
+* The cluster is generated by drawing a population of initial stellar masses according
+ to the IMF/multiplicity objects and then assigning stellar
+ properties to each using the evolution model. Thus, it is
+ possible for the cluster to generate a star with an initial mass beyond
+ the boundaries of the evolution model. If this occurs, then
+ nans are assigned to the properties of that star (e.g. Teff,
+ current_mass, photometry, etc).
+
Base Cluster Class
----------------------------
diff --git a/docs/make_isochrone.rst b/docs/make_isochrone.rst
index 092271b0..5f764c93 100644
--- a/docs/make_isochrone.rst
+++ b/docs/make_isochrone.rst
@@ -9,7 +9,10 @@ total extinction, and metallicity, along with the :ref:`atmo_models`,
:ref:`evo_models`, and :ref:`ext_law`.
If the IsochronePhot sub-class is used then synthetic photometry
-will be produced. The :ref:`filters` are defined as additional inputs.
+will be produced. The :ref:`filters` are defined as additional
+inputs. The output photometry is in terms of vega mags, but the user
+can also calculate the required conversion to AB mags or ST mags using
+the functions in :ref:`Photometry Conversion Functions `.
An example of making an IsochronePhot object::
@@ -45,9 +48,19 @@ An example of making an IsochronePhot object::
iso_dir=iso_dir)
See `Quick Start Example
-`_
-for a detailed example showing how to interact with the isochrone object output.
+`_
+for a detailed example showing how to interact with the isochrone
+object output. Here is a table from Hosek et al. 2020 that describes
+the values in the isochrone output table:
+.. figure:: images/isochrone_table.png
+ :width: 468
+ :height: 400
+ :align: center
+
+
+
+
Tips and Tricks: The IsochronePhot Object
-----------------------------------------
@@ -66,10 +79,9 @@ Tips and Tricks: The IsochronePhot Object
* **WARNING**: When IsochronePhot checks to see if the desired
isochrone table already exists, it checks all isochrone properties
- except for the photometric filters (evolution models, atmosphere
- models, and reddening law are encoded in the table meta-data).
+ (evolution models, atmosphere models, and reddening law are encoded in the table meta-data).
If any of these parameters do not match, then the isochrone will
- be re-calculated.
+ be re-calculated.
However, to keep the isochrone filenames reasonable, only the
age, extinction, distance, and metallicity are encoded in the
@@ -81,13 +93,6 @@ Tips and Tricks: The IsochronePhot Object
that users specify different iso_dir paths when making isochrones
with different evolution models, atmosphere models, or reddening
laws.*
-
- * **WARNING**: IsochronePhot does not check existing
- isochrone tables to see if the photometric filters match
- those specified by the user. *So, if the user wishes to generate an
- isochrone with different filters, we recommend either using a
- different iso_dir path or setting the keyword recomp=True (see
- docs below).*
Base Isochrone Class
----------------------------
@@ -102,3 +107,13 @@ Isochrone Sub-classes
.. autoclass:: synthetic.IsochronePhot
:show-inheritance:
:members: make_photometry, plot_CMD, plot_mass_magnitude
+
+
+Photometry Conversion Functions
+-----------------------------
+.. _phot_conversions:
+
+.. autofunction:: synthetic.calc_ab_vega_filter_conversion
+
+.. autofunction:: synthetic.calc_st_vega_filter_conversion
+
diff --git a/docs/more_examples.rst b/docs/more_examples.rst
index f88408fc..51fc5d87 100644
--- a/docs/more_examples.rst
+++ b/docs/more_examples.rst
@@ -6,7 +6,7 @@ Further Examples
Additional Jupyter notebooks with tutorials to produce the plots shown
in the SPISEA paper (`Hosek et al. (2020)
`_) can be found `here
-`_.
+`_.
Figure 2: HR-Diagrams with Different Evolution Models; CMDs with different Extinction Laws
--------------------------------------------------------------------------------------------------------
diff --git a/docs/quick_start.rst b/docs/quick_start.rst
old mode 100644
new mode 100755
index 2c8084ee..51854eef
--- a/docs/quick_start.rst
+++ b/docs/quick_start.rst
@@ -5,7 +5,7 @@ Quick Start Guide
===================
We provide a `jupyter notebook
-`_
+`_
as a Quick-Start Guide to demonstrate the steps required to simulate a cluster and interact
with the resulting output. This guide shows you how to:
@@ -38,7 +38,7 @@ Examine Compact Remnants Produced by Different Clusters
----------------------------------------------------------------
You will generate two massive clusters, one at 100 Myr and the other at 10
Gyr, and compare the distribution of compact remnants produced given
-the IFMR IFMR_Raithel18. You will also test how
+the default IFMR. You will also test how
changing the IMF of these clusters changes these distributions.
.. figure:: images/compact_remnants_example.png
diff --git a/docs/requirements.txt b/docs/requirements.txt
index 0ed56588..285b1e61 100644
--- a/docs/requirements.txt
+++ b/docs/requirements.txt
@@ -4,3 +4,4 @@ numpydoc
astropy
pysynphot
scipy
+docutils<0.18
diff --git a/docs/resolved_multiples_example.ipynb b/docs/resolved_multiples_example.ipynb
index afa8723c..856a1a48 100755
--- a/docs/resolved_multiples_example.ipynb
+++ b/docs/resolved_multiples_example.ipynb
@@ -225,7 +225,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.7.3"
+ "version": "3.6.9"
}
},
"nbformat": 4,
diff --git a/filt_func/euclid/H.dat b/filt_func/euclid/H.dat
new file mode 100644
index 00000000..502cbacd
--- /dev/null
+++ b/filt_func/euclid/H.dat
@@ -0,0 +1,743 @@
+# WAVE T_TOTAL T_FILTER T_TELESCOPE T_NI-OA T_QE
+1405 7.39323e-05 9.33327e-05 0.892197 0.939733 0.94479
+1406 7.87152e-05 9.94054e-05 0.892028 0.939565 0.944808
+1407 8.80195e-05 0.000111139 0.892299 0.939398 0.944827
+1408 7.98104e-05 0.000100787 0.892321 0.939232 0.944846
+1409 8.04887e-05 0.000101581 0.893008 0.939068 0.944866
+1410 8.96503e-05 0.000113211 0.892609 0.938906 0.944887
+1411 8.68784e-05 0.000109826 0.891803 0.938745 0.944909
+1412 8.0046e-05 0.000101211 0.891739 0.938586 0.944931
+1413 9.3824e-05 0.000118704 0.891327 0.938428 0.944954
+1414 8.66659e-05 0.000109466 0.892933 0.938272 0.944977
+1415 8.03055e-05 0.000101524 0.892251 0.938117 0.945001
+1416 7.79284e-05 9.84914e-05 0.892622 0.937964 0.945026
+1417 7.65934e-05 9.68994e-05 0.891863 0.937813 0.945052
+1418 7.4442e-05 9.40761e-05 0.892945 0.937662 0.945078
+1419 6.86357e-05 8.67011e-05 0.893444 0.937514 0.945105
+1420 7.16165e-05 9.05779e-05 0.89246 0.937367 0.945132
+1421 6.53319e-05 8.26349e-05 0.892512 0.937221 0.945161
+1422 5.90971e-05 7.47355e-05 0.892781 0.937077 0.94519
+1423 5.90591e-05 7.46765e-05 0.893019 0.936935 0.94522
+1424 5.24493e-05 6.63188e-05 0.893125 0.936794 0.94525
+1425 6.19594e-05 7.83478e-05 0.893181 0.936655 0.945281
+1426 6.99315e-05 8.84655e-05 0.89291 0.936517 0.945313
+1427 6.8377e-05 8.65558e-05 0.892423 0.93638 0.945346
+1428 6.15276e-05 7.78272e-05 0.893187 0.936245 0.94538
+1429 6.08152e-05 7.69474e-05 0.893035 0.936112 0.945414
+1430 6.09746e-05 7.71689e-05 0.892898 0.93598 0.945449
+1431 5.59075e-05 7.08047e-05 0.892374 0.93585 0.945485
+1432 6.0059e-05 7.60971e-05 0.892055 0.935721 0.945522
+1433 7.32291e-05 9.27549e-05 0.892423 0.935593 0.94556
+1434 6.01578e-05 7.61836e-05 0.892679 0.935467 0.945598
+1435 5.73082e-05 7.25592e-05 0.892954 0.935343 0.945637
+1436 6.50065e-05 8.23424e-05 0.892641 0.93522 0.945677
+1437 6.72835e-05 8.52591e-05 0.892379 0.935098 0.945718
+1438 6.99598e-05 8.86337e-05 0.892621 0.934978 0.94576
+1439 7.30334e-05 9.24484e-05 0.89346 0.93486 0.945802
+1440 6.94575e-05 8.79594e-05 0.893151 0.934742 0.945846
+1441 7.03754e-05 8.92115e-05 0.892321 0.934627 0.94589
+1442 7.71861e-05 9.77905e-05 0.892886 0.934513 0.945935
+1443 8.04869e-05 0.000101983 0.892858 0.9344 0.945981
+1444 7.7133e-05 9.77372e-05 0.892884 0.934289 0.946028
+1445 8.13834e-05 0.000103196 0.892312 0.934179 0.946076
+1446 8.7556e-05 0.000111011 0.892467 0.93407 0.946125
+1447 8.60918e-05 0.00010921 0.892069 0.933963 0.946175
+1448 8.68341e-05 0.000110185 0.891852 0.933858 0.946225
+1449 8.1573e-05 0.000103476 0.892187 0.933754 0.946277
+1450 9.2378e-05 0.000117184 0.892223 0.933651 0.946329
+1451 9.60159e-05 0.000121793 0.892295 0.93355 0.9464
+1452 9.41343e-05 0.000119525 0.891436 0.93345 0.946472
+1453 9.52216e-05 0.000120798 0.892256 0.933352 0.946544
+1454 9.52347e-05 0.000120876 0.891826 0.933255 0.946618
+1455 9.31461e-05 0.000118325 0.891094 0.93316 0.946692
+1456 8.73947e-05 0.000110982 0.891409 0.933066 0.946767
+1457 9.52506e-05 0.000120903 0.891833 0.932973 0.946843
+1458 9.13414e-05 0.000115801 0.892927 0.932882 0.946919
+1459 8.86748e-05 0.000112485 0.892427 0.932792 0.946996
+1460 9.51156e-05 0.000120609 0.89278 0.932704 0.947074
+1461 8.93641e-05 0.000113322 0.892741 0.932617 0.947153
+1462 9.07162e-05 0.000115101 0.89225 0.932531 0.947231
+1463 8.18078e-05 0.00010376 0.892582 0.932447 0.947311
+1464 8.73969e-05 0.000110887 0.892279 0.932364 0.947391
+1465 9.07752e-05 0.000115137 0.892562 0.932283 0.947471
+1466 9.03505e-05 0.000114552 0.892924 0.932203 0.947552
+1467 9.09592e-05 0.000115389 0.892418 0.932124 0.947633
+1468 8.78956e-05 0.000111533 0.892171 0.932047 0.947715
+1469 9.30295e-05 0.00011799 0.892603 0.931971 0.947796
+1470 9.15267e-05 0.000116173 0.891912 0.931897 0.947879
+1471 9.45012e-05 0.000119975 0.891707 0.931824 0.947961
+1472 0.000100035 0.00012706 0.891276 0.931752 0.948044
+1473 0.000108739 0.000137976 0.892174 0.931682 0.948126
+1474 0.000114919 0.000145742 0.892621 0.931613 0.948209
+1475 0.000113776 0.000144273 0.892727 0.931545 0.948292
+1476 0.000116091 0.000147176 0.892913 0.931479 0.948375
+1477 0.000124944 0.000158514 0.892254 0.931414 0.948458
+1478 0.000137812 0.000174802 0.892427 0.931351 0.948541
+1479 0.000141931 0.00018 0.892537 0.931289 0.948625
+1480 0.00014338 0.000182059 0.89143 0.931228 0.948708
+1481 0.000159024 0.000201838 0.89179 0.931168 0.94879
+1482 0.00017842 0.000226572 0.891307 0.93111 0.948873
+1483 0.000189318 0.000240317 0.891636 0.931054 0.948956
+1484 0.000202388 0.000256923 0.891558 0.930998 0.949038
+1485 0.000225402 0.000286176 0.891414 0.930944 0.94912
+1486 0.000242987 0.000308383 0.891732 0.930891 0.949202
+1487 0.000271876 0.000345153 0.891432 0.93084 0.949284
+1488 0.000305781 0.000388105 0.891612 0.93079 0.949365
+1489 0.00034163 0.000433857 0.891068 0.930741 0.949446
+1490 0.000376218 0.000477573 0.891427 0.930694 0.949526
+1491 0.00041923 0.000532175 0.891392 0.930648 0.949606
+1492 0.000476692 0.000605811 0.89034 0.930603 0.949686
+1493 0.000543016 0.000689258 0.891396 0.930559 0.949765
+1494 0.000632657 0.000803217 0.891167 0.930517 0.949843
+1495 0.000722235 0.000917894 0.890211 0.930477 0.949921
+1496 0.00083504 0.0010609 0.890478 0.930437 0.949998
+1497 0.000980891 0.00124718 0.889743 0.930399 0.950075
+1498 0.00116038 0.00147419 0.890434 0.930362 0.950151
+1499 0.00137198 0.00174235 0.890737 0.930326 0.950226
+1500 0.00162886 0.00206763 0.89111 0.930292 0.9503
+1501 0.00195542 0.00248643 0.889566 0.930259 0.950347
+1502 0.00235931 0.00300147 0.889117 0.930227 0.950393
+1503 0.00288759 0.00366945 0.890093 0.930197 0.950438
+1504 0.00356297 0.00453175 0.889284 0.930168 0.950483
+1505 0.00443364 0.0056334 0.890179 0.93014 0.950527
+1506 0.00557431 0.00709066 0.88917 0.930113 0.95057
+1507 0.00706914 0.00899108 0.889256 0.930088 0.950613
+1508 0.00902959 0.011482 0.889436 0.930064 0.950655
+1509 0.0116515 0.0148251 0.888871 0.930041 0.950696
+1510 0.0152647 0.0194254 0.888721 0.930019 0.950737
+1511 0.0202314 0.0257511 0.888524 0.929999 0.950778
+1512 0.0269514 0.034324 0.888 0.92998 0.950818
+1513 0.0360307 0.0458339 0.889007 0.929962 0.950857
+1514 0.0488028 0.0621582 0.887883 0.929946 0.950896
+1515 0.0664098 0.0845864 0.887831 0.929931 0.950935
+1516 0.0903584 0.115072 0.887945 0.929917 0.950974
+1517 0.121673 0.15486 0.888442 0.929904 0.951012
+1518 0.16406 0.208677 0.88898 0.929893 0.95105
+1519 0.216612 0.275985 0.887459 0.929882 0.951087
+1520 0.280621 0.357428 0.887708 0.929873 0.951124
+1521 0.352135 0.448417 0.887877 0.929866 0.951161
+1522 0.430497 0.548909 0.88671 0.929859 0.951198
+1523 0.511821 0.652197 0.887231 0.929854 0.951235
+1524 0.587219 0.748312 0.887155 0.92985 0.951272
+1525 0.651441 0.830256 0.887014 0.929847 0.951308
+1526 0.700785 0.893187 0.886939 0.929845 0.951345
+1527 0.733658 0.935999 0.88604 0.929845 0.951381
+1528 0.754616 0.961496 0.887148 0.929846 0.951418
+1529 0.765391 0.975609 0.886763 0.929848 0.951454
+1530 0.771366 0.982634 0.887259 0.929851 0.951491
+1531 0.773498 0.985928 0.886702 0.929855 0.951527
+1532 0.773704 0.987624 0.885375 0.929861 0.951564
+1533 0.775868 0.988698 0.886845 0.929868 0.951601
+1534 0.776319 0.989699 0.886421 0.929876 0.951638
+1535 0.7774 0.990618 0.886789 0.929885 0.951675
+1536 0.777375 0.991327 0.886081 0.929896 0.951713
+1537 0.777207 0.991688 0.885521 0.929907 0.951751
+1538 0.777688 0.991759 0.885958 0.92992 0.951789
+1539 0.777066 0.991695 0.885257 0.929934 0.951827
+1540 0.777448 0.9912 0.886084 0.929949 0.951866
+1541 0.775572 0.990517 0.884503 0.929966 0.951905
+1542 0.775593 0.989885 0.88504 0.929983 0.951944
+1543 0.775613 0.989295 0.885535 0.930002 0.951984
+1544 0.774861 0.989115 0.88478 0.930022 0.952025
+1545 0.775547 0.98917 0.885456 0.930043 0.952066
+1546 0.775386 0.989527 0.884894 0.930065 0.952107
+1547 0.774579 0.990218 0.883295 0.930088 0.952149
+1548 0.77736 0.9912 0.885525 0.930113 0.952192
+1549 0.776683 0.992261 0.883743 0.930139 0.952235
+1550 0.7784 0.993451 0.884569 0.930166 0.952279
+1551 0.779675 0.994531 0.884951 0.930194 0.952363
+1552 0.780004 0.995527 0.884331 0.930223 0.952449
+1553 0.78105 0.996174 0.884834 0.930253 0.952534
+1554 0.781216 0.996529 0.884598 0.930284 0.95262
+1555 0.78195 0.996577 0.885274 0.930317 0.952707
+1556 0.78109 0.996049 0.884656 0.930351 0.952794
+1557 0.780006 0.995305 0.883975 0.930386 0.952881
+1558 0.779429 0.994119 0.88426 0.930422 0.952968
+1559 0.779296 0.992908 0.88507 0.930459 0.953056
+1560 0.776952 0.991483 0.88356 0.930497 0.953143
+1561 0.775822 0.990124 0.883367 0.930536 0.953231
+1562 0.774648 0.988676 0.883202 0.930577 0.953318
+1563 0.774038 0.987425 0.883505 0.930618 0.953406
+1564 0.772641 0.986403 0.882702 0.930661 0.953493
+1565 0.774036 0.985552 0.884937 0.930705 0.95358
+1566 0.7729 0.985149 0.883877 0.93075 0.953666
+1567 0.772385 0.98487 0.883415 0.930796 0.953753
+1568 0.773483 0.985084 0.884354 0.930843 0.953839
+1569 0.773353 0.985555 0.883658 0.930891 0.953924
+1570 0.774669 0.986176 0.884479 0.93094 0.954009
+1571 0.774705 0.987145 0.883526 0.930991 0.954093
+1572 0.775934 0.988181 0.883874 0.931042 0.954176
+1573 0.77672 0.98924 0.883695 0.931095 0.954259
+1574 0.777643 0.990543 0.883455 0.931149 0.95434
+1575 0.778683 0.99149 0.883666 0.931203 0.954421
+1576 0.779649 0.99246 0.88377 0.931259 0.954501
+1577 0.780245 0.993473 0.883417 0.931316 0.95458
+1578 0.781533 0.994239 0.884067 0.931374 0.954657
+1579 0.781738 0.994946 0.883543 0.931433 0.954734
+1580 0.781826 0.995289 0.883212 0.931493 0.954809
+1581 0.782136 0.995577 0.88318 0.931554 0.954883
+1582 0.781484 0.995691 0.882216 0.931617 0.954956
+1583 0.782654 0.995682 0.883419 0.93168 0.955027
+1584 0.782676 0.995548 0.883438 0.931744 0.955096
+1585 0.782393 0.995186 0.883315 0.93181 0.955164
+1586 0.782926 0.994828 0.88411 0.931876 0.955231
+1587 0.782079 0.994902 0.882964 0.931944 0.955295
+1588 0.782179 0.994547 0.883269 0.932012 0.955358
+1589 0.782099 0.994211 0.883355 0.932082 0.955419
+1590 0.782078 0.994027 0.883373 0.932153 0.955478
+1591 0.781239 0.993852 0.88246 0.932224 0.955536
+1592 0.781483 0.993769 0.882689 0.932297 0.955591
+1593 0.781931 0.993833 0.883019 0.932371 0.955644
+1594 0.782502 0.993858 0.883525 0.932445 0.955694
+1595 0.782937 0.993888 0.883873 0.932521 0.955743
+1596 0.782629 0.993964 0.883342 0.932598 0.955789
+1597 0.783103 0.994108 0.883634 0.932676 0.955833
+1598 0.783027 0.994137 0.883409 0.932755 0.955875
+1599 0.783 0.994132 0.883271 0.932835 0.955914
+1600 0.78323 0.994227 0.883336 0.932916 0.95595
+1601 0.78256 0.99418 0.882561 0.932997 0.955934
+1602 0.782482 0.994006 0.882565 0.93308 0.955916
+1603 0.783148 0.993958 0.883299 0.933164 0.955895
+1604 0.782419 0.993613 0.882725 0.933249 0.955871
+1605 0.781809 0.993332 0.882229 0.933335 0.955845
+1606 0.782311 0.993032 0.883006 0.933422 0.955817
+1607 0.782183 0.992766 0.883043 0.93351 0.955786
+1608 0.782052 0.992431 0.883139 0.933599 0.955754
+1609 0.781581 0.99219 0.882769 0.933688 0.955719
+1610 0.781176 0.991892 0.882526 0.933779 0.955681
+1611 0.780612 0.991762 0.881953 0.933871 0.955642
+1612 0.780367 0.991604 0.881767 0.933964 0.955601
+1613 0.780822 0.991523 0.882305 0.934058 0.955557
+1614 0.780737 0.991627 0.882069 0.934152 0.955512
+1615 0.781046 0.991767 0.882248 0.934248 0.955464
+1616 0.780457 0.991908 0.881411 0.934345 0.955415
+1617 0.780464 0.992135 0.881172 0.934442 0.955364
+1618 0.780737 0.992459 0.881147 0.934541 0.955312
+1619 0.780862 0.99289 0.880863 0.934641 0.955257
+1620 0.781096 0.99325 0.880764 0.934741 0.955201
+1621 0.78091 0.993641 0.880166 0.934842 0.955144
+1622 0.781695 0.994142 0.880564 0.934945 0.955085
+1623 0.782523 0.994758 0.88091 0.935048 0.955024
+1624 0.782104 0.995102 0.880093 0.935152 0.954962
+1625 0.782253 0.995359 0.879992 0.935258 0.954899
+1626 0.782672 0.995625 0.880188 0.935364 0.954834
+1627 0.782221 0.995791 0.879494 0.935471 0.954768
+1628 0.782626 0.99589 0.879822 0.935579 0.954701
+1629 0.782444 0.995854 0.87961 0.935688 0.954633
+1630 0.782082 0.995681 0.879317 0.935798 0.954563
+1631 0.781973 0.995505 0.87931 0.935909 0.954493
+1632 0.78152 0.995247 0.87899 0.93602 0.954421
+1633 0.781204 0.994928 0.878877 0.936133 0.954349
+1634 0.780994 0.994556 0.87893 0.936247 0.954275
+1635 0.78045 0.99418 0.878611 0.936361 0.954201
+1636 0.779584 0.993706 0.878016 0.936476 0.954126
+1637 0.779287 0.99337 0.877938 0.936593 0.954051
+1638 0.779349 0.992958 0.878333 0.93671 0.953974
+1639 0.778824 0.992587 0.87803 0.936828 0.953897
+1640 0.778509 0.992406 0.877795 0.936947 0.953819
+1641 0.777928 0.992282 0.877209 0.937067 0.953741
+1642 0.77768 0.992242 0.876924 0.937187 0.953663
+1643 0.77797 0.99226 0.877194 0.937309 0.953584
+1644 0.77756 0.992312 0.876644 0.937432 0.953504
+1645 0.777674 0.992527 0.876541 0.937555 0.953425
+1646 0.777349 0.992769 0.875918 0.937679 0.953345
+1647 0.777509 0.992977 0.875872 0.937805 0.953264
+1648 0.778341 0.993473 0.876327 0.937931 0.953184
+1649 0.778532 0.994068 0.875973 0.938057 0.953104
+1650 0.77875 0.994564 0.875737 0.938185 0.953023
+1651 0.779106 0.995011 0.875677 0.938314 0.952964
+1652 0.779805 0.995468 0.875993 0.938443 0.952906
+1653 0.77952 0.99597 0.875164 0.938574 0.952847
+1654 0.780142 0.996456 0.875366 0.938705 0.952789
+1655 0.780608 0.996873 0.875454 0.938837 0.95273
+1656 0.78011 0.997084 0.874639 0.93897 0.952672
+1657 0.780092 0.997178 0.874466 0.939104 0.952613
+1658 0.780571 0.997314 0.874812 0.939238 0.952555
+1659 0.781069 0.997261 0.875344 0.939374 0.952496
+1660 0.780749 0.997125 0.875032 0.93951 0.952438
+1661 0.780577 0.99684 0.875016 0.939647 0.952379
+1662 0.780441 0.996535 0.875056 0.939785 0.952321
+1663 0.77983 0.996227 0.874566 0.939924 0.952262
+1664 0.779561 0.995763 0.874594 0.940064 0.952204
+1665 0.779293 0.99528 0.874642 0.940204 0.952145
+1666 0.778277 0.99478 0.873862 0.940346 0.952087
+1667 0.778633 0.994313 0.874594 0.940488 0.952028
+1668 0.778127 0.993767 0.874428 0.94063 0.95197
+1669 0.777799 0.993352 0.874345 0.940774 0.951911
+1670 0.777958 0.992947 0.874799 0.940918 0.951853
+1671 0.777496 0.992535 0.874562 0.941063 0.951794
+1672 0.777447 0.992234 0.87469 0.941209 0.951736
+1673 0.776989 0.991959 0.874336 0.941355 0.951677
+1674 0.777205 0.99174 0.874689 0.941502 0.951619
+1675 0.776967 0.991661 0.874407 0.94165 0.95156
+1676 0.777256 0.99174 0.874579 0.941798 0.951501
+1677 0.777575 0.99192 0.874694 0.941947 0.951443
+1678 0.777388 0.992142 0.874204 0.942097 0.951384
+1679 0.778106 0.992467 0.874638 0.942247 0.951326
+1680 0.77938 0.992904 0.8756 0.942397 0.951267
+1681 0.779553 0.993388 0.875281 0.942548 0.951209
+1682 0.779726 0.99392 0.874919 0.9427 0.95115
+1683 0.779757 0.994427 0.87442 0.942852 0.951092
+1684 0.780549 0.994886 0.874818 0.943004 0.951033
+1685 0.781729 0.995476 0.875533 0.943157 0.950975
+1686 0.782091 0.996005 0.875385 0.94331 0.950916
+1687 0.781805 0.996485 0.874554 0.943464 0.950858
+1688 0.782595 0.996924 0.874964 0.943618 0.950799
+1689 0.782849 0.997341 0.874792 0.943773 0.950741
+1690 0.783519 0.997626 0.875202 0.943927 0.950682
+1691 0.783055 0.997835 0.874409 0.944083 0.950624
+1692 0.783398 0.998088 0.874481 0.944238 0.950565
+1693 0.783807 0.998085 0.874849 0.944394 0.950507
+1694 0.784092 0.99809 0.875072 0.94455 0.950448
+1695 0.784547 0.99824 0.875358 0.944706 0.95039
+1696 0.78443 0.998155 0.875211 0.944862 0.950331
+1697 0.78396 0.997992 0.874738 0.945019 0.950273
+1698 0.784175 0.997787 0.875067 0.945176 0.950214
+1699 0.784031 0.997524 0.875044 0.945333 0.950156
+1700 0.784885 0.997247 0.87615 0.94549 0.950097
+1701 0.784783 0.996985 0.876175 0.945647 0.950038
+1702 0.78413 0.996737 0.875571 0.945805 0.94998
+1703 0.783649 0.996468 0.875179 0.945962 0.949921
+1704 0.783723 0.996226 0.875382 0.94612 0.949863
+1705 0.784645 0.995953 0.876561 0.946277 0.949804
+1706 0.78347 0.995684 0.875392 0.946435 0.949746
+1707 0.783924 0.995495 0.875974 0.946593 0.949687
+1708 0.78362 0.99539 0.875635 0.94675 0.949629
+1709 0.783484 0.995294 0.875476 0.946908 0.94957
+1710 0.784176 0.995199 0.87624 0.947066 0.949512
+1711 0.784061 0.995166 0.876049 0.947223 0.949453
+1712 0.783598 0.995145 0.875459 0.94738 0.949395
+1713 0.783368 0.995216 0.875048 0.947538 0.949336
+1714 0.78391 0.995303 0.875486 0.947695 0.949277
+1715 0.784952 0.995433 0.876444 0.947852 0.949219
+1716 0.785438 0.995608 0.876742 0.948009 0.94916
+1717 0.78482 0.995787 0.875803 0.948166 0.949102
+1718 0.784194 0.995939 0.874881 0.948322 0.949043
+1719 0.784994 0.996106 0.875536 0.948478 0.948985
+1720 0.785792 0.996226 0.876231 0.948634 0.948926
+1721 0.785695 0.996296 0.875971 0.94879 0.948868
+1722 0.785568 0.996324 0.875715 0.948946 0.948809
+1723 0.784724 0.996412 0.874608 0.949101 0.948751
+1724 0.785605 0.996446 0.875471 0.949256 0.948692
+1725 0.786192 0.996421 0.876058 0.949411 0.948634
+1726 0.785639 0.996301 0.87546 0.949565 0.948575
+1727 0.785329 0.996127 0.875179 0.949719 0.948516
+1728 0.785345 0.99595 0.875265 0.949872 0.948458
+1729 0.785001 0.995746 0.874975 0.950025 0.948399
+1730 0.78512 0.995532 0.875208 0.950178 0.948341
+1731 0.785484 0.995286 0.875745 0.95033 0.948282
+1732 0.784315 0.995026 0.874584 0.950481 0.948224
+1733 0.784088 0.994751 0.874487 0.950633 0.948165
+1734 0.783944 0.994443 0.874513 0.950783 0.948107
+1735 0.78449 0.994123 0.875319 0.950934 0.948048
+1736 0.784243 0.993805 0.87524 0.951083 0.94799
+1737 0.782729 0.993548 0.873694 0.951232 0.947931
+1738 0.782444 0.993389 0.873432 0.951381 0.947873
+1739 0.782518 0.993102 0.873687 0.951528 0.947814
+1740 0.782921 0.992826 0.874298 0.951676 0.947755
+1741 0.782708 0.992586 0.874191 0.951822 0.947697
+1742 0.781887 0.992465 0.873301 0.951968 0.947638
+1743 0.782115 0.992333 0.873592 0.952113 0.94758
+1744 0.782191 0.992277 0.873648 0.952258 0.947521
+1745 0.782179 0.992171 0.873649 0.952402 0.947463
+1746 0.781438 0.992252 0.872674 0.952545 0.947404
+1747 0.781222 0.992258 0.87235 0.952687 0.947346
+1748 0.781511 0.992346 0.87252 0.952829 0.947287
+1749 0.781795 0.992499 0.872628 0.952969 0.947229
+1750 0.782367 0.992573 0.873127 0.953109 0.94717
+1751 0.782486 0.992646 0.873152 0.953248 0.94708
+1752 0.782347 0.992937 0.872697 0.953386 0.94699
+1753 0.782334 0.993254 0.872361 0.953524 0.9469
+1754 0.78349 0.993411 0.87347 0.95366 0.94681
+1755 0.783142 0.99352 0.872945 0.953796 0.94672
+1756 0.782602 0.99379 0.872066 0.95393 0.946631
+1757 0.782911 0.994059 0.872132 0.954064 0.946543
+1758 0.783305 0.994272 0.872345 0.954196 0.946455
+1759 0.783152 0.99432 0.872093 0.954328 0.946367
+1760 0.783254 0.994525 0.871987 0.954459 0.94628
+1761 0.782914 0.994616 0.87149 0.954588 0.946194
+1762 0.782685 0.994746 0.871082 0.954717 0.946109
+1763 0.782858 0.994952 0.871055 0.954844 0.946025
+1764 0.783726 0.995023 0.87192 0.954971 0.945942
+1765 0.783936 0.995089 0.872058 0.955096 0.945859
+1766 0.783709 0.995109 0.871749 0.95522 0.945778
+1767 0.783711 0.99516 0.871668 0.955343 0.945698
+1768 0.783854 0.99522 0.871735 0.955465 0.94562
+1769 0.784347 0.995158 0.872298 0.955586 0.945543
+1770 0.783709 0.995118 0.871586 0.955705 0.945467
+1771 0.784518 0.995121 0.872443 0.955823 0.945393
+1772 0.783213 0.994986 0.871071 0.95594 0.94532
+1773 0.782885 0.99496 0.870689 0.956056 0.945249
+1774 0.783729 0.994995 0.871556 0.95617 0.94518
+1775 0.784404 0.995125 0.872152 0.956283 0.945112
+1776 0.783979 0.995096 0.871663 0.956395 0.945047
+1777 0.782883 0.994904 0.870571 0.956506 0.944983
+1778 0.7843 0.994973 0.872043 0.956615 0.944922
+1779 0.784058 0.994961 0.871741 0.956722 0.944863
+1780 0.783711 0.995026 0.871254 0.956829 0.944805
+1781 0.783621 0.995028 0.871107 0.956934 0.944751
+1782 0.783893 0.995098 0.871303 0.957037 0.944698
+1783 0.784846 0.995067 0.872343 0.957139 0.944648
+1784 0.784943 0.995121 0.872355 0.95724 0.944601
+1785 0.785023 0.995117 0.872398 0.957339 0.944556
+1786 0.784939 0.995161 0.872218 0.957436 0.944513
+1787 0.784102 0.99521 0.871193 0.957532 0.944474
+1788 0.78395 0.995057 0.871106 0.957627 0.944437
+1789 0.784844 0.995184 0.871936 0.957719 0.944403
+1790 0.784615 0.995211 0.871603 0.957811 0.944372
+1791 0.78523 0.995425 0.872043 0.9579 0.944344
+1792 0.784244 0.995107 0.871169 0.957988 0.94432
+1793 0.78518 0.995109 0.872148 0.958075 0.944298
+1794 0.78436 0.995065 0.871216 0.958159 0.94428
+1795 0.785156 0.995104 0.872004 0.958242 0.944265
+1796 0.785355 0.995148 0.872124 0.958323 0.944253
+1797 0.784839 0.99512 0.87151 0.958403 0.944245
+1798 0.785073 0.994912 0.871885 0.958481 0.944241
+1799 0.784786 0.994613 0.87176 0.958557 0.94424
+1800 0.784362 0.99308 0.872564 0.958631 0.944243
+1801 0.784084 0.993079 0.8721 0.958704 0.944339
+1802 0.783829 0.992772 0.871931 0.958774 0.944438
+1803 0.783869 0.992643 0.871931 0.958843 0.944541
+1804 0.783765 0.992489 0.871792 0.95891 0.944647
+1805 0.784564 0.992605 0.872419 0.958975 0.944756
+1806 0.78436 0.992718 0.871931 0.959038 0.944869
+1807 0.784611 0.992881 0.871905 0.959099 0.944984
+1808 0.785576 0.992946 0.872758 0.959158 0.945102
+1809 0.784746 0.992735 0.871856 0.959216 0.945224
+1810 0.78549 0.992959 0.872322 0.959271 0.945347
+1811 0.785304 0.993175 0.871761 0.959324 0.945473
+1812 0.785136 0.993129 0.871449 0.959376 0.945602
+1813 0.786133 0.993376 0.872174 0.959425 0.945732
+1814 0.786126 0.993336 0.872037 0.959472 0.945864
+1815 0.786775 0.993148 0.872757 0.959517 0.945999
+1816 0.787118 0.993638 0.872542 0.95956 0.946135
+1817 0.787223 0.993777 0.872372 0.959601 0.946273
+1818 0.787375 0.993671 0.87247 0.95964 0.946412
+1819 0.787205 0.993559 0.872218 0.959676 0.946552
+1820 0.787899 0.993609 0.87278 0.959711 0.946694
+1821 0.787419 0.993843 0.871882 0.959743 0.946837
+1822 0.787028 0.994035 0.871122 0.959773 0.946981
+1823 0.788158 0.994448 0.871852 0.959801 0.947125
+1824 0.788303 0.994454 0.87185 0.959827 0.94727
+1825 0.788003 0.993955 0.8718 0.95985 0.947416
+1826 0.788258 0.994243 0.871676 0.959871 0.947562
+1827 0.789794 0.99506 0.872507 0.959889 0.947708
+1828 0.790127 0.995339 0.87248 0.959906 0.947855
+1829 0.789555 0.995084 0.871924 0.95992 0.948001
+1830 0.788853 0.994859 0.871202 0.959931 0.948147
+1831 0.788861 0.994714 0.871195 0.959941 0.948293
+1832 0.789785 0.994781 0.872017 0.959948 0.948438
+1833 0.78966 0.994892 0.871644 0.959952 0.948583
+1834 0.789539 0.994394 0.871813 0.959954 0.948727
+1835 0.790136 0.994272 0.872448 0.959954 0.94887
+1836 0.790082 0.994481 0.872077 0.959951 0.949012
+1837 0.789426 0.994121 0.871544 0.959946 0.949153
+1838 0.788893 0.99357 0.871317 0.959938 0.949293
+1839 0.790082 0.993785 0.872323 0.959928 0.949432
+1840 0.790606 0.993866 0.872717 0.959915 0.949568
+1841 0.789082 0.992694 0.871952 0.9599 0.949704
+1842 0.788545 0.993101 0.870895 0.959883 0.949837
+1843 0.78949 0.993685 0.871324 0.959863 0.949968
+1844 0.789241 0.993669 0.870966 0.95984 0.950097
+1845 0.789959 0.993934 0.871432 0.959815 0.950224
+1846 0.789683 0.99437 0.870656 0.959788 0.950349
+1847 0.78983 0.994015 0.871044 0.959758 0.950471
+1848 0.79015 0.993524 0.871747 0.959726 0.950591
+1849 0.790164 0.993491 0.871716 0.959691 0.950707
+1850 0.790147 0.993582 0.871547 0.959654 0.950821
+1851 0.790461 0.994 0.871536 0.959614 0.95085
+1852 0.790329 0.994322 0.871123 0.959572 0.950876
+1853 0.791048 0.994574 0.871714 0.959527 0.950899
+1854 0.79041 0.994482 0.871116 0.95948 0.950919
+1855 0.790467 0.994617 0.87109 0.95943 0.950937
+1856 0.790872 0.995296 0.870976 0.959378 0.950951
+1857 0.79095 0.995613 0.870823 0.959323 0.950963
+1858 0.791838 0.996101 0.871417 0.959266 0.950972
+1859 0.791957 0.996145 0.871558 0.959206 0.950979
+1860 0.791403 0.996233 0.870925 0.959143 0.950983
+1861 0.791886 0.996063 0.871662 0.959078 0.950985
+1862 0.792465 0.996191 0.872249 0.959011 0.950984
+1863 0.792335 0.996526 0.87188 0.958941 0.950981
+1864 0.791951 0.996616 0.87145 0.958868 0.950975
+1865 0.791845 0.996918 0.871144 0.958793 0.950968
+1866 0.792469 0.997528 0.871378 0.958715 0.950958
+1867 0.792439 0.997232 0.871687 0.958635 0.950946
+1868 0.792756 0.997272 0.872089 0.958552 0.950932
+1869 0.792456 0.99662 0.872421 0.958467 0.950916
+1870 0.79158 0.996415 0.871734 0.958378 0.950898
+1871 0.792136 0.99712 0.871829 0.958288 0.950878
+1872 0.791753 0.996261 0.872264 0.958195 0.950856
+1873 0.792017 0.996265 0.87266 0.958099 0.950833
+1874 0.791057 0.99598 0.871964 0.958 0.950808
+1875 0.789857 0.995351 0.871309 0.957899 0.950781
+1876 0.789798 0.99501 0.871661 0.957796 0.950753
+1877 0.789741 0.994735 0.871965 0.957689 0.950723
+1878 0.789033 0.994337 0.871659 0.957581 0.950691
+1879 0.788264 0.994095 0.871153 0.957469 0.950659
+1880 0.787586 0.993499 0.87106 0.957355 0.950625
+1881 0.78801 0.993536 0.871636 0.957238 0.950589
+1882 0.788038 0.993598 0.871755 0.957119 0.950553
+1883 0.787704 0.993276 0.871813 0.956997 0.950515
+1884 0.787138 0.993232 0.871375 0.956872 0.950476
+1885 0.786423 0.992904 0.871023 0.956745 0.950436
+1886 0.786751 0.993208 0.871276 0.956615 0.950395
+1887 0.786775 0.993991 0.870776 0.956482 0.950353
+1888 0.78603 0.993534 0.870515 0.956346 0.95031
+1889 0.78557 0.993493 0.870206 0.956208 0.950267
+1890 0.785558 0.993772 0.870117 0.956068 0.950222
+1891 0.785282 0.993911 0.869862 0.955924 0.950177
+1892 0.785147 0.993962 0.869842 0.955778 0.950132
+1893 0.785373 0.994194 0.870067 0.95563 0.950085
+1894 0.78541 0.994383 0.870123 0.955478 0.950039
+1895 0.785458 0.995018 0.869805 0.955324 0.949991
+1896 0.785554 0.995298 0.869852 0.955167 0.949944
+1897 0.784749 0.994828 0.86956 0.955008 0.949896
+1898 0.785456 0.995792 0.869694 0.954845 0.949847
+1899 0.785399 0.995897 0.869734 0.95468 0.949799
+1900 0.78537 0.996388 0.86947 0.954513 0.94975
+1901 0.785298 0.996716 0.86928 0.954342 0.949728
+1902 0.784493 0.996038 0.869159 0.954169 0.949705
+1903 0.784131 0.996663 0.868393 0.953993 0.949683
+1904 0.784657 0.996727 0.869104 0.953814 0.94966
+1905 0.784848 0.996393 0.869792 0.953633 0.949638
+1906 0.783752 0.995842 0.869247 0.953449 0.949615
+1907 0.783136 0.995792 0.868799 0.953262 0.949592
+1908 0.782946 0.995784 0.868789 0.953072 0.949569
+1909 0.782407 0.995216 0.868883 0.95288 0.949546
+1910 0.782332 0.995027 0.869165 0.952684 0.949522
+1911 0.781474 0.99477 0.868638 0.952486 0.949499
+1912 0.780487 0.994053 0.868371 0.952286 0.949475
+1913 0.779686 0.99335 0.868302 0.952082 0.949451
+1914 0.78005 0.9932 0.869048 0.951876 0.949427
+1915 0.779746 0.992603 0.869445 0.951667 0.949403
+1916 0.77902 0.9922 0.869204 0.951455 0.949378
+1917 0.778518 0.99212 0.868934 0.95124 0.949353
+1918 0.777723 0.991798 0.868549 0.951022 0.949329
+1919 0.777697 0.991051 0.869399 0.950802 0.949304
+1920 0.776706 0.990859 0.868687 0.950579 0.949278
+1921 0.776875 0.990738 0.869211 0.950353 0.949253
+1922 0.776562 0.990677 0.869148 0.950124 0.949227
+1923 0.775662 0.990253 0.868748 0.949892 0.949201
+1924 0.775413 0.990701 0.868314 0.949658 0.949175
+1925 0.775848 0.990859 0.868904 0.949421 0.949149
+1926 0.775459 0.991036 0.868558 0.94918 0.949122
+1927 0.77614 0.991131 0.869485 0.948937 0.949095
+1928 0.775399 0.991129 0.868905 0.948692 0.949068
+1929 0.775472 0.991296 0.869094 0.948443 0.949041
+1930 0.775418 0.991543 0.869073 0.948191 0.949013
+1931 0.775149 0.991751 0.868848 0.947937 0.948985
+1932 0.775039 0.992372 0.868443 0.947679 0.948957
+1933 0.774799 0.992755 0.868103 0.947419 0.948929
+1934 0.775624 0.992656 0.869382 0.947156 0.9489
+1935 0.774676 0.992999 0.86829 0.94689 0.948871
+1936 0.775086 0.993721 0.868391 0.946621 0.948842
+1937 0.775903 0.994057 0.86929 0.946349 0.948812
+1938 0.775005 0.993795 0.868791 0.946075 0.948783
+1939 0.775384 0.993928 0.869382 0.945797 0.948753
+1940 0.774859 0.994003 0.869014 0.945517 0.948722
+1941 0.774337 0.993602 0.869068 0.945233 0.948691
+1942 0.773853 0.993546 0.868865 0.944947 0.94866
+1943 0.77327 0.993933 0.868166 0.944658 0.948629
+1944 0.773948 0.994051 0.869123 0.944366 0.948597
+1945 0.77305 0.993825 0.868613 0.94407 0.948565
+1946 0.772543 0.993696 0.86846 0.943772 0.948533
+1947 0.772398 0.993045 0.869173 0.943471 0.9485
+1948 0.77081 0.992511 0.868163 0.943167 0.948467
+1949 0.77159 0.992267 0.869567 0.942861 0.948434
+1950 0.770118 0.991834 0.868604 0.942551 0.9484
+1951 0.769618 0.991355 0.8688 0.942238 0.948343
+1952 0.76913 0.991134 0.868788 0.941922 0.948285
+1953 0.768522 0.990557 0.868954 0.941603 0.948227
+1954 0.76855 0.990226 0.869626 0.941282 0.948169
+1955 0.767581 0.990181 0.868922 0.940957 0.948111
+1956 0.76739 0.989732 0.869456 0.940629 0.948053
+1957 0.766557 0.989519 0.869057 0.940299 0.947995
+1958 0.765805 0.989595 0.8685 0.939965 0.947936
+1959 0.765842 0.989622 0.868883 0.939628 0.947878
+1960 0.766011 0.989771 0.869311 0.939289 0.94782
+1961 0.76534 0.989955 0.868759 0.938946 0.947762
+1962 0.766141 0.989639 0.870319 0.9386 0.947704
+1963 0.764585 0.990113 0.868511 0.938252 0.947646
+1964 0.765535 0.990544 0.86959 0.9379 0.947589
+1965 0.765135 0.990715 0.869367 0.937545 0.947532
+1966 0.766176 0.99127 0.870446 0.937187 0.947476
+1967 0.765197 0.991618 0.869415 0.936827 0.94742
+1968 0.764724 0.991475 0.869392 0.936463 0.947364
+1969 0.765172 0.991886 0.869932 0.936096 0.947309
+1970 0.765396 0.992531 0.870015 0.935726 0.947254
+1971 0.766029 0.992901 0.870806 0.935353 0.947201
+1972 0.764993 0.993228 0.869741 0.934977 0.947147
+1973 0.765353 0.993457 0.870351 0.934598 0.947095
+1974 0.765633 0.993513 0.871024 0.934215 0.947044
+1975 0.764941 0.993751 0.870434 0.93383 0.946993
+1976 0.763977 0.993876 0.869635 0.933442 0.946943
+1977 0.763936 0.993655 0.870192 0.93305 0.946894
+1978 0.763678 0.993892 0.870102 0.932656 0.946846
+1979 0.764162 0.993806 0.871143 0.932258 0.9468
+1980 0.764382 0.993711 0.871894 0.931857 0.946754
+1981 0.763307 0.993873 0.870944 0.931454 0.946709
+1982 0.762961 0.993722 0.871102 0.931047 0.946666
+1983 0.762256 0.993623 0.870806 0.930637 0.946624
+1984 0.762888 0.993558 0.87201 0.930224 0.946583
+1985 0.7612 0.99347 0.870584 0.929807 0.946544
+1986 0.76136 0.993433 0.871226 0.929388 0.946506
+1987 0.761157 0.993538 0.871333 0.928965 0.946469
+1988 0.760521 0.993438 0.871123 0.92854 0.946434
+1989 0.76097 0.993265 0.872222 0.928111 0.946401
+1990 0.76026 0.993447 0.871684 0.927679 0.946369
+1991 0.760623 0.993436 0.872547 0.927244 0.946339
+1992 0.759622 0.993161 0.872078 0.926806 0.94631
+1993 0.759093 0.993005 0.872048 0.926364 0.946284
+1994 0.759408 0.992949 0.872901 0.92592 0.946259
+1995 0.758108 0.992692 0.872075 0.925472 0.946236
+1996 0.757422 0.99239 0.871996 0.925021 0.946214
+1997 0.756707 0.99209 0.871882 0.924567 0.946195
+1998 0.756262 0.991797 0.872073 0.92411 0.946178
+1999 0.755633 0.991196 0.872325 0.923649 0.946163
+2000 0.754983 0.99041 0.872716 0.923186 0.94615
+2001 0.754625 0.989839 0.873184 0.922719 0.946218
+2002 0.752571 0.988966 0.871955 0.922249 0.946289
+2003 0.752001 0.988041 0.872492 0.921776 0.946361
+2004 0.751835 0.987362 0.873283 0.921299 0.946435
+2005 0.749975 0.986211 0.872523 0.92082 0.94651
+2006 0.748331 0.984506 0.872505 0.920337 0.946587
+2007 0.746257 0.982338 0.872395 0.919851 0.946666
+2008 0.743318 0.979005 0.872309 0.919361 0.946745
+2009 0.740312 0.974983 0.872758 0.918869 0.946826
+2010 0.735641 0.968383 0.873559 0.918373 0.946907
+2011 0.726973 0.959095 0.872024 0.917874 0.946989
+2012 0.71708 0.945825 0.872626 0.917373 0.947072
+2013 0.701749 0.926733 0.871964 0.916868 0.947156
+2014 0.683284 0.901488 0.873204 0.91636 0.947239
+2015 0.658185 0.869118 0.872866 0.915849 0.947323
+2016 0.626732 0.82845 0.872367 0.915335 0.947407
+2017 0.58954 0.779885 0.872113 0.914818 0.947491
+2018 0.54755 0.724036 0.872896 0.914298 0.947575
+2019 0.500416 0.661607 0.873454 0.913775 0.947659
+2020 0.44845 0.593232 0.873393 0.91325 0.947741
+2021 0.394375 0.522011 0.873301 0.912721 0.947824
+2022 0.341116 0.452128 0.872551 0.91219 0.947905
+2023 0.291085 0.386165 0.872196 0.911656 0.947986
+2024 0.245152 0.324724 0.873991 0.911119 0.948066
+2025 0.202982 0.269015 0.873955 0.910579 0.948144
+2026 0.166649 0.221071 0.873579 0.910037 0.948221
+2027 0.136019 0.180604 0.873233 0.909492 0.948297
+2028 0.110772 0.147218 0.872881 0.908944 0.948371
+2029 0.0897548 0.119271 0.873449 0.908394 0.948443
+2030 0.0725337 0.0964968 0.872918 0.907841 0.948514
+2031 0.0591463 0.0786728 0.873542 0.907286 0.948582
+2032 0.0482512 0.0642435 0.873166 0.906728 0.948648
+2033 0.0393561 0.0524098 0.873487 0.906168 0.948712
+2034 0.0320839 0.0427544 0.873383 0.905605 0.948774
+2035 0.0261867 0.034888 0.874074 0.905039 0.948833
+2036 0.0215135 0.0287293 0.872521 0.904471 0.948889
+2037 0.0178506 0.0238245 0.873508 0.903901 0.948943
+2038 0.0146506 0.0195708 0.873249 0.903329 0.948993
+2039 0.0121181 0.0161895 0.873666 0.902754 0.94904
+2040 0.0102393 0.013697 0.873071 0.902177 0.949084
+2041 0.00851747 0.0113981 0.873257 0.901597 0.949125
+2042 0.00722383 0.00967496 0.873064 0.901015 0.949162
+2043 0.00608612 0.00816265 0.872376 0.900431 0.949195
+2044 0.00510095 0.00683753 0.873403 0.899845 0.949225
+2045 0.00437793 0.00587716 0.872643 0.899257 0.94925
+2046 0.00369812 0.00496707 0.872753 0.898666 0.949272
+2047 0.00309185 0.00415191 0.873493 0.898074 0.949289
+2048 0.00268526 0.00360795 0.87357 0.897479 0.949302
+2049 0.00229602 0.00308842 0.873163 0.896882 0.94931
+2050 0.00199001 0.00268165 0.872161 0.896284 0.949314
+2051 0.00161642 0.00217884 0.872606 0.895683 0.949199
+2052 0.00143054 0.00192826 0.87331 0.89508 0.94908
+2053 0.00141524 0.00190949 0.873168 0.894475 0.948956
+2054 0.0011792 0.0015932 0.872683 0.893869 0.948828
+2055 0.000915568 0.00123845 0.872384 0.89326 0.948695
+2056 0.000820442 0.00111061 0.87245 0.89265 0.948559
+2057 0.000717119 0.000971382 0.872607 0.892037 0.948418
+2058 0.00069946 0.000948264 0.872602 0.891423 0.948274
+2059 0.000491356 0.000666726 0.872568 0.890808 0.948125
+2060 0.000303227 0.000411782 0.872614 0.89019 0.947973
+2061 0.000469009 0.000637962 0.871928 0.889571 0.947818
+2062 0.000420228 0.00057212 0.871904 0.88895 0.947659
+2063 0.000363711 0.000495182 0.872651 0.888327 0.947497
+2064 0.000454089 0.000618886 0.872489 0.887703 0.947332
+2065 0.000417373 0.000569723 0.871915 0.887077 0.947165
+2066 0.000257031 0.000350951 0.872445 0.88645 0.946994
+2067 0.000150792 0.000206078 0.872435 0.885821 0.94682
+2068 0.000155075 0.000212318 0.871627 0.88519 0.946645
+2069 0.000264057 0.000361759 0.871859 0.884558 0.946466
+2070 0.000290414 0.000398038 0.872281 0.883924 0.946286
+2071 4.96491e-05 6.8143e-05 0.871865 0.883289 0.946103
+2072 4.46202e-05 6.13198e-05 0.871539 0.882653 0.945918
+2073 0.000171089 0.000235398 0.871316 0.882015 0.945732
+2074 0.000115189 0.000158467 0.872231 0.881376 0.945543
+2075 3.55206e-05 4.89276e-05 0.871939 0.880736 0.945353
+2076 0.000246658 0.000340149 0.871747 0.880094 0.945162
+2077 -6.40886e-05 -8.85078e-05 0.871305 0.879451 0.944969
+2078 2.9269e-05 4.04722e-05 0.871022 0.878807 0.944775
+2079 0.000241174 0.000333377 0.87213 0.878161 0.94458
+2080 5.7033e-05 7.89154e-05 0.87209 0.877515 0.944384
+2081 -5.88928e-05 -8.16143e-05 0.871574 0.876867 0.944187
+2082 3.93991e-05 5.46886e-05 0.870984 0.876218 0.94399
+2083 8.36753e-05 0.000116154 0.87176 0.875568 0.943792
+2084 2.52797e-05 3.5097e-05 0.872468 0.874917 0.943593
+2085 8.08937e-05 0.00011247 0.872052 0.874264 0.943394
+2086 0.000114519 0.000159472 0.871509 0.873611 0.943196
+2087 0.000101491 0.000141381 0.872032 0.872957 0.942997
+2088 0.000196291 0.000273665 0.872158 0.872302 0.942798
+2089 0.000130042 0.000181433 0.872366 0.871646 0.942599
+2090 6.6507e-05 9.28463e-05 0.872678 0.870989 0.942401
+2091 -2.46928e-05 -3.45188e-05 0.87234 0.870331 0.942204
+2092 -0.000117344 -0.00016425 0.872057 0.869672 0.942007
+2093 -6.723e-05 -9.4116e-05 0.87279 0.869013 0.941811
+2094 2.22424e-05 3.11525e-05 0.873212 0.868352 0.941615
+2095 0.000115568 0.00016205 0.873048 0.867691 0.941421
+2096 7.04467e-05 9.89243e-05 0.872628 0.867029 0.941228
+2097 -0.000125533 -0.00017649 0.872428 0.866367 0.941037
+2098 -3.65619e-05 -5.144e-05 0.87265 0.865703 0.940846
+2099 4.11527e-05 5.78934e-05 0.873579 0.865039 0.940658
+2100 -3.40488e-05 -4.79498e-05 0.873508 0.864375 0.940471
+2101 -0.000119995 -0.000169152 0.873417 0.86371 0.940362
+2102 5.84785e-05 8.25006e-05 0.873495 0.863044 0.940256
+2103 -1.61571e-05 -2.2802e-05 0.873965 0.862378 0.940151
+2104 0.000130578 0.000184477 0.873806 0.861711 0.940047
+2105 0.000264688 0.000374352 0.873628 0.861044 0.939946
+2106 0.000133714 0.00018937 0.873211 0.860376 0.939846
+2107 -0.000111219 -0.000157759 0.872615 0.859708 0.939747
+2108 1.21877e-05 1.72972e-05 0.872907 0.859039 0.93965
+2109 2.29811e-05 3.26368e-05 0.873107 0.85837 0.939554
+2110 3.7852e-05 5.38024e-05 0.873118 0.857701 0.93946
+2111 0.00020528 0.000292391 0.872067 0.857032 0.939368
+2112 0.000161287 0.000230183 0.871114 0.856362 0.939276
+2113 9.59891e-05 0.00013716 0.870814 0.855692 0.939186
+2114 0.000110717 0.000158453 0.870217 0.855021 0.939097
+2115 0.000235205 0.000337402 0.868945 0.854351 0.939009
+2116 0.000133026 0.000191288 0.867612 0.85368 0.938922
+2117 7.88886e-06 1.13596e-05 0.867177 0.853009 0.938836
+2118 0.000230194 0.000332041 0.866444 0.852338 0.938751
+2119 0.000262786 0.000380428 0.864068 0.851667 0.938668
+2120 2.49745e-05 3.62734e-05 0.862002 0.850996 0.938585
+2121 -2.63215e-05 -3.83323e-05 0.860449 0.850324 0.938503
+2122 -2.03839e-05 -2.97933e-05 0.858083 0.849653 0.938421
+2123 4.39725e-06 6.45049e-06 0.855716 0.848982 0.938341
+2124 2.30363e-05 3.39643e-05 0.852138 0.848312 0.938261
+2125 0.000110835 0.00016406 0.849518 0.847643 0.938182
+2126 0.000148201 0.000220403 0.846274 0.846976 0.938103
+2127 -2.92328e-05 -4.37376e-05 0.841921 0.84631 0.938025
+2128 3.16327e-05 4.76046e-05 0.837761 0.845646 0.937948
+2129 2.56206e-05 3.87666e-05 0.833949 0.844985 0.93787
+2130 3.62312e-05 5.51505e-05 0.829689 0.844327 0.937794
+2131 3.1871e-05 4.88725e-05 0.824301 0.843672 0.937717
+2132 0.000104125 0.000160932 0.818534 0.84302 0.937641
+2133 6.69694e-05 0.0001044 0.812213 0.842373 0.937565
+2134 3.44666e-05 5.41951e-05 0.805933 0.841729 0.93749
+2135 9.83981e-05 0.000156126 0.79935 0.841091 0.937414
+2136 1.38216e-06 2.21591e-06 0.79176 0.840457 0.937339
+2137 -6.53993e-05 -0.00010604 0.783522 0.839829 0.937263
+2138 -0.000124372 -0.000203937 0.775409 0.839207 0.937188
+2139 0.000183219 0.000304228 0.766354 0.83859 0.937112
+2140 0.000122586 0.000206046 0.757678 0.83798 0.937037
+2141 -5.39949e-05 -9.19952e-05 0.748075 0.837377 0.936961
+2142 -9.22186e-05 -0.000159498 0.737505 0.836781 0.936885
+2143 -2.5946e-05 -4.55186e-05 0.727652 0.836193 0.936809
+2144 7.47643e-06 1.33144e-05 0.717384 0.835613 0.936733
+2145 -6.39296e-05 -0.000115796 0.705864 0.83504 0.936656
+
diff --git a/filt_func/euclid/J.dat b/filt_func/euclid/J.dat
new file mode 100644
index 00000000..63dc1afb
--- /dev/null
+++ b/filt_func/euclid/J.dat
@@ -0,0 +1,693 @@
+# WAVE T_TOTAL T_FILTER T_TELESCOPE T_NI-OA T_QE
+1005 3.29775e-05 4.17931e-05 0.879852 0.955973 0.938118
+1006 2.35482e-05 2.98538e-05 0.879685 0.955606 0.938323
+1007 2.60136e-06 3.29642e-06 0.88025 0.955227 0.938523
+1008 1.00941e-05 1.2782e-05 0.881061 0.954836 0.938717
+1009 5.41753e-06 6.85796e-06 0.881534 0.954434 0.938905
+1010 9.53938e-07 1.20811e-06 0.88135 0.954022 0.939089
+1011 1.96221e-05 2.48563e-05 0.881362 0.953599 0.939267
+1012 1.00275e-05 1.27003e-05 0.881742 0.953167 0.93944
+1013 -7.38718e-07 -9.35368e-07 0.88223 0.952725 0.939608
+1014 -1.79183e-05 -2.2681e-05 0.882773 0.952275 0.939772
+1015 1.06263e-05 1.34587e-05 0.882533 0.951818 0.93993
+1016 -3.91209e-06 -4.95848e-06 0.88217 0.951353 0.940084
+1017 -7.12243e-08 -9.03369e-08 0.881863 0.950881 0.940234
+1018 1.36036e-06 1.72511e-06 0.882323 0.950402 0.940378
+1019 2.01169e-05 2.5539e-05 0.881662 0.949919 0.940519
+1020 3.77391e-06 4.79666e-06 0.880967 0.949429 0.940655
+1021 2.05888e-06 2.61894e-06 0.880596 0.948936 0.940787
+1022 9.87941e-07 1.25732e-06 0.880494 0.948438 0.940914
+1023 -6.94845e-07 -8.84369e-07 0.880781 0.947937 0.941038
+1024 1.14562e-05 1.4599e-05 0.880051 0.947432 0.941158
+1025 5.82978e-06 7.43308e-06 0.879937 0.946926 0.941274
+1026 2.32928e-06 2.97359e-06 0.879204 0.946417 0.941386
+1027 9.82321e-06 1.25471e-05 0.879112 0.945907 0.941494
+1028 1.38213e-05 1.76559e-05 0.879387 0.945396 0.941599
+1029 3.4795e-05 4.4428e-05 0.880175 0.944885 0.9417
+1030 6.00186e-05 7.664e-05 0.880497 0.944375 0.941798
+1031 6.21183e-05 7.93563e-05 0.880494 0.943865 0.941893
+1032 8.27749e-05 0.000105769 0.880685 0.943357 0.941984
+1033 9.64233e-05 0.000123168 0.881367 0.94285 0.942073
+1034 9.70867e-05 0.00012391 0.882509 0.942346 0.942158
+1035 6.53801e-05 8.34334e-05 0.883007 0.941846 0.94224
+1036 4.54622e-05 5.80043e-05 0.883572 0.941348 0.94232
+1037 5.53302e-05 7.05984e-05 0.883917 0.940855 0.942396
+1038 7.08767e-05 9.04099e-05 0.884549 0.940367 0.942471
+1039 3.97891e-05 5.07193e-05 0.885556 0.939884 0.942542
+1040 1.31515e-05 1.67621e-05 0.886058 0.939407 0.942611
+1041 8.45304e-06 1.07776e-05 0.886118 0.938936 0.942678
+1042 2.62515e-06 3.34777e-06 0.886307 0.938471 0.942742
+1043 4.23251e-06 5.39556e-06 0.887016 0.938012 0.942804
+1044 3.36825e-06 4.29118e-06 0.887933 0.937559 0.942864
+1045 -7.40027e-06 -9.42719e-06 0.888378 0.937111 0.942923
+1046 2.56888e-06 3.273e-06 0.888606 0.936669 0.942979
+1047 4.33548e-06 5.52427e-06 0.888898 0.936232 0.943033
+1048 -1.6019e-06 -2.04271e-06 0.888573 0.9358 0.943086
+1049 9.41993e-07 1.20114e-06 0.888985 0.935373 0.943137
+1050 1.73777e-05 2.21889e-05 0.888116 0.934951 0.943186
+1051 1.30811e-06 1.671e-06 0.888056 0.934533 0.94326
+1052 -6.71956e-06 -8.59133e-06 0.887592 0.93412 0.943332
+1053 5.13262e-06 6.56177e-06 0.88799 0.93371 0.943404
+1054 1.78679e-05 2.28547e-05 0.887863 0.933304 0.943473
+1055 -1.26526e-05 -1.62073e-05 0.886892 0.932903 0.943542
+1056 -8.7236e-06 -1.11742e-05 0.887231 0.932504 0.943609
+1057 1.06036e-05 1.35918e-05 0.886926 0.932109 0.943675
+1058 4.77757e-06 6.12853e-06 0.886574 0.931717 0.943739
+1059 1.38815e-05 1.78095e-05 0.886748 0.931328 0.943803
+1060 1.11331e-05 1.429e-05 0.886649 0.930942 0.943865
+1061 2.66497e-06 3.42331e-06 0.886266 0.930558 0.943926
+1062 1.92374e-05 2.4735e-05 0.885733 0.930177 0.943986
+1063 3.95896e-05 5.09047e-05 0.886016 0.929798 0.944045
+1064 4.36207e-05 5.6095e-05 0.88621 0.929421 0.944102
+1065 4.22531e-05 5.43488e-05 0.886312 0.929045 0.944159
+1066 4.98399e-05 6.41605e-05 0.885883 0.928672 0.944215
+1067 4.26406e-05 5.48791e-05 0.886405 0.9283 0.94427
+1068 5.54419e-05 7.1338e-05 0.886915 0.927929 0.944323
+1069 6.09232e-05 7.839e-05 0.887229 0.927559 0.944376
+1070 3.15881e-05 4.06318e-05 0.88781 0.92719 0.944428
+1071 1.97839e-05 2.54599e-05 0.887701 0.926821 0.94448
+1072 3.64971e-05 4.69646e-05 0.888074 0.926453 0.94453
+1073 3.74423e-05 4.81756e-05 0.888475 0.926086 0.944579
+1074 1.57712e-05 2.02793e-05 0.88935 0.925718 0.944628
+1075 3.94144e-06 5.07043e-06 0.889244 0.925351 0.944676
+1076 2.39331e-05 3.07711e-05 0.890056 0.924983 0.944724
+1077 1.24412e-05 1.60192e-05 0.889068 0.924615 0.94477
+1078 -6.43334e-06 -8.28021e-06 0.889734 0.924246 0.944816
+1079 6.28231e-06 8.08334e-06 0.890321 0.923876 0.944862
+1080 8.45731e-06 1.08879e-05 0.890143 0.923505 0.944907
+1081 6.50083e-06 8.37942e-06 0.889367 0.923133 0.944951
+1082 2.01264e-05 2.5927e-05 0.890218 0.92276 0.944995
+1083 3.07561e-05 3.96138e-05 0.890682 0.922385 0.945038
+1084 1.02397e-05 1.32004e-05 0.890215 0.922008 0.945081
+1085 1.25406e-05 1.61908e-05 0.889211 0.921629 0.945124
+1086 9.68041e-06 1.25034e-05 0.889162 0.921248 0.945166
+1087 9.83578e-06 1.27083e-05 0.889198 0.920865 0.945207
+1088 4.85015e-05 6.27067e-05 0.888957 0.920479 0.945249
+1089 3.29122e-05 4.2565e-05 0.889015 0.920091 0.94529
+1090 1.14204e-05 1.47975e-05 0.887692 0.9197 0.94533
+1091 1.97932e-05 2.56507e-05 0.887883 0.919305 0.945371
+1092 5.29691e-05 6.86382e-05 0.888309 0.918908 0.945411
+1093 4.56222e-05 5.91179e-05 0.888659 0.918509 0.945451
+1094 2.57983e-05 3.34367e-05 0.888824 0.918109 0.945491
+1095 4.50377e-05 5.84069e-05 0.888651 0.917709 0.945531
+1096 5.53384e-05 7.1878e-05 0.887606 0.917311 0.945571
+1097 6.02872e-05 7.82561e-05 0.888518 0.916914 0.94561
+1098 7.49306e-05 9.74379e-05 0.887275 0.916521 0.94565
+1099 8.21033e-05 0.000106739 0.887833 0.916132 0.945689
+1100 8.7633e-05 0.000113864 0.888667 0.915747 0.945729
+1101 9.33743e-05 0.000121457 0.887993 0.915368 0.9458
+1102 9.79928e-05 0.000127481 0.888172 0.914997 0.945871
+1103 8.83549e-05 0.000114794 0.889611 0.914633 0.945942
+1104 7.6498e-05 9.9487e-05 0.889015 0.914277 0.946012
+1105 6.56141e-05 8.5315e-05 0.889464 0.913932 0.946083
+1106 5.90613e-05 7.68411e-05 0.889188 0.913597 0.946153
+1107 5.96768e-05 7.75689e-05 0.890273 0.913274 0.946224
+1108 5.55599e-05 7.21837e-05 0.890929 0.912963 0.946294
+1109 4.76336e-05 6.19893e-05 0.889667 0.912666 0.946363
+1110 4.73189e-05 6.15812e-05 0.889854 0.912384 0.946433
+1111 2.7105e-05 3.52422e-05 0.89087 0.912116 0.946502
+1112 2.58793e-05 3.36625e-05 0.890683 0.911866 0.94657
+1113 3.38589e-05 4.40153e-05 0.891387 0.911632 0.946638
+1114 4.83327e-05 6.28432e-05 0.891355 0.911417 0.946706
+1115 3.39877e-05 4.42077e-05 0.891155 0.911222 0.946773
+1116 6.04316e-06 7.85492e-06 0.891879 0.911046 0.946839
+1117 1.49593e-05 1.94416e-05 0.892086 0.910892 0.946905
+1118 2.54641e-05 3.3047e-05 0.89342 0.91076 0.94697
+1119 4.15828e-05 5.40009e-05 0.892884 0.910651 0.947034
+1120 3.40035e-05 4.42036e-05 0.891989 0.910566 0.947097
+1121 1.83532e-05 2.38514e-05 0.892262 0.910506 0.94716
+1122 2.51304e-05 3.26197e-05 0.89331 0.910472 0.947221
+1123 3.599e-05 4.6756e-05 0.892486 0.910465 0.947282
+1124 4.21876e-05 5.472e-05 0.893841 0.910483 0.947342
+1125 6.02102e-05 7.80827e-05 0.893899 0.910527 0.947401
+1126 6.97388e-05 9.04082e-05 0.89409 0.910595 0.947458
+1127 7.49311e-05 9.71096e-05 0.894222 0.910686 0.947515
+1128 7.72843e-05 0.000100134 0.894285 0.910799 0.94757
+1129 8.76061e-05 0.000113413 0.894847 0.910934 0.947624
+1130 0.0001067 0.000137972 0.895682 0.911089 0.947677
+1131 0.000127037 0.000164304 0.895268 0.911264 0.947729
+1132 0.000121881 0.000157684 0.89476 0.911456 0.947779
+1133 0.00013558 0.000175353 0.894782 0.911667 0.947828
+1134 0.000140605 0.000181716 0.895181 0.911894 0.947876
+1135 0.000131245 0.000169475 0.895661 0.912137 0.947922
+1136 0.000138265 0.000178341 0.896367 0.912394 0.947967
+1137 0.000169696 0.000219169 0.894885 0.912666 0.94801
+1138 0.000158543 0.000204301 0.8966 0.91295 0.948051
+1139 0.000160721 0.000207098 0.896313 0.913246 0.948091
+1140 0.000159723 0.000205976 0.895261 0.913553 0.948129
+1141 0.00015769 0.000203188 0.895651 0.91387 0.948165
+1142 0.000187373 0.000241281 0.89587 0.914196 0.9482
+1143 0.000225684 0.000290648 0.895404 0.914531 0.948233
+1144 0.000229919 0.000295895 0.895671 0.914872 0.948264
+1145 0.000239796 0.000308625 0.895246 0.91522 0.948292
+1146 0.00027983 0.000359959 0.895352 0.915573 0.948319
+1147 0.000339182 0.000436279 0.895034 0.915931 0.948344
+1148 0.000401515 0.000516018 0.895419 0.916292 0.948367
+1149 0.000489418 0.000628947 0.895104 0.916656 0.948388
+1150 0.000612457 0.000786809 0.895019 0.917021 0.948407
+1151 0.000755067 0.000969297 0.895353 0.917387 0.948379
+1152 0.000973471 0.00124997 0.894809 0.917752 0.948348
+1153 0.00128601 0.00165188 0.894161 0.918117 0.948316
+1154 0.0017303 0.00222279 0.893753 0.918479 0.948281
+1155 0.00240631 0.00308994 0.893802 0.918838 0.948245
+1156 0.00341708 0.00438414 0.894253 0.919193 0.948207
+1157 0.00490698 0.006298 0.893623 0.919543 0.948167
+1158 0.00729419 0.00935378 0.894107 0.919888 0.948125
+1159 0.0112671 0.0144563 0.893331 0.920228 0.948081
+1160 0.0179204 0.022978 0.893628 0.920562 0.948036
+1161 0.0290797 0.0372718 0.893713 0.920891 0.947989
+1162 0.047143 0.0604322 0.893319 0.921215 0.947941
+1163 0.0773989 0.0992335 0.892907 0.921534 0.947892
+1164 0.122657 0.157189 0.89305 0.921847 0.947841
+1165 0.182646 0.234051 0.89286 0.922156 0.947788
+1166 0.253948 0.325415 0.892631 0.922461 0.947735
+1167 0.335103 0.42931 0.8926 0.92276 0.94768
+1168 0.425895 0.545098 0.893231 0.923055 0.947625
+1169 0.522935 0.669147 0.893206 0.923345 0.947568
+1170 0.617499 0.790146 0.89299 0.923631 0.94751
+1171 0.693332 0.887456 0.892498 0.923912 0.947451
+1172 0.742611 0.950569 0.892251 0.924189 0.947392
+1173 0.767674 0.98176 0.892855 0.924462 0.947331
+1174 0.778326 0.994358 0.893572 0.924731 0.94727
+1175 0.781037 0.998465 0.8928 0.924995 0.947208
+1176 0.782323 0.999873 0.892817 0.925256 0.947146
+1177 0.783976 1.00002 0.894384 0.925512 0.947083
+1178 0.784051 0.999347 0.894889 0.925764 0.947019
+1179 0.782435 0.998061 0.894014 0.926013 0.946956
+1180 0.781711 0.996576 0.894343 0.926258 0.946891
+1181 0.780048 0.99496 0.893717 0.926499 0.946827
+1182 0.779578 0.993698 0.894145 0.926737 0.946762
+1183 0.779639 0.993053 0.894631 0.926971 0.946697
+1184 0.779844 0.992702 0.895021 0.927202 0.946632
+1185 0.779745 0.992691 0.89476 0.927429 0.946567
+1186 0.779452 0.993057 0.893938 0.927654 0.946502
+1187 0.780485 0.993388 0.894674 0.927874 0.946437
+1188 0.781351 0.993673 0.895261 0.928092 0.946372
+1189 0.780884 0.993858 0.894413 0.928307 0.946308
+1190 0.781443 0.993964 0.894815 0.928519 0.946243
+1191 0.782368 0.993665 0.896003 0.928727 0.946179
+1192 0.782362 0.993555 0.895957 0.928933 0.946116
+1193 0.78243 0.993565 0.895889 0.929137 0.946053
+1194 0.78227 0.993805 0.895356 0.929337 0.94599
+1195 0.782671 0.994411 0.895137 0.929535 0.945928
+1196 0.784063 0.995048 0.896025 0.92973 0.945867
+1197 0.784968 0.9959 0.896163 0.929923 0.945806
+1198 0.786022 0.996892 0.896346 0.930114 0.945746
+1199 0.786486 0.997845 0.895894 0.930302 0.945687
+1200 0.78704 0.998527 0.895788 0.930488 0.945629
+1201 0.787654 0.998937 0.895955 0.930672 0.945616
+1202 0.788255 0.999124 0.896307 0.930854 0.945603
+1203 0.788736 0.999188 0.896634 0.931034 0.945592
+1204 0.78884 0.999174 0.896604 0.931212 0.945581
+1205 0.788729 0.999042 0.896436 0.931388 0.945571
+1206 0.788559 0.998414 0.896647 0.931562 0.945562
+1207 0.788931 0.998573 0.896769 0.931735 0.945554
+1208 0.789042 0.998955 0.896395 0.931906 0.945546
+1209 0.788905 0.999107 0.895947 0.932075 0.945539
+1210 0.789562 0.999419 0.896258 0.932243 0.945533
+1211 0.79013 0.999847 0.896363 0.93241 0.945527
+1212 0.790717 0.999457 0.897226 0.932575 0.945521
+1213 0.790258 0.998859 0.897089 0.932739 0.945516
+1214 0.789156 0.99875 0.895783 0.932902 0.945512
+1215 0.788575 0.998187 0.895478 0.933063 0.945508
+1216 0.788235 0.996981 0.896024 0.933224 0.945504
+1217 0.787321 0.995543 0.896128 0.933384 0.9455
+1218 0.78646 0.99403 0.89636 0.933543 0.945497
+1219 0.784852 0.99245 0.895803 0.933701 0.945494
+1220 0.78337 0.990921 0.895343 0.933858 0.945491
+1221 0.78286 0.989806 0.895621 0.934015 0.945488
+1222 0.782612 0.989157 0.895778 0.934171 0.945485
+1223 0.782343 0.988959 0.895502 0.934327 0.945482
+1224 0.782342 0.98962 0.894756 0.934483 0.945479
+1225 0.783013 0.990464 0.894615 0.934638 0.945476
+1226 0.783957 0.991295 0.894798 0.934792 0.945474
+1227 0.786674 0.993911 0.895391 0.934947 0.94547
+1228 0.788431 0.996173 0.895208 0.935101 0.945467
+1229 0.789238 0.997762 0.894552 0.935256 0.945464
+1230 0.790952 0.999995 0.894349 0.93541 0.94546
+1231 0.792074 1.0014 0.894217 0.935565 0.945456
+1232 0.792456 1.00169 0.894245 0.93572 0.945452
+1233 0.792047 1.00111 0.894158 0.935875 0.945447
+1234 0.792184 1.00109 0.894188 0.93603 0.945441
+1235 0.790875 1.00006 0.893485 0.936186 0.945436
+1236 0.789635 0.998477 0.893355 0.936343 0.94543
+1237 0.788285 0.996421 0.893525 0.9365 0.945423
+1238 0.786847 0.994277 0.893675 0.936657 0.945415
+1239 0.785284 0.992937 0.89296 0.936816 0.945407
+1240 0.784368 0.991582 0.892993 0.936975 0.945399
+1241 0.783928 0.990516 0.893309 0.937135 0.945389
+1242 0.784597 0.990626 0.893829 0.937296 0.945379
+1243 0.784983 0.991005 0.893782 0.937458 0.945368
+1244 0.785269 0.992004 0.893063 0.937621 0.945356
+1245 0.786658 0.993276 0.893353 0.937785 0.945343
+1246 0.788062 0.994216 0.893957 0.937951 0.945329
+1247 0.789711 0.996205 0.893893 0.938118 0.945315
+1248 0.791167 0.997836 0.893932 0.938286 0.945299
+1249 0.792596 0.999449 0.893956 0.938456 0.945282
+1250 0.794362 1.00067 0.894708 0.938627 0.945264
+1251 0.795403 1.00152 0.895018 0.9388 0.945198
+1252 0.796627 1.00242 0.895486 0.938975 0.945132
+1253 0.796646 1.00235 0.895467 0.939151 0.945064
+1254 0.796006 1.00174 0.895187 0.93933 0.944995
+1255 0.796093 1.00113 0.895724 0.93951 0.944926
+1256 0.796199 1.00033 0.896453 0.939692 0.944855
+1257 0.795536 0.999307 0.896515 0.939877 0.944784
+1258 0.795874 0.998386 0.897614 0.940063 0.944712
+1259 0.795308 0.997694 0.897486 0.940251 0.94464
+1260 0.795831 0.997025 0.898567 0.940441 0.944567
+1261 0.796089 0.996753 0.898991 0.940632 0.944493
+1262 0.796088 0.996739 0.898888 0.940825 0.94442
+1263 0.796749 0.996837 0.899431 0.94102 0.944345
+1264 0.796526 0.99711 0.898817 0.941215 0.944271
+1265 0.796341 0.997374 0.898255 0.941411 0.944196
+1266 0.79739 0.99786 0.898881 0.941609 0.944122
+1267 0.798764 0.998159 0.900043 0.941807 0.944047
+1268 0.798834 0.998153 0.900009 0.942005 0.943972
+1269 0.798728 0.997959 0.899945 0.942205 0.943898
+1270 0.797975 0.997869 0.899059 0.942404 0.943823
+1271 0.798214 0.997321 0.899702 0.942604 0.943749
+1272 0.798106 0.996651 0.900065 0.942804 0.943675
+1273 0.797009 0.995957 0.899333 0.943004 0.943601
+1274 0.79602 0.995018 0.898944 0.943204 0.943528
+1275 0.795908 0.99449 0.899173 0.943404 0.943456
+1276 0.795329 0.994217 0.898644 0.943603 0.943384
+1277 0.795352 0.994472 0.898319 0.943802 0.943312
+1278 0.795137 0.994373 0.898045 0.944 0.943241
+1279 0.794837 0.994372 0.897586 0.944197 0.943171
+1280 0.794838 0.994938 0.896955 0.944394 0.943102
+1281 0.795365 0.995694 0.896748 0.944589 0.943034
+1282 0.796118 0.996435 0.896809 0.944783 0.942967
+1283 0.796725 0.997604 0.896321 0.944976 0.942901
+1284 0.796436 0.998427 0.895138 0.945167 0.942836
+1285 0.796899 0.998849 0.89516 0.945357 0.942772
+1286 0.797375 0.999175 0.895284 0.945545 0.94271
+1287 0.795985 0.998339 0.894353 0.945731 0.942649
+1288 0.796677 0.998849 0.894556 0.945916 0.942589
+1289 0.795867 0.998741 0.893626 0.946098 0.942531
+1290 0.794953 0.997766 0.893356 0.946278 0.942474
+1291 0.793742 0.996806 0.892739 0.946455 0.942419
+1292 0.793272 0.995708 0.893081 0.94663 0.942365
+1293 0.792744 0.995077 0.892937 0.946803 0.942314
+1294 0.7902 0.993913 0.891001 0.946973 0.942264
+1295 0.789377 0.992496 0.891233 0.947139 0.942216
+1296 0.788811 0.991452 0.891421 0.947303 0.94217
+1297 0.788925 0.991498 0.891399 0.947464 0.942126
+1298 0.789112 0.991222 0.891751 0.947621 0.942084
+1299 0.788541 0.991045 0.891157 0.947775 0.942044
+1300 0.789417 0.991517 0.891616 0.947926 0.942007
+1301 0.790784 0.992263 0.892331 0.948072 0.942028
+1302 0.791764 0.993161 0.892473 0.948215 0.942051
+1303 0.792377 0.994049 0.892211 0.948354 0.942076
+1304 0.79255 0.994965 0.891432 0.948489 0.942103
+1305 0.793526 0.995931 0.891513 0.94862 0.942132
+1306 0.7948 0.996785 0.89203 0.948747 0.942164
+1307 0.79556 0.997172 0.89239 0.948869 0.942197
+1308 0.796436 0.997429 0.892999 0.948986 0.942232
+1309 0.796266 0.997652 0.892468 0.949099 0.942269
+1310 0.795849 0.997329 0.892153 0.949206 0.942307
+1311 0.796579 0.996694 0.893404 0.949309 0.942348
+1312 0.79657 0.99592 0.893958 0.949407 0.942389
+1313 0.79644 0.995012 0.894498 0.9495 0.942433
+1314 0.795702 0.994114 0.894352 0.949587 0.942478
+1315 0.794319 0.993192 0.893506 0.949668 0.942524
+1316 0.794798 0.992146 0.894871 0.949744 0.942571
+1317 0.794116 0.991506 0.894568 0.949814 0.94262
+1318 0.793661 0.991046 0.894362 0.949879 0.94267
+1319 0.793843 0.990801 0.894685 0.949937 0.942721
+1320 0.79418 0.990576 0.895169 0.949989 0.942774
+1321 0.795166 0.990746 0.896033 0.950035 0.942827
+1322 0.795497 0.991146 0.895956 0.950074 0.942881
+1323 0.795628 0.991804 0.895426 0.950107 0.942936
+1324 0.795695 0.99238 0.894904 0.950133 0.942992
+1325 0.79722 0.993117 0.89588 0.950153 0.943049
+1326 0.799468 0.994094 0.897456 0.950167 0.943106
+1327 0.798992 0.99478 0.896241 0.950174 0.943164
+1328 0.799313 0.99566 0.895752 0.950175 0.943223
+1329 0.800641 0.996632 0.896314 0.95017 0.943282
+1330 0.80043 0.997319 0.895415 0.950159 0.943341
+1331 0.802717 0.99819 0.897149 0.950142 0.943401
+1332 0.802848 0.998769 0.896739 0.950119 0.943461
+1333 0.802136 0.999266 0.895467 0.950091 0.943522
+1334 0.803382 0.999793 0.89636 0.950057 0.943582
+1335 0.803415 1.00014 0.896065 0.950018 0.943643
+1336 0.804835 1.00053 0.897285 0.949973 0.943703
+1337 0.803885 1.00091 0.895874 0.949923 0.943764
+1338 0.804598 1.00085 0.896717 0.949868 0.943825
+1339 0.803927 1.00128 0.895584 0.949808 0.943885
+1340 0.804319 1.0016 0.895739 0.949743 0.943945
+1341 0.804519 1.00159 0.895979 0.949673 0.944005
+1342 0.80494 1.00195 0.89614 0.949598 0.944065
+1343 0.804172 1.00147 0.895732 0.949519 0.944124
+1344 0.804358 1.00115 0.896249 0.949435 0.944183
+1345 0.803403 1.00133 0.895052 0.949347 0.944241
+1346 0.803859 1.00063 0.89622 0.949254 0.944298
+1347 0.803221 1.00013 0.895994 0.949157 0.944355
+1348 0.802466 0.999818 0.895474 0.949056 0.944411
+1349 0.803064 0.99881 0.897091 0.948951 0.944467
+1350 0.799604 0.997098 0.894812 0.948842 0.944521
+1351 0.800775 0.996262 0.896968 0.948729 0.944535
+1352 0.800438 0.997221 0.895826 0.948612 0.944548
+1353 0.801068 0.997391 0.89648 0.948492 0.94456
+1354 0.800687 0.996894 0.896606 0.948368 0.944572
+1355 0.79958 0.996916 0.895458 0.948241 0.944582
+1356 0.79936 0.995977 0.896169 0.948111 0.944592
+1357 0.799198 0.995634 0.896414 0.947977 0.944601
+1358 0.800801 0.997614 0.896551 0.94784 0.944609
+1359 0.801965 0.999307 0.896458 0.9477 0.944617
+1360 0.800554 0.998243 0.895963 0.947557 0.944624
+1361 0.803049 0.99938 0.897865 0.947411 0.94463
+1362 0.802404 0.999657 0.89703 0.947263 0.944636
+1363 0.801392 0.999536 0.896145 0.947112 0.944641
+1364 0.800958 0.999521 0.895814 0.946958 0.944646
+1365 0.801206 0.999758 0.896023 0.946802 0.94465
+1366 0.801425 0.999514 0.896633 0.946644 0.944654
+1367 0.800928 0.999682 0.896076 0.946483 0.944657
+1368 0.800844 0.999776 0.896049 0.94632 0.94466
+1369 0.802345 1.00185 0.896023 0.946156 0.944662
+1370 0.801978 1.00196 0.895671 0.945989 0.944664
+1371 0.802489 1.00158 0.896739 0.945821 0.944666
+1372 0.802014 1.0011 0.896798 0.945651 0.944667
+1373 0.80103 1.00078 0.896147 0.945479 0.944668
+1374 0.800826 1.00044 0.896387 0.945305 0.944669
+1375 0.799516 0.999858 0.895605 0.945131 0.94467
+1376 0.800686 1.00013 0.896839 0.944955 0.94467
+1377 0.800105 1.00024 0.896258 0.944777 0.944671
+1378 0.798763 0.999625 0.895474 0.944599 0.944671
+1379 0.797611 0.998747 0.895138 0.94442 0.944671
+1380 0.797883 0.998882 0.895494 0.944239 0.944671
+1381 0.797171 0.998887 0.894862 0.944058 0.944671
+1382 0.796257 0.998474 0.894377 0.943877 0.944671
+1383 0.796293 0.998665 0.89442 0.943694 0.944671
+1384 0.796908 0.998598 0.895344 0.943511 0.944671
+1385 0.79642 0.99855 0.895011 0.943328 0.944672
+1386 0.796476 0.99929 0.894585 0.943145 0.944672
+1387 0.796873 0.999953 0.894611 0.942961 0.944673
+1388 0.796771 1.00032 0.894343 0.942777 0.944673
+1389 0.798005 1.00126 0.895061 0.942593 0.944674
+1390 0.796555 1.00024 0.894519 0.942409 0.944675
+1391 0.794926 0.99945 0.893567 0.942226 0.944677
+1392 0.794529 1.00005 0.892758 0.942042 0.944679
+1393 0.794073 0.999365 0.893028 0.941859 0.944681
+1394 0.794651 0.999306 0.893902 0.941677 0.944683
+1395 0.795454 1.00012 0.894247 0.941495 0.944686
+1396 0.793331 0.998351 0.893609 0.941314 0.944689
+1397 0.790378 0.996386 0.892206 0.941134 0.944693
+1398 0.788238 0.99414 0.891966 0.940955 0.944697
+1399 0.785842 0.989856 0.893269 0.940776 0.944702
+1400 0.78632 0.990573 0.893329 0.940599 0.944707
+1401 0.788277 0.993338 0.893212 0.940423 0.944722
+1402 0.786458 0.992592 0.891971 0.940249 0.944738
+1403 0.786182 0.992081 0.892266 0.940075 0.944755
+1404 0.787047 0.992313 0.893185 0.939904 0.944772
+1405 0.785906 0.992134 0.892197 0.939733 0.94479
+1406 0.785579 0.992067 0.892028 0.939565 0.944808
+1407 0.786309 0.992844 0.892299 0.939398 0.944827
+1408 0.786931 0.99376 0.892321 0.939232 0.944846
+1409 0.788244 0.994805 0.893008 0.939068 0.944866
+1410 0.787904 0.99497 0.892609 0.938906 0.944887
+1411 0.788225 0.996423 0.891803 0.938745 0.944909
+1412 0.78891 0.997506 0.891739 0.938586 0.944931
+1413 0.789148 0.998412 0.891327 0.938428 0.944954
+1414 0.791221 0.999376 0.892933 0.938272 0.944977
+1415 0.791245 1.00031 0.892251 0.938117 0.945001
+1416 0.791276 1.00007 0.892622 0.937964 0.945026
+1417 0.790175 0.999662 0.891863 0.937813 0.945052
+1418 0.790909 0.999511 0.892945 0.937662 0.945078
+1419 0.791209 0.999462 0.893444 0.937514 0.945105
+1420 0.790176 0.999385 0.89246 0.937367 0.945132
+1421 0.789562 0.998675 0.892512 0.937221 0.945161
+1422 0.789113 0.99793 0.892781 0.937077 0.94519
+1423 0.788549 0.99707 0.893019 0.936935 0.94522
+1424 0.788407 0.99689 0.893125 0.936794 0.94525
+1425 0.787497 0.995793 0.893181 0.936655 0.945281
+1426 0.786392 0.99481 0.89291 0.936517 0.945313
+1427 0.785607 0.99447 0.892423 0.93638 0.945346
+1428 0.786266 0.99456 0.893187 0.936245 0.94538
+1429 0.785676 0.994089 0.893035 0.936112 0.945414
+1430 0.785379 0.993969 0.892898 0.93598 0.945449
+1431 0.785402 0.994682 0.892374 0.93585 0.945485
+1432 0.785268 0.994966 0.892055 0.935721 0.945522
+1433 0.785639 0.995122 0.892423 0.935593 0.94556
+1434 0.786103 0.995518 0.892679 0.935467 0.945598
+1435 0.786845 0.996242 0.892954 0.935343 0.945637
+1436 0.787313 0.997273 0.892641 0.93522 0.945677
+1437 0.787584 0.997996 0.892379 0.935098 0.945718
+1438 0.788313 0.998733 0.892621 0.934978 0.94576
+1439 0.789287 0.999109 0.89346 0.93486 0.945802
+1440 0.788842 0.998971 0.893151 0.934742 0.945846
+1441 0.78803 0.998947 0.892321 0.934627 0.94589
+1442 0.788528 0.999021 0.892886 0.934513 0.945935
+1443 0.789083 0.999827 0.892858 0.9344 0.945981
+1444 0.788657 0.999328 0.892884 0.934289 0.946028
+1445 0.786762 0.997632 0.892312 0.934179 0.946076
+1446 0.787027 0.99786 0.892467 0.93407 0.946125
+1447 0.786253 0.997385 0.892069 0.933963 0.946175
+1448 0.785422 0.996632 0.891852 0.933858 0.946225
+1449 0.785195 0.996027 0.892187 0.933754 0.946277
+1450 0.784706 0.995421 0.892223 0.933651 0.946329
+1451 0.784343 0.994913 0.892295 0.93355 0.9464
+1452 0.783224 0.994482 0.891436 0.93345 0.946472
+1453 0.783592 0.994064 0.892256 0.933352 0.946544
+1454 0.783153 0.994011 0.891826 0.933255 0.946618
+1455 0.782229 0.993678 0.891094 0.93316 0.946692
+1456 0.782916 0.994221 0.891409 0.933066 0.946767
+1457 0.783979 0.995116 0.891833 0.932973 0.946843
+1458 0.784777 0.994926 0.892927 0.932882 0.946919
+1459 0.784747 0.99546 0.892427 0.932792 0.946996
+1460 0.78547 0.995995 0.89278 0.932704 0.947074
+1461 0.785825 0.996499 0.892741 0.932617 0.947153
+1462 0.78592 0.997178 0.89225 0.932531 0.947231
+1463 0.786341 0.997347 0.892582 0.932447 0.947311
+1464 0.78591 0.997143 0.892279 0.932364 0.947391
+1465 0.786371 0.997414 0.892562 0.932283 0.947471
+1466 0.787023 0.997836 0.892924 0.932203 0.947552
+1467 0.786718 0.998015 0.892418 0.932124 0.947633
+1468 0.786442 0.997937 0.892171 0.932047 0.947715
+1469 0.78681 0.997917 0.892603 0.931971 0.947796
+1470 0.786047 0.997713 0.891912 0.931897 0.947879
+1471 0.785411 0.997127 0.891707 0.931824 0.947961
+1472 0.784529 0.996479 0.891276 0.931752 0.948044
+1473 0.784887 0.995919 0.892174 0.931682 0.948126
+1474 0.784702 0.995172 0.892621 0.931613 0.948209
+1475 0.784267 0.994487 0.892727 0.931545 0.948292
+1476 0.783967 0.993884 0.892913 0.931479 0.948375
+1477 0.78294 0.993297 0.892254 0.931414 0.948458
+1478 0.782713 0.992797 0.892427 0.931351 0.948541
+1479 0.782383 0.992234 0.892537 0.931289 0.948625
+1480 0.780637 0.991228 0.89143 0.931228 0.948708
+1481 0.781263 0.9916 0.89179 0.931168 0.94879
+1482 0.780865 0.991607 0.891307 0.93111 0.948873
+1483 0.781166 0.991596 0.891636 0.931054 0.948956
+1484 0.781393 0.991945 0.891558 0.930998 0.949038
+1485 0.781037 0.991625 0.891414 0.930944 0.94912
+1486 0.781309 0.991587 0.891732 0.930891 0.949202
+1487 0.781494 0.992124 0.891432 0.93084 0.949284
+1488 0.781397 0.99177 0.891612 0.93079 0.949365
+1489 0.781102 0.991968 0.891068 0.930741 0.949446
+1490 0.781663 0.992248 0.891427 0.930694 0.949526
+1491 0.781578 0.992144 0.891392 0.930648 0.949606
+1492 0.780643 0.992092 0.89034 0.930603 0.949686
+1493 0.781457 0.991915 0.891396 0.930559 0.949765
+1494 0.781704 0.992447 0.891167 0.930517 0.949843
+1495 0.781268 0.992919 0.890211 0.930477 0.949921
+1496 0.781738 0.993181 0.890478 0.930437 0.949998
+1497 0.781296 0.993399 0.889743 0.930399 0.950075
+1498 0.782106 0.993618 0.890434 0.930362 0.950151
+1499 0.782643 0.993922 0.890737 0.930326 0.950226
+1500 0.783382 0.994403 0.89111 0.930292 0.9503
+1501 0.782823 0.995404 0.889566 0.930259 0.950347
+1502 0.78234 0.995278 0.889117 0.930227 0.950393
+1503 0.783409 0.99553 0.890093 0.930197 0.950438
+1504 0.783055 0.99597 0.889284 0.930168 0.950483
+1505 0.784456 0.996732 0.890179 0.93014 0.950527
+1506 0.784017 0.997289 0.88917 0.930113 0.95057
+1507 0.784772 0.998134 0.889256 0.930088 0.950613
+1508 0.784834 0.997992 0.889436 0.930064 0.950655
+1509 0.784374 0.998023 0.888871 0.930041 0.950696
+1510 0.784367 0.998163 0.888721 0.930019 0.950737
+1511 0.784323 0.998307 0.888524 0.929999 0.950778
+1512 0.784442 0.999026 0.888 0.92998 0.950818
+1513 0.78472 0.998227 0.889007 0.929962 0.950857
+1514 0.783291 0.997647 0.887883 0.929946 0.950896
+1515 0.783165 0.997519 0.887831 0.929931 0.950935
+1516 0.783099 0.997282 0.887945 0.929917 0.950974
+1517 0.782923 0.996474 0.888442 0.929904 0.951012
+1518 0.783842 0.997011 0.88898 0.929893 0.95105
+1519 0.782458 0.99693 0.887459 0.929882 0.951087
+1520 0.782945 0.997242 0.887708 0.929873 0.951124
+1521 0.783194 0.997338 0.887877 0.929866 0.951161
+1522 0.782587 0.997845 0.88671 0.929859 0.951198
+1523 0.783322 0.998162 0.887231 0.929854 0.951235
+1524 0.783771 0.998785 0.887155 0.92985 0.951272
+1525 0.784602 0.999968 0.887014 0.929847 0.951308
+1526 0.785531 1.0012 0.886939 0.929845 0.951345
+1527 0.784905 1.00138 0.88604 0.929845 0.951381
+1528 0.786562 1.0022 0.887148 0.929846 0.951418
+1529 0.786542 1.00257 0.886763 0.929848 0.951454
+1530 0.787266 1.00289 0.887259 0.929851 0.951491
+1531 0.786845 1.00294 0.886702 0.929855 0.951527
+1532 0.785452 1.00262 0.885375 0.929861 0.951564
+1533 0.786534 1.00229 0.886845 0.929868 0.951601
+1534 0.785716 1.00168 0.886421 0.929876 0.951638
+1535 0.785375 1.00078 0.886789 0.929885 0.951675
+1536 0.783864 0.999602 0.886081 0.929896 0.951713
+1537 0.782334 0.99823 0.885521 0.929907 0.951751
+1538 0.781692 0.996865 0.885958 0.92992 0.951789
+1539 0.780091 0.995556 0.885257 0.929934 0.951827
+1540 0.779974 0.994421 0.886084 0.929949 0.951866
+1541 0.777744 0.993292 0.884503 0.929966 0.951905
+1542 0.777652 0.992512 0.88504 0.929983 0.951944
+1543 0.777698 0.991954 0.885535 0.930002 0.951984
+1544 0.776927 0.991753 0.88478 0.930022 0.952025
+1545 0.777469 0.991622 0.885456 0.930043 0.952066
+1546 0.777231 0.991881 0.884894 0.930065 0.952107
+1547 0.776235 0.992335 0.883295 0.930088 0.952149
+1548 0.778788 0.99302 0.885525 0.930113 0.952192
+1549 0.777808 0.993698 0.883743 0.930139 0.952235
+1550 0.779096 0.994339 0.884569 0.930166 0.952279
+1551 0.78025 0.995265 0.884951 0.930194 0.952363
+1552 0.780509 0.996172 0.884331 0.930223 0.952449
+1553 0.78116 0.996315 0.884834 0.930253 0.952534
+1554 0.781029 0.996291 0.884598 0.930284 0.95262
+1555 0.78107 0.995456 0.885274 0.930317 0.952707
+1556 0.778623 0.992903 0.884656 0.930351 0.952794
+1557 0.773911 0.987527 0.883975 0.930386 0.952881
+1558 0.766915 0.978158 0.88426 0.930422 0.952968
+1559 0.75543 0.9625 0.88507 0.930459 0.953056
+1560 0.734989 0.937933 0.88356 0.930497 0.953143
+1561 0.708606 0.904341 0.883367 0.930536 0.953231
+1562 0.674554 0.860928 0.883202 0.930577 0.953318
+1563 0.632318 0.806635 0.883505 0.930618 0.953406
+1564 0.581612 0.742523 0.882702 0.930661 0.953493
+1565 0.524886 0.668318 0.884937 0.930705 0.95358
+1566 0.457571 0.583227 0.883877 0.93075 0.953666
+1567 0.388781 0.495735 0.883415 0.930796 0.953753
+1568 0.319872 0.407379 0.884354 0.930843 0.953839
+1569 0.255905 0.326123 0.883658 0.930891 0.953924
+1570 0.200921 0.255778 0.884479 0.93094 0.954009
+1571 0.154144 0.196414 0.883526 0.930991 0.954093
+1572 0.116208 0.147995 0.883874 0.931042 0.954176
+1573 0.0877936 0.111815 0.883695 0.931095 0.954259
+1574 0.0662085 0.0843348 0.883455 0.931149 0.95434
+1575 0.0491438 0.0625743 0.883666 0.931203 0.954421
+1576 0.0369241 0.0470028 0.88377 0.931259 0.954501
+1577 0.0281526 0.0358462 0.883417 0.931316 0.95458
+1578 0.0216914 0.027595 0.884067 0.931374 0.954657
+1579 0.0168255 0.0214144 0.883543 0.931433 0.954734
+1580 0.0131181 0.0166997 0.883212 0.931493 0.954809
+1581 0.0103172 0.0131327 0.88318 0.931554 0.954883
+1582 0.00811073 0.0103339 0.882216 0.931617 0.954956
+1583 0.00649488 0.0082627 0.883419 0.93168 0.955027
+1584 0.00523367 0.00665712 0.883438 0.931744 0.955096
+1585 0.00425303 0.00540975 0.883315 0.93181 0.955164
+1586 0.00351173 0.00446219 0.88411 0.931876 0.955231
+1587 0.00292037 0.00371507 0.882964 0.931944 0.955295
+1588 0.00241528 0.00307105 0.883269 0.932012 0.955358
+1589 0.00200596 0.00254999 0.883355 0.932082 0.955419
+1590 0.0016958 0.00215537 0.883373 0.932153 0.955478
+1591 0.001431 0.00182044 0.88246 0.932224 0.955536
+1592 0.00122114 0.00155286 0.882689 0.932297 0.955591
+1593 0.00106397 0.00135231 0.883019 0.932371 0.955644
+1594 0.000919901 0.00116837 0.883525 0.932445 0.955694
+1595 0.000781917 0.000992593 0.883873 0.932521 0.955743
+1596 0.000677637 0.000860621 0.883342 0.932598 0.955789
+1597 0.000583378 0.000740568 0.883634 0.932676 0.955833
+1598 0.000509182 0.000646461 0.883409 0.932755 0.955875
+1599 0.000455494 0.000578316 0.883271 0.932835 0.955914
+1600 0.000415404 0.000527311 0.883336 0.932916 0.95595
+1601 0.000366374 0.000465449 0.882561 0.932997 0.955934
+1602 0.00031434 0.000399314 0.882565 0.93308 0.955916
+1603 0.000287387 0.000364746 0.883299 0.933164 0.955895
+1604 0.000280649 0.000356403 0.882725 0.933249 0.955871
+1605 0.000248837 0.000316161 0.882229 0.933335 0.955845
+1606 0.000217548 0.000276146 0.883006 0.933422 0.955817
+1607 0.000203375 0.000258128 0.883043 0.93351 0.955786
+1608 0.000195644 0.000248274 0.883139 0.933599 0.955754
+1609 0.000163629 0.000207722 0.882769 0.933688 0.955719
+1610 0.000145327 0.000184528 0.882526 0.933779 0.955681
+1611 0.000141618 0.000179925 0.881953 0.933871 0.955642
+1612 0.000123716 0.000157204 0.881767 0.933964 0.955601
+1613 0.000128041 0.000162592 0.882305 0.934058 0.955557
+1614 0.000135836 0.000172528 0.882069 0.934152 0.955512
+1615 0.000118415 0.000150363 0.882248 0.934248 0.955464
+1616 9.51341e-05 0.000120909 0.881411 0.934345 0.955415
+1617 9.74896e-05 0.00012393 0.881172 0.934442 0.955364
+1618 8.83783e-05 0.000112345 0.881147 0.934541 0.955312
+1619 8.83746e-05 0.000112371 0.880863 0.934641 0.955257
+1620 9.61229e-05 0.000122231 0.880764 0.934741 0.955201
+1621 8.65717e-05 0.000110155 0.880166 0.934842 0.955144
+1622 7.60299e-05 9.66931e-05 0.880564 0.934945 0.955085
+1623 5.89533e-05 7.49425e-05 0.88091 0.935048 0.955024
+1624 5.33659e-05 6.78996e-05 0.880093 0.935152 0.954962
+1625 6.78718e-05 8.63618e-05 0.879992 0.935258 0.954899
+1626 6.85382e-05 8.71864e-05 0.880188 0.935364 0.954834
+1627 6.26636e-05 7.97727e-05 0.879494 0.935471 0.954768
+1628 6.2443e-05 7.94586e-05 0.879822 0.935579 0.954701
+1629 6.66746e-05 8.48599e-05 0.87961 0.935688 0.954633
+1630 6.1675e-05 7.85194e-05 0.879317 0.935798 0.954563
+1631 6.55795e-05 8.34872e-05 0.87931 0.935909 0.954493
+1632 6.65099e-05 8.46988e-05 0.87899 0.93602 0.954421
+1633 6.64228e-05 8.45949e-05 0.878877 0.936133 0.954349
+1634 8.17229e-05 0.00010407 0.87893 0.936247 0.954275
+1635 8.82871e-05 0.000112465 0.878611 0.936361 0.954201
+1636 6.51698e-05 8.30695e-05 0.878016 0.936476 0.954126
+1637 5.46542e-05 6.96686e-05 0.877938 0.936593 0.954051
+1638 6.84498e-05 8.7211e-05 0.878333 0.93671 0.953974
+1639 6.83532e-05 8.71141e-05 0.87803 0.936828 0.953897
+1640 8.26576e-05 0.000105368 0.877795 0.936947 0.953819
+1641 8.80024e-05 0.000112251 0.877209 0.937067 0.953741
+1642 7.46064e-05 9.51904e-05 0.876924 0.937187 0.953663
+1643 7.6816e-05 9.79748e-05 0.877194 0.937309 0.953584
+1644 0.000104 0.000132724 0.876644 0.937432 0.953504
+1645 0.000112825 0.000143996 0.876541 0.937555 0.953425
+1646 0.000100991 0.000128978 0.875918 0.937679 0.953345
+1647 9.03451e-05 0.000115382 0.875872 0.937805 0.953264
+1648 0.000117888 0.000150472 0.876327 0.937931 0.953184
+1649 0.00012635 0.00016133 0.875973 0.938057 0.953104
+1650 0.000129155 0.000164948 0.875737 0.938185 0.953023
+1651 0.000126262 0.000161251 0.875677 0.938314 0.952964
+1652 0.00012165 0.000155294 0.875993 0.938443 0.952906
+1653 0.000124717 0.000159347 0.875164 0.938574 0.952847
+1654 0.000140138 0.000178995 0.875366 0.938705 0.952789
+1655 0.000157345 0.000200937 0.875454 0.938837 0.95273
+1656 0.00016443 0.000210163 0.874639 0.93897 0.952672
+1657 0.000173575 0.000221878 0.874466 0.939104 0.952613
+1658 0.000169939 0.000217126 0.874812 0.939238 0.952555
+1659 0.000171573 0.000219063 0.875344 0.939374 0.952496
+1660 0.00021121 0.000269744 0.875032 0.93951 0.952438
+1661 0.000214693 0.000274175 0.875016 0.939647 0.952379
+1662 0.000192498 0.000245798 0.875056 0.939785 0.952321
+1663 0.000181127 0.000231388 0.874566 0.939924 0.952262
+1664 0.000201611 0.000257526 0.874594 0.940064 0.952204
+1665 0.000204535 0.000261224 0.874642 0.940204 0.952145
+1666 0.000190974 0.0002441 0.873862 0.940346 0.952087
+1667 0.000194011 0.000247752 0.874594 0.940488 0.952028
+1668 0.000186571 0.000238275 0.874428 0.94063 0.95197
+1669 0.000167939 0.00021448 0.874345 0.940774 0.951911
+1670 0.000177309 0.000226309 0.874799 0.940918 0.951853
+1671 0.000176385 0.000225169 0.874562 0.941063 0.951794
+1672 0.000169852 0.000216778 0.87469 0.941209 0.951736
+1673 0.000165606 0.000211424 0.874336 0.941355 0.951677
+1674 0.000186633 0.00023815 0.874689 0.941502 0.951619
+1675 0.000154701 0.000197448 0.874407 0.94165 0.95156
+1676 0.000140267 0.000178974 0.874579 0.941798 0.951501
+1677 0.000144771 0.000184679 0.874694 0.941947 0.951443
+1678 0.000148027 0.000188919 0.874204 0.942097 0.951384
+1679 0.000147921 0.000188672 0.874638 0.942247 0.951326
+1680 0.000152333 0.000194067 0.8756 0.942397 0.951267
+1681 0.000148293 0.00018897 0.875281 0.942548 0.951209
+1682 0.000140509 0.000179107 0.874919 0.9427 0.95115
+1683 0.00013172 0.000167983 0.87442 0.942852 0.951092
+1684 0.000164328 0.000209452 0.874818 0.943004 0.951033
+1685 0.000149456 0.000190321 0.875533 0.943157 0.950975
+1686 0.00014731 0.000187602 0.875385 0.94331 0.950916
+1687 0.000145379 0.0001853 0.874554 0.943464 0.950858
+1688 0.000129363 0.000164792 0.874964 0.943618 0.950799
+1689 0.000134985 0.000171969 0.874792 0.943773 0.950741
+1690 0.000156279 0.000198984 0.875202 0.943927 0.950682
+1691 0.000162345 0.000206874 0.874409 0.944083 0.950624
+1692 0.000135054 0.000172065 0.874481 0.944238 0.950565
+1693 0.000142277 0.000181173 0.874849 0.944394 0.950507
+1694 0.000178685 0.000227453 0.875072 0.94455 0.950448
+1695 0.000173485 0.000220738 0.875358 0.944706 0.95039
+
diff --git a/filt_func/euclid/VIS.dat b/filt_func/euclid/VIS.dat
new file mode 100755
index 00000000..8071c831
--- /dev/null
+++ b/filt_func/euclid/VIS.dat
@@ -0,0 +1,551 @@
+4369.190 0.00056679011507854
+4379.190 0.00095861003123264
+4389.180 0.0014222192668852
+4399.180 0.0017743627364614
+4409.170 0.0017759292855133
+4419.170 0.0015893083675879
+4429.160 0.0015197711551908
+4439.150 0.0016367665308994
+4449.150 0.0017004749033207
+4459.140 0.001630730073096
+4469.140 0.0021505801024037
+4479.130 0.0038159666691211
+4489.120 0.005469151955157
+4499.120 0.0049075209173836
+4509.110 0.002649285648969
+4519.110 0.0013916987804899
+4529.100 0.0023998297521869
+4539.090 0.0038630219733651
+4549.090 0.0041725310261388
+4559.080 0.0031289801957178
+4569.080 0.0020110738305816
+4579.070 0.0019870963483393
+4589.070 0.002191420037652
+4599.060 0.0018406845500468
+4609.050 0.0011385280750117
+4619.050 0.0007594274011402
+4629.040 0.00087678522847243
+4639.040 0.0011249222580268
+4649.030 0.0011341370502031
+4659.020 0.0011462535246013
+4669.020 0.0015963659028934
+4679.010 0.0024726424098241
+4689.010 0.0030068413053051
+4699.000 0.002603962680456
+4708.990 0.0017987888079545
+4718.990 0.0014040251456908
+4728.980 0.0016755087444703
+4738.980 0.002177489295466
+4748.970 0.0023486920333469
+4758.970 0.0020829558832946
+4768.960 0.0018660000177174
+4778.950 0.002215059040708
+4788.950 0.0031384776820817
+4798.940 0.0041855519026953
+4808.940 0.0047026021430328
+4818.930 0.0042623183842051
+4828.920 0.0033869108483343
+4838.920 0.0024023710308675
+4848.910 0.0015861923787352
+4858.910 0.0014205437245275
+4868.900 0.0022510422288618
+4878.890 0.0041980197268167
+4888.890 0.0061275472601809
+4898.880 0.0066743229446149
+4908.880 0.0054680387927494
+4918.870 0.0036412071136536
+4928.870 0.0026423834721874
+4938.860 0.0032095535171861
+4948.850 0.0051665785288905
+4958.850 0.0080215399077462
+4968.840 0.010915676381017
+4978.840 0.013184261377986
+4988.830 0.014638163290972
+4998.820 0.015207171139077
+5008.820 0.01488566079731
+5018.810 0.013719511350726
+5028.810 0.012188537989717
+5038.800 0.010463857759635
+5048.790 0.008857850265311
+5058.790 0.0074643941465607
+5068.780 0.0064922333486447
+5078.780 0.0063862841182279
+5088.770 0.0072924135461072
+5098.770 0.0085739047796755
+5108.760 0.0092846913453615
+5118.750 0.0092293286644982
+5128.750 0.0090154575040874
+5138.740 0.0096418264754396
+5148.740 0.010918794268614
+5158.730 0.011769548684928
+5168.720 0.011494670377109
+5178.720 0.010647697788314
+5188.710 0.011119396055422
+5198.710 0.013504491527394
+5208.700 0.016668611773929
+5218.690 0.018062780681459
+5228.690 0.017033208329435
+5238.680 0.015005380433075
+5248.680 0.01447860609999
+5258.670 0.01657785767815
+5268.670 0.01958232809472
+5278.660 0.021642875109229
+5288.650 0.022208101952549
+5298.650 0.022101448625035
+5308.640 0.021265715551366
+5318.640 0.018455490536066
+5328.630 0.013472882331065
+5338.620 0.0093757519838535
+5348.620 0.008158786498743
+5358.610 0.0089445409322939
+5368.610 0.013055939482046
+5378.600 0.029430699622136
+5388.590 0.055072583791663
+5398.590 0.098966162555504
+5408.580 0.26478578413047
+5418.580 0.52152093739391
+5428.570 0.65157221422763
+5438.570 0.68504800885672
+5448.560 0.69348490596313
+5458.550 0.69751282390087
+5468.550 0.69939616531267
+5478.540 0.70129426661459
+5488.540 0.70261323352984
+5498.530 0.70402755910426
+5508.520 0.70552192536322
+5518.520 0.70746272258824
+5528.510 0.70862337773673
+5538.510 0.71042760078267
+5548.500 0.71194072195338
+5558.500 0.71301196344608
+5568.490 0.71401303884674
+5578.480 0.71574991366373
+5588.480 0.71695938760185
+5598.470 0.71800488631136
+5608.470 0.71906084394614
+5618.460 0.7206412789746
+5628.450 0.72168347895724
+5638.450 0.7222594049741
+5648.440 0.72354792212106
+5658.440 0.72498348934643
+5668.430 0.72577626604428
+5678.420 0.72642182621488
+5688.420 0.72741663950544
+5698.410 0.72814100430195
+5708.410 0.72981989075814
+5718.400 0.73072607649955
+5728.400 0.73186649434245
+5738.390 0.73267253149841
+5748.380 0.73353661853071
+5758.380 0.73456251910471
+5768.370 0.73481520001219
+5778.370 0.73604177629867
+5788.360 0.73697881160407
+5798.350 0.73772872920691
+5808.350 0.73821850752894
+5818.340 0.73949869568861
+5828.340 0.74002529645517
+5838.330 0.74063631239788
+5848.320 0.74223180963898
+5858.320 0.74267049496043
+5868.310 0.74312341983756
+5878.310 0.74404893509719
+5888.300 0.74379323328503
+5898.300 0.74408539218787
+5908.290 0.7453677969365
+5918.280 0.74621855406871
+5928.280 0.74677909372091
+5938.270 0.74790338452716
+5948.270 0.74854737239955
+5958.260 0.74874648042409
+5968.250 0.74946942932513
+5978.250 0.74982619560218
+5988.240 0.75029640748311
+5998.240 0.75078244598891
+6008.230 0.75167738992787
+6018.220 0.75195028577403
+6028.220 0.75209550464419
+6038.210 0.75279616292191
+6048.210 0.7534604638549
+6058.200 0.75336748320712
+6068.200 0.75446717013109
+6078.190 0.75444559209972
+6088.180 0.75383962468349
+6098.180 0.75384594311573
+6108.170 0.75448129495368
+6118.170 0.75471794302129
+6128.160 0.75489300675431
+6138.150 0.75525094503945
+6148.150 0.75542455037631
+6158.140 0.75573453084327
+6168.140 0.75570310648917
+6178.130 0.75564670829285
+6188.120 0.75622134457586
+6198.120 0.75598650906028
+6208.110 0.75594613506249
+6218.110 0.756256647077
+6228.100 0.75669562009595
+6238.100 0.75719862123529
+6248.090 0.75696775032618
+6258.080 0.75767115461061
+6268.080 0.75747051249984
+6278.070 0.75802497185897
+6288.070 0.75823516226824
+6298.060 0.75722442224016
+6308.050 0.75709657180328
+6318.050 0.75741417842801
+6328.040 0.75775965771516
+6338.040 0.75798612056007
+6348.030 0.7575653850704
+6358.020 0.7577846789686
+6368.020 0.75805908533789
+6378.010 0.75820198155069
+6388.010 0.75893427095814
+6398.000 0.75950923206492
+6408.000 0.75979778732508
+6417.990 0.75852932871412
+6427.980 0.75787985015038
+6437.980 0.75811778193895
+6447.970 0.7577258448963
+6457.970 0.75846837242834
+6467.960 0.75885069685602
+6477.950 0.75824809501231
+6487.950 0.7575648821369
+6497.940 0.75767216305622
+6507.940 0.75882348814418
+6517.930 0.75888951773332
+6527.920 0.75853024397401
+6537.920 0.75775284355406
+6547.910 0.75731717390092
+6557.910 0.75700209169956
+6567.900 0.75795848480387
+6577.900 0.75754399909288
+6587.890 0.75722829692287
+6597.880 0.75747243197232
+6607.880 0.75708854103291
+6617.870 0.75751727971505
+6627.870 0.75680299174188
+6637.860 0.75705834765783
+6647.850 0.75590949797028
+6657.850 0.75556853192996
+6667.840 0.75605248397383
+6677.840 0.75607149004025
+6687.830 0.75652840128407
+6697.820 0.75584335243906
+6707.820 0.75542388541319
+6717.810 0.75619600205319
+6727.810 0.75711659768978
+6737.800 0.75674770449548
+6747.800 0.75702552552465
+6757.790 0.75692031251085
+6767.780 0.75735958138062
+6777.780 0.7575182565327
+6787.770 0.75716700468388
+6797.770 0.75645374034373
+6807.760 0.75824515375142
+6817.750 0.75715939577143
+6827.750 0.75789535459157
+6837.740 0.75735986249054
+6847.740 0.75680089335351
+6857.730 0.75733590098527
+6867.720 0.75788969312547
+6877.720 0.75705557905583
+6887.710 0.75766741756827
+6897.710 0.75752812354956
+6907.700 0.75683216515874
+6917.700 0.75686380340304
+6927.690 0.75830353259964
+6937.680 0.75638839858959
+6947.680 0.75741581074026
+6957.670 0.75623493442731
+6967.670 0.75666254125879
+6977.660 0.75673545796586
+6987.650 0.7565582892044
+6997.650 0.75567848030726
+7007.640 0.75677776974179
+7017.640 0.75627224048648
+7027.630 0.7553807753322
+7037.620 0.75616255841218
+7047.620 0.75648844227034
+7057.610 0.75622967612262
+7067.610 0.75591929304253
+7077.600 0.75590370492396
+7087.600 0.75433122590147
+7097.590 0.75506590345157
+7107.580 0.75519745318298
+7117.580 0.75495535374232
+7127.570 0.75388872863049
+7137.570 0.75412459122268
+7147.560 0.75451647510116
+7157.550 0.75452027205857
+7167.550 0.75418106927016
+7177.540 0.75317150138935
+7187.540 0.75251775840512
+7197.530 0.75388235301711
+7207.520 0.75337132789133
+7217.520 0.75434311338633
+7227.510 0.75417841223249
+7237.510 0.75362399218033
+7247.500 0.75339777473383
+7257.500 0.75214848920468
+7267.490 0.75334289716519
+7277.480 0.75190899294069
+7287.480 0.75102489262193
+7297.470 0.75178627371052
+7307.470 0.75128284298361
+7317.460 0.7505331801578
+7327.450 0.75026413003566
+7337.450 0.75109533639664
+7347.440 0.75084114431948
+7357.440 0.75042690648153
+7367.430 0.75034274417101
+7377.430 0.74927680597834
+7387.420 0.74950257972589
+7397.410 0.74903597653949
+7407.410 0.74816016362582
+7417.400 0.74694885541503
+7427.400 0.74627142819768
+7437.390 0.74617200383489
+7447.380 0.7468706725726
+7457.380 0.74636660711056
+7467.370 0.74529050764697
+7477.370 0.74422467433808
+7487.360 0.74446252310029
+7497.350 0.7434215702289
+7507.350 0.7414989483712
+7517.340 0.74160470400977
+7527.340 0.74146098717775
+7537.330 0.74025387579879
+7547.330 0.7405986214532
+7557.320 0.73982573054869
+7567.310 0.73967782025902
+7577.310 0.73897117538846
+7587.300 0.73832886734726
+7597.300 0.73698272259756
+7607.290 0.73641068114224
+7617.280 0.73615653828958
+7627.280 0.73503503066034
+7637.270 0.73364433768867
+7647.270 0.73378968647958
+7657.260 0.7333577233541
+7667.250 0.73288964198882
+7677.250 0.73308713262742
+7687.240 0.73247890542474
+7697.240 0.73166173021043
+7707.230 0.73116929329985
+7717.230 0.73016066587466
+7727.220 0.7289491240918
+7737.210 0.72875909338676
+7747.210 0.72747139833289
+7757.200 0.72582881555014
+7767.200 0.72573458329529
+7777.190 0.72482075917079
+7787.180 0.72365271970866
+7797.180 0.7236466436918
+7807.170 0.72293215573379
+7817.170 0.72154114475589
+7827.160 0.72087095899613
+7837.150 0.71804705559577
+7847.150 0.71812810609631
+7857.140 0.71779147019493
+7867.140 0.71520878937939
+7877.130 0.71317311273569
+7887.130 0.712551049217
+7897.120 0.71319305096669
+7907.110 0.71224744037969
+7917.110 0.71099189644703
+7927.100 0.71002733626669
+7937.100 0.70863721040215
+7947.090 0.70714558557684
+7957.080 0.70506396271971
+7967.080 0.70424931752515
+7977.070 0.70230486212971
+7987.070 0.70126147860348
+7997.060 0.70091705912214
+8007.050 0.69792382125994
+8017.050 0.69709252099253
+8027.040 0.69643469604925
+8037.040 0.69310315958
+8047.030 0.69178717801081
+8057.030 0.69127798422358
+8067.020 0.69002670321429
+8077.010 0.6882244731268
+8087.010 0.6870896762242
+8097.000 0.6839128511515
+8107.000 0.68310659129323
+8116.990 0.68241911629537
+8126.980 0.68079905383961
+8136.980 0.67901690309709
+8146.970 0.67669912895804
+8156.970 0.67533405919467
+8166.960 0.67327867005991
+8176.950 0.66976952659535
+8186.950 0.66902906836705
+8196.940 0.66666055898708
+8206.940 0.66502866460775
+8216.930 0.66263355545988
+8226.930 0.66099337692568
+8236.920 0.65926464899262
+8246.910 0.65644217831596
+8256.910 0.65625805207753
+8266.900 0.65290295765942
+8276.900 0.6520249135266
+8286.890 0.6505936518845
+8296.880 0.64842586169791
+8306.880 0.64580795810202
+8316.870 0.6434841963777
+8326.870 0.63909997455472
+8336.860 0.63681651896476
+8346.850 0.63535792809447
+8356.850 0.63378590628387
+8366.840 0.63167478736561
+8376.840 0.62955393175452
+8386.830 0.62744343020531
+8396.830 0.62396875417645
+8406.820 0.6211783641969
+8416.810 0.61957539889752
+8426.810 0.61688645785512
+8436.800 0.61436837236046
+8446.800 0.61175763749629
+8456.790 0.60778526127727
+8466.780 0.60432424479245
+8476.780 0.60376609775782
+8486.770 0.60142892309807
+8496.770 0.59826167765443
+8506.760 0.59555270867158
+8516.750 0.59198426090626
+8526.750 0.58720181621604
+8536.740 0.5853846753161
+8546.740 0.58316269474943
+8556.730 0.57879959545287
+8566.730 0.57618336780876
+8576.720 0.57494939953259
+8586.710 0.5716794607612
+8596.710 0.56763477538524
+8606.700 0.56508799673329
+8616.700 0.561631312651
+8626.690 0.55856438852838
+8636.680 0.5553352513111
+8646.680 0.55152131774258
+8656.670 0.54783954233821
+8666.670 0.54469497628019
+8676.660 0.54222105365277
+8686.650 0.538258847283
+8696.650 0.53534984611295
+8706.640 0.53202365037088
+8716.640 0.52865826149872
+8726.630 0.52506654787573
+8736.630 0.52163561373824
+8746.620 0.51820272966638
+8756.610 0.51460413474214
+8766.610 0.51108045171206
+8776.600 0.50616320433653
+8786.600 0.50321086680027
+8796.590 0.4993327922659
+8806.580 0.49593686876588
+8816.580 0.49278241286922
+8826.570 0.48925400721951
+8836.570 0.48518375620363
+8846.560 0.48162773761241
+8856.550 0.47831343522124
+8866.550 0.47482064405227
+8876.540 0.4708890055848
+8886.540 0.46710540497257
+8896.530 0.46279636748755
+8906.530 0.45924203066999
+8916.520 0.45585563313013
+8926.510 0.45216001375879
+8936.510 0.44835063479816
+8946.500 0.44439151179595
+8956.500 0.44053211998481
+8966.490 0.43699475204292
+8976.480 0.43239239580763
+8986.480 0.42877146859883
+8996.470 0.424942079699
+9006.470 0.42139591587241
+9016.460 0.4173577485544
+9026.460 0.41367606825463
+9036.450 0.41016835953673
+9046.440 0.40608342577266
+9056.440 0.40250899901318
+9066.430 0.39858307848528
+9076.430 0.39417758377766
+9086.420 0.3897875284369
+9096.410 0.38618637671885
+9106.410 0.38235294457334
+9116.400 0.37794774381993
+9126.400 0.37341137021638
+9136.390 0.36895202440457
+9146.380 0.36328714818545
+9156.380 0.35754208681169
+9166.370 0.3508166362847
+9176.370 0.34260519968671
+9186.360 0.33253879327
+9196.360 0.31844023715854
+9206.350 0.3006215619
+9216.340 0.27810519532471
+9226.340 0.24885600788643
+9236.330 0.21402132304545
+9246.330 0.17581040981818
+9256.320 0.1363696798
+9266.310 0.098953051090909
+9276.310 0.06665592
+9286.300 0.041176490522727
+9296.300 0.023414895014091
+9306.290 0.012590144566364
+9316.280 0.0064553619204545
+9326.280 0.0034280374725
+9336.270 0.002226009088707
+9346.270 0.0019523646681218
+9356.260 0.0020848321319623
+9366.260 0.0020779097569996
+9376.250 0.0016824318087958
+9386.240 0.0017966062039917
+9396.240 0.0018048528048282
+9406.230 0.0017333761404298
+9416.230 0.0017535617263281
+9426.220 0.0016186719509396
+9436.210 0.0015486743936481
+9446.210 0.0017731119130382
+9456.200 0.0016531220250123
+9466.200 0.0017179207674836
+9476.190 0.0017453710317067
+9486.180 0.0020272159867925
+9496.180 0.0020784246398906
+9506.170 0.0020680387522659
+9516.170 0.0020882107793435
+9526.160 0.0019371734179243
+9536.160 0.0022359544177331
+9546.150 0.0018944983631254
+9556.140 0.001724830936193
+9566.140 0.0015570323169351
+9576.130 0.0013026837379996
+9586.130 0.0012895514161936
+9596.120 0.00096282755438635
+9606.110 0.0008088432407245
+9616.110 0.00074326667497407
+9626.100 0.00062661809949121
+9636.100 0.00057290349305953
+9646.090 0.00071019040475772
+9656.080 0.00077073183609538
+9666.080 0.00068011344382201
+9676.070 0.00065359859877905
+9686.070 0.00078419422311556
+9696.060 0.0007481979450244
+9706.060 0.00079932257049638
+9716.050 0.00085253228420119
+9726.040 0.00086729775556006
+9736.040 0.00078571303618106
+9746.030 0.00087756426995614
+9756.030 0.00078327224179827
+9766.020 0.00071942994733045
+9776.010 0.00073511791287835
+9786.010 0.00069026505263581
+9796.000 0.00061793427523083
+9806.000 0.00052330574625916
+9815.990 0.0004866337237607
+9825.980 0.00051533510351816
+9835.980 0.0005196795904907
+9845.970 0.00044117052286289
+9855.970 0.00041505572377556
+9865.960 0.00040388144251169
diff --git a/filt_func/euclid/Y.dat b/filt_func/euclid/Y.dat
new file mode 100644
index 00000000..72bee09c
--- /dev/null
+++ b/filt_func/euclid/Y.dat
@@ -0,0 +1,343 @@
+# WAVE T_TOTAL T_FILTER T_TELESCOPE T_NI-OA T_QE
+905 7.5113e-08 0.000105286 0.000916272 0.87738 0.887426
+906 1.91012e-08 7.52355e-05 0.000324963 0.879581 0.888235
+907 1.35019e-07 5.17601e-05 0.00332764 0.881753 0.889033
+908 2.78543e-08 3.40472e-05 0.00104018 0.883893 0.889821
+909 4.6503e-08 2.13514e-05 0.00276018 0.886003 0.890599
+910 4.93864e-08 1.49275e-05 0.00417937 0.888081 0.891368
+911 5.00486e-08 1.22749e-05 0.00513447 0.890127 0.892127
+912 6.814e-08 1.00324e-05 0.00852653 0.89214 0.892877
+913 8.43386e-08 9.1823e-06 0.0114955 0.89412 0.893617
+914 1.18578e-07 8.99259e-06 0.0164541 0.896066 0.894348
+915 1.74339e-07 8.82801e-06 0.0245702 0.897977 0.89507
+916 2.4088e-07 8.49972e-06 0.0351578 0.899853 0.895783
+917 3.34094e-07 8.12229e-06 0.0508847 0.901693 0.896487
+918 4.35089e-07 7.29911e-06 0.0735359 0.903499 0.897183
+919 6.60982e-07 8.01873e-06 0.101413 0.905269 0.897869
+920 1.06528e-06 9.24164e-06 0.141437 0.907005 0.898548
+921 1.5872e-06 1.01605e-05 0.191174 0.908707 0.899218
+922 2.30254e-06 1.11427e-05 0.252239 0.910375 0.89988
+923 3.31826e-06 1.26196e-05 0.320159 0.912009 0.900534
+924 4.94132e-06 1.50349e-05 0.399181 0.91361 0.90118
+925 7.28201e-06 1.84293e-05 0.478759 0.915179 0.901819
+926 1.09196e-05 2.36196e-05 0.558827 0.916716 0.90245
+927 1.63294e-05 3.12448e-05 0.630265 0.91822 0.903073
+928 2.37988e-05 4.09018e-05 0.700085 0.919693 0.903688
+929 3.45257e-05 5.50628e-05 0.752749 0.921135 0.904297
+930 4.92836e-05 7.44162e-05 0.793318 0.922546 0.904898
+931 6.95513e-05 0.000100915 0.82381 0.923926 0.905493
+932 9.80928e-05 0.000138775 0.843117 0.925276 0.90608
+933 0.00014011 0.000194844 0.855945 0.926597 0.906661
+934 0.000199542 0.000274903 0.862263 0.927888 0.907235
+935 0.000287731 0.000394336 0.865052 0.929151 0.907803
+936 0.000405596 0.000553835 0.866545 0.930385 0.908364
+937 0.000592317 0.000807306 0.866494 0.93159 0.90892
+938 0.000904425 0.00122983 0.866894 0.932768 0.909469
+939 0.00157697 0.0021406 0.866825 0.933918 0.910012
+940 0.00272933 0.00369737 0.867019 0.935041 0.910549
+941 0.00644813 0.00873018 0.865993 0.936138 0.91108
+942 0.0142018 0.019177 0.8668 0.937208 0.911606
+943 0.0278691 0.0375615 0.866973 0.938252 0.912127
+944 0.044613 0.0599557 0.868039 0.939271 0.912642
+945 0.0624714 0.0838591 0.867637 0.940264 0.913152
+946 0.0841821 0.112695 0.868631 0.941232 0.913657
+947 0.125549 0.167579 0.869845 0.942176 0.914157
+948 0.193227 0.257354 0.870414 0.943094 0.914652
+949 0.299855 0.398221 0.87163 0.943988 0.915143
+950 0.434935 0.57657 0.87194 0.944857 0.915629
+951 0.566382 0.748759 0.873038 0.945702 0.916178
+952 0.667793 0.8807 0.873866 0.946521 0.916724
+953 0.723225 0.951427 0.8748 0.947316 0.917264
+954 0.741707 0.973001 0.876038 0.948087 0.9178
+955 0.746622 0.977821 0.876298 0.948833 0.918332
+956 0.747987 0.977728 0.876814 0.949554 0.918859
+957 0.749365 0.977415 0.877569 0.95025 0.919381
+958 0.751517 0.977591 0.878813 0.950922 0.919899
+959 0.753927 0.97846 0.879758 0.95157 0.920412
+960 0.756886 0.980325 0.880469 0.952192 0.92092
+961 0.760002 0.983413 0.880282 0.952791 0.921424
+962 0.763258 0.986785 0.880026 0.953365 0.921922
+963 0.766446 0.989361 0.880422 0.953914 0.922416
+964 0.768389 0.990874 0.880352 0.95444 0.922906
+965 0.769857 0.992223 0.879913 0.95494 0.92339
+966 0.770874 0.993061 0.879436 0.955417 0.923869
+967 0.771616 0.993397 0.879116 0.955869 0.924344
+968 0.772131 0.993599 0.878685 0.956297 0.924813
+969 0.772461 0.993772 0.878097 0.9567 0.925277
+970 0.772543 0.993453 0.877687 0.957079 0.925737
+971 0.772947 0.993476 0.87737 0.957434 0.926191
+972 0.773082 0.993387 0.876874 0.957765 0.92664
+973 0.773327 0.992945 0.876841 0.958072 0.927084
+974 0.77396 0.992983 0.876852 0.958354 0.927523
+975 0.773684 0.992838 0.87602 0.958613 0.927957
+976 0.774067 0.9925 0.876134 0.958847 0.928385
+977 0.77395 0.99188 0.875958 0.959057 0.928808
+978 0.773894 0.991206 0.875926 0.959243 0.929226
+979 0.774779 0.991052 0.876526 0.959406 0.929639
+980 0.774886 0.990918 0.876256 0.959544 0.930046
+981 0.775136 0.990695 0.876254 0.959658 0.930447
+982 0.775131 0.990183 0.876245 0.959748 0.930844
+983 0.775119 0.989713 0.876219 0.959815 0.931234
+984 0.775758 0.989586 0.876652 0.959857 0.93162
+985 0.776231 0.989971 0.876472 0.959876 0.931999
+986 0.776488 0.990208 0.876205 0.95987 0.932374
+987 0.777149 0.99054 0.876337 0.959842 0.932742
+988 0.777855 0.991346 0.876125 0.959791 0.933105
+989 0.778813 0.991991 0.876366 0.959717 0.933462
+990 0.778811 0.992174 0.875959 0.959622 0.933814
+991 0.778997 0.992098 0.876017 0.959506 0.934159
+992 0.778379 0.991941 0.875267 0.959369 0.934499
+993 0.777911 0.991579 0.874889 0.959213 0.934834
+994 0.778603 0.991587 0.875514 0.959037 0.935162
+995 0.778484 0.991362 0.875455 0.958842 0.935484
+996 0.777051 0.990283 0.874695 0.958628 0.935801
+997 0.776708 0.989416 0.874996 0.958397 0.936111
+998 0.77711 0.988382 0.876306 0.958149 0.936416
+999 0.77672 0.987196 0.876882 0.957884 0.936714
+1000 0.776112 0.98631 0.876967 0.957602 0.937007
+1001 0.776301 0.985872 0.877623 0.957305 0.937241
+1002 0.776007 0.985203 0.877959 0.956993 0.937469
+1003 0.776145 0.98517 0.878236 0.956667 0.937691
+1004 0.777234 0.985695 0.879111 0.956326 0.937907
+1005 0.778669 0.986825 0.879852 0.955973 0.938118
+1006 0.779811 0.988624 0.879685 0.955606 0.938323
+1007 0.781518 0.990334 0.88025 0.955227 0.938523
+1008 0.782929 0.991409 0.881061 0.954836 0.938717
+1009 0.783552 0.991885 0.881534 0.954434 0.938905
+1010 0.783547 0.99232 0.88135 0.954022 0.939089
+1011 0.78333 0.992283 0.881362 0.953599 0.939267
+1012 0.783165 0.991913 0.881742 0.953167 0.93944
+1013 0.782421 0.990705 0.88223 0.952725 0.939608
+1014 0.781319 0.988996 0.882773 0.952275 0.939772
+1015 0.78012 0.988055 0.882533 0.951818 0.93993
+1016 0.779155 0.987559 0.88217 0.951353 0.940084
+1017 0.778263 0.987104 0.881863 0.950881 0.940234
+1018 0.778295 0.986976 0.882323 0.950402 0.940378
+1019 0.777625 0.98722 0.881662 0.949919 0.940519
+1020 0.777871 0.988678 0.880967 0.949429 0.940655
+1021 0.778248 0.98995 0.880596 0.948936 0.940787
+1022 0.778452 0.99071 0.880494 0.948438 0.940914
+1023 0.779305 0.991866 0.880781 0.947937 0.941038
+1024 0.77897 0.992664 0.880051 0.947432 0.941158
+1025 0.778042 0.992018 0.879937 0.946926 0.941274
+1026 0.776404 0.991169 0.879204 0.946417 0.941386
+1027 0.775229 0.990193 0.879112 0.945907 0.941494
+1028 0.774579 0.989477 0.879387 0.945396 0.941599
+1029 0.773478 0.987614 0.880175 0.944885 0.9417
+1030 0.77311 0.987214 0.880497 0.944375 0.941798
+1031 0.772784 0.987234 0.880494 0.943865 0.941893
+1032 0.772656 0.987293 0.880685 0.943357 0.941984
+1033 0.773672 0.988264 0.881367 0.94285 0.942073
+1034 0.775817 0.990161 0.882509 0.942346 0.942158
+1035 0.777118 0.991702 0.883007 0.941846 0.94224
+1036 0.77822 0.992915 0.883572 0.941348 0.94232
+1037 0.779364 0.994426 0.883917 0.940855 0.942396
+1038 0.78067 0.995819 0.884549 0.940367 0.942471
+1039 0.781435 0.996098 0.885556 0.939884 0.942542
+1040 0.781015 0.995431 0.886058 0.939407 0.942611
+1041 0.780059 0.994573 0.886118 0.938936 0.942678
+1042 0.779085 0.993544 0.886307 0.938471 0.942742
+1043 0.778654 0.99262 0.887016 0.938012 0.942804
+1044 0.778452 0.991754 0.887933 0.937559 0.942864
+1045 0.778045 0.99115 0.888378 0.937111 0.942923
+1046 0.777818 0.991016 0.888606 0.936669 0.942979
+1047 0.778774 0.992314 0.888898 0.936232 0.943033
+1048 0.778813 0.993129 0.888573 0.9358 0.943086
+1049 0.779264 0.993643 0.888985 0.935373 0.943137
+1050 0.779323 0.995088 0.888116 0.934951 0.943186
+1051 0.779717 0.996026 0.888056 0.934533 0.94326
+1052 0.779317 0.996399 0.887592 0.93412 0.943332
+1053 0.779303 0.996296 0.88799 0.93371 0.943404
+1054 0.778238 0.995437 0.887863 0.933304 0.943473
+1055 0.776446 0.994587 0.886892 0.932903 0.943542
+1056 0.775385 0.993203 0.887231 0.932504 0.943609
+1057 0.773221 0.991122 0.886926 0.932109 0.943675
+1058 0.771889 0.990157 0.886574 0.931717 0.943739
+1059 0.77139 0.989669 0.886748 0.931328 0.943803
+1060 0.77029 0.988712 0.886649 0.930942 0.943865
+1061 0.769124 0.987986 0.886266 0.930558 0.943926
+1062 0.768974 0.98873 0.885733 0.930177 0.943986
+1063 0.769718 0.989712 0.886016 0.929798 0.944045
+1064 0.770092 0.990318 0.88621 0.929421 0.944102
+1065 0.770434 0.990984 0.886312 0.929045 0.944159
+1066 0.769877 0.991087 0.885883 0.928672 0.944215
+1067 0.770069 0.99109 0.886405 0.9283 0.94427
+1068 0.770332 0.991198 0.886915 0.927929 0.944323
+1069 0.769139 0.989652 0.887229 0.927559 0.944376
+1070 0.768296 0.988259 0.88781 0.92719 0.944428
+1071 0.767718 0.987976 0.887701 0.926821 0.94448
+1072 0.766062 0.98577 0.888074 0.926453 0.94453
+1073 0.764339 0.983448 0.888475 0.926086 0.944579
+1074 0.764314 0.982787 0.88935 0.925718 0.944628
+1075 0.764003 0.982844 0.889244 0.925351 0.944676
+1076 0.765539 0.984263 0.890056 0.924983 0.944724
+1077 0.765518 0.985674 0.889068 0.924615 0.94477
+1078 0.767354 0.987645 0.889734 0.924246 0.944816
+1079 0.769105 0.989594 0.890321 0.923876 0.944862
+1080 0.770091 0.991412 0.890143 0.923505 0.944907
+1081 0.770567 0.993244 0.889367 0.923133 0.944951
+1082 0.771972 0.994459 0.890218 0.92276 0.944995
+1083 0.772781 0.995342 0.890682 0.922385 0.945038
+1084 0.772104 0.995353 0.890215 0.922008 0.945081
+1085 0.77065 0.994964 0.889211 0.921629 0.945124
+1086 0.769629 0.994067 0.889162 0.921248 0.945166
+1087 0.768716 0.993218 0.889198 0.920865 0.945207
+1088 0.767729 0.992583 0.888957 0.920479 0.945249
+1089 0.766775 0.99166 0.889015 0.920091 0.94529
+1090 0.765086 0.99133 0.887692 0.9197 0.94533
+1091 0.764876 0.991228 0.887883 0.919305 0.945371
+1092 0.764826 0.991074 0.888309 0.918908 0.945411
+1093 0.765608 0.992085 0.888659 0.918509 0.945451
+1094 0.766711 0.99372 0.888824 0.918109 0.945491
+1095 0.766607 0.99417 0.888651 0.917709 0.945531
+1096 0.766378 0.995433 0.887606 0.917311 0.945571
+1097 0.76715 0.995803 0.888518 0.916914 0.94561
+1098 0.765335 0.995223 0.887275 0.916521 0.94565
+1099 0.764936 0.99446 0.887833 0.916132 0.945689
+1100 0.764558 0.993411 0.888667 0.915747 0.945729
+1101 0.763018 0.992499 0.887993 0.915368 0.9458
+1102 0.762111 0.991447 0.888172 0.914997 0.945871
+1103 0.761845 0.989817 0.889611 0.914633 0.945942
+1104 0.759403 0.987618 0.889015 0.914277 0.946012
+1105 0.758297 0.985979 0.889464 0.913932 0.946083
+1106 0.757633 0.98571 0.889188 0.913597 0.946153
+1107 0.758762 0.986251 0.890273 0.913274 0.946224
+1108 0.759548 0.986809 0.890929 0.912963 0.946294
+1109 0.759149 0.987938 0.889667 0.912666 0.946363
+1110 0.760116 0.989222 0.889854 0.912384 0.946433
+1111 0.761898 0.990629 0.89087 0.912116 0.946502
+1112 0.76279 0.992198 0.890683 0.911866 0.94657
+1113 0.764164 0.993383 0.891387 0.911632 0.946638
+1114 0.764824 0.99444 0.891355 0.911417 0.946706
+1115 0.765111 0.995179 0.891155 0.911222 0.946773
+1116 0.765797 0.995386 0.891879 0.911046 0.946839
+1117 0.765685 0.995108 0.892086 0.910892 0.946905
+1118 0.766481 0.994731 0.89342 0.91076 0.94697
+1119 0.766073 0.99485 0.892884 0.910651 0.947034
+1120 0.765599 0.995259 0.891989 0.910566 0.947097
+1121 0.765085 0.994285 0.892262 0.910506 0.94716
+1122 0.764606 0.992471 0.89331 0.910472 0.947221
+1123 0.763397 0.99176 0.892486 0.910465 0.947282
+1124 0.764356 0.991418 0.893841 0.910483 0.947342
+1125 0.764453 0.99137 0.893899 0.910527 0.947401
+1126 0.764505 0.991092 0.89409 0.910595 0.947458
+1127 0.76457 0.990871 0.894222 0.910686 0.947515
+1128 0.764677 0.99076 0.894285 0.910799 0.94757
+1129 0.765299 0.990739 0.894847 0.910934 0.947624
+1130 0.76576 0.990188 0.895682 0.911089 0.947677
+1131 0.764412 0.988658 0.895268 0.911264 0.947729
+1132 0.764141 0.988608 0.89476 0.911456 0.947779
+1133 0.764585 0.988878 0.894782 0.911667 0.947828
+1134 0.76503 0.988716 0.895181 0.911894 0.947876
+1135 0.765666 0.988696 0.895661 0.912137 0.947922
+1136 0.766618 0.988821 0.896367 0.912394 0.947967
+1137 0.766268 0.989666 0.894885 0.912666 0.94801
+1138 0.768683 0.990535 0.8966 0.91295 0.948051
+1139 0.769201 0.991157 0.896313 0.913246 0.948091
+1140 0.769047 0.991749 0.895261 0.913553 0.948129
+1141 0.770253 0.99249 0.895651 0.91387 0.948165
+1142 0.771231 0.993116 0.89587 0.914196 0.9482
+1143 0.771295 0.993317 0.895404 0.914531 0.948233
+1144 0.771838 0.993318 0.895671 0.914872 0.948264
+1145 0.771797 0.993329 0.895246 0.91522 0.948292
+1146 0.77213 0.993229 0.895352 0.915573 0.948319
+1147 0.771849 0.992806 0.895034 0.915931 0.948344
+1148 0.771916 0.99205 0.895419 0.916292 0.948367
+1149 0.771936 0.992009 0.895104 0.916656 0.948388
+1150 0.772071 0.991861 0.895019 0.917021 0.948407
+1151 0.772228 0.991327 0.895353 0.917387 0.948379
+1152 0.771691 0.990878 0.894809 0.917752 0.948348
+1153 0.771625 0.99115 0.894161 0.918117 0.948316
+1154 0.771687 0.991328 0.893753 0.918479 0.948281
+1155 0.771839 0.991119 0.893802 0.918838 0.948245
+1156 0.772167 0.990697 0.894253 0.919193 0.948207
+1157 0.771729 0.990498 0.893623 0.919543 0.948167
+1158 0.772509 0.990635 0.894107 0.919888 0.948125
+1159 0.771876 0.990363 0.893331 0.920228 0.948081
+1160 0.771739 0.989545 0.893628 0.920562 0.948036
+1161 0.771358 0.988659 0.893713 0.920891 0.947989
+1162 0.77064 0.987876 0.893319 0.921215 0.947941
+1163 0.769814 0.986982 0.892907 0.921534 0.947892
+1164 0.769249 0.985818 0.89305 0.921847 0.947841
+1165 0.768889 0.985291 0.89286 0.922156 0.947788
+1166 0.76909 0.985531 0.892631 0.922461 0.947735
+1167 0.769448 0.985762 0.8926 0.92276 0.94768
+1168 0.770691 0.986398 0.893231 0.923055 0.947625
+1169 0.77166 0.987416 0.893206 0.923345 0.947568
+1170 0.772596 0.988607 0.89299 0.923631 0.94751
+1171 0.773346 0.989873 0.892498 0.923912 0.947451
+1172 0.774267 0.99109 0.892251 0.924189 0.947392
+1173 0.775809 0.992163 0.892855 0.924462 0.947331
+1174 0.777362 0.993127 0.893572 0.924731 0.94727
+1175 0.777154 0.993501 0.8928 0.924995 0.947208
+1176 0.777179 0.993298 0.892817 0.925256 0.947146
+1177 0.778546 0.993093 0.894384 0.925512 0.947083
+1178 0.778883 0.99276 0.894889 0.925764 0.947019
+1179 0.778211 0.992673 0.894014 0.926013 0.946956
+1180 0.778345 0.992284 0.894343 0.926258 0.946891
+1181 0.777588 0.991823 0.893717 0.926499 0.946827
+1182 0.777934 0.991602 0.894145 0.926737 0.946762
+1183 0.77861 0.991743 0.894631 0.926971 0.946697
+1184 0.779534 0.992308 0.895021 0.927202 0.946632
+1185 0.779834 0.992804 0.89476 0.927429 0.946567
+1186 0.779671 0.993337 0.893938 0.927654 0.946502
+1187 0.78032 0.993178 0.894674 0.927874 0.946437
+1188 0.780489 0.992577 0.895261 0.928092 0.946372
+1189 0.780029 0.99277 0.894413 0.928307 0.946308
+1190 0.780123 0.992285 0.894815 0.928519 0.946243
+1191 0.780544 0.991349 0.896003 0.928727 0.946179
+1192 0.780519 0.991214 0.895957 0.928933 0.946116
+1193 0.780345 0.990917 0.895889 0.929137 0.946053
+1194 0.779736 0.990586 0.895356 0.929337 0.94599
+1195 0.78002 0.991043 0.895137 0.929535 0.945928
+1196 0.781473 0.991761 0.896025 0.92973 0.945867
+1197 0.782485 0.99275 0.896163 0.929923 0.945806
+1198 0.783106 0.993194 0.896346 0.930114 0.945746
+1199 0.783333 0.993844 0.895894 0.930302 0.945687
+1200 0.783925 0.994576 0.895788 0.930488 0.945629
+1201 0.784107 0.994438 0.895955 0.930672 0.945616
+1202 0.784344 0.994167 0.896307 0.930854 0.945603
+1203 0.784312 0.993584 0.896634 0.931034 0.945592
+1204 0.783792 0.992779 0.896604 0.931212 0.945581
+1205 0.783705 0.992678 0.896436 0.931388 0.945571
+1206 0.782905 0.991256 0.896647 0.931562 0.945562
+1207 0.775973 0.982172 0.896769 0.931735 0.945554
+1208 0.761605 0.964219 0.896395 0.931906 0.945546
+1209 0.722729 0.915299 0.895947 0.932075 0.945539
+1210 0.65982 0.835192 0.896258 0.932243 0.945533
+1211 0.560424 0.709172 0.896363 0.93241 0.945527
+1212 0.428003 0.540991 0.897226 0.932575 0.945521
+1213 0.300244 0.379498 0.897089 0.932739 0.945516
+1214 0.212206 0.268566 0.895783 0.932902 0.945512
+1215 0.155895 0.197333 0.895478 0.933063 0.945508
+1216 0.115566 0.146171 0.896024 0.933224 0.945504
+1217 0.0881683 0.111486 0.896128 0.933384 0.9455
+1218 0.0711664 0.0899494 0.89636 0.933543 0.945497
+1219 0.0545344 0.0689591 0.895803 0.933701 0.945494
+1220 0.0386556 0.0488973 0.895343 0.933858 0.945491
+1221 0.0278608 0.0352257 0.895621 0.934015 0.945488
+1222 0.0204134 0.0258008 0.895778 0.934171 0.945485
+1223 0.0152208 0.0192406 0.895502 0.934327 0.945482
+1224 0.0117085 0.0148106 0.894756 0.934483 0.945479
+1225 0.00910122 0.0115125 0.894615 0.934638 0.945476
+1226 0.00713185 0.00901805 0.894798 0.934792 0.945474
+1227 0.00576877 0.00728846 0.895391 0.934947 0.94547
+1228 0.00469602 0.00593337 0.895208 0.935101 0.945467
+1229 0.00388588 0.00491256 0.894552 0.935256 0.945464
+1230 0.00326879 0.00413271 0.894349 0.93541 0.94546
+1231 0.00275868 0.00348773 0.894217 0.935565 0.945456
+1232 0.00239096 0.00302225 0.894245 0.93572 0.945452
+1233 0.00208339 0.00263331 0.894158 0.935875 0.945447
+1234 0.00183422 0.00231792 0.894188 0.93603 0.945441
+1235 0.00163324 0.00206523 0.893485 0.936186 0.945436
+1236 0.00147075 0.00185973 0.893355 0.936343 0.94543
+1237 0.00133108 0.00168253 0.893525 0.9365 0.945423
+1238 0.00121434 0.00153447 0.893675 0.936657 0.945415
+1239 0.00111543 0.00141038 0.89296 0.936816 0.945407
+1240 0.00102368 0.00129412 0.892993 0.936975 0.945399
+1241 0.000941505 0.00118962 0.893309 0.937135 0.945389
+1242 0.000867446 0.00109523 0.893829 0.937296 0.945379
+1243 0.000796623 0.0010057 0.893782 0.937458 0.945368
+1244 0.000728293 0.000920029 0.893063 0.937621 0.945356
+1245 0.000662443 0.000836436 0.893353 0.937785 0.945343
+
diff --git a/filt_func/naco/IB_2.00.dat b/filt_func/naco/IB_2.00.dat
new file mode 100644
index 00000000..d7246991
--- /dev/null
+++ b/filt_func/naco/IB_2.00.dat
@@ -0,0 +1,48 @@
+1.958 0
+1.960 0.01
+1.962 0.01
+1.964 0.02
+1.966 0.04
+1.968 0.07
+1.970 0.1
+1.972 0.2
+1.974 0.34
+1.976 0.44
+1.978 0.53
+1.980 0.56
+1.982 0.53
+1.984 0.51
+1.986 0.5
+1.988 0.5
+1.990 0.51
+1.992 0.53
+1.994 0.54
+1.996 0.56
+1.998 0.58
+2.000 0.59
+2.002 0.59
+2.004 0.6
+2.006 0.6
+2.008 0.6
+2.010 0.6
+2.012 0.6
+2.014 0.59
+2.016 0.58
+2.018 0.57
+2.020 0.58
+2.022 0.58
+2.024 0.59
+2.026 0.59
+2.028 0.59
+2.030 0.54
+2.032 0.4
+2.034 0.32
+2.036 0.2
+2.038 0.1
+2.040 0.08
+2.042 0.05
+2.044 0.03
+2.046 0.02
+2.048 0.01
+2.050 0.01
+2.052 0
diff --git a/filt_func/naco/IB_2.03.dat b/filt_func/naco/IB_2.03.dat
new file mode 100644
index 00000000..43d11534
--- /dev/null
+++ b/filt_func/naco/IB_2.03.dat
@@ -0,0 +1,51 @@
+1.982 0
+1.984 0.01
+1.986 0.01
+1.988 0.02
+1.990 0.02
+1.992 0.03
+1.994 0.05
+1.996 0.08
+1.998 0.13
+2.000 0.22
+2.002 0.33
+2.004 0.44
+2.006 0.58
+2.008 0.6
+2.010 0.58
+2.012 0.56
+2.014 0.54
+2.016 0.53
+2.018 0.54
+2.020 0.55
+2.022 0.56
+2.024 0.57
+2.026 0.58
+2.028 0.58
+2.030 0.59
+2.032 0.59
+2.034 0.59
+2.036 0.58
+2.038 0.59
+2.040 0.59
+2.042 0.58
+2.044 0.57
+2.046 0.57
+2.048 0.56
+2.050 0.57
+2.052 0.57
+2.054 0.59
+2.056 0.6
+2.058 0.58
+2.060 0.5
+2.062 0.39
+2.064 0.29
+2.066 0.18
+2.068 0.09
+2.070 0.06
+2.072 0.04
+2.074 0.03
+2.076 0.02
+2.078 0.01
+2.080 0.01
+2.082 0
diff --git a/filt_func/naco/IB_2.06.dat b/filt_func/naco/IB_2.06.dat
new file mode 100644
index 00000000..0aa9dfc5
--- /dev/null
+++ b/filt_func/naco/IB_2.06.dat
@@ -0,0 +1,50 @@
+2.014 0
+2.016 0.01
+2.018 0.01
+2.020 0.02
+2.022 0.03
+2.024 0.06
+2.026 0.08
+2.028 0.15
+2.030 0.22
+2.032 0.38
+2.034 0.45
+2.036 0.58
+2.038 0.62
+2.040 0.6
+2.042 0.56
+2.044 0.54
+2.046 0.53
+2.048 0.53
+2.050 0.55
+2.052 0.56
+2.054 0.6
+2.056 0.61
+2.058 0.62
+2.060 0.64
+2.062 0.64
+2.064 0.64
+2.066 0.64
+2.068 0.63
+2.070 0.63
+2.072 0.62
+2.074 0.6
+2.076 0.59
+2.078 0.58
+2.080 0.58
+2.082 0.58
+2.084 0.59
+2.086 0.59
+2.088 0.6
+2.090 0.55
+2.092 0.45
+2.094 0.38
+2.096 0.28
+2.098 0.15
+2.100 0.09
+2.102 0.05
+2.104 0.03
+2.106 0.02
+2.108 0.01
+2.110 0.01
+2.112 0
diff --git a/filt_func/naco/IB_2.24.dat b/filt_func/naco/IB_2.24.dat
new file mode 100644
index 00000000..08a22ff6
--- /dev/null
+++ b/filt_func/naco/IB_2.24.dat
@@ -0,0 +1,47 @@
+2.198 0
+2.200 0.01
+2.202 0.01
+2.204 0.02
+2.206 0.04
+2.208 0.06
+2.210 0.08
+2.212 0.14
+2.214 0.21
+2.216 0.3
+2.218 0.44
+2.220 0.52
+2.222 0.55
+2.224 0.54
+2.226 0.53
+2.228 0.52
+2.230 0.51
+2.232 0.53
+2.234 0.56
+2.236 0.57
+2.238 0.59
+2.240 0.58
+2.242 0.58
+2.244 0.56
+2.246 0.57
+2.248 0.57
+2.250 0.57
+2.252 0.56
+2.254 0.53
+2.256 0.51
+2.258 0.52
+2.260 0.51
+2.262 0.5
+2.264 0.52
+2.266 0.51
+2.268 0.47
+2.270 0.4
+2.272 0.3
+2.274 0.2
+2.276 0.13
+2.278 0.07
+2.280 0.05
+2.282 0.03
+2.284 0.02
+2.286 0.01
+2.288 0.01
+2.290 0
diff --git a/filt_func/naco/IB_2.27.dat b/filt_func/naco/IB_2.27.dat
new file mode 100644
index 00000000..2503f847
--- /dev/null
+++ b/filt_func/naco/IB_2.27.dat
@@ -0,0 +1,48 @@
+2.230 0
+2.232 0.01
+2.234 0.01
+2.236 0.02
+2.238 0.04
+2.240 0.06
+2.242 0.11
+2.244 0.19
+2.246 0.27
+2.248 0.39
+2.250 0.51
+2.252 0.55
+2.254 0.52
+2.256 0.5
+2.258 0.49
+2.260 0.47
+2.262 0.45
+2.264 0.47
+2.266 0.48
+2.268 0.49
+2.270 0.51
+2.272 0.52
+2.274 0.52
+2.276 0.52
+2.278 0.54
+2.280 0.54
+2.282 0.53
+2.284 0.52
+2.286 0.51
+2.288 0.52
+2.290 0.51
+2.292 0.51
+2.294 0.5
+2.296 0.5
+2.298 0.48
+2.300 0.45
+2.302 0.39
+2.304 0.3
+2.306 0.24
+2.308 0.16
+2.310 0.12
+2.312 0.07
+2.314 0.05
+2.316 0.04
+2.318 0.02
+2.320 0.01
+2.322 0.01
+2.324 0
diff --git a/filt_func/naco/IB_2.30.dat b/filt_func/naco/IB_2.30.dat
new file mode 100644
index 00000000..1b343703
--- /dev/null
+++ b/filt_func/naco/IB_2.30.dat
@@ -0,0 +1,52 @@
+2.260 0
+2.262 0.01
+2.264 0.01
+2.266 0.01
+2.268 0.01
+2.270 0.02
+2.272 0.03
+2.274 0.04
+2.276 0.06
+2.278 0.09
+2.280 0.15
+2.282 0.23
+2.284 0.35
+2.286 0.46
+2.288 0.56
+2.290 0.58
+2.292 0.56
+2.294 0.52
+2.296 0.5
+2.298 0.49
+2.300 0.5
+2.302 0.52
+2.304 0.53
+2.306 0.54
+2.308 0.55
+2.310 0.55
+2.312 0.56
+2.314 0.59
+2.316 0.58
+2.318 0.57
+2.320 0.57
+2.322 0.58
+2.324 0.58
+2.326 0.59
+2.328 0.59
+2.330 0.58
+2.332 0.55
+2.334 0.53
+2.336 0.53
+2.338 0.51
+2.340 0.4
+2.342 0.32
+2.344 0.23
+2.346 0.17
+2.348 0.1
+2.350 0.06
+2.352 0.04
+2.354 0.03
+2.356 0.02
+2.358 0.01
+2.360 0.01
+2.362 0
diff --git a/filt_func/naco/IB_2.33.dat b/filt_func/naco/IB_2.33.dat
new file mode 100644
index 00000000..e606b11d
--- /dev/null
+++ b/filt_func/naco/IB_2.33.dat
@@ -0,0 +1,54 @@
+2.290 0
+2.292 0.01
+2.294 0.01
+2.296 0.01
+2.298 0.01
+2.300 0.02
+2.302 0.02
+2.304 0.04
+2.306 0.06
+2.308 0.08
+2.310 0.14
+2.312 0.23
+2.314 0.3
+2.316 0.39
+2.318 0.47
+2.320 0.52
+2.322 0.53
+2.324 0.53
+2.326 0.52
+2.328 0.52
+2.330 0.52
+2.332 0.53
+2.334 0.53
+2.336 0.54
+2.338 0.54
+2.340 0.54
+2.342 0.54
+2.344 0.54
+2.346 0.54
+2.348 0.53
+2.350 0.52
+2.352 0.51
+2.354 0.5
+2.356 0.49
+2.358 0.48
+2.360 0.48
+2.362 0.49
+2.364 0.49
+2.366 0.47
+2.368 0.45
+2.370 0.4
+2.372 0.3
+2.374 0.23
+2.376 0.17
+2.378 0.1
+2.380 0.05
+2.382 0.03
+2.384 0.03
+2.386 0.02
+2.388 0.02
+2.390 0.01
+2.392 0.01
+2.394 0.01
+2.396 0
diff --git a/filt_func/naco/IB_2.36.dat b/filt_func/naco/IB_2.36.dat
new file mode 100644
index 00000000..11d2bd5c
--- /dev/null
+++ b/filt_func/naco/IB_2.36.dat
@@ -0,0 +1,51 @@
+2.320 0
+2.322 0.01
+2.324 0.01
+2.326 0.02
+2.328 0.02
+2.330 0.03
+2.332 0.04
+2.334 0.06
+2.336 0.09
+2.338 0.16
+2.340 0.21
+2.342 0.3
+2.344 0.39
+2.346 0.43
+2.348 0.45
+2.350 0.44
+2.352 0.44
+2.354 0.45
+2.356 0.47
+2.358 0.47
+2.360 0.48
+2.362 0.5
+2.364 0.49
+2.366 0.5
+2.368 0.52
+2.370 0.5
+2.372 0.51
+2.374 0.53
+2.376 0.5
+2.378 0.5
+2.380 0.51
+2.382 0.49
+2.384 0.48
+2.386 0.48
+2.388 0.48
+2.390 0.49
+2.392 0.5
+2.394 0.51
+2.396 0.49
+2.398 0.4
+2.400 0.3
+2.402 0.2
+2.404 0.12
+2.406 0.08
+2.408 0.05
+2.410 0.03
+2.412 0.02
+2.414 0.01
+2.416 0.01
+2.418 0.01
+2.420 0
diff --git a/filt_func/nsfcam/L.dat b/filt_func/nsfcam/L.dat
new file mode 100755
index 00000000..43589640
--- /dev/null
+++ b/filt_func/nsfcam/L.dat
@@ -0,0 +1,390 @@
+30156.8 0.000962257
+30175 0.00120592
+30193.2 0.00134921
+30211.5 0.00127125
+30229.7 0.00150251
+30248 0.00161243
+30266.3 0.00188732
+30284.7 0.00170279
+30303 0.00204206
+30321.4 0.00192571
+30339.8 0.00215411
+30358.2 0.0022676
+30376.7 0.00244951
+30395.1 0.00242066
+30413.6 0.0025301
+30432.1 0.00248027
+30450.7 0.0023284
+30469.2 0.00224257
+30487.8 0.00251317
+30506.4 0.0024693
+30525 0.00250125
+30543.7 0.00249219
+30562.3 0.00242495
+30581 0.00247026
+30599.8 0.00256109
+30618.5 0.00265122
+30637.3 0.00268054
+30656 0.0026195
+30674.8 0.00252914
+30693.7 0.0025599
+30712.5 0.00271273
+30731.4 0.00289178
+30750.3 0.0028379
+30769.2 0.0027976
+30788.2 0.00280762
+30807.1 0.00294924
+30826.1 0.00277042
+30845.2 0.00315022
+30864.2 0.00310421
+30883.3 0.0032618
+30902.3 0.00327802
+30921.5 0.00363994
+30940.6 0.00354338
+30959.8 0.00367117
+30978.9 0.00364733
+30998.1 0.00382757
+31017.4 0.00397182
+31036.6 0.00422025
+31055.9 0.00454044
+31075.2 0.00470376
+31094.5 0.00489855
+31113.9 0.00507116
+31133.3 0.00551271
+31152.6 0.00583959
+31172.1 0.00608921
+31191.5 0.00644302
+31211 0.00705314
+31230.5 0.00754762
+31250 0.00817514
+31269.5 0.0087316
+31289.1 0.00952125
+31308.7 0.0100901
+31328.3 0.0112662
+31348 0.012145
+31367.6 0.0135512
+31387.3 0.0147848
+31407 0.0162675
+31426.8 0.0178838
+31446.5 0.0200837
+31466.3 0.0222387
+31486.1 0.0248327
+31506 0.0277917
+31525.9 0.0313036
+31545.7 0.0353098
+31565.7 0.0398614
+31585.6 0.0450525
+31605.6 0.0513139
+31625.6 0.0586095
+31645.6 0.0669079
+31665.6 0.0764895
+31685.7 0.0874972
+31705.8 0.100346
+31725.9 0.115176
+31746 0.132822
+31766.2 0.152965
+31786.4 0.176419
+31806.6 0.202869
+31826.9 0.232942
+31847.1 0.26663
+31867.4 0.304328
+31887.8 0.346514
+31908.1 0.39176
+31928.5 0.440715
+31948.9 0.49065
+31969.3 0.54304
+31989.8 0.595515
+32010.2 0.646355
+32030.7 0.69369
+32051.3 0.736929
+32071.8 0.776407
+32092.4 0.810945
+32113 0.840741
+32133.7 0.865207
+32154.3 0.882942
+32175 0.895848
+32195.8 0.907165
+32216.5 0.914134
+32237.3 0.918469
+32258.1 0.918946
+32278.9 0.921683
+32299.7 0.921975
+32320.6 0.922349
+32341.5 0.920204
+32362.5 0.919714
+32383.4 0.918919
+32404.4 0.919387
+32425.4 0.917863
+32446.5 0.919708
+32467.5 0.918676
+32488.6 0.920314
+32509.8 0.921267
+32530.9 0.924305
+32552.1 0.924901
+32573.3 0.92679
+32594.5 0.927062
+32615.8 0.92867
+32637.1 0.930581
+32658.4 0.932568
+32679.7 0.933752
+32701.1 0.934407
+32722.5 0.934966
+32743.9 0.935562
+32765.4 0.935877
+32786.9 0.935577
+32808.4 0.937084
+32829.9 0.935535
+32851.5 0.935269
+32873.1 0.933562
+32894.7 0.934837
+32916.4 0.934186
+32938.1 0.93382
+32959.8 0.930758
+32981.5 0.932153
+33003.3 0.930245
+33025.1 0.931608
+33046.9 0.929196
+33068.8 0.928553
+33090.7 0.927891
+33112.6 0.927366
+33134.5 0.925955
+33156.5 0.925616
+33178.5 0.924155
+33200.5 0.9242
+33222.6 0.924963
+33244.7 0.926667
+33266.8 0.926907
+33288.9 0.927095
+33311.1 0.927768
+33333.3 0.927881
+33355.6 0.927298
+33377.8 0.928207
+33400.1 0.929544
+33422.5 0.92875
+33444.8 0.931329
+33467.2 0.931714
+33489.6 0.933643
+33512.1 0.933482
+33534.5 0.934703
+33557 0.933673
+33579.6 0.936075
+33602.2 0.935964
+33624.7 0.937671
+33647.4 0.937828
+33670 0.93953
+33692.7 0.93949
+33715.4 0.940382
+33738.2 0.939342
+33761 0.939697
+33783.8 0.939215
+33806.6 0.939933
+33829.5 0.939316
+33852.4 0.93844
+33875.3 0.936932
+33898.3 0.937429
+33921.3 0.935991
+33944.3 0.934474
+33967.4 0.93386
+33990.5 0.933919
+34013.6 0.934497
+34036.8 0.932878
+34059.9 0.932388
+34083.2 0.930515
+34106.4 0.930335
+34129.7 0.926779
+34153 0.928042
+34176.3 0.927017
+34199.7 0.927041
+34223.1 0.925245
+34246.6 0.925419
+34270 0.922434
+34293.6 0.922526
+34317.1 0.920628
+34340.7 0.922238
+34364.3 0.922019
+34387.9 0.92312
+34411.6 0.922412
+34435.3 0.922376
+34459 0.922568
+34482.8 0.92339
+34506.6 0.923071
+34530.4 0.922723
+34554.3 0.923598
+34578.1 0.924315
+34602.1 0.92512
+34626 0.925369
+34650 0.926424
+34674.1 0.926304
+34698.1 0.927742
+34722.2 0.927231
+34746.4 0.928697
+34770.5 0.928282
+34794.7 0.928515
+34818.9 0.928225
+34843.2 0.931308
+34867.5 0.93055
+34891.8 0.931965
+34916.2 0.931467
+34940.6 0.933056
+34965 0.931511
+34989.5 0.93317
+35014 0.932156
+35038.5 0.933175
+35063.1 0.93295
+35087.7 0.933402
+35112.4 0.93237
+35137 0.932794
+35161.7 0.933112
+35186.5 0.933091
+35211.3 0.932481
+35236.1 0.931611
+35260.9 0.931829
+35285.8 0.931225
+35310.7 0.931367
+35335.7 0.930309
+35360.7 0.930468
+35385.7 0.928837
+35410.8 0.929125
+35435.9 0.927485
+35461 0.928169
+35486.2 0.926087
+35511.4 0.926735
+35536.6 0.924653
+35561.9 0.925792
+35587.2 0.923333
+35612.5 0.924337
+35637.9 0.922857
+35663.3 0.923206
+35688.8 0.922176
+35714.3 0.922241
+35739.8 0.920767
+35765.4 0.921537
+35791 0.921272
+35816.6 0.921205
+35842.3 0.920734
+35868 0.921399
+35893.8 0.922207
+35919.5 0.922209
+35945.4 0.923026
+35971.2 0.923312
+35997.1 0.924458
+36023.1 0.923587
+36049 0.925046
+36075 0.925553
+36101.1 0.927519
+36127.2 0.927259
+36153.3 0.929243
+36179.5 0.929186
+36205.6 0.931319
+36231.9 0.931036
+36258.2 0.933156
+36284.5 0.932827
+36310.8 0.935527
+36337.2 0.935068
+36363.6 0.936368
+36390.1 0.93617
+36416.6 0.938059
+36443.1 0.938573
+36469.7 0.939709
+36496.4 0.93988
+36523 0.939998
+36549.7 0.94011
+36576.4 0.940587
+36603.2 0.940885
+36630 0.940585
+36656.9 0.939915
+36683.8 0.938672
+36710.7 0.93903
+36737.7 0.937852
+36764.7 0.937917
+36791.8 0.936105
+36818.9 0.936005
+36846 0.933661
+36873.2 0.933678
+36900.4 0.930873
+36927.6 0.931034
+36954.9 0.927961
+36982.2 0.927815
+37009.6 0.92528
+37037 0.925085
+37064.5 0.922289
+37092 0.92209
+37119.5 0.92012
+37147.1 0.919756
+37174.7 0.917933
+37202.4 0.917613
+37230.1 0.916242
+37257.8 0.915813
+37285.6 0.914763
+37313.4 0.914014
+37341.3 0.913402
+37369.2 0.912757
+37397.2 0.911949
+37425.1 0.910474
+37453.2 0.909624
+37481.3 0.906503
+37509.4 0.903579
+37537.5 0.898389
+37565.7 0.893606
+37594 0.884823
+37622.3 0.876159
+37650.6 0.863052
+37679 0.849638
+37707.4 0.830408
+37735.8 0.810358
+37764.4 0.784773
+37792.9 0.757942
+37821.5 0.7256
+37850.1 0.692032
+37878.8 0.654269
+37907.5 0.615479
+37936.3 0.57444
+37965.1 0.533411
+37993.9 0.491468
+38022.8 0.450241
+38051.8 0.410215
+38080.7 0.371899
+38109.8 0.335394
+38138.8 0.301191
+38167.9 0.269683
+38197.1 0.240773
+38226.3 0.214541
+38255.5 0.190484
+38284.8 0.169015
+38314.2 0.149827
+38343.6 0.132494
+38373 0.117145
+38402.5 0.103844
+38432 0.0915825
+38461.5 0.081001
+38491.1 0.071492
+38520.8 0.0633302
+38550.5 0.055959
+38580.2 0.0494764
+38610 0.043674
+38639.9 0.0386024
+38669.8 0.0340512
+38699.7 0.0300536
+38729.7 0.0265405
+38759.7 0.0234788
+38789.8 0.0208454
+38819.9 0.0184088
+38850 0.0161228
+38880.2 0.014158
+38910.5 0.0123668
+38940.8 0.0108354
+38971.2 0.00944018
+39001.6 0.00825095
+39032 0.00721598
+39062.5 0.00630403
+39093 0.00532269
+39123.6 0.00468755
+39154.3 0.00382352
+39185 0.00340962
+39215.7 0.00293064
+39246.5 0.00240946
+39277.3 0.00178313
+39308.2 0.00182629
+39339.1 0.00121212
+39370.1 0.00120258
+39401.1 0.000939846
diff --git a/filt_func/rubin/README.txt b/filt_func/rubin/README.txt
new file mode 100755
index 00000000..d185c3c7
--- /dev/null
+++ b/filt_func/rubin/README.txt
@@ -0,0 +1,5 @@
+These are the Vera C. Rubin Observatory or LSST filters, downloaded 10/25/2024 from: https://github.com/lsst/throughputs/tree/main/baseline
+
+Specifically the total_*.dat file was used
+
+The wavelengths are in nm, the transmission is in fractions
\ No newline at end of file
diff --git a/filt_func/rubin/g.dat b/filt_func/rubin/g.dat
new file mode 100755
index 00000000..55dfa2c5
--- /dev/null
+++ b/filt_func/rubin/g.dat
@@ -0,0 +1,8508 @@
+# LSST Throughputs files created from syseng_throughputs repo
+# Version 1.9
+# sha1 fcc05772f99427e4a45cd1b9da1628dded9a06d5
+# Aerosols added to atmosphere
+# Wavelen_cutoff_BLUE 385.60
+# Wavelen_cutoff_RED 566.30
+# Wavelength(nm) Throughput(0-1)
+300.0 0.0
+300.1 0.0
+300.20000000000005 0.0
+300.30000000000007 0.0
+300.4000000000001 0.0
+300.5000000000001 0.0
+300.60000000000014 0.0
+300.70000000000016 0.0
+300.8000000000002 0.0
+300.9000000000002 0.0
+301.0000000000002 0.0
+301.10000000000025 0.0
+301.2000000000003 0.0
+301.3000000000003 0.0
+301.4000000000003 0.0
+301.50000000000034 0.0
+301.60000000000036 0.0
+301.7000000000004 0.0
+301.8000000000004 0.0
+301.90000000000043 0.0
+302.00000000000045 0.0
+302.1000000000005 0.0
+302.2000000000005 0.0
+302.3000000000005 0.0
+302.40000000000055 0.0
+302.50000000000057 0.0
+302.6000000000006 0.0
+302.7000000000006 0.0
+302.80000000000064 0.0
+302.90000000000066 0.0
+303.0000000000007 0.0
+303.1000000000007 0.0
+303.2000000000007 0.0
+303.30000000000075 0.0
+303.4000000000008 0.0
+303.5000000000008 0.0
+303.6000000000008 0.0
+303.70000000000084 0.0
+303.80000000000086 0.0
+303.9000000000009 0.0
+304.0000000000009 0.0
+304.10000000000093 0.0
+304.20000000000095 0.0
+304.300000000001 0.0
+304.400000000001 0.0
+304.500000000001 0.0
+304.60000000000105 0.0
+304.70000000000107 0.0
+304.8000000000011 0.0
+304.9000000000011 0.0
+305.00000000000114 0.0
+305.10000000000116 0.0
+305.2000000000012 0.0
+305.3000000000012 0.0
+305.4000000000012 0.0
+305.50000000000125 0.0
+305.6000000000013 0.0
+305.7000000000013 0.0
+305.8000000000013 0.0
+305.90000000000134 0.0
+306.00000000000136 0.0
+306.1000000000014 0.0
+306.2000000000014 0.0
+306.30000000000143 0.0
+306.40000000000146 0.0
+306.5000000000015 0.0
+306.6000000000015 0.0
+306.7000000000015 0.0
+306.80000000000155 0.0
+306.90000000000157 0.0
+307.0000000000016 0.0
+307.1000000000016 0.0
+307.20000000000164 0.0
+307.30000000000166 0.0
+307.4000000000017 0.0
+307.5000000000017 0.0
+307.6000000000017 0.0
+307.70000000000175 0.0
+307.8000000000018 0.0
+307.9000000000018 0.0
+308.0000000000018 0.0
+308.10000000000184 0.0
+308.20000000000186 0.0
+308.3000000000019 0.0
+308.4000000000019 0.0
+308.50000000000193 0.0
+308.60000000000196 0.0
+308.700000000002 0.0
+308.800000000002 0.0
+308.900000000002 0.0
+309.00000000000205 0.0
+309.10000000000207 0.0
+309.2000000000021 0.0
+309.3000000000021 0.0
+309.40000000000214 0.0
+309.50000000000216 0.0
+309.6000000000022 0.0
+309.7000000000022 0.0
+309.8000000000022 0.0
+309.90000000000225 0.0
+310.0000000000023 0.0
+310.1000000000023 0.0
+310.2000000000023 0.0
+310.30000000000234 0.0
+310.40000000000236 0.0
+310.5000000000024 0.0
+310.6000000000024 0.0
+310.70000000000243 0.0
+310.80000000000246 0.0
+310.9000000000025 0.0
+311.0000000000025 0.0
+311.1000000000025 0.0
+311.20000000000255 0.0
+311.30000000000257 0.0
+311.4000000000026 0.0
+311.5000000000026 0.0
+311.60000000000264 0.0
+311.70000000000266 0.0
+311.8000000000027 0.0
+311.9000000000027 0.0
+312.00000000000273 0.0
+312.10000000000275 0.0
+312.2000000000028 0.0
+312.3000000000028 0.0
+312.4000000000028 0.0
+312.50000000000284 0.0
+312.60000000000286 0.0
+312.7000000000029 0.0
+312.8000000000029 0.0
+312.90000000000293 0.0
+313.00000000000296 0.0
+313.100000000003 0.0
+313.200000000003 0.0
+313.300000000003 0.0
+313.40000000000305 0.0
+313.50000000000307 0.0
+313.6000000000031 0.0
+313.7000000000031 0.0
+313.80000000000314 0.0
+313.90000000000316 0.0
+314.0000000000032 0.0
+314.1000000000032 0.0
+314.20000000000323 0.0
+314.30000000000325 0.0
+314.4000000000033 0.0
+314.5000000000033 0.0
+314.6000000000033 0.0
+314.70000000000334 0.0
+314.80000000000337 0.0
+314.9000000000034 0.0
+315.0000000000034 0.0
+315.10000000000343 0.0
+315.20000000000346 0.0
+315.3000000000035 0.0
+315.4000000000035 0.0
+315.5000000000035 0.0
+315.60000000000355 0.0
+315.70000000000357 0.0
+315.8000000000036 0.0
+315.9000000000036 0.0
+316.00000000000364 0.0
+316.10000000000366 0.0
+316.2000000000037 0.0
+316.3000000000037 0.0
+316.40000000000373 0.0
+316.50000000000375 0.0
+316.6000000000038 0.0
+316.7000000000038 0.0
+316.8000000000038 0.0
+316.90000000000384 0.0
+317.00000000000387 0.0
+317.1000000000039 0.0
+317.2000000000039 0.0
+317.30000000000393 0.0
+317.40000000000396 0.0
+317.500000000004 0.0
+317.600000000004 0.0
+317.700000000004 0.0
+317.80000000000405 0.0
+317.90000000000407 0.0
+318.0000000000041 0.0
+318.1000000000041 0.0
+318.20000000000414 0.0
+318.30000000000416 0.0
+318.4000000000042 0.0
+318.5000000000042 0.0
+318.60000000000423 0.0
+318.70000000000425 0.0
+318.8000000000043 0.0
+318.9000000000043 0.0
+319.0000000000043 0.0
+319.10000000000434 0.0
+319.20000000000437 0.0
+319.3000000000044 0.0
+319.4000000000044 0.0
+319.50000000000443 0.0
+319.60000000000446 0.0
+319.7000000000045 0.0
+319.8000000000045 0.0
+319.9000000000045 0.0
+320.00000000000455 2.608869266023373e-22
+320.10000000000457 6.862571085041226e-12
+320.2000000000046 1.626854545004664e-11
+320.3000000000046 2.8687964396523257e-11
+320.40000000000464 4.4634300768670185e-11
+320.50000000000466 6.466582158962241e-11
+320.6000000000047 8.95330049259959e-11
+320.7000000000047 1.1983661519473885e-10
+320.80000000000473 1.5630415958495064e-10
+320.90000000000475 1.9971726550069323e-10
+321.0000000000048 2.5091327577556116e-10
+321.1000000000048 3.183320768183344e-10
+321.2000000000048 3.971737395177138e-10
+321.30000000000484 4.884235764642338e-10
+321.40000000000487 5.930860373510596e-10
+321.5000000000049 7.121847181240911e-10
+321.6000000000049 8.411202203716658e-10
+321.70000000000493 9.84627031075741e-10
+321.80000000000496 1.1434568914988235e-09
+321.900000000005 1.3183565778659266e-09
+322.000000000005 1.5100677600778475e-09
+322.100000000005 1.741790698738026e-09
+322.20000000000505 1.9963220538734223e-09
+322.30000000000507 2.274774326228702e-09
+322.4000000000051 2.5782652359155363e-09
+322.5000000000051 2.9079176786460683e-09
+322.60000000000514 3.292382071261634e-09
+322.70000000000516 3.7118313248415742e-09
+322.8000000000052 4.168173709952787e-09
+322.9000000000052 4.6633644813881795e-09
+323.00000000000523 5.199406274653162e-09
+323.10000000000525 5.9708311151900165e-09
+323.2000000000053 6.8211456286571045e-09
+323.3000000000053 7.75520703256862e-09
+323.4000000000053 8.778006281576449e-09
+323.50000000000534 9.894668789753337e-09
+323.60000000000537 1.10417566835276e-08
+323.7000000000054 1.2278641310758627e-08
+323.8000000000054 1.3609307211476378e-08
+323.90000000000543 1.5037801651615337e-08
+324.00000000000546 1.6568234787969987e-08
+324.1000000000055 1.851528927503892e-08
+324.2000000000055 2.0607310945604746e-08
+324.3000000000055 2.2849211707462818e-08
+324.40000000000555 2.5245869669339028e-08
+324.50000000000557 2.7802128838206408e-08
+324.6000000000056 3.050822952062498e-08
+324.7000000000056 3.3380677269803465e-08
+324.80000000000564 3.64239396781661e-08
+324.90000000000566 3.9642437399147384e-08
+325.0000000000057 4.304054404806238e-08
+325.1000000000057 4.723823481464026e-08
+325.20000000000573 5.171314597926598e-08
+325.30000000000575 5.647563743726436e-08
+325.4000000000058 6.15362061908306e-08
+325.5000000000058 6.690548768160693e-08
+325.6000000000058 7.290360781187837e-08
+325.70000000000584 7.92812240310507e-08
+325.80000000000587 8.605325108999668e-08
+325.9000000000059 9.323488852946361e-08
+326.0000000000059 1.0084162390549472e-07
+326.10000000000593 1.0774586375278682e-07
+326.20000000000596 1.1498683350247573e-07
+326.300000000006 1.2257491299906895e-07
+326.400000000006 1.3052065366013176e-07
+326.500000000006 1.3883478192066855e-07
+326.60000000000605 1.4681109724046835e-07
+326.70000000000607 1.5509788743375283e-07
+326.8000000000061 1.6370185365572512e-07
+326.9000000000061 1.726297404331781e-07
+327.00000000000614 1.8188833578184155e-07
+327.10000000000616 1.938645298374479e-07
+327.2000000000062 2.063446021867002e-07
+327.3000000000062 2.1933797368633066e-07
+327.40000000000623 2.3285399983346025e-07
+327.50000000000625 2.4690197023417943e-07
+327.6000000000063 2.617256292430431e-07
+327.7000000000063 2.77127882946725e-07
+327.8000000000063 2.931195230243034e-07
+327.90000000000634 3.09711321084252e-07
+328.00000000000637 3.2691402836177847e-07
+328.1000000000064 3.443056057978998e-07
+328.2000000000064 3.6235995772587894e-07
+328.30000000000643 3.810931070857026e-07
+328.40000000000646 4.005212705074333e-07
+328.5000000000065 4.206608590523559e-07
+328.6000000000065 4.4249615658281534e-07
+328.7000000000065 4.651617521923471e-07
+328.80000000000655 4.886786443392147e-07
+328.90000000000657 5.13068132818508e-07
+329.0000000000066 5.383518194962324e-07
+329.1000000000066 5.645058192529429e-07
+329.20000000000664 5.9156473092298e-07
+329.30000000000666 6.195483807912428e-07
+329.4000000000067 6.484768179735613e-07
+329.5000000000067 6.783703131738169e-07
+329.60000000000673 7.068782183592938e-07
+329.70000000000675 7.361956573270905e-07
+329.8000000000068 7.663352963921719e-07
+329.9000000000068 7.973098458200418e-07
+330.0000000000068 8.291320557816061e-07
+330.10000000000684 8.609489073360979e-07
+330.20000000000687 8.93553959238348e-07
+330.3000000000069 9.269560073011085e-07
+330.4000000000069 9.611637770452618e-07
+330.50000000000693 9.9618591721217e-07
+330.60000000000696 1.0333423837495973e-06
+330.700000000007 1.0714281062989098e-06
+330.800000000007 1.1104551588925565e-06
+330.900000000007 1.1504355750694133e-06
+331.00000000000705 1.191381339018585e-06
+331.10000000000707 1.2244006409490044e-06
+331.2000000000071 1.258092216354064e-06
+331.3000000000071 1.292464670749971e-06
+331.40000000000714 1.3275265805147979e-06
+331.50000000000716 1.363286484432577e-06
+331.6000000000072 1.4026738950893548e-06
+331.7000000000072 1.4429190714202516e-06
+331.80000000000723 1.4840348669762222e-06
+331.90000000000725 1.5260342437644325e-06
+332.0000000000073 1.5689302722807557e-06
+332.1000000000073 1.6181922826434363e-06
+332.2000000000073 1.6685818857949504e-06
+332.30000000000734 1.720115915220796e-06
+332.40000000000737 1.7728113329832594e-06
+332.5000000000074 1.8266852295672382e-06
+332.6000000000074 1.877971641402541e-06
+332.70000000000744 1.9302668829804456e-06
+332.80000000000746 1.9835828504630803e-06
+332.9000000000075 2.037931502648968e-06
+333.0000000000075 2.093324861445553e-06
+333.1000000000075 2.1365808382738607e-06
+333.20000000000755 2.180417839808241e-06
+333.30000000000757 2.2248393634141458e-06
+333.4000000000076 2.2698488990171777e-06
+333.5000000000076 2.3154499292609065e-06
+333.60000000000764 2.364499178815764e-06
+333.70000000000766 2.4142584525916262e-06
+333.8000000000077 2.464737705691354e-06
+333.9000000000077 2.5159469281146056e-06
+334.00000000000773 2.56789612307389e-06
+334.10000000000775 2.6195022369161514e-06
+334.2000000000078 2.671901809868677e-06
+334.3000000000078 2.7251067936740967e-06
+334.4000000000078 2.779129084388929e-06
+334.50000000000784 2.8339804956003956e-06
+334.60000000000787 2.890820553066841e-06
+334.7000000000079 2.9485512669110734e-06
+334.8000000000079 3.007184805586025e-06
+334.90000000000794 3.0667331427434433e-06
+335.00000000000796 3.1272080217455936e-06
+335.100000000008 3.179693425840954e-06
+335.200000000008 3.2328748614881067e-06
+335.300000000008 3.2867591268322075e-06
+335.40000000000805 3.341352597493915e-06
+335.5000000000081 3.39666118863705e-06
+335.6000000000081 3.44867584465491e-06
+335.7000000000081 3.5012999049159026e-06
+335.80000000000814 3.554535708736146e-06
+335.90000000000816 3.608384967199923e-06
+336.0000000000082 3.6628487219606776e-06
+336.1000000000082 3.716155037389912e-06
+336.20000000000823 3.770000472360646e-06
+336.30000000000825 3.824382291821672e-06
+336.4000000000083 3.879296911213236e-06
+336.5000000000083 3.9347398513209234e-06
+336.6000000000083 3.9907053617835004e-06
+336.70000000000834 4.047217441667936e-06
+336.80000000000837 4.104279063484093e-06
+336.9000000000084 4.1618931959356266e-06
+337.0000000000084 4.220062803289128e-06
+337.10000000000844 4.2708953598451736e-06
+337.20000000000846 4.322175348780332e-06
+337.3000000000085 4.373905329854475e-06
+337.4000000000085 4.426087861020346e-06
+337.5000000000085 4.478725497875668e-06
+337.60000000000855 4.5406001768508836e-06
+337.7000000000086 4.603136335279485e-06
+337.8000000000086 4.666339091808079e-06
+337.9000000000086 4.730213596366683e-06
+338.00000000000864 4.794765030587987e-06
+338.10000000000866 4.856167436952302e-06
+338.2000000000087 4.918179208258169e-06
+338.3000000000087 4.9808047544757665e-06
+338.40000000000873 5.044048513255453e-06
+338.50000000000875 5.107914950353962e-06
+338.6000000000088 5.166551195431679e-06
+338.7000000000088 5.225702473868994e-06
+338.8000000000088 5.285369566753142e-06
+338.90000000000884 5.3455533308761345e-06
+339.00000000000887 5.406254706177254e-06
+339.1000000000089 5.469790612668221e-06
+339.2000000000089 5.533876127282153e-06
+339.30000000000894 5.598512610697885e-06
+339.40000000000896 5.6637015358438115e-06
+339.500000000009 5.729444496740806e-06
+339.600000000009 5.791396953970292e-06
+339.700000000009 5.853814020797747e-06
+339.80000000000905 5.916696884188974e-06
+339.9000000000091 5.980046908129608e-06
+340.0000000000091 6.043865644074657e-06
+340.1000000000091 6.087877061804044e-06
+340.20000000000914 6.132120523654098e-06
+340.30000000000916 6.176597077290599e-06
+340.4000000000092 6.221307995421351e-06
+340.5000000000092 6.266254783579946e-06
+340.60000000000923 6.3161542349053355e-06
+340.70000000000925 6.366353543160706e-06
+340.8000000000093 6.41685533368861e-06
+340.9000000000093 6.4676624896662606e-06
+341.0000000000093 6.518778161136373e-06
+341.10000000000935 6.5781825200921615e-06
+341.20000000000937 6.6380010261954824e-06
+341.3000000000094 6.698238334444041e-06
+341.4000000000094 6.75889942027753e-06
+341.50000000000944 6.819989591165666e-06
+341.60000000000946 6.881514782339727e-06
+341.7000000000095 6.943467845022935e-06
+341.8000000000095 7.0058508369104665e-06
+341.9000000000095 7.068665819794019e-06
+342.00000000000955 7.131914859541107e-06
+342.1000000000096 7.189212575026496e-06
+342.2000000000096 7.246866870464701e-06
+342.3000000000096 7.304879262654031e-06
+342.40000000000964 7.363251270429033e-06
+342.50000000000966 7.4219844145994095e-06
+342.6000000000097 7.475625547687881e-06
+342.7000000000097 7.529556169433841e-06
+342.80000000000973 7.583777252714121e-06
+342.90000000000975 7.638289770156885e-06
+343.0000000000098 7.69309469423005e-06
+343.1000000000098 7.732485648398493e-06
+343.2000000000098 7.772029552244526e-06
+343.30000000000985 7.81172672957991e-06
+343.40000000000987 7.851577503115324e-06
+343.5000000000099 7.89158219447525e-06
+343.6000000000099 7.931762375360303e-06
+343.70000000000994 7.972111512602596e-06
+343.80000000000996 8.01262313654927e-06
+343.90000000001 8.053291176645909e-06
+344.00000000001 8.094109973744466e-06
+344.10000000001 8.130034078404173e-06
+344.20000000001005 8.166065550688739e-06
+344.3000000000101 8.202199969618953e-06
+344.4000000000101 8.238433386212764e-06
+344.5000000000101 8.274762334984361e-06
+344.60000000001014 8.3171915491089e-06
+344.70000000001016 8.359754675478758e-06
+344.8000000000102 8.402449604661342e-06
+344.9000000000102 8.445274748101414e-06
+345.00000000001023 8.488229052084405e-06
+345.10000000001025 8.53903253535376e-06
+345.2000000000103 8.590032439764371e-06
+345.3000000000103 8.641229611072122e-06
+345.4000000000103 8.692625490809122e-06
+345.50000000001035 8.744222133575776e-06
+345.60000000001037 8.792884150439356e-06
+345.7000000000104 8.841722591250905e-06
+345.8000000000104 8.890741328461433e-06
+345.90000000001044 8.939944913154781e-06
+346.00000000001046 8.98933859228902e-06
+346.1000000000105 9.030617906549303e-06
+346.2000000000105 9.072035699801238e-06
+346.3000000000105 9.113599150644943e-06
+346.40000000001055 9.155316176542167e-06
+346.5000000000106 9.197195448795986e-06
+346.6000000000106 9.239246027374077e-06
+346.7000000000106 9.281443942136885e-06
+346.80000000001064 9.32378973311264e-06
+346.90000000001066 9.366283944161686e-06
+347.0000000000107 9.408927122954091e-06
+347.1000000000107 9.4674971438245e-06
+347.20000000001073 9.526346311285065e-06
+347.30000000001075 9.58547574725234e-06
+347.4000000000108 9.644886580140536e-06
+347.5000000000108 9.70457994497283e-06
+347.6000000000108 9.764557385459772e-06
+347.70000000001085 9.82481935398841e-06
+347.80000000001087 9.885366699444355e-06
+347.9000000000109 9.946200270146657e-06
+348.0000000000109 1.00073209137997e-05
+348.10000000001094 1.0045919719737389e-05
+348.20000000001096 1.0084632926964535e-05
+348.300000000011 1.0123460666331087e-05
+348.400000000011 1.0162403067435823e-05
+348.500000000011 1.0201460258443225e-05
+348.60000000001105 1.0244252248883742e-05
+348.7000000000111 1.0287209014539156e-05
+348.8000000000111 1.0330317095016903e-05
+348.9000000000111 1.037356383894039e-05
+349.00000000001114 1.0416937423475558e-05
+349.10000000001116 1.0462750915636139e-05
+349.2000000000112 1.0508685557625524e-05
+349.3000000000112 1.0554732158300822e-05
+349.40000000001123 1.0600882429428517e-05
+349.50000000001125 1.0647129007599035e-05
+349.6000000000113 1.0693465476373465e-05
+349.7000000000113 1.0739886999954756e-05
+349.8000000000113 1.0786389312388918e-05
+349.90000000001135 1.0832969176951633e-05
+350.00000000001137 1.0879624409417736e-05
+350.1000000000114 1.0917899566196507e-05
+350.2000000000114 1.0956196251829091e-05
+350.30000000001144 1.0994515590973334e-05
+350.40000000001146 1.103285984830713e-05
+350.5000000000115 1.107123244806707e-05
+350.6000000000115 1.1113467583078412e-05
+350.7000000000115 1.1155764688053837e-05
+350.80000000001155 1.1198130612268451e-05
+350.9000000000116 1.12405734409056e-05
+351.0000000000116 1.1283102516881774e-05
+351.1000000000116 1.1313759770829463e-05
+351.20000000001164 1.1344463573653673e-05
+351.30000000001166 1.1375227012957347e-05
+351.4000000000117 1.1406064463577656e-05
+351.5000000000117 1.143699160390317e-05
+351.60000000001173 1.1471958697738875e-05
+351.70000000001176 1.1507005006493728e-05
+351.8000000000118 1.1542130485685188e-05
+351.9000000000118 1.157733510076365e-05
+352.0000000000118 1.1612618827131356e-05
+352.10000000001185 1.1643602921582543e-05
+352.20000000001187 1.167464236933035e-05
+352.3000000000119 1.1705737118179907e-05
+352.4000000000119 1.173688712681782e-05
+352.50000000001194 1.1768092364793353e-05
+352.60000000001196 1.1795342547778418e-05
+352.700000000012 1.1822634208794398e-05
+352.800000000012 1.1849967655087328e-05
+352.900000000012 1.1877343184448582e-05
+353.00000000001205 1.1904761085022194e-05
+353.1000000000121 1.1946981689064835e-05
+353.2000000000121 1.1989315804305873e-05
+353.3000000000121 1.2031763858295185e-05
+353.40000000001214 1.2074326269649397e-05
+353.50000000001216 1.2117003447943504e-05
+353.6000000000122 1.215567451599046e-05
+353.7000000000122 1.2194427300177516e-05
+353.80000000001223 1.2233267370513295e-05
+353.90000000001226 1.2272199956669158e-05
+354.0000000000123 1.231122994172527e-05
+354.1000000000123 1.2342034109406575e-05
+354.2000000000123 1.2372906984692496e-05
+354.30000000001235 1.2403852257384663e-05
+354.40000000001237 1.243487323708201e-05
+354.5000000000124 1.2465972848018584e-05
+354.6000000000124 1.249715362420958e-05
+354.70000000001244 1.2528416991759039e-05
+354.80000000001246 1.2559764473236699e-05
+354.9000000000125 1.2591197170639618e-05
+355.0000000000125 1.2622715760002336e-05
+355.1000000000125 1.2653958581369233e-05
+355.20000000001255 1.268528605536798e-05
+355.3000000000126 1.2716697542925588e-05
+355.4000000000126 1.2748191957351961e-05
+355.5000000000126 1.2779767758726863e-05
+355.60000000001264 1.2811422948409573e-05
+355.70000000001266 1.2843156524536649e-05
+355.8000000000127 1.2874965995916796e-05
+355.9000000000127 1.2906848426352168e-05
+356.00000000001273 1.2938800429197509e-05
+356.10000000001276 1.2976216570053914e-05
+356.2000000000128 1.3013717763984459e-05
+356.3000000000128 1.3051299292008593e-05
+356.4000000000128 1.3088955954371249e-05
+356.50000000001285 1.3126682064245738e-05
+356.60000000001287 1.3168843567289379e-05
+356.7000000000129 1.3211107933975908e-05
+356.8000000000129 1.3253475331954902e-05
+356.90000000001294 1.329594592894552e-05
+357.00000000001296 1.3338519892852986e-05
+357.100000000013 1.336904290722115e-05
+357.200000000013 1.3399614928638698e-05
+357.30000000001303 1.3430236001678422e-05
+357.40000000001305 1.346090617103364e-05
+357.5000000000131 1.3491625481327373e-05
+357.6000000000131 1.3522393977183788e-05
+357.7000000000131 1.3553211703252167e-05
+357.80000000001314 1.3584078704182964e-05
+357.90000000001316 1.3614995024603714e-05
+358.0000000000132 1.3645960709190998e-05
+358.1000000000132 1.367541455210703e-05
+358.20000000001323 1.3704912313429546e-05
+358.30000000001326 1.3734454029672387e-05
+358.4000000000133 1.3764039737350326e-05
+358.5000000000133 1.3793669473051377e-05
+358.6000000000133 1.3818795793840727e-05
+358.70000000001335 1.3843940895028042e-05
+358.80000000001337 1.3869110807904812e-05
+358.9000000000134 1.389431115702272e-05
+359.0000000000134 1.3919547156029188e-05
+359.10000000001344 1.3954535723649702e-05
+359.20000000001346 1.3989603126696512e-05
+359.3000000000135 1.4024753415697324e-05
+359.4000000000135 1.4059990224344444e-05
+359.50000000001353 1.4095316763761654e-05
+359.60000000001355 1.4130734653834673e-05
+359.7000000000136 1.4166246651973703e-05
+359.8000000000136 1.4201855051694914e-05
+359.9000000000136 1.4237561676727436e-05
+360.00000000001364 1.4273367874977509e-05
+360.10000000001367 1.4297940021785393e-05
+360.2000000000137 1.4322574272051483e-05
+360.3000000000137 1.4347270367387045e-05
+360.40000000001373 1.4372027551321832e-05
+360.50000000001376 1.4396844565185229e-05
+360.6000000000138 1.4426401094031185e-05
+360.7000000000138 1.4456026936907698e-05
+360.8000000000138 1.4485719145226397e-05
+360.90000000001385 1.4515474259582822e-05
+361.00000000001387 1.4545288304574855e-05
+361.1000000000139 1.4582313635269094e-05
+361.2000000000139 1.4619416631207756e-05
+361.30000000001394 1.465659179532619e-05
+361.40000000001396 1.469383308219811e-05
+361.500000000014 1.473113389140597e-05
+361.600000000014 1.4768487061440504e-05
+361.70000000001403 1.4805911810596997e-05
+361.80000000001405 1.4843407984172423e-05
+361.9000000000141 1.4880975410022736e-05
+362.0000000000141 1.4918613898257428e-05
+362.1000000000141 1.494847142701184e-05
+362.20000000001414 1.4978371488255006e-05
+362.30000000001417 1.5008313790481113e-05
+362.4000000000142 1.5038298024346415e-05
+362.5000000000142 1.50683238625093e-05
+362.60000000001423 1.5103236399138269e-05
+362.70000000001426 1.5138207761690693e-05
+362.8000000000143 1.5173238110822619e-05
+362.9000000000143 1.5208327623428416e-05
+363.0000000000143 1.524347649300503e-05
+363.10000000001435 1.5280914193288568e-05
+363.20000000001437 1.5318420858925385e-05
+363.3000000000144 1.5355996753140815e-05
+363.4000000000144 1.5393642156550133e-05
+363.50000000001444 1.5431357367435423e-05
+363.60000000001446 1.546421087569476e-05
+363.7000000000145 1.549711571211672e-05
+363.8000000000145 1.5530072139873938e-05
+363.90000000001453 1.5563080408287576e-05
+364.00000000001455 1.559614075248105e-05
+364.1000000000146 1.562532461925476e-05
+364.2000000000146 1.5654546784240782e-05
+364.3000000000146 1.5683807414470612e-05
+364.40000000001464 1.5713106662046424e-05
+364.50000000001467 1.574244466410372e-05
+364.6000000000147 1.5771822840358108e-05
+364.7000000000147 1.580124083979737e-05
+364.80000000001473 1.5830698324904415e-05
+364.90000000001476 1.5860194971419283e-05
+365.0000000000148 1.5889730468614805e-05
+365.1000000000148 1.592734501243466e-05
+365.2000000000148 1.5965027526811746e-05
+365.30000000001485 1.6002777796867752e-05
+365.40000000001487 1.604059562118373e-05
+365.5000000000149 1.607848081206083e-05
+365.6000000000149 1.612152234077044e-05
+365.70000000001494 1.616465083564594e-05
+365.80000000001496 1.6207866631392567e-05
+365.900000000015 1.6251170048566022e-05
+366.000000000015 1.6294561393583144e-05
+366.10000000001503 1.6326694719804795e-05
+366.20000000001505 1.635887263274054e-05
+366.3000000000151 1.639109530870656e-05
+366.4000000000151 1.642336290854171e-05
+366.5000000000151 1.6455675577364668e-05
+366.60000000001514 1.6482861272653964e-05
+366.70000000001517 1.651008026274694e-05
+366.8000000000152 1.653733246100636e-05
+366.9000000000152 1.656461781353164e-05
+367.00000000001523 1.659193629962904e-05
+367.10000000001526 1.6636040158924852e-05
+367.2000000000153 1.6680236878200106e-05
+367.3000000000153 1.6724526654585063e-05
+367.4000000000153 1.6768909719912627e-05
+367.50000000001535 1.6813386341085408e-05
+367.60000000001537 1.6857956820643307e-05
+367.7000000000154 1.690261957583202e-05
+367.8000000000154 1.694737439996128e-05
+367.90000000001544 1.6992221082808947e-05
+368.00000000001546 1.7037159410628228e-05
+368.1000000000155 1.7065671973804197e-05
+368.2000000000155 1.709421765308752e-05
+368.30000000001553 1.7122796121105116e-05
+368.40000000001555 1.715140704816991e-05
+368.5000000000156 1.7180050102303513e-05
+368.6000000000156 1.721412123507476e-05
+368.7000000000156 1.7248269670665906e-05
+368.80000000001564 1.7282480720758656e-05
+368.90000000001567 1.7316740737924766e-05
+369.0000000000157 1.735103712662236e-05
+369.1000000000157 1.7376466048772705e-05
+369.20000000001573 1.7401885563669112e-05
+369.30000000001576 1.7427286336021938e-05
+369.4000000000158 1.745266014393552e-05
+369.5000000000158 1.7477999887429803e-05
+369.6000000000158 1.7508716897786295e-05
+369.70000000001585 1.7539399325631785e-05
+369.80000000001587 1.757004283331306e-05
+369.9000000000159 1.7600644196184248e-05
+370.0000000000159 1.763120131248701e-05
+370.10000000001594 1.7663064658026495e-05
+370.20000000001596 1.7694887619758544e-05
+370.300000000016 1.77266715137918e-05
+370.400000000016 1.7758418819493137e-05
+370.50000000001603 1.7790133189798838e-05
+370.60000000001605 1.7816340662629043e-05
+370.7000000000161 1.7842514290732315e-05
+370.8000000000161 1.7868660862308893e-05
+370.9000000000161 1.7894788403323687e-05
+371.00000000001614 1.7920906186318642e-05
+371.10000000001617 1.7968264807819225e-05
+371.2000000000162 1.801570747751678e-05
+371.3000000000162 1.806324738655347e-05
+371.40000000001623 1.8110899076120635e-05
+371.50000000001626 1.8158678454284687e-05
+371.6000000000163 1.8201028434745292e-05
+371.7000000000163 1.824345215506399e-05
+371.8000000000163 1.8285950063085764e-05
+371.90000000001635 1.8328522609996282e-05
+372.00000000001637 1.8371170250607226e-05
+372.1000000000164 1.841243865467914e-05
+372.2000000000164 1.8453777812661428e-05
+372.30000000001644 1.8495188180613224e-05
+372.40000000001646 1.8536670218007954e-05
+372.5000000000165 1.8578224387716203e-05
+372.6000000000165 1.8614179362843264e-05
+372.70000000001653 1.8650189913229002e-05
+372.80000000001655 1.8686255973368434e-05
+372.9000000000166 1.8722377514788688e-05
+373.0000000000166 1.8758554546230793e-05
+373.1000000000166 1.8797205503470957e-05
+373.20000000001664 1.883591874120341e-05
+373.30000000001667 1.887469439261338e-05
+373.4000000000167 1.8913532629726904e-05
+373.5000000000167 1.895243366390032e-05
+373.60000000001673 1.898558442668899e-05
+373.70000000001676 1.901874529858066e-05
+373.8000000000168 1.9051933477463165e-05
+373.9000000000168 1.9085164967448974e-05
+374.0000000000168 1.9118454567805972e-05
+374.10000000001685 1.914829749144096e-05
+374.20000000001687 1.9178211979357843e-05
+374.3000000000169 1.920820910014685e-05
+374.4000000000169 1.9238298665572794e-05
+374.50000000001694 1.926848922070223e-05
+374.60000000001696 1.9292962692399696e-05
+374.700000000017 1.9317542304005702e-05
+374.800000000017 1.9342232782249245e-05
+374.90000000001703 1.9367037621455806e-05
+375.00000000001705 1.9391959075906486e-05
+375.1000000000171 1.9431095793892222e-05
+375.2000000000171 1.9470388482111627e-05
+375.3000000000171 1.9509835885136792e-05
+375.40000000001714 1.9549435466959047e-05
+375.50000000001717 1.958918339803428e-05
+375.6000000000172 1.962317299532624e-05
+375.7000000000172 1.9657279110714743e-05
+375.80000000001723 1.9691493732823253e-05
+375.90000000001726 1.9725807434185825e-05
+376.0000000000173 1.976020935912083e-05
+376.1000000000173 1.980667929769783e-05
+376.2000000000173 1.9853251520364646e-05
+376.30000000001735 1.9899910888720212e-05
+376.40000000001737 1.9946640746867658e-05
+376.5000000000174 1.9993422904749018e-05
+376.6000000000174 2.0034242789255217e-05
+376.70000000001744 2.007513175979748e-05
+376.80000000001746 2.0116089769636127e-05
+376.9000000000175 2.0157116811798827e-05
+377.0000000000175 2.0198212919490126e-05
+377.10000000001753 2.0241545018463488e-05
+377.20000000001755 2.028495267762355e-05
+377.3000000000176 2.0328436063875424e-05
+377.4000000000176 2.0371995386079488e-05
+377.5000000000176 2.041563089545982e-05
+377.60000000001764 2.0453248354359077e-05
+377.70000000001767 2.049092148758719e-05
+377.8000000000177 2.0528649941794764e-05
+377.9000000000177 2.056643336050447e-05
+378.00000000001774 2.0604271384362656e-05
+378.10000000001776 2.0643732739863592e-05
+378.2000000000178 2.0683251205670413e-05
+378.3000000000178 2.0722826416028003e-05
+378.4000000000178 2.076245800196915e-05
+378.50000000001785 2.080214559140077e-05
+378.60000000001787 2.0835706226592793e-05
+378.7000000000179 2.086930711067144e-05
+378.8000000000179 2.090294911856089e-05
+378.90000000001794 2.0936633130568745e-05
+379.00000000001796 2.0970360032469326e-05
+379.100000000018 2.10037564745713e-05
+379.200000000018 2.1037196795987033e-05
+379.30000000001803 2.1070681897857112e-05
+379.40000000001805 2.1104212686763654e-05
+379.5000000000181 2.1137790074883258e-05
+379.6000000000181 2.1177677730047705e-05
+379.7000000000181 2.121762818799579e-05
+379.80000000001814 2.1257641395142977e-05
+379.90000000001817 2.1297717275357015e-05
+380.0000000000182 2.1337855729819323e-05
+380.1000000000182 2.1378113986145763e-05
+380.20000000001824 2.1418437014727612e-05
+380.30000000001826 2.145882465571892e-05
+380.4000000000183 2.1499276725598096e-05
+380.5000000000183 2.1539793017262512e-05
+380.6000000000183 2.1586727056667722e-05
+380.70000000001835 2.163374444379126e-05
+380.8000000000184 2.1680845229763925e-05
+380.9000000000184 2.172802942126209e-05
+381.0000000000184 2.1775296980061474e-05
+381.10000000001844 2.181099088842809e-05
+381.20000000001846 2.184673258773423e-05
+381.3000000000185 2.1882521839990986e-05
+381.4000000000185 2.1918358361015283e-05
+381.50000000001853 2.195424182009871e-05
+381.60000000001855 2.1996620488375044e-05
+381.7000000000186 2.2039066276946713e-05
+381.8000000000186 2.2081578893320542e-05
+381.9000000000186 2.212415808685472e-05
+382.00000000001864 2.2166803649452606e-05
+382.10000000001867 2.2203320515093437e-05
+382.2000000000187 2.2239887009770404e-05
+382.3000000000187 2.2276503029464364e-05
+382.40000000001874 2.231316851442639e-05
+382.50000000001876 2.2349883449440193e-05
+382.6000000000188 2.239318036280376e-05
+382.7000000000188 2.243654203494862e-05
+382.8000000000188 2.2479968839362763e-05
+382.90000000001885 2.2523461129156653e-05
+383.0000000000189 2.2567019236887852e-05
+383.1000000000189 2.2609053671156827e-05
+383.2000000000189 2.2651151218276755e-05
+383.30000000001894 2.2693312144198907e-05
+383.40000000001896 2.273553669338593e-05
+383.500000000019 2.2777825088533495e-05
+383.600000000019 2.2820209425568936e-05
+383.70000000001903 2.2862679946208562e-05
+383.80000000001905 2.2905226665847413e-05
+383.9000000000191 2.294784031512389e-05
+384.0000000000191 2.299051234673622e-05
+384.1000000000191 2.30323040434305e-05
+384.20000000001914 2.307413678965306e-05
+384.30000000001917 2.311600424694316e-05
+384.4000000000192 2.315790082843036e-05
+384.5000000000192 2.3199821705827495e-05
+384.60000000001924 2.324849760714321e-05
+384.70000000001926 2.329720821315857e-05
+384.8000000000193 2.334595021221088e-05
+384.9000000000193 2.339472102398001e-05
+385.0000000000193 2.3443518844035724e-05
+385.10000000001935 0.00021515334109906007
+385.2000000000194 0.0004074820414086157
+385.3000000000194 0.0006004294715849947
+385.4000000000194 0.0007939955238486068
+385.50000000001944 0.0009881801624380749
+385.60000000001946 0.0011833247663887334
+385.7000000000195 0.001379200921617336
+385.8000000000195 0.0015758095590521987
+385.90000000001953 0.0017731518417154959
+386.00000000001955 0.001971229200407725
+386.1000000000196 0.002002101688873462
+386.2000000000196 0.002033060767206477
+386.3000000000196 0.0020641073757699272
+386.40000000001965 0.0020952425763460223
+386.50000000001967 0.0021264675578714968
+386.6000000000197 0.002157783642194432
+386.7000000000197 0.002189188062654026
+386.80000000001974 0.0022206809808156367
+386.90000000001976 0.0022522625584523517
+387.0000000000198 0.0022839329575457734
+387.1000000000198 0.0022854736776834893
+387.2000000000198 0.002287007293269852
+387.30000000001985 0.0022885337711487166
+387.4000000000199 0.002290053078075194
+387.5000000000199 0.0022915651807329344
+387.6000000000199 0.002292414320808272
+387.70000000001994 0.0022932560833472198
+387.80000000001996 0.0022940904412328497
+387.90000000002 0.002294917367300145
+388.00000000002 0.0022957368343690453
+388.10000000002003 0.0024974550598092686
+388.20000000002005 0.0026998019408071765
+388.3000000000201 0.0029027787049488133
+388.4000000000201 0.0031063865815276217
+388.5000000000201 0.003310626801570072
+388.60000000002015 0.003516498537962434
+388.70000000002017 0.003723117905372894
+388.8000000000202 0.0039304878113171834
+388.9000000000202 0.004138611399207174
+389.00000000002024 0.004347492016806329
+389.10000000002026 0.004495188594474853
+389.2000000000203 0.004643330446942693
+389.3000000000203 0.00479192023643841
+389.4000000000203 0.004940960633325724
+389.50000000002035 0.0050904542924323105
+389.6000000000204 0.005240403829196289
+389.7000000000204 0.005390811795446201
+389.8000000000204 0.00554168065510561
+389.90000000002044 0.0056930127596466675
+390.00000000002046 0.005844810323346329
+390.1000000000205 0.006293135788326011
+390.2000000000205 0.006743250946778695
+390.30000000002053 0.007195163027930714
+390.40000000002055 0.007648878947686403
+390.5000000000206 0.008104405231778805
+390.6000000000206 0.008559327313733482
+390.7000000000206 0.009015814576653316
+390.80000000002065 0.009473870793033719
+390.90000000002067 0.009933499026465538
+391.0000000000207 0.010394701551395996
+391.1000000000207 0.010943549431425347
+391.20000000002074 0.01149389402997287
+391.30000000002076 0.012045733939083664
+391.4000000000208 0.012599066486672817
+391.5000000000208 0.013153887638234631
+391.6000000000208 0.01371019133431907
+391.70000000002085 0.014267997393915563
+391.8000000000209 0.014827308570458277
+391.9000000000209 0.015388127635601075
+392.0000000000209 0.01595045737650621
+392.10000000002094 0.0167713493145706
+392.20000000002096 0.01759518274012123
+392.300000000021 0.018421964426883687
+392.400000000021 0.01925170116858434
+392.50000000002103 0.020084399774949264
+392.60000000002105 0.020914195662617825
+392.7000000000211 0.021746504324659764
+392.8000000000211 0.022581330382348795
+392.9000000000211 0.023418678409675514
+393.00000000002115 0.024258552937154246
+393.10000000002117 0.025427837198308493
+393.2000000000212 0.026600965366072545
+393.3000000000212 0.027777945039832348
+393.40000000002124 0.02895878377239513
+393.50000000002126 0.03014348907552401
+393.6000000000213 0.03134079738960925
+393.7000000000213 0.03254261641626341
+393.8000000000213 0.03374896905730707
+393.90000000002135 0.03495987925233616
+394.0000000000214 0.036175371790507234
+394.1000000000214 0.03768366464498318
+394.2000000000214 0.03919616628409744
+394.30000000002144 0.04071290044599885
+394.40000000002146 0.04223389122856496
+394.5000000000215 0.04375916283941539
+394.6000000000215 0.04528874120447907
+394.70000000002153 0.046822652152181315
+394.80000000002156 0.04836091923005842
+394.9000000000216 0.049903565196311346
+395.0000000000216 0.051450611775435445
+395.1000000000216 0.05319504116852186
+395.20000000002165 0.05494397096453743
+395.30000000002167 0.05669741898865127
+395.4000000000217 0.058455400976574874
+395.5000000000217 0.060217930288122945
+395.60000000002174 0.06198509908843037
+395.70000000002176 0.0637568849333774
+395.8000000000218 0.06553326539900421
+395.9000000000218 0.06731421323183344
+396.0000000000218 0.06909969630136151
+396.10000000002185 0.07128871249640273
+396.2000000000219 0.07348610116083987
+396.3000000000219 0.07569182687376436
+396.4000000000219 0.07790584803540654
+396.50000000002194 0.08012811678734115
+396.60000000002196 0.08233589251114894
+396.700000000022 0.08455083738382711
+396.800000000022 0.08677290925387897
+396.90000000002203 0.08900206688513242
+397.00000000002206 0.09123827067390686
+397.1000000000221 0.09367861386197973
+397.2000000000221 0.09612588725634517
+397.3000000000221 0.09858005703102232
+397.40000000002215 0.10104109379930118
+397.50000000002217 0.10350897343172505
+397.6000000000222 0.10598367788389519
+397.7000000000222 0.10846518987585448
+397.80000000002224 0.11095350376444683
+397.90000000002226 0.11344862222986986
+398.0000000000223 0.11595055711505553
+398.1000000000223 0.11869018088420132
+398.2000000000223 0.12143669394883455
+398.30000000002235 0.1241901379068208
+398.4000000000224 0.12695056740071844
+398.5000000000224 0.12971805107269954
+398.6000000000224 0.13252916182980576
+398.70000000002244 0.1353487759561706
+398.80000000002246 0.13817692552704686
+398.9000000000225 0.14101364992805115
+399.0000000000225 0.14385899636380162
+399.10000000002253 0.146676386241855
+399.20000000002256 0.14950115077566226
+399.3000000000226 0.15233335951065827
+399.4000000000226 0.15517309181588756
+399.5000000000226 0.1580204374051006
+399.60000000002265 0.16087549685780653
+399.70000000002267 0.1637380663294043
+399.8000000000227 0.16660815859520486
+399.9000000000227 0.1694857864465508
+400.00000000002274 0.1723709626910628
+400.10000000002276 0.17508337990198608
+400.2000000000228 0.17780213405600856
+400.3000000000228 0.18052723470766333
+400.4000000000228 0.1832586914224623
+400.50000000002285 0.18599651377640045
+400.6000000000229 0.18874071135568862
+400.7000000000229 0.19149129375702167
+400.8000000000229 0.19424827058787084
+400.90000000002294 0.19701165146622368
+401.00000000002296 0.1997814460202736
+401.100000000023 0.20243444769456043
+401.200000000023 0.20509506701886587
+401.30000000002303 0.20776331768436412
+401.40000000002306 0.21043921339899718
+401.5000000000231 0.213122767888369
+401.6000000000231 0.21575522202113034
+401.7000000000231 0.2183939572239936
+401.80000000002315 0.22103898328454497
+401.90000000002317 0.22369031000085157
+402.0000000000232 0.22634794718299314
+402.1000000000232 0.22865389862599023
+402.20000000002324 0.2309651461246578
+402.30000000002326 0.23328169768912038
+402.4000000000233 0.23560356133837318
+402.5000000000233 0.2379307451006336
+402.60000000002333 0.24026325701266849
+402.70000000002335 0.2426011051204879
+402.8000000000234 0.24494429747865928
+402.9000000000234 0.24729284215101485
+403.0000000000234 0.24964674720982002
+403.10000000002344 0.2514415155598961
+403.20000000002346 0.25324033676537233
+403.3000000000235 0.25504321701597116
+403.4000000000235 0.25685016250917786
+403.50000000002353 0.25866117944877576
+403.60000000002356 0.2604762740455804
+403.7000000000236 0.26229545251744457
+403.8000000000236 0.2641187210900293
+403.9000000000236 0.2659460859949126
+404.00000000002365 0.26777755347178755
+404.10000000002367 0.2692290609396662
+404.2000000000237 0.27068356109693437
+404.3000000000237 0.2721410581449924
+404.40000000002374 0.27360155629035565
+404.50000000002376 0.27506505974389966
+404.6000000000238 0.27660629078897336
+404.7000000000238 0.2781512891203225
+404.80000000002383 0.2797000607949115
+404.90000000002385 0.28125261187904393
+405.0000000000239 0.2828089484442134
+405.1000000000239 0.2837489267150091
+405.2000000000239 0.2846904835526662
+405.30000000002394 0.2856336208249675
+405.40000000002397 0.2865783404005261
+405.500000000024 0.2875246441508384
+405.600000000024 0.28847253394823325
+405.70000000002403 0.2894220116671068
+405.80000000002406 0.2903730791826796
+405.9000000000241 0.29132573837349285
+406.0000000000241 0.29227999111764774
+406.1000000000241 0.2931772490328739
+406.20000000002415 0.2940761769699953
+406.30000000002417 0.2949767772010325
+406.4000000000242 0.295879052001599
+406.5000000000242 0.29678300364836907
+406.60000000002424 0.2976886344211938
+406.70000000002426 0.2985959466018326
+406.8000000000243 0.29950494247523424
+406.9000000000243 0.30041562432783125
+407.00000000002433 0.3013279944483082
+407.10000000002435 0.3018931021041241
+407.2000000000244 0.3024589363354613
+407.3000000000244 0.30302549783838395
+407.4000000000244 0.3035927873077282
+407.50000000002444 0.30416080544056456
+407.60000000002447 0.3047295529340372
+407.7000000000245 0.30529903048492374
+407.8000000000245 0.30586923879181155
+407.90000000002453 0.306440178552486
+408.00000000002456 0.3070118504665374
+408.1000000000246 0.3075484789580644
+408.2000000000246 0.30808587884885186
+408.3000000000246 0.308624051044155
+408.40000000002465 0.30916299644964057
+408.50000000002467 0.30970271597270727
+408.6000000000247 0.31024321051984216
+408.7000000000247 0.31078448100059036
+408.80000000002474 0.3113265283235841
+408.90000000002476 0.3118693533996368
+409.0000000000248 0.3124129571390414
+409.1000000000248 0.3127761667645624
+409.20000000002483 0.3131397357657819
+409.30000000002485 0.3135036644385804
+409.4000000000249 0.3138679530808183
+409.5000000000249 0.31423260198832675
+409.6000000000249 0.3145976114593642
+409.70000000002494 0.31496298179060395
+409.80000000002497 0.3153287132793625
+409.900000000025 0.31569480622404983
+410.000000000025 0.3160612609219223
+410.10000000002503 0.31638608607345997
+410.20000000002506 0.316711180238334
+410.3000000000251 0.31703654358597677
+410.4000000000251 0.3173621762867924
+410.5000000000251 0.31768807850948017
+410.60000000002515 0.31809869393293294
+410.70000000002517 0.31850970770170767
+410.8000000000252 0.3189211200988143
+410.9000000000252 0.3193329314073959
+411.00000000002524 0.3197451419102228
+411.10000000002526 0.31994997045417073
+411.2000000000253 0.32015485372303604
+411.3000000000253 0.3203597916579048
+411.40000000002533 0.32056478419931295
+411.50000000002535 0.3207698312881512
+411.6000000000254 0.32097493286521306
+411.7000000000254 0.3211800888707416
+411.8000000000254 0.3213852992448817
+411.90000000002544 0.3215905639281332
+412.00000000002547 0.3217958828609167
+412.1000000000255 0.3220741361461432
+412.2000000000255 0.32235256449327043
+412.30000000002553 0.3226311679620633
+412.40000000002556 0.3229099466122713
+412.5000000000256 0.3231889005031724
+412.6000000000256 0.32346802969493776
+412.7000000000256 0.32374733424635754
+412.80000000002565 0.3240268142166594
+412.90000000002567 0.32430646966642035
+413.0000000000257 0.32458630065392774
+413.1000000000257 0.3248810456337463
+413.20000000002574 0.3251760107363315
+413.30000000002576 0.32547119609354286
+413.4000000000258 0.3257666018382145
+413.5000000000258 0.32606222810324215
+413.60000000002583 0.3263580750215852
+413.70000000002585 0.3266541427258074
+413.8000000000259 0.3269504313485341
+413.9000000000259 0.3272469410229106
+414.0000000000259 0.3275436718817047
+414.10000000002594 0.3279114566118233
+414.20000000002597 0.3282795926800286
+414.300000000026 0.32864808036555115
+414.400000000026 0.329016919949642
+414.50000000002603 0.32938611171189247
+414.60000000002606 0.3297556559329957
+414.7000000000261 0.3301255528933641
+414.8000000000261 0.33049580287405256
+414.9000000000261 0.3308664061562975
+415.00000000002615 0.33123736302106477
+415.10000000002617 0.3316474161818342
+415.2000000000262 0.33205788256085056
+415.3000000000262 0.33246876249069496
+415.40000000002624 0.3328800563050849
+415.50000000002626 0.3332917643370188
+415.6000000000263 0.3337038869201682
+415.7000000000263 0.3341164243874826
+415.80000000002633 0.33452937707351577
+415.90000000002635 0.33494274531209994
+416.0000000000264 0.3353565294377466
+416.1000000000264 0.3357891326927424
+416.2000000000264 0.3362221934009407
+416.30000000002644 0.3366557119518561
+416.40000000002647 0.3370896887343245
+416.5000000000265 0.33752412413884697
+416.6000000000265 0.3379590185552469
+416.70000000002653 0.33839437237360576
+416.80000000002656 0.3388301859852054
+416.9000000000266 0.33926645978017644
+417.0000000000266 0.33970319415031225
+417.1000000000266 0.340107560942951
+417.20000000002665 0.3405123138002107
+417.30000000002667 0.3409174530129104
+417.4000000000267 0.3413229788715644
+417.5000000000267 0.3417288916678026
+417.60000000002674 0.3421351916924752
+417.70000000002676 0.3425418792366012
+417.8000000000268 0.3429489545913654
+417.9000000000268 0.3433564180490721
+418.00000000002683 0.343764269901247
+418.10000000002685 0.34418544770229165
+418.2000000000269 0.34460702448374686
+418.3000000000269 0.3450290005366296
+418.4000000000269 0.34545137614972926
+418.50000000002694 0.34587415161438084
+418.60000000002697 0.3462973272201668
+418.700000000027 0.3467209032573045
+418.800000000027 0.3471448800176073
+418.90000000002703 0.34756925779065106
+419.00000000002706 0.3479940368681008
+419.1000000000271 0.34846830787893573
+419.2000000000271 0.3489430953396752
+419.3000000000271 0.34941839969847316
+419.40000000002715 0.34989422140282334
+419.50000000002717 0.3503705609019719
+419.6000000000272 0.3508474186449894
+419.7000000000272 0.3513247950797991
+419.80000000002724 0.3518026906570495
+419.90000000002726 0.35228110582624333
+420.0000000000273 0.3527600410376705
+420.1000000000273 0.3532256000104103
+420.20000000002733 0.3536916272079609
+420.30000000002735 0.3541581229890213
+420.4000000000274 0.3546250877129825
+420.5000000000274 0.3550925217389526
+420.6000000000274 0.35556042542624533
+420.70000000002744 0.3560287991358473
+420.80000000002747 0.35649764322650507
+420.9000000000275 0.35696695805912915
+421.0000000000275 0.3574367439938177
+421.10000000002753 0.35776818217015305
+421.20000000002756 0.3580998737050191
+421.3000000000276 0.358431818755213
+421.4000000000276 0.35876401747563824
+421.5000000000276 0.359096470023733
+421.60000000002765 0.3594291765555344
+421.70000000002767 0.35976213722665984
+421.8000000000277 0.36009535219477345
+421.9000000000277 0.3604288216156421
+422.00000000002774 0.36076254564608384
+422.10000000002776 0.3610632549140576
+422.2000000000278 0.36136416608817207
+422.3000000000278 0.36166527927521913
+422.40000000002783 0.36196659458153757
+422.50000000002785 0.36226811211549104
+422.6000000000279 0.3625698319835048
+422.7000000000279 0.3628717542935349
+422.8000000000279 0.3631738791520921
+422.90000000002794 0.36347620666672265
+423.00000000002797 0.36377873694497553
+423.100000000028 0.3639359053687036
+423.200000000028 0.3640931115459166
+423.30000000002804 0.3642503554710998
+423.40000000002806 0.36440763713972585
+423.5000000000281 0.3645649565467881
+423.6000000000281 0.3648159522792173
+423.7000000000281 0.3650670665592835
+423.80000000002815 0.36531829941138133
+423.9000000000282 0.36556965085939347
+424.0000000000282 0.3658211209276748
+424.1000000000282 0.36603306029330485
+424.20000000002824 0.3662450699856006
+424.30000000002826 0.36645714999941115
+424.4000000000283 0.3666693003290644
+424.5000000000283 0.36688152096786597
+424.60000000002833 0.3670938119105979
+424.70000000002835 0.36730617315151964
+424.8000000000284 0.3675186046838682
+424.9000000000284 0.3677311065018573
+425.0000000000284 0.3679436785996937
+425.10000000002844 0.36821109261076895
+425.20000000002847 0.36847865668023155
+425.3000000000285 0.368746370870162
+425.4000000000285 0.3690142352421569
+425.50000000002854 0.3692822498583289
+425.60000000002856 0.36955041478030604
+425.7000000000286 0.36981873007073585
+425.8000000000286 0.370087195790775
+425.9000000000286 0.37035581200310413
+426.00000000002865 0.37062457876891225
+426.1000000000287 0.37089557588949107
+426.2000000000287 0.37116673073127493
+426.3000000000287 0.37143804336783126
+426.40000000002874 0.37170951387073903
+426.50000000002876 0.37198114231210433
+426.6000000000288 0.37225292876506705
+426.7000000000288 0.3725248733017839
+426.80000000002883 0.3727969759949412
+426.90000000002885 0.3730692369167446
+427.0000000000289 0.3733416561399208
+427.1000000000289 0.3735817058858329
+427.2000000000289 0.3738218594066207
+427.30000000002894 0.3740621167210145
+427.40000000002897 0.3743024778472274
+427.500000000029 0.37454294280394085
+427.600000000029 0.37468829222137867
+427.70000000002904 0.37483367161604103
+427.80000000002906 0.37497908098289795
+427.9000000000291 0.37512452031843524
+428.0000000000291 0.3752699896176547
+428.1000000000291 0.3755587340255138
+428.20000000002915 0.37584757802318447
+428.3000000000292 0.3761365215976985
+428.4000000000292 0.37642556473655997
+428.5000000000292 0.3767147074261942
+428.60000000002924 0.3769084330710735
+428.70000000002926 0.37710220845194353
+428.8000000000293 0.37729603355486446
+428.9000000000293 0.37748990836740043
+429.00000000002933 0.37768383287556767
+429.10000000002935 0.37786695227175715
+429.2000000000294 0.37805011905854374
+429.3000000000294 0.37823333323221414
+429.4000000000294 0.3784165947900646
+429.50000000002944 0.37859990372833513
+429.60000000002947 0.3786875109887747
+429.7000000000295 0.37877512131940044
+429.8000000000295 0.37886273471380394
+429.90000000002954 0.3789503511671028
+430.00000000002956 0.37903797067243306
+430.1000000000296 0.3793206316431498
+430.2000000000296 0.37960346242782406
+430.3000000000296 0.3798864631073254
+430.40000000002965 0.38016963376357277
+430.5000000000297 0.3804529744790266
+430.6000000000297 0.38073648533464644
+430.7000000000297 0.3810201664124427
+430.80000000002974 0.3813040177944566
+430.90000000002976 0.38158803956276055
+431.0000000000298 0.3818722317989218
+431.1000000000298 0.3820769647573185
+431.20000000002983 0.3822817754490115
+431.30000000002985 0.3824866638949359
+431.4000000000299 0.3826916301175691
+431.5000000000299 0.38289667413836637
+431.6000000000299 0.38310179597930105
+431.70000000002995 0.38330699566183735
+431.80000000002997 0.383512273207956
+431.90000000003 0.38371762863913
+432.00000000003 0.3839230619778779
+432.10000000003004 0.3841836440815563
+432.20000000003006 0.38444436302531726
+432.3000000000301 0.3847052188634512
+432.4000000000301 0.38496621165026335
+432.5000000000301 0.3852273414410733
+432.60000000003015 0.3853917761854241
+432.7000000000302 0.3855562653848584
+432.8000000000302 0.38572080905290823
+432.9000000000302 0.38588540720311004
+433.00000000003024 0.3860500598495476
+433.10000000003026 0.38631244601053755
+433.2000000000303 0.3865749705009657
+433.3000000000303 0.3868376333753937
+433.40000000003033 0.38710043469046346
+433.50000000003035 0.3873633745018006
+433.6000000000304 0.3876269939514206
+433.7000000000304 0.38789110082268763
+433.8000000000304 0.3881555157190761
+433.90000000003045 0.38842007211116386
+434.00000000003047 0.38868461637649665
+434.1000000000305 0.38889514565272687
+434.2000000000305 0.38910534673062996
+434.30000000003054 0.38931510518663237
+434.40000000003056 0.38952431974381313
+434.5000000000306 0.38973290231136287
+434.6000000000306 0.3900384755095985
+434.7000000000306 0.3903433633932745
+434.80000000003065 0.39064752764790633
+434.9000000000307 0.3909509424983139
+435.0000000000307 0.3912535947572769
+435.1000000000307 0.3914863962189771
+435.20000000003074 0.39171836238138824
+435.30000000003076 0.3919495185451157
+435.4000000000308 0.3921799027681814
+435.5000000000308 0.39240956590447795
+435.60000000003083 0.3926386038836455
+435.70000000003085 0.39286708179870883
+435.8000000000309 0.3930950784169841
+435.9000000000309 0.3933226862204946
+436.0000000000309 0.39355001144426377
+436.10000000003095 0.39372486127576123
+436.20000000003097 0.393899634722586
+436.300000000031 0.3940744794871978
+436.400000000031 0.39424955710070075
+436.50000000003104 0.39442504295056885
+436.60000000003106 0.39460111011051
+436.7000000000311 0.3947772059540049
+436.8000000000311 0.3949533278655902
+436.9000000000311 0.39512947282643507
+437.00000000003115 0.3953056374124072
+437.1000000000312 0.3955512827009928
+437.2000000000312 0.39579700757230196
+437.3000000000312 0.39604280739246106
+437.40000000003124 0.3962886771145436
+437.50000000003126 0.3965346112783388
+437.6000000000313 0.3967806203022109
+437.7000000000313 0.3970267371615989
+437.80000000003133 0.3972729630885607
+437.90000000003135 0.3975193001218939
+438.0000000000314 0.3977657511112093
+438.1000000000314 0.39788262974911426
+438.2000000000314 0.3979995386808355
+438.30000000003145 0.3981164831497594
+438.40000000003147 0.39823346921347413
+438.5000000000315 0.39835050374293274
+438.6000000000315 0.3985660360018044
+438.70000000003154 0.39878128724757983
+438.80000000003156 0.3989964381381509
+438.9000000000316 0.3992116560006415
+439.0000000000316 0.3994270947925456
+439.1000000000316 0.39951141898313997
+439.20000000003165 0.39959615992347597
+439.3000000000317 0.39968143070533146
+439.4000000000317 0.3997673307715257
+439.5000000000317 0.3998539459014793
+439.60000000003174 0.4000405892259482
+439.70000000003176 0.40022814463483714
+439.8000000000318 0.40041666420839167
+439.9000000000318 0.4006061867543318
+440.00000000003183 0.4007967377744144
+440.10000000003186 0.40105886083745007
+440.2000000000319 0.4013220940498891
+440.3000000000319 0.40158642335234906
+440.4000000000319 0.4018518212331028
+440.50000000003195 0.402118246681579
+440.60000000003197 0.40238564514203345
+440.700000000032 0.4026539256186875
+440.800000000032 0.4029229995606603
+440.90000000003204 0.4031927643097857
+441.00000000003206 0.4034631030534374
+441.1000000000321 0.4036404357441775
+441.2000000000321 0.4038179743319541
+441.3000000000321 0.40399555920847935
+441.40000000003215 0.4041730165811734
+441.5000000000322 0.404350158442218
+441.6000000000322 0.40452678253978286
+441.7000000000322 0.4047034533816348
+441.80000000003224 0.4048801709764289
+441.90000000003226 0.40505693533123016
+442.0000000000323 0.4052337464541739
+442.1000000000323 0.4054415530286124
+442.20000000003233 0.40564943040227625
+442.30000000003236 0.40585737858976473
+442.4000000000324 0.40606539760567756
+442.5000000000324 0.4062734874645819
+442.6000000000324 0.40638155420163696
+442.70000000003245 0.4064896385670705
+442.80000000003247 0.4065977405617464
+442.9000000000325 0.4067058601870613
+443.0000000000325 0.40681399744442254
+443.10000000003254 0.40695370700846556
+443.20000000003256 0.4070934339570338
+443.3000000000326 0.40723317828803607
+443.4000000000326 0.40737294000097557
+443.5000000000326 0.40751271909482395
+443.60000000003265 0.4076525155680189
+443.7000000000327 0.40779232941899834
+443.8000000000327 0.40793216064726207
+443.9000000000327 0.40807200925071435
+444.00000000003274 0.40821187522882324
+444.10000000003276 0.4082581214034585
+444.2000000000328 0.4083043453412739
+444.3000000000328 0.40835054702994955
+444.40000000003283 0.40839672645769365
+444.50000000003286 0.4084428836121804
+444.6000000000329 0.40848901848054936
+444.7000000000329 0.4085351310504695
+444.8000000000329 0.4085812213101407
+444.90000000003295 0.4086272892461619
+445.00000000003297 0.4086733348472947
+445.100000000033 0.4088216563658754
+445.200000000033 0.4089699887133063
+445.30000000003304 0.4091183318738729
+445.40000000003306 0.40926668583131987
+445.5000000000331 0.4094150505699147
+445.6000000000331 0.40956342607391727
+445.7000000000331 0.40971181232704473
+445.80000000003315 0.4098602093135379
+445.9000000000332 0.4100086170170967
+446.0000000000332 0.4101570354225011
+446.1000000000332 0.4103763027271005
+446.20000000003324 0.4105955730060003
+446.30000000003326 0.41081484623301906
+446.4000000000333 0.41103412238410003
+446.5000000000333 0.41125340143404315
+446.60000000003333 0.4112715725646375
+446.70000000003336 0.41128972878773484
+446.8000000000334 0.41130787009978076
+446.9000000000334 0.41132599649775425
+447.0000000000334 0.41134410797923704
+447.10000000003345 0.4115703736868079
+447.20000000003347 0.41179672999019945
+447.3000000000335 0.412023176916699
+447.4000000000335 0.41224971449253306
+447.50000000003354 0.4124763427455014
+447.60000000003356 0.4126023041191115
+447.7000000000336 0.4127282946906062
+447.8000000000336 0.41285431446471615
+447.90000000003363 0.41298036344777805
+448.00000000003365 0.4131064416451093
+448.1000000000337 0.41337839695775525
+448.2000000000337 0.41365048001858423
+448.3000000000337 0.41392269086893085
+448.40000000003374 0.41419502954853205
+448.50000000003376 0.41446749609713324
+448.6000000000338 0.4147406357405755
+448.7000000000338 0.4150142547585247
+448.80000000003383 0.41528817236442894
+448.90000000003386 0.4155622207500408
+449.0000000000339 0.415836245125712
+449.1000000000339 0.41610691162307
+449.2000000000339 0.41637728084987213
+449.30000000003395 0.4166472373565935
+449.40000000003397 0.4169166788942777
+449.500000000034 0.41718551646212815
+449.600000000034 0.4174537086436358
+449.70000000003404 0.4177211808711128
+449.80000000003406 0.4179878727714408
+449.9000000000341 0.41825373820915024
+450.0000000000341 0.41851874533628586
+450.10000000003413 0.41873321828898336
+450.20000000003415 0.4189467733148471
+450.3000000000342 0.4191594220378369
+450.4000000000342 0.41937119054097716
+450.5000000000342 0.4195821194009811
+450.60000000003424 0.4198942616086946
+450.70000000003427 0.42020577962358646
+450.8000000000343 0.42051676298441454
+450.9000000000343 0.4208273155564272
+451.00000000003433 0.4211375555839299
+451.10000000003436 0.4213704865058386
+451.2000000000344 0.4216032970502614
+451.3000000000344 0.42183614888551
+451.4000000000344 0.42206921814116527
+451.50000000003445 0.422302695445574
+451.60000000003447 0.42243437763397845
+451.7000000000345 0.42256606089301746
+451.8000000000345 0.422697752264407
+451.90000000003454 0.42282945922686294
+452.00000000003456 0.42296118969628893
+452.1000000000346 0.4232013329454322
+452.2000000000346 0.42344159607019083
+452.30000000003463 0.4236819883551365
+452.40000000003465 0.4239225195352354
+452.5000000000347 0.4241631997971099
+452.6000000000347 0.4244040397826864
+452.7000000000347 0.42464500236532465
+452.80000000003474 0.4248860848187054
+452.90000000003477 0.4251272839809173
+453.0000000000348 0.4253685962504374
+453.1000000000348 0.42546771185107857
+453.20000000003483 0.4255668463265612
+453.30000000003486 0.425665994727322
+453.4000000000349 0.4257651516686139
+453.5000000000349 0.4258643113278399
+453.6000000000349 0.42606590377847864
+453.70000000003495 0.4262671859605946
+453.80000000003497 0.42646834965938457
+453.900000000035 0.4266695727797943
+454.000000000035 0.4268710193115427
+454.10000000003504 0.4271168969581908
+454.20000000003506 0.4273633095673688
+454.3000000000351 0.42761037936032886
+454.4000000000351 0.4278582145521859
+454.50000000003513 0.42810690931387324
+454.60000000003515 0.4283565437290698
+454.7000000000352 0.4286071837576832
+454.8000000000352 0.42885888118874227
+454.9000000000352 0.42911167359962116
+455.00000000003524 0.4293655843156784
+455.10000000003527 0.42947973447912585
+455.2000000000353 0.4295949300501052
+455.3000000000353 0.42971115033608814
+455.40000000003533 0.4298283602680969
+455.50000000003536 0.4299465103772145
+455.6000000000354 0.4301691670275466
+455.7000000000354 0.4303926793831277
+455.8000000000354 0.4306169551656367
+455.90000000003545 0.4308418875097936
+456.00000000003547 0.4310673549273609
+456.1000000000355 0.4312114767529927
+456.2000000000355 0.4313557947865741
+456.30000000003554 0.4315001434187765
+456.40000000003556 0.4316443423998841
+456.5000000000356 0.43178819681427233
+456.6000000000356 0.4320354516881289
+456.70000000003563 0.43228280685306286
+456.80000000003565 0.4325302623361082
+456.9000000000357 0.4327778181643042
+457.0000000000357 0.43302547436521677
+457.1000000000357 0.4331929701381076
+457.20000000003574 0.4333605004366867
+457.30000000003577 0.43352806526435295
+457.4000000000358 0.4336956646245068
+457.5000000000358 0.4338632985216138
+457.60000000003583 0.43392678285717434
+457.70000000003586 0.4339902712506261
+457.8000000000359 0.43405376370187804
+457.9000000000359 0.43411726021249464
+458.0000000000359 0.4341807607829444
+458.10000000003595 0.43426191994420293
+458.20000000003597 0.4343430886385475
+458.300000000036 0.4344242668671094
+458.400000000036 0.43450545463157286
+458.50000000003604 0.4345866519331083
+458.60000000003606 0.43477282837896825
+458.7000000000361 0.43495944463489683
+458.8000000000361 0.43514629901254787
+458.90000000003613 0.43533320446167373
+459.00000000003615 0.43551998860058877
+459.1000000000362 0.4356747638449829
+459.2000000000362 0.43582909377585494
+459.3000000000362 0.43598285034003886
+459.40000000003624 0.43613592031673115
+459.50000000003627 0.4362882053466491
+459.6000000000363 0.4363350746877101
+459.7000000000363 0.4363809619747799
+459.80000000003633 0.43642582624314386
+459.90000000003636 0.4364696406535449
+460.0000000000364 0.4365123925018636
+460.1000000000364 0.4367522549331779
+460.2000000000364 0.4369911624879824
+460.30000000003645 0.4372291435505171
+460.40000000003647 0.4374662407464244
+460.5000000000365 0.4377025109829104
+460.6000000000365 0.43783331667324354
+460.70000000003654 0.43796341316284
+460.80000000003656 0.4380928889293286
+460.9000000000366 0.4382218476493116
+461.0000000000366 0.43835040821559546
+461.10000000003663 0.43840829189837527
+461.20000000003665 0.43846601141709346
+461.3000000000367 0.438523731438629
+461.4000000000367 0.4385816318223126
+461.5000000000367 0.43863990763262595
+461.60000000003674 0.4385939496957006
+461.70000000003677 0.4385479659619632
+461.8000000000368 0.43850195355446436
+461.9000000000368 0.4384559091506702
+462.00000000003683 0.438409828987737
+462.10000000003686 0.4385367057931493
+462.2000000000369 0.4386635506616831
+462.3000000000369 0.4387903584464142
+462.4000000000369 0.4389171235504648
+462.50000000003695 0.4390438399257862
+462.60000000003697 0.4391705191235067
+462.700000000037 0.43929719766843617
+462.800000000037 0.43942387688775597
+462.90000000003704 0.43955055899989
+463.00000000003706 0.4396772471163996
+463.1000000000371 0.43981295058621733
+463.2000000000371 0.43994869065104036
+463.30000000003713 0.44008447311499427
+463.40000000003715 0.44022030468399836
+463.5000000000372 0.4403561929622405
+463.6000000000372 0.4405965345817892
+463.7000000000372 0.4408365687075452
+463.80000000003724 0.44107649527078546
+463.90000000003727 0.44131649945384566
+464.0000000000373 0.4415567516451119
+464.1000000000373 0.4415608626508413
+464.20000000003733 0.44156541320842374
+464.30000000003736 0.44157052812939357
+464.4000000000374 0.4415763170317331
+464.5000000000374 0.44158287433807275
+464.6000000000374 0.4416954198182235
+464.70000000003745 0.44180890601981365
+464.80000000003747 0.4419233898654717
+464.9000000000375 0.4420389135670569
+465.0000000000375 0.44215550460548353
+465.10000000003754 0.44229259870872123
+465.20000000003756 0.4424307895390493
+465.3000000000376 0.44257006041739294
+465.4000000000376 0.44271037984916495
+465.50000000003763 0.4428517015002042
+465.60000000003765 0.4429939641718378
+465.7000000000377 0.44313706660218627
+465.8000000000377 0.4432809103589938
+465.9000000000377 0.44342538161360046
+466.00000000003774 0.4435703511127552
+466.10000000003777 0.4437320170656349
+466.2000000000378 0.44389388593726825
+466.3000000000378 0.4440557820489387
+466.40000000003783 0.4442175141686882
+466.50000000003786 0.4443788754830903
+466.6000000000379 0.44443432737731625
+466.7000000000379 0.4444897808861344
+466.8000000000379 0.4445452360097864
+466.90000000003795 0.4446006927490718
+467.00000000003797 0.4446561511042712
+467.100000000038 0.44481147484157063
+467.200000000038 0.4449668231490869
+467.30000000003804 0.44512219602888276
+467.40000000003806 0.4452775934813481
+467.5000000000381 0.4454330155085055
+467.6000000000381 0.44548302234218384
+467.70000000003813 0.44553303008106326
+467.80000000003815 0.44558303872553406
+467.9000000000382 0.4456330482759879
+468.0000000000382 0.445683058732854
+468.1000000000382 0.44583219114344375
+468.20000000003824 0.4459813432835982
+468.30000000003827 0.4461305151527778
+468.4000000000383 0.44627970675100137
+468.5000000000383 0.4464289180776885
+468.60000000003834 0.44647260005558476
+468.70000000003836 0.4465162811088536
+468.8000000000384 0.44655996123826425
+468.9000000000384 0.4466036404440275
+469.0000000000384 0.446647318726927
+469.10000000003845 0.4467243156820951
+469.2000000000385 0.4468012880636988
+469.3000000000385 0.4468782358646112
+469.4000000000385 0.44695515907826316
+469.50000000003854 0.44703205769804494
+469.60000000003856 0.4470033819225636
+469.7000000000386 0.4469746950869875
+469.8000000000386 0.44694599719268463
+469.90000000003863 0.4469172882404675
+470.00000000003865 0.44688856823176376
+470.1000000000387 0.4470123385723076
+470.2000000000387 0.4471361107727257
+470.3000000000387 0.44725988482768464
+470.40000000003874 0.44738366073352637
+470.50000000003877 0.4475074384854746
+470.6000000000388 0.4476312180793118
+470.7000000000388 0.4477549995102603
+470.80000000003884 0.4478787827741014
+470.90000000003886 0.44800256786661413
+471.0000000000389 0.44812635478300644
+471.1000000000389 0.4482142228632874
+471.2000000000389 0.44830210028704426
+471.30000000003895 0.4483899870550233
+471.400000000039 0.44847788316797094
+471.500000000039 0.44856578862779267
+471.600000000039 0.4487593933530995
+471.70000000003904 0.4489530488517436
+471.80000000003906 0.44914675513039504
+471.9000000000391 0.4493405121979624
+472.0000000000391 0.4495343200610511
+472.10000000003913 0.4495586949951137
+472.20000000003915 0.4495830646440742
+472.3000000000392 0.4496074290074701
+472.4000000000392 0.4496317880865169
+472.5000000000392 0.44965614188135405
+472.60000000003924 0.44978629756541466
+472.70000000003927 0.44991645942206265
+472.8000000000393 0.4500466274469717
+472.9000000000393 0.45017680163693385
+473.00000000003934 0.4503069819886815
+473.10000000003936 0.45028834502208653
+473.2000000000394 0.4502697000921618
+473.3000000000394 0.4502510472007082
+473.4000000000394 0.4502323863489665
+473.50000000003945 0.4502137175376599
+473.6000000000395 0.45030084453885866
+473.7000000000395 0.4503879548016452
+473.8000000000395 0.45047504832206625
+473.90000000003954 0.4505621250956085
+474.00000000003956 0.45064918511777097
+474.1000000000396 0.450765477241439
+474.2000000000396 0.450881785831577
+474.30000000003963 0.45099811088891856
+474.40000000003965 0.451114452415877
+474.5000000000397 0.4512308104131879
+474.6000000000397 0.45134718488214653
+474.7000000000397 0.45146357582516905
+474.80000000003974 0.4515799832435533
+474.90000000003977 0.4516964071385982
+475.0000000000398 0.45181284751160955
+475.1000000000398 0.45194946247567513
+475.20000000003984 0.4520860868792844
+475.30000000003986 0.4522227207193958
+475.4000000000399 0.452359363991847
+475.5000000000399 0.4524960166941136
+475.6000000000399 0.45252657646002914
+475.70000000003995 0.4525571313212726
+475.80000000004 0.45258768127785304
+475.90000000004 0.4526182263297803
+476.00000000004 0.45264876647711877
+476.10000000004004 0.4528161437399981
+476.20000000004006 0.45298355110421146
+476.3000000000401 0.45315098857181196
+476.4000000000401 0.4533184561437293
+476.50000000004013 0.45348595382141155
+476.60000000004015 0.45354726444797444
+476.7000000000402 0.45360857646493846
+476.8000000000402 0.4536698898735518
+476.9000000000402 0.4537312046728161
+477.00000000004025 0.4537925208639882
+477.10000000004027 0.4538709991490464
+477.2000000000403 0.45394948504707355
+477.3000000000403 0.4540279785582669
+477.40000000004034 0.45410647968394746
+477.50000000004036 0.4541849884249178
+477.6000000000404 0.45436988967840286
+477.7000000000404 0.45455483532766294
+477.8000000000404 0.454739825380314
+477.90000000004045 0.45492485984172487
+478.0000000000405 0.45510993871888555
+478.1000000000405 0.45513295013827293
+478.2000000000405 0.455155958798944
+478.30000000004054 0.45517896470044195
+478.40000000004056 0.45520196784456096
+478.5000000000406 0.4552249682319699
+478.6000000000406 0.4552479658633387
+478.70000000004063 0.4552709607393364
+478.80000000004065 0.4552939528617586
+478.9000000000407 0.45531694223014957
+479.0000000000407 0.45533992884634006
+479.1000000000407 0.455447516355758
+479.20000000004075 0.45555511132387366
+479.30000000004077 0.4556627137502235
+479.4000000000408 0.45577032363490727
+479.5000000000408 0.45587794097746376
+479.60000000004084 0.45598556577686794
+479.70000000004086 0.45609319803434994
+479.8000000000409 0.45620083774832293
+479.9000000000409 0.4563084849194558
+480.0000000000409 0.4564161395461858
+480.10000000004095 0.4565808035690193
+480.200000000041 0.45674549685568544
+480.300000000041 0.45691021940840326
+480.400000000041 0.45707497122882834
+480.50000000004104 0.4572397523196995
+480.60000000004106 0.45729771742165726
+480.7000000000411 0.45735568471026455
+480.8000000000411 0.4574136541858538
+480.90000000004113 0.4574716258493218
+481.00000000004115 0.4575295997005027
+481.1000000000412 0.45774757103573294
+481.2000000000412 0.45796559986156493
+481.3000000000412 0.45818368618214034
+481.40000000004125 0.45840183000103546
+481.50000000004127 0.4586200313212167
+481.6000000000413 0.4587312350156039
+481.7000000000413 0.45884244431169374
+481.80000000004134 0.4589536592093596
+481.90000000004136 0.4590648797079093
+482.0000000000414 0.45917610580608864
+482.1000000000414 0.459295591266185
+482.2000000000414 0.4594150762922245
+482.30000000004145 0.4595345608807464
+482.4000000000415 0.4596540450277229
+482.5000000000415 0.45977352872964805
+482.6000000000415 0.4597858357975441
+482.70000000004154 0.45979813667817987
+482.80000000004156 0.45981043137264876
+482.9000000000416 0.4598227198814778
+483.0000000000416 0.4598350022052748
+483.10000000004163 0.4600393997320848
+483.20000000004165 0.4602438523840237
+483.3000000000417 0.46044836016809426
+483.4000000000417 0.4606529230924293
+483.5000000000417 0.4608575411640316
+483.60000000004175 0.461062821145988
+483.70000000004177 0.4612685470613863
+483.8000000000418 0.46147451750485896
+483.9000000000418 0.46168054567646166
+484.00000000004184 0.46188645941499495
+484.10000000004186 0.46193173913601393
+484.2000000000419 0.46197654842134234
+484.3000000000419 0.4620207598409427
+484.4000000000419 0.4620642608949927
+484.50000000004195 0.4621069540210248
+484.600000000042 0.462256233056962
+484.700000000042 0.4624045728831226
+484.800000000042 0.4625519200942275
+484.90000000004204 0.4626982362181831
+485.00000000004206 0.4628434977435458
+485.1000000000421 0.4628607224461914
+485.2000000000421 0.4628768724486512
+485.30000000004213 0.46289197012603706
+485.40000000004216 0.46290605286590586
+485.5000000000422 0.4629191730730233
+485.6000000000422 0.46303896968030667
+485.7000000000422 0.46315798343099585
+485.80000000004225 0.463276298640203
+485.90000000004227 0.46339401567613164
+486.0000000000423 0.46351125098037943
+486.1000000000423 0.46363955632757803
+486.20000000004234 0.4637676670041044
+486.30000000004236 0.46389574779060805
+486.4000000000424 0.46402397964136805
+486.5000000000424 0.4641525597074363
+486.6000000000424 0.4641740909569034
+486.70000000004245 0.4641955342426912
+486.8000000000425 0.46421689895617274
+486.9000000000425 0.4642381944903274
+487.0000000000425 0.46425943024206046
+487.10000000004254 0.4644098954611991
+487.20000000004256 0.4645603409079343
+487.3000000000426 0.4647107759585961
+487.4000000000426 0.46486121000211394
+487.50000000004263 0.4650116524416649
+487.60000000004266 0.4650544994523044
+487.7000000000427 0.4650973784835379
+487.8000000000427 0.46514028624678216
+487.9000000000427 0.46518322039584564
+488.00000000004275 0.4652261795251561
+488.10000000004277 0.465296057244936
+488.2000000000428 0.4653659602074213
+488.3000000000428 0.46543588984074324
+488.40000000004284 0.46550584851557814
+488.50000000004286 0.46557583955045617
+488.6000000000429 0.4656452158655418
+488.7000000000429 0.46571416206945154
+488.8000000000429 0.4657828851666578
+488.90000000004295 0.4658515762419672
+489.000000000043 0.46592041044964516
+489.100000000043 0.466020534158366
+489.200000000043 0.4661210979394499
+489.30000000004304 0.4662222291934658
+489.40000000004306 0.46632403936968464
+489.5000000000431 0.46642662394870565
+489.6000000000431 0.4664222191384639
+489.70000000004313 0.4664187863611669
+489.80000000004316 0.4664163880165925
+489.9000000000432 0.4664150713821166
+490.0000000000432 0.46641486861498266
+490.1000000000432 0.46653672747970254
+490.20000000004325 0.4666597262697898
+490.30000000004327 0.46678385265171896
+490.4000000000433 0.4669090791388302
+490.5000000000433 0.4670353630744161
+490.60000000004334 0.46705478176032156
+490.70000000004336 0.4670750644767012
+490.8000000000434 0.4670961067183374
+490.9000000000434 0.46711778786808805
+491.0000000000434 0.46713997119208783
+491.10000000004345 0.46723977917396875
+491.2000000000435 0.4673397628842025
+491.3000000000435 0.46743973720478543
+491.4000000000435 0.4675395007492894
+491.50000000004354 0.46763883584714966
+491.60000000004356 0.4676296354834696
+491.7000000000436 0.4676204310396097
+491.8000000000436 0.46761122251632437
+491.90000000004363 0.4676020099155059
+492.00000000004366 0.4675927932379691
+492.1000000000437 0.46772151309531496
+492.2000000000437 0.46785024027265537
+492.3000000000437 0.46797897476946243
+492.40000000004375 0.46810771658463957
+492.50000000004377 0.4682364657176117
+492.6000000000438 0.4682573287742351
+492.7000000000438 0.468278189533797
+492.80000000004384 0.4682990479971048
+492.90000000004386 0.46831990416553426
+493.0000000000439 0.4683407580393258
+493.1000000000439 0.4683685647726771
+493.20000000004393 0.46839636940595136
+493.30000000004395 0.46842417193924024
+493.400000000044 0.4684519723743439
+493.500000000044 0.4684797707108327
+493.600000000044 0.46861551800257956
+493.70000000004404 0.4687512760060827
+493.80000000004407 0.4688870447202303
+493.9000000000441 0.4690228241444799
+494.0000000000441 0.4691586142788174
+494.10000000004413 0.4692013613740546
+494.20000000004416 0.4692441078173239
+494.3000000000442 0.46928685360850037
+494.4000000000442 0.46932959874859703
+494.5000000000442 0.46937234323805843
+494.60000000004425 0.4694150870767596
+494.70000000004427 0.46945783026628496
+494.8000000000443 0.46950057280594054
+494.9000000000443 0.4695433146967414
+495.00000000004434 0.4695860559397051
+495.10000000004436 0.46963018442163074
+495.2000000000444 0.4696742749740654
+495.3000000000444 0.46971832759438864
+495.40000000004443 0.4697623422782738
+495.50000000004445 0.46980631902362324
+495.6000000000445 0.4697422710966783
+495.7000000000445 0.46967821467525156
+495.8000000000445 0.4696141497617851
+495.90000000004454 0.46955007635758367
+496.00000000004457 0.46948599446681516
+496.1000000000446 0.46946218965553865
+496.2000000000446 0.46943837970239044
+496.30000000004463 0.46941456460836584
+496.40000000004466 0.4693907443761673
+496.5000000000447 0.46936691900621963
+496.6000000000447 0.46934308850065576
+496.7000000000447 0.4693192528604696
+496.80000000004475 0.4692954120883627
+496.90000000004477 0.4692715661847598
+497.0000000000448 0.46924771515239505
+497.1000000000448 0.4692995173459956
+497.20000000004484 0.4693512810850957
+497.30000000004486 0.46940300636150684
+497.4000000000449 0.4694546931693163
+497.5000000000449 0.46950634150028725
+497.60000000004493 0.46945015567488474
+497.70000000004495 0.46939395716770743
+497.800000000045 0.46933774597909234
+497.900000000045 0.4692815221110806
+498.000000000045 0.4692252855657648
+498.10000000004504 0.4692839921290987
+498.20000000004507 0.46934270081925217
+498.3000000000451 0.4694014116371533
+498.4000000000451 0.4694601245825959
+498.50000000004513 0.4695188396559413
+498.60000000004516 0.4695775568575505
+498.7000000000452 0.4696362761883552
+498.8000000000452 0.46969499764814904
+498.9000000000452 0.46975372123729553
+499.00000000004525 0.46981244695675184
+499.10000000004527 0.46992741083039974
+499.2000000000453 0.4700423743491862
+499.3000000000453 0.4701573375112743
+499.40000000004534 0.4702723003153967
+499.50000000004536 0.47038726275909815
+499.6000000000454 0.47039433623353255
+499.7000000000454 0.47040140610156056
+499.80000000004543 0.47040847236533495
+499.90000000004545 0.4704155350253041
+500.0000000000455 0.470422594082988
+500.1000000000455 0.4702893377283926
+500.2000000000455 0.47015608886768834
+500.30000000004554 0.47002284750570966
+500.40000000004557 0.4698896136461531
+500.5000000000456 0.4697563872939007
+500.6000000000456 0.4697310286205727
+500.70000000004563 0.46970566581556206
+500.80000000004566 0.4696802988804747
+500.9000000000457 0.4696549278169159
+501.0000000000457 0.46962955262706635
+501.1000000000457 0.4696207478540714
+501.20000000004575 0.46961193888530484
+501.30000000004577 0.4696031257220331
+501.4000000000458 0.46959430836608934
+501.5000000000458 0.4695854868170339
+501.60000000004584 0.46957666107783713
+501.70000000004586 0.46956783114919604
+501.8000000000459 0.46955899703180726
+501.9000000000459 0.4695501587275037
+502.00000000004593 0.4695413162375779
+502.10000000004595 0.4695906712585797
+502.200000000046 0.46964002588240866
+502.300000000046 0.4696893801094347
+502.400000000046 0.46973873394059573
+502.50000000004604 0.4697880873756443
+502.60000000004607 0.46972955581390036
+502.7000000000461 0.4696710011924277
+502.8000000000461 0.46961242351112953
+502.90000000004613 0.4695538227710452
+503.00000000004616 0.4694951989732324
+503.1000000000462 0.46947094661784733
+503.2000000000462 0.46944668310462695
+503.3000000000462 0.46942240843397104
+503.40000000004625 0.4693981226074152
+503.50000000004627 0.46937382562587854
+503.6000000000463 0.46924225822281374
+503.7000000000463 0.4691110999852317
+503.80000000004634 0.4689801388290209
+503.90000000004636 0.4688491785867308
+504.0000000000464 0.4687180389882622
+504.1000000000464 0.4688251515473685
+504.20000000004643 0.4689317685816123
+504.30000000004645 0.4690377564145134
+504.4000000000465 0.4691429969415164
+504.5000000000465 0.4692473876483048
+504.6000000000465 0.46935084162051977
+504.70000000004654 0.4694532875835777
+504.80000000004657 0.46955466990824773
+504.9000000000466 0.46965494863052715
+505.0000000000466 0.4697540994666093
+505.10000000004663 0.4697729178631403
+505.20000000004666 0.4697906119298755
+505.3000000000467 0.4698072050899692
+505.4000000000467 0.46982273648914447
+505.5000000000467 0.46983726099903905
+505.60000000004675 0.4698508492302239
+505.70000000004677 0.46986358751021035
+505.8000000000468 0.4698755778997357
+505.9000000000468 0.46988693819399874
+506.00000000004684 0.46989780192385466
+506.10000000004686 0.47000406553790813
+506.2000000000469 0.47011014443711074
+506.3000000000469 0.47021621937051056
+506.40000000004693 0.47032248699104545
+506.50000000004695 0.4704291598750812
+506.600000000047 0.47053648590164143
+506.700000000047 0.4706438194235391
+506.800000000047 0.47075115400619333
+506.90000000004704 0.47085848368543076
+507.00000000004707 0.47096580296743723
+507.1000000000471 0.47097266814836913
+507.2000000000471 0.470979515517364
+507.30000000004713 0.47098634101385056
+507.40000000004716 0.4709931410552507
+507.5000000000472 0.47099991253708934
+507.6000000000472 0.4711145193564001
+507.7000000000472 0.47122907096775724
+507.80000000004725 0.4713435785569891
+507.90000000004727 0.47145805284585296
+508.0000000000473 0.47157250408625756
+508.1000000000473 0.47157068243096967
+508.20000000004734 0.4715688532653329
+508.30000000004736 0.4715670254358478
+508.4000000000474 0.47156520731253126
+508.5000000000474 0.47156340678894293
+508.60000000004743 0.47166891880845785
+508.70000000004745 0.47177406216561596
+508.8000000000475 0.4718790497503453
+508.9000000000475 0.47198407886022914
+509.0000000000475 0.4720893311818074
+509.10000000004754 0.47218751700308254
+509.20000000004757 0.4722862400679893
+509.3000000000476 0.47238563509120846
+509.4000000000476 0.4724858210959727
+509.50000000004763 0.4725869014011523
+509.60000000004766 0.47258106838100405
+509.7000000000477 0.47257626442330264
+509.8000000000477 0.472572536964256
+509.9000000000477 0.47256991715256674
+510.00000000004775 0.4725684198494231
+510.10000000004777 0.4726713832799899
+510.2000000000478 0.47277544735569166
+510.3000000000478 0.47288057877582196
+510.40000000004784 0.4729867279052488
+510.50000000004786 0.47309382875636785
+510.6000000000479 0.4730939098234886
+510.7000000000479 0.47309481493426575
+510.80000000004793 0.47309644430892556
+510.90000000004795 0.4730986828166063
+511.000000000048 0.47310139997407136
+511.100000000048 0.47322136969877193
+511.200000000048 0.4733415164104768
+511.30000000004804 0.4734616635569565
+511.40000000004807 0.47358161904024293
+511.5000000000481 0.4737011751968566
+511.6000000000481 0.47371220167161165
+511.70000000004814 0.4737232244737048
+511.80000000004816 0.47373424360461375
+511.9000000000482 0.4737452590652485
+512.0000000000482 0.47375627085596694
+512.1000000000482 0.4738025816301175
+512.2000000000482 0.4738488915173028
+512.3000000000483 0.4738952005186411
+512.4000000000483 0.4739415086346826
+512.5000000000483 0.47398781586546146
+512.6000000000483 0.4741421026496545
+512.7000000000484 0.47429640964527453
+512.8000000000484 0.4744507368529375
+512.9000000000484 0.4746050842715533
+513.0000000000484 0.47475945190166596
+513.1000000000485 0.47476490035483504
+513.2000000000485 0.47477034536046575
+513.3000000000485 0.47477578692017064
+513.4000000000485 0.4747812250344244
+513.5000000000485 0.4747866597037026
+513.6000000000486 0.47479209093018554
+513.7000000000486 0.4747975187137807
+513.8000000000486 0.47480294305610027
+513.9000000000486 0.47480836395705056
+514.0000000000487 0.47481378141888375
+514.1000000000487 0.474963354865975
+514.2000000000487 0.4751129475085824
+514.3000000000487 0.4752625593465591
+514.4000000000487 0.4754121903814627
+514.5000000000488 0.4755618406142308
+514.6000000000488 0.47560341835902287
+514.7000000000488 0.4756449964032236
+514.8000000000488 0.4756865747486705
+514.9000000000489 0.4757281533949242
+515.0000000000489 0.47576973234326564
+515.1000000000489 0.4758357980917314
+515.2000000000489 0.47590186733176537
+515.300000000049 0.47596794006288123
+515.400000000049 0.47603401628630004
+515.500000000049 0.4761000960021054
+515.600000000049 0.4761661792109498
+515.700000000049 0.47623226591348666
+515.8000000000491 0.47629835610980054
+515.9000000000491 0.4763644498011155
+516.0000000000491 0.47643054698754617
+516.1000000000491 0.47655853087927236
+516.2000000000492 0.47668652198242395
+516.3000000000492 0.4768145202962487
+516.4000000000492 0.47694252582113406
+516.5000000000492 0.4770705385557039
+516.6000000000492 0.4770902519729927
+516.7000000000493 0.47710996365057545
+516.8000000000493 0.4771296735882425
+516.9000000000493 0.4771493817869233
+517.0000000000493 0.47716908824811927
+517.1000000000494 0.4771910984255634
+517.2000000000494 0.47721310717113646
+517.3000000000494 0.47723511448517414
+517.4000000000494 0.4772571203691527
+517.5000000000495 0.47727912482340795
+517.6000000000495 0.4773011278482759
+517.7000000000495 0.4773231294458039
+517.8000000000495 0.47734512961518744
+517.9000000000495 0.4773671283584738
+518.0000000000496 0.4773891256754445
+518.1000000000496 0.4774417562900849
+518.2000000000496 0.47749438868280153
+518.3000000000496 0.4775470228553827
+518.4000000000497 0.47759965880733524
+518.5000000000497 0.4776522965398777
+518.6000000000497 0.47770493605365855
+518.7000000000497 0.4777575773481857
+518.8000000000497 0.47781022042467863
+518.9000000000498 0.4778628652837868
+519.0000000000498 0.477915511925631
+519.1000000000498 0.47805196434320135
+519.2000000000498 0.4781884288196369
+519.3000000000499 0.4783249053566001
+519.4000000000499 0.47846139395404086
+519.5000000000499 0.4785978946124258
+519.6000000000499 0.4786258753870556
+519.70000000005 0.47865385553367634
+519.80000000005 0.478681835052613
+519.90000000005 0.47870981394533196
+520.00000000005 0.4787377922121781
+520.10000000005 0.478804941097872
+520.2000000000501 0.47887209386196644
+520.3000000000501 0.47893925050459757
+520.4000000000501 0.4790064110264744
+520.5000000000501 0.479073575427734
+520.6000000000502 0.47914074370965637
+520.7000000000502 0.47920791587295214
+520.8000000000502 0.4792750919171881
+520.9000000000502 0.4793422718436459
+521.0000000000502 0.47940945565243914
+521.1000000000503 0.479424733415479
+521.2000000000503 0.4794400094038704
+521.3000000000503 0.4794552836180388
+521.4000000000503 0.4794705560589813
+521.5000000000504 0.4794858267282669
+521.6000000000504 0.4795010956257494
+521.7000000000504 0.4795163627524258
+521.8000000000504 0.47953162810929434
+521.9000000000505 0.47954689169735204
+522.0000000000505 0.47956215351703124
+522.1000000000505 0.4795899957902113
+522.2000000000505 0.4796178372418377
+522.3000000000505 0.4796456778727943
+522.4000000000506 0.47967351768339156
+522.5000000000506 0.479701356673942
+522.6000000000506 0.47972919484590093
+522.7000000000506 0.4797570322001523
+522.8000000000507 0.4797848687364363
+522.9000000000507 0.47981270445620916
+523.0000000000507 0.4798405393603488
+523.1000000000507 0.4798550599004927
+523.2000000000507 0.47986957866718044
+523.3000000000508 0.47988409566142465
+523.4000000000508 0.47989861088309343
+523.5000000000508 0.4799131243337728
+523.6000000000508 0.4799276360144758
+523.7000000000509 0.47994214592564327
+523.8000000000509 0.47995665406828897
+523.9000000000509 0.4799711604428541
+524.0000000000509 0.4799856650503627
+524.100000000051 0.48002102605911395
+524.200000000051 0.4800563873342954
+524.300000000051 0.4800917488773609
+524.400000000051 0.48012711068862013
+524.500000000051 0.48016247276838275
+524.6000000000511 0.48019783511753134
+524.7000000000511 0.48023319773694784
+524.8000000000511 0.4802685606269426
+524.9000000000511 0.4803039237889718
+525.0000000000512 0.4803392872232914
+525.1000000000512 0.4802680977481054
+525.2000000000512 0.48019688975539615
+525.3000000000512 0.4801256632480005
+525.4000000000513 0.48005441822589234
+525.5000000000513 0.4799831546913924
+525.6000000000513 0.48002084446110127
+525.7000000000513 0.48005853283245525
+525.8000000000513 0.48009621980678324
+525.9000000000514 0.4801339053842676
+526.0000000000514 0.4801715895650765
+526.1000000000514 0.48018115658798666
+526.2000000000514 0.4801907214531231
+526.3000000000515 0.48020028415982213
+526.4000000000515 0.48020984471085815
+526.5000000000515 0.48021940310556704
+526.6000000000515 0.4802289593450051
+526.7000000000515 0.4802385134313729
+526.8000000000516 0.4802480653640073
+526.9000000000516 0.48025761514396403
+527.0000000000516 0.48026716277291553
+527.1000000000516 0.4803621647315786
+527.2000000000517 0.48045717788135184
+527.3000000000517 0.4805522022236075
+527.4000000000517 0.48064723775799756
+527.5000000000517 0.48074228448761525
+527.6000000000518 0.4808373424121132
+527.7000000000518 0.48093241153343946
+527.8000000000518 0.481027491852395
+527.9000000000518 0.4811225833703545
+528.0000000000518 0.48121768608809357
+528.1000000000519 0.48126183716314164
+528.2000000000519 0.481305988578144
+528.3000000000519 0.48135014033444684
+528.4000000000519 0.4813942924316736
+528.500000000052 0.4814384448717447
+528.600000000052 0.48148259765371015
+528.700000000052 0.481526750778917
+528.800000000052 0.48157090424813825
+528.900000000052 0.48161505806157306
+529.0000000000521 0.4816592122194057
+529.1000000000521 0.4816749666579556
+529.2000000000521 0.4816907183580776
+529.3000000000521 0.48170646732005185
+529.4000000000522 0.4817222135453083
+529.5000000000522 0.4817379570335526
+529.6000000000522 0.48175369778564026
+529.7000000000522 0.48176943580242676
+529.8000000000523 0.4817851710847675
+529.9000000000523 0.48180090363294303
+530.0000000000523 0.48181663344785564
+530.1000000000523 0.4819190844193694
+530.2000000000523 0.4820215439208335
+530.3000000000524 0.4821240119529812
+530.4000000000524 0.48222648851597294
+530.5000000000524 0.482328973609968
+530.6000000000524 0.4824314672362779
+530.7000000000525 0.48253396939506377
+530.8000000000525 0.48263648008648713
+530.9000000000525 0.4827389993118619
+531.0000000000525 0.48284152707069855
+531.1000000000525 0.4827994062668481
+531.2000000000526 0.4827572816533674
+531.3000000000526 0.4827151532318684
+531.4000000000526 0.48267302100338777
+531.5000000000526 0.4826308849689606
+531.6000000000527 0.4825887451307747
+531.7000000000527 0.4825466014892893
+531.8000000000527 0.4825044540466906
+531.9000000000527 0.4824623028040133
+532.0000000000528 0.48242014776228886
+532.1000000000528 0.48237176746470145
+532.2000000000528 0.4823233829835744
+532.3000000000528 0.482274994320023
+532.4000000000528 0.4822266014757391
+532.5000000000529 0.4821782044524132
+532.6000000000529 0.4821298032505861
+532.7000000000529 0.4820813978725223
+532.8000000000529 0.48203298831933733
+532.900000000053 0.48198457459272004
+533.000000000053 0.48193615669383866
+533.100000000053 0.48198976541910526
+533.200000000053 0.4820433409084747
+533.300000000053 0.4820968831573906
+533.4000000000531 0.4821503921618714
+533.5000000000531 0.48220386791787784
+533.6000000000531 0.48214797981403257
+533.7000000000531 0.4820920838023908
+533.8000000000532 0.4820361798849611
+533.9000000000532 0.4819802680620288
+534.0000000000532 0.48192434833611514
+534.1000000000532 0.4817556575914716
+534.2000000000533 0.4815869301308435
+534.3000000000533 0.48141816595384296
+534.4000000000533 0.4812493650583617
+534.5000000000533 0.48108052744406793
+534.6000000000533 0.481020703370851
+534.7000000000534 0.480960765972463
+534.8000000000534 0.48090071522234046
+534.9000000000534 0.4808405510939169
+535.0000000000534 0.48078027356219505
+535.1000000000535 0.4804474973068171
+535.2000000000535 0.4801146832711075
+535.3000000000535 0.47978183145694114
+535.4000000000535 0.4794489418679061
+535.5000000000535 0.4791160145059338
+535.6000000000536 0.4788914940055242
+535.7000000000536 0.4786667848877602
+535.8000000000536 0.4784418871288009
+535.9000000000536 0.47821680070651396
+536.0000000000537 0.4779915255974829
+536.1000000000537 0.47749727143972615
+536.2000000000537 0.47700293444042646
+536.3000000000537 0.4765085145984113
+536.4000000000538 0.4760140119125025
+536.5000000000538 0.47551942638038963
+536.6000000000538 0.47502475800089244
+536.7000000000538 0.4745300067733891
+536.8000000000538 0.4740351726955632
+536.9000000000539 0.47354025576566233
+537.0000000000539 0.4730452559835516
+537.1000000000539 0.47242690776929036
+537.2000000000539 0.4718084551350437
+537.300000000054 0.47118989807698974
+537.400000000054 0.470571236593543
+537.500000000054 0.46995247068037355
+537.600000000054 0.4694397844076022
+537.700000000054 0.4689267136210499
+537.8000000000541 0.4684132582459363
+537.9000000000541 0.4678994182091453
+538.0000000000541 0.467385193435635
+538.1000000000541 0.4664047323648394
+538.2000000000542 0.46542413587508996
+538.3000000000542 0.464443403968466
+538.4000000000542 0.46346253664648807
+538.5000000000542 0.4624815339117729
+538.6000000000543 0.46150104176924955
+538.7000000000543 0.4605208258769509
+538.8000000000543 0.4595406696961452
+538.9000000000543 0.4585603743246987
+539.0000000000543 0.4575797583271514
+539.1000000000544 0.4564634392255783
+539.2000000000544 0.4553464995783119
+539.3000000000544 0.4542288099033077
+539.4000000000544 0.4531102576520104
+539.5000000000545 0.4519907470187046
+539.6000000000545 0.45087018019652914
+539.7000000000545 0.44974850104186315
+539.8000000000545 0.44862566905809587
+539.9000000000545 0.4475016592110864
+540.0000000000546 0.44637646174079365
+540.1000000000546 0.4448212870873314
+540.2000000000546 0.44326483719993404
+540.3000000000546 0.44170715005869504
+540.4000000000547 0.4401482780069498
+540.5000000000547 0.4385882874902327
+540.6000000000547 0.4369284955623222
+540.7000000000547 0.43526846528929364
+540.8000000000548 0.433608304423448
+540.9000000000548 0.43194813366217016
+541.0000000000548 0.43028808637233096
+541.1000000000548 0.4288263249877383
+541.2000000000548 0.42736436118105114
+541.3000000000549 0.42590236462007186
+541.4000000000549 0.42444051687572293
+541.5000000000549 0.4229790111797186
+541.6000000000549 0.4215180521889897
+541.700000000055 0.42005704309326314
+541.800000000055 0.41859598091140354
+541.900000000055 0.41713486227872676
+542.000000000055 0.41567368345173367
+542.100000000055 0.4138858800275498
+542.2000000000551 0.4120977605919838
+542.3000000000551 0.41030932028800926
+542.4000000000551 0.4085205539276379
+542.5000000000551 0.40673145600154803
+542.6000000000552 0.40503365320187446
+542.7000000000552 0.40333473050751883
+542.8000000000552 0.4016346820588904
+542.9000000000552 0.399933502493194
+543.0000000000553 0.39823118693721227
+543.1000000000553 0.3961374985049352
+543.2000000000553 0.39404378431347
+543.3000000000553 0.39195004121064075
+543.4000000000553 0.38985626651116767
+543.5000000000554 0.3877624579865447
+543.6000000000554 0.3856680737820245
+543.7000000000554 0.38357331318184373
+543.8000000000554 0.3814783585491641
+543.9000000000555 0.3793833756811643
+544.0000000000555 0.3772885141608223
+544.1000000000555 0.3754831807159605
+544.2000000000555 0.3736781877115138
+544.3000000000555 0.3718736393182686
+544.4000000000556 0.37006962519324255
+544.5000000000556 0.3682662207843847
+544.6000000000556 0.36646348763169023
+544.7000000000556 0.36466147365463863
+544.8000000000557 0.36286021347906205
+544.9000000000557 0.36105972872796027
+545.0000000000557 0.3592600283218681
+545.1000000000557 0.35713058076309884
+545.2000000000558 0.35500178513874875
+545.3000000000558 0.3528736116733517
+545.4000000000558 0.35074601918768133
+545.5000000000558 0.3486189554570015
+545.6000000000558 0.34649235756418667
+545.7000000000559 0.34436613266606775
+545.8000000000559 0.3422401921660287
+545.9000000000559 0.3401144376411388
+546.0000000000559 0.33798876120750426
+546.100000000056 0.33603339377204255
+546.200000000056 0.3340777776572409
+546.300000000056 0.3321217787731899
+546.400000000056 0.3301652547424043
+546.500000000056 0.3282080552426691
+546.6000000000561 0.32625002234463246
+546.7000000000561 0.32429161844897814
+546.8000000000561 0.3223328435328968
+546.9000000000561 0.3203736975747215
+547.0000000000562 0.3184141805516029
+547.1000000000562 0.3164097017798511
+547.2000000000562 0.31440405326780496
+547.3000000000562 0.3123972348669216
+547.4000000000563 0.31038924642901844
+547.5000000000563 0.3083800878047609
+547.6000000000563 0.30630061649431656
+547.7000000000563 0.3042209136182946
+547.8000000000563 0.30214097918464783
+547.9000000000564 0.30006081320132355
+548.0000000000564 0.29798041567703454
+548.1000000000564 0.29601706873696515
+548.2000000000564 0.2940534605910812
+548.3000000000565 0.2920895912417873
+548.4000000000565 0.29012546069287687
+548.5000000000565 0.2881610689474355
+548.6000000000565 0.2861964160085439
+548.7000000000565 0.2842315018796144
+548.8000000000566 0.2822663265637094
+548.9000000000566 0.28030089006421854
+549.0000000000566 0.27833519238403015
+549.1000000000566 0.27667460996980736
+549.2000000000567 0.27501378379465535
+549.3000000000567 0.27335271385593335
+549.4000000000567 0.2716914001509962
+549.5000000000567 0.270029842677868
+549.6000000000568 0.2684286211264767
+549.7000000000568 0.26682640544278163
+549.8000000000568 0.2652231954589475
+549.9000000000568 0.2636189910074439
+550.0000000000568 0.2620137919200233
+550.1000000000569 0.26025796401928114
+550.2000000000569 0.25850181164629626
+550.3000000000569 0.25674533478634304
+550.4000000000569 0.2549885334249927
+550.500000000057 0.25323140754720475
+550.600000000057 0.251473957138835
+550.700000000057 0.24971618218512742
+550.800000000057 0.24795808267132188
+550.900000000057 0.24619965858265327
+551.0000000000571 0.24444090990479578
+551.1000000000571 0.2429515434438164
+551.2000000000571 0.24146190789766894
+551.3000000000571 0.23997200325243317
+551.4000000000572 0.23848182949417773
+551.5000000000572 0.2369913866083986
+551.6000000000572 0.23550067458115123
+551.7000000000572 0.23400969339847932
+551.8000000000573 0.23251844304613994
+551.9000000000573 0.2310269235101585
+552.0000000000573 0.22953513477594029
+552.1000000000573 0.22792806310294514
+552.2000000000573 0.22632091469821344
+552.3000000000574 0.22471368958164634
+552.4000000000574 0.22310638777313127
+552.5000000000574 0.22149900929201766
+552.6000000000574 0.21989155415817518
+552.7000000000575 0.21828402239120176
+552.8000000000575 0.21667641401094476
+552.9000000000575 0.21506872903672816
+553.0000000000575 0.21346096748879967
+553.1000000000575 0.21170103286229777
+553.2000000000576 0.20994068980133582
+553.3000000000576 0.20817993827009532
+553.4000000000576 0.20641877823299676
+553.5000000000576 0.20465720965444723
+553.6000000000577 0.20289523249836022
+553.7000000000577 0.2011328467291283
+553.8000000000577 0.19937005231113036
+553.9000000000577 0.1976068492082643
+554.0000000000578 0.19584323738465162
+554.1000000000578 0.19405913795499732
+554.2000000000578 0.19227471783006422
+554.3000000000578 0.19048997699782877
+554.4000000000578 0.18870491544603074
+554.5000000000579 0.18691953316287158
+554.6000000000579 0.1851755739530273
+554.7000000000579 0.18343048856478011
+554.8000000000579 0.18168427676923601
+554.900000000058 0.17993693833704552
+555.000000000058 0.1781884730384221
+555.100000000058 0.17607276859093157
+555.200000000058 0.17395675927704415
+555.300000000058 0.17184044509555566
+555.4000000000581 0.16972382604503536
+555.5000000000581 0.16760690212344342
+555.6000000000581 0.16548967332953574
+555.7000000000581 0.16337213966184963
+555.8000000000582 0.1612543011183355
+555.9000000000582 0.15913615769789755
+556.0000000000582 0.15701770939841012
+556.1000000000582 0.15478443784460502
+556.2000000000583 0.15255185199121327
+556.3000000000583 0.15031995204474466
+556.4000000000583 0.14808873821151441
+556.5000000000583 0.14585821069801982
+556.6000000000583 0.14366076221568969
+556.7000000000584 0.1414630093707763
+556.8000000000584 0.13926495216362145
+556.9000000000584 0.13706659059439885
+557.0000000000584 0.13486792466370814
+557.1000000000585 0.13257189656841312
+557.2000000000585 0.13027543433276553
+557.3000000000585 0.12797853793487213
+557.4000000000585 0.12568120735298224
+557.5000000000585 0.12338344256518173
+557.6000000000586 0.12108524354955034
+557.7000000000586 0.1187866102841612
+557.8000000000586 0.11648754274735627
+557.9000000000586 0.11418804091690986
+558.0000000000587 0.1118881047711945
+558.1000000000587 0.10968046424386033
+558.2000000000587 0.10747249618974135
+558.3000000000587 0.1052642006099521
+558.4000000000588 0.10305557750483926
+558.5000000000588 0.10084662687549048
+558.6000000000588 0.0986373487226065
+558.7000000000588 0.09642774304676892
+558.8000000000588 0.09421780984878651
+558.9000000000589 0.09200754912934359
+559.0000000000589 0.08979696088927057
+559.1000000000589 0.08766386272401186
+559.2000000000589 0.08553049837526422
+559.300000000059 0.08339686784774566
+559.400000000059 0.08126297114636039
+559.500000000059 0.07912880827560145
+559.600000000059 0.07697701861369023
+559.700000000059 0.07482592545048238
+559.8000000000591 0.07267552897062668
+559.9000000000591 0.07052582935893573
+560.0000000000591 0.06837682680009682
+560.1000000000591 0.06632998129041416
+560.2000000000592 0.06428246847848747
+560.3000000000592 0.06223428825262442
+560.4000000000592 0.060185440500955416
+560.5000000000592 0.05813592511152641
+560.6000000000593 0.05608574197257673
+560.7000000000593 0.054034890972118825
+560.8000000000593 0.051983371998282506
+560.9000000000593 0.049931184939113006
+561.0000000000593 0.04787832968289979
+561.1000000000594 0.046262392203579555
+561.2000000000594 0.04464635972790366
+561.3000000000594 0.043030232279066834
+561.4000000000594 0.04141400988046881
+561.5000000000595 0.03979769255534111
+561.6000000000595 0.038172661527924805
+561.7000000000595 0.03654826542057818
+561.8000000000595 0.03492450432094744
+561.9000000000595 0.03330137831638942
+562.0000000000596 0.03167888749467363
+562.1000000000596 0.03044604525066134
+562.2000000000596 0.029212985462598165
+562.3000000000596 0.027979708123160456
+562.4000000000597 0.026746213224845522
+562.5000000000597 0.02551250076028016
+562.6000000000597 0.024278570722018784
+562.7000000000597 0.023044423102612743
+562.8000000000598 0.021810057894610203
+562.9000000000598 0.02057547509055625
+563.0000000000598 0.019340674683257786
+563.1000000000598 0.018510528014651067
+563.2000000000598 0.01768020755112885
+563.3000000000599 0.01684971328044514
+563.4000000000599 0.016019045190393388
+563.5000000000599 0.015188203268742704
+563.6000000000599 0.014357187503259775
+563.70000000006 0.013525997881724873
+563.80000000006 0.012694634391896874
+563.90000000006 0.011863097021532218
+564.00000000006 0.011031385758571589
+564.10000000006 0.010510649358762768
+564.2000000000601 0.00999008364000571
+564.3000000000601 0.009469688647934236
+564.4000000000601 0.008949464428201308
+564.5000000000601 0.00842941102643398
+564.6000000000602 0.00791131837929448
+564.7000000000602 0.0073931621815741325
+564.8000000000602 0.0068749424357514915
+564.9000000000602 0.006356659144313627
+565.0000000000603 0.005838312309893731
+565.1000000000603 0.00555333268004552
+565.2000000000603 0.005268275880519438
+565.3000000000603 0.0049831419010298965
+565.4000000000603 0.0046979307312966
+565.5000000000604 0.004412642361042862
+565.6000000000604 0.0041272767799890335
+565.7000000000604 0.0038418339778433677
+565.8000000000604 0.003556313944322289
+565.9000000000605 0.003270716669135362
+566.0000000000605 0.0029850421420782305
+566.1000000000605 0.0028443191797184694
+566.2000000000605 0.0027035742531862418
+566.3000000000605 0.0025628073626930816
+566.4000000000606 0.002422018508460151
+566.5000000000606 0.002281207690704907
+566.6000000000606 0.002140374909649555
+566.7000000000606 0.001999520165505156
+566.8000000000607 0.0018586434584903888
+566.9000000000607 0.0017177447888229347
+567.0000000000607 0.0015768241567761102
+567.1000000000607 0.0015353274024672483
+567.2000000000608 0.0014938217178274017
+567.3000000000608 0.0014523071021988832
+567.4000000000608 0.0014107835549255583
+567.5000000000608 0.0013692510753493552
+567.6000000000608 0.0013277096628105092
+567.7000000000609 0.001286159316653906
+567.8000000000609 0.0012446000362194931
+567.9000000000609 0.0012030318208501496
+568.0000000000609 0.0011614546698799119
+568.100000000061 0.0011081523235005764
+568.200000000061 0.0010548662961441227
+568.300000000061 0.0010015965930552611
+568.400000000061 0.0009483432194798183
+568.500000000061 0.0008951061806633556
+568.6000000000611 0.0008418854818511781
+568.7000000000611 0.0007886811282873883
+568.8000000000611 0.0007354931252178249
+568.9000000000611 0.0006823214778861933
+569.0000000000612 0.0006291661915527074
+569.1000000000612 0.0006018035836952963
+569.2000000000612 0.0005744340483731164
+569.3000000000612 0.0005470575848641288
+569.4000000000613 0.0005196741924461899
+569.5000000000613 0.0004922838703970505
+569.6000000000613 0.0004648866179954612
+569.7000000000613 0.0004374824345177286
+569.8000000000613 0.00041007131924177643
+569.9000000000614 0.0003826532714452919
+570.0000000000614 0.0003552282903999787
+570.1000000000614 0.00031980032481080653
+570.2000000000614 0.0002843512873370827
+570.3000000000615 0.0002488811746474374
+570.4000000000615 0.00021338998341144575
+570.5000000000615 0.0001778777102981265
+570.6000000000615 0.00014231211820078912
+570.7000000000616 0.00010674155107089038
+570.8000000000616 7.116600895778737e-05
+570.9000000000616 3.5585491910530015e-05
+571.0000000000616 1.3427420580867868e-14
+571.1000000000616 2.1793749883330517e-05
+571.2000000000617 4.3592401771080454e-05
+571.3000000000617 6.539595603690334e-05
+571.4000000000617 8.720441304129115e-05
+571.5000000000617 0.00010901777314487229
+571.6000000000618 0.00013083603670797214
+571.7000000000618 0.0001526592040914926
+571.8000000000618 0.00017448727565598076
+571.9000000000618 0.0001963202517624049
+572.0000000000618 0.00021815813276429422
+572.1000000000619 0.00022854422726214008
+572.2000000000619 0.00023893226982527686
+572.3000000000619 0.0002493222605209505
+572.4000000000619 0.0002597141994158657
+572.500000000062 0.0002701080865773427
+572.600000000062 0.0002805039220724432
+572.700000000062 0.0002909017059682536
+572.800000000062 0.0003013014383322425
+572.900000000062 0.00031170311923121315
+573.0000000000621 0.0003221067487096699
+573.1000000000621 0.0002953871578296669
+573.2000000000621 0.0002686487605643455
+573.3000000000621 0.0002418915516762846
+573.4000000000622 0.0002151155259257203
+573.5000000000622 0.00018832067807332304
+573.6000000000622 0.00016147047109798239
+573.7000000000622 0.00013461358397653017
+573.8000000000623 0.00010775001600147501
+573.9000000000623 8.087976646541545e-05
+574.0000000000623 5.400283467906214e-05
+574.1000000000623 5.71774418196192e-05
+574.2000000000623 6.035313966137831e-05
+574.3000000000624 6.352992840186466e-05
+574.4000000000624 6.670780823877557e-05
+574.5000000000624 6.988677936968695e-05
+574.6000000000624 7.306684199244851e-05
+574.7000000000625 7.624799630460791e-05
+574.8000000000625 7.94302425040883e-05
+574.9000000000625 8.261358078867639e-05
+575.0000000000625 8.579801135956545e-05
+575.1000000000626 9.45497849456331e-05
+575.2000000000626 0.00010330723473447923
+575.3000000000626 0.00011207036197743375
+575.4000000000626 0.00012083916792545382
+575.5000000000626 0.00012961365382966624
+575.6000000000627 0.00013836255256821406
+575.7000000000627 0.0001471131786806142
+575.8000000000627 0.0001558655322474088
+575.9000000000627 0.00016461961334881376
+576.0000000000628 0.00017337542205914946
+576.1000000000628 0.00017211509494842721
+576.2000000000628 0.0001708538785006385
+576.3000000000628 0.00016959177248602734
+576.4000000000628 0.00016832877667420385
+576.5000000000629 0.00016706489083552595
+576.6000000000629 0.00016576269652355776
+576.7000000000629 0.00016446019975881743
+576.8000000000629 0.000163157400516128
+576.900000000063 0.00016185429877011055
+577.000000000063 0.0001605508944954699
+577.100000000063 0.0001596871471905832
+577.200000000063 0.0001588227792205163
+577.300000000063 0.00015795779042142088
+577.4000000000631 0.00015709218062961584
+577.5000000000631 0.0001562259496811917
+577.6000000000631 0.00015532407507315234
+577.7000000000631 0.00015442198578556702
+577.8000000000632 0.00015351968179980457
+577.9000000000632 0.00015261716309741122
+578.0000000000632 0.00015171442966994278
+578.1000000000632 0.00016694627915284286
+578.2000000000633 0.00018218621791692103
+578.3000000000633 0.00019743424652951018
+578.4000000000633 0.00021269036555814232
+578.5000000000633 0.00022795457557042603
+578.6000000000633 0.00024317210864016113
+578.7000000000634 0.00025839087852586696
+578.8000000000634 0.0002736108849584487
+578.9000000000634 0.00028883212766912564
+579.0000000000634 0.0003040546063698679
+579.1000000000635 0.00028772920156523696
+579.2000000000635 0.00027139928537177506
+579.3000000000635 0.0002550648600848041
+579.4000000000635 0.00023872592799966454
+579.5000000000636 0.0002223824914108991
+579.6000000000636 0.0002059882110599924
+579.7000000000636 0.00018959680600710082
+579.8000000000636 0.0001732082766068288
+579.9000000000636 0.00015682262321351978
+580.0000000000637 0.00014043984619465752
+580.1000000000637 0.00014484734732599715
+580.2000000000637 0.0001492556971556209
+580.3000000000637 0.00015366489571958308
+580.4000000000638 0.0001580749430539491
+580.5000000000638 0.00016248583919481862
+580.6000000000638 0.00016693513144128906
+580.7000000000638 0.00017138725798571293
+580.8000000000638 0.00017584221943685486
+580.9000000000639 0.0001803000164041279
+581.0000000000639 0.00018476064949971553
+581.1000000000639 0.00019412300796339103
+581.2000000000639 0.00020348804992481262
+581.300000000064 0.000212855775735215
+581.400000000064 0.00022222618574609422
+581.500000000064 0.00023159928030956902
+581.600000000064 0.00024102921147586823
+581.700000000064 0.0002504660429378478
+581.8000000000641 0.00025990977685816813
+581.9000000000641 0.00026936041539928296
+582.0000000000641 0.000278817960708266
+582.1000000000641 0.0002632515740098777
+582.2000000000642 0.00024768223838443745
+582.3000000000642 0.0002321099537822597
+582.4000000000642 0.00021653472015479167
+582.5000000000642 0.0002009565374528592
+582.6000000000643 0.00018541701626809945
+582.7000000000643 0.0001698675496899635
+582.8000000000643 0.00015430813568286392
+582.9000000000643 0.00013873877221189806
+583.0000000000643 0.00012315945724400762
+583.1000000000644 0.00011173942621280829
+583.2000000000644 0.00010031680865389898
+583.3000000000644 8.889160435965692e-05
+583.4000000000644 7.746381312237019e-05
+583.5000000000645 6.603343473400454e-05
+583.6000000000645 5.4600392514722526e-05
+583.7000000000645 4.3164755897005486e-05
+583.8000000000645 3.172657035508352e-05
+583.9000000000646 2.0285859364676327e-05
+584.0000000000646 8.842626375641086e-06
+584.1000000000646 1.3422770424785574e-05
+584.2000000000646 1.800341422207853e-05
+584.3000000000646 2.2584579219724432e-05
+584.4000000000647 2.7166291309834047e-05
+584.5000000000647 3.1748580035873067e-05
+584.6000000000647 3.633962537102803e-05
+584.7000000000647 4.093337108813405e-05
+584.8000000000648 4.5529853148725186e-05
+584.9000000000648 5.0129107840673275e-05
+585.0000000000648 5.473117101121203e-05
+585.1000000000648 6.0481620653421004e-05
+585.2000000000648 6.623294954069656e-05
+585.3000000000649 7.198519519675042e-05
+585.4000000000649 7.77383911643563e-05
+585.5000000000649 8.349256604160249e-05
+585.6000000000649 8.924774252071648e-05
+585.700000000065 9.500393641889827e-05
+585.800000000065 0.00010076115571581182
+585.900000000065 0.00010651939958833055
+586.000000000065 0.00011227865743455287
+586.100000000065 0.00010105626843585639
+586.2000000000651 8.983269076238378e-05
+586.3000000000651 7.860788271377092e-05
+586.4000000000651 6.738181807674972e-05
+586.5000000000651 5.6154488008386005e-05
+586.6000000000652 4.4925902918857555e-05
+586.7000000000652 3.369615955750704e-05
+586.8000000000652 2.246526008742109e-05
+586.9000000000652 1.1233206386956376e-05
+587.0000000000653 0.0
+587.1000000000653 0.0
+587.2000000000653 0.0
+587.3000000000653 0.0
+587.4000000000653 0.0
+587.5000000000654 0.0
+587.6000000000654 0.0
+587.7000000000654 0.0
+587.8000000000654 0.0
+587.9000000000655 0.0
+588.0000000000655 6.145597586492313e-15
+588.1000000000655 9.379947500168727e-06
+588.2000000000655 1.8749909428166233e-05
+588.3000000000656 2.8109881890788936e-05
+588.4000000000656 3.74598612703734e-05
+588.5000000000656 4.6799844182613025e-05
+588.6000000000656 5.6142649301267746e-05
+588.7000000000656 6.547984760928151e-05
+588.8000000000657 7.48114186276126e-05
+588.9000000000657 8.413731293364208e-05
+589.0000000000657 9.345745536949292e-05
+589.1000000000657 8.4125908453933e-05
+589.2000000000658 7.479105121722547e-05
+589.3000000000658 6.5452903281796e-05
+589.4000000000658 5.611151008005173e-05
+589.5000000000658 4.676693969611574e-05
+589.6000000000658 3.741082183068369e-05
+589.7000000000659 2.8055944567152384e-05
+589.8000000000659 1.8702427905168552e-05
+589.9000000000659 9.350401193279915e-06
+590.0000000000659 9.03057361586709e-15
+590.100000000066 1.3703391442844677e-05
+590.200000000066 2.7422481582960484e-05
+590.300000000066 4.1157078440445456e-05
+590.400000000066 5.4906998764267924e-05
+590.500000000066 6.867207266697549e-05
+590.6000000000661 8.245214826261647e-05
+590.7000000000661 9.624710179921541e-05
+590.8000000000661 0.00011005683557754908
+590.9000000000661 0.00012388128496793326
+591.0000000000662 0.000137720423163304
+591.1000000000662 0.00012393762497423576
+591.2000000000662 0.00011015713246550037
+591.3000000000662 9.637905363660485e-05
+591.4000000000663 8.260345847668097e-05
+591.5000000000663 6.883037430148728e-05
+591.6000000000663 5.504736346205301e-05
+591.7000000000663 4.127281795918156e-05
+591.8000000000663 2.7506740261768924e-05
+591.9000000000664 1.3749133191321136e-05
+592.0000000000664 0.0
+592.1000000000664 0.0
+592.2000000000664 0.0
+592.3000000000665 0.0
+592.4000000000665 0.0
+592.5000000000665 0.0
+592.6000000000665 0.0
+592.7000000000666 0.0
+592.8000000000666 0.0
+592.9000000000666 0.0
+593.0000000000666 5.10551568347516e-15
+593.1000000000666 7.665920337583675e-06
+593.2000000000667 1.5336517249635166e-05
+593.3000000000667 2.3011790597336377e-05
+593.4000000000667 3.0691740002012685e-05
+593.5000000000667 3.837636488862671e-05
+593.6000000000668 4.603445215089184e-05
+593.7000000000668 5.3686706867109294e-05
+593.8000000000668 6.133314150329559e-05
+593.9000000000668 6.897379225797887e-05
+594.0000000000668 7.660871640882856e-05
+594.1000000000669 7.53540386794178e-05
+594.2000000000669 7.410136477539336e-05
+594.3000000000669 7.28507304494066e-05
+594.4000000000669 7.160216367577447e-05
+594.500000000067 7.035568508513779e-05
+594.600000000067 6.92053189205406e-05
+594.700000000067 6.805385163358523e-05
+594.800000000067 6.690128327868033e-05
+594.900000000067 6.574760839125651e-05
+595.0000000000671 6.459281637516973e-05
+595.1000000000671 6.940531943443648e-05
+595.2000000000671 7.422568796982479e-05
+595.3000000000671 7.905398694835336e-05
+595.4000000000672 8.389027400124694e-05
+595.5000000000672 8.87345977958877e-05
+595.6000000000672 9.354486856171403e-05
+595.7000000000672 9.835891829859592e-05
+595.8000000000673 0.00010317675417229879
+595.9000000000673 0.00010799836736942843
+596.0000000000673 0.00011282373143986026
+596.1000000000673 0.00011376639881523108
+596.2000000000673 0.00011470955676356395
+596.3000000000674 0.00011565311583487405
+596.4000000000674 0.0001165969756709382
+596.5000000000674 0.00011754102468272031
+596.6000000000674 0.00011845848389926614
+596.7000000000675 0.00011937591132161637
+596.8000000000675 0.00012029330742365523
+596.9000000000675 0.00012121067282641259
+597.0000000000675 0.00012212800830158714
+597.1000000000676 0.00012116671547019252
+597.2000000000676 0.00012020508477416867
+597.3000000000676 0.00011924311757718307
+597.4000000000676 0.00011828081531758276
+597.5000000000676 0.00011731817950364055
+597.6000000000677 0.00011638141304709694
+597.7000000000677 0.00011544387278171459
+597.8000000000677 0.00011450556006098326
+597.9000000000677 0.00011356647607207689
+598.0000000000678 0.00011262662184015961
+598.1000000000678 0.00011195349693528061
+598.2000000000678 0.0001112802180957463
+598.3000000000678 0.0001106067862001916
+598.4000000000678 0.00010993320199249001
+598.5000000000679 0.00010925946608490535
+598.6000000000679 0.00010858588300456095
+598.7000000000679 0.00010791233952547236
+598.8000000000679 0.00010723873239789452
+598.900000000068 0.00010656496811622775
+599.000000000068 0.00010589096268849189
+599.100000000068 0.00010061508320698583
+599.200000000068 9.533542188014216e-05
+599.300000000068 9.005195808661258e-05
+599.4000000000681 8.476468943902036e-05
+599.5000000000681 7.947363000713032e-05
+599.6000000000681 7.416213983474064e-05
+599.7000000000681 6.884931566334821e-05
+599.8000000000682 6.353521238683278e-05
+599.9000000000682 5.821989380313826e-05
+600.0000000000682 5.2903430839753276e-05
+600.1000000000682 5.291882396896299e-05
+600.2000000000683 5.2933960170732246e-05
+600.3000000000683 5.294884453731627e-05
+600.4000000000683 5.2963485714339294e-05
+600.5000000000683 5.297789590551012e-05
+600.6000000000683 5.2980198575752986e-05
+600.7000000000684 5.2982307427423574e-05
+600.8000000000684 5.298424637009817e-05
+600.9000000000684 5.298604291947169e-05
+601.0000000000684 5.298772819743219e-05
+601.1000000000685 5.299108005146028e-05
+601.2000000000685 5.299439384993069e-05
+601.3000000000685 5.2997711536356494e-05
+601.4000000000685 5.300107866855148e-05
+601.5000000000686 5.3004544420155546e-05
+601.6000000000686 5.30081615835745e-05
+601.7000000000686 5.3011781459683196e-05
+601.8000000000686 5.3015403699542186e-05
+601.9000000000686 5.30190279002217e-05
+602.0000000000687 5.302265360522718e-05
+602.1000000000687 5.3041974232910235e-05
+602.2000000000687 5.306129929395276e-05
+602.3000000000687 5.308062817028326e-05
+602.4000000000688 5.3099960189002284e-05
+602.5000000000688 5.3119294622211106e-05
+602.6000000000688 5.3126721053724316e-05
+602.7000000000688 5.31341493800247e-05
+602.8000000000688 5.314157887404739e-05
+602.9000000000689 5.314900886217697e-05
+603.0000000000689 5.315643872428762e-05
+603.1000000000689 5.316424882798942e-05
+603.2000000000689 5.3172057813836053e-05
+603.300000000069 5.317986522243023e-05
+603.400000000069 5.318767064795012e-05
+603.500000000069 5.3195473738199644e-05
+603.600000000069 5.32151286599548e-05
+603.700000000069 5.323473622104171e-05
+603.8000000000691 5.325432097223198e-05
+603.9000000000691 5.327390571809799e-05
+604.0000000000691 5.329351151371448e-05
+604.1000000000691 5.329958466997178e-05
+604.2000000000692 5.330571190575723e-05
+604.3000000000692 5.331190895414381e-05
+604.4000000000692 5.331818977139943e-05
+604.5000000000692 5.33245665357408e-05
+604.6000000000693 5.334299389054874e-05
+604.7000000000693 5.336153916458298e-05
+604.8000000000693 5.3380209277427284e-05
+604.9000000000693 5.339900937098775e-05
+605.0000000000693 5.3417942806557936e-05
+605.1000000000694 5.3423861687115134e-05
+605.2000000000694 5.34299117018007e-05
+605.3000000000694 5.343609075502463e-05
+605.4000000000694 5.3442394961335367e-05
+605.5000000000695 5.344881864454954e-05
+605.6000000000695 5.3467313028337126e-05
+605.7000000000695 5.34859100861922e-05
+605.8000000000695 5.3504597924769445e-05
+605.9000000000696 5.35233627882038e-05
+606.0000000000696 5.354218905423346e-05
+606.1000000000696 5.355256696821443e-05
+606.2000000000696 5.356296744537043e-05
+606.3000000000696 5.3573369244695336e-05
+606.4000000000697 5.358374926034447e-05
+606.5000000000697 5.3594082519699755e-05
+606.6000000000697 5.361632080575464e-05
+606.7000000000697 5.3638565129186805e-05
+606.8000000000698 5.366081549098803e-05
+606.9000000000698 5.368307189233796e-05
+607.0000000000698 5.3705334334469216e-05
+607.1000000000698 5.3713388187579566e-05
+607.2000000000698 5.372144278061376e-05
+607.3000000000699 5.372949811364462e-05
+607.4000000000699 5.373755418668243e-05
+607.5000000000699 5.374561099993376e-05
+607.6000000000699 5.376566714001501e-05
+607.70000000007 5.378572761781546e-05
+607.80000000007 5.380579243386131e-05
+607.90000000007 5.382586158880422e-05
+608.00000000007 5.384593508309862e-05
+608.10000000007 5.3852794377707737e-05
+608.2000000000701 5.385965411891239e-05
+608.3000000000701 5.386651430688633e-05
+608.4000000000701 5.387337494155251e-05
+608.5000000000701 5.3880236023093016e-05
+608.6000000000702 5.389911251187115e-05
+608.7000000000702 5.3917992507481365e-05
+608.8000000000702 5.393687601035354e-05
+608.9000000000702 5.39557630207294e-05
+609.0000000000703 5.397465353896823e-05
+609.1000000000703 5.39823407374245e-05
+609.2000000000703 5.399002852765971e-05
+609.3000000000703 5.399771690954627e-05
+609.4000000000703 5.400540588327064e-05
+609.5000000000704 5.401309544883927e-05
+609.6000000000704 5.403281696168426e-05
+609.7000000000704 5.405254249222309e-05
+609.8000000000704 5.4072272040868856e-05
+609.9000000000705 5.409200560809743e-05
+610.0000000000705 5.411174319438479e-05
+610.1000000000705 5.4131466299921894e-05
+610.2000000000705 5.415119348428983e-05
+610.3000000000706 5.4170924747957224e-05
+610.4000000000706 5.4190660091518346e-05
+610.5000000000706 5.421039951537052e-05
+610.6000000000706 5.4218094554672585e-05
+610.7000000000706 5.422579025503148e-05
+610.8000000000707 5.423348661658196e-05
+610.9000000000707 5.424118363926994e-05
+611.0000000000707 5.4248881323238645e-05
+611.1000000000707 5.426850088176016e-05
+611.2000000000708 5.42881244081085e-05
+611.3000000000708 5.43077519028941e-05
+611.4000000000708 5.432738336653834e-05
+611.5000000000708 5.434701879945416e-05
+611.6000000000708 5.435459280979369e-05
+611.7000000000709 5.436216742752221e-05
+611.8000000000709 5.4369742652826904e-05
+611.9000000000709 5.437731848576907e-05
+612.0000000000709 5.4384894926288945e-05
+612.100000000071 5.439948940370646e-05
+612.200000000071 5.44140846908202e-05
+612.300000000071 5.442868078742441e-05
+612.400000000071 5.4443277693439485e-05
+612.500000000071 5.445787540865123e-05
+612.6000000000711 5.446039845653416e-05
+612.7000000000711 5.446292119459283e-05
+612.8000000000711 5.446544362280927e-05
+612.9000000000711 5.4467965741228603e-05
+613.0000000000712 5.447048754997036e-05
+613.1000000000712 5.448898981690955e-05
+613.2000000000712 5.4507495194371794e-05
+613.3000000000712 5.452600368252012e-05
+613.4000000000713 5.454451528164379e-05
+613.5000000000713 5.4563029991779614e-05
+613.6000000000713 5.458154781327993e-05
+613.7000000000713 5.460006874630781e-05
+613.8000000000713 5.4618592791026225e-05
+613.9000000000714 5.463711994766136e-05
+614.0000000000714 5.465565021643064e-05
+614.1000000000714 5.466219605399697e-05
+614.2000000000714 5.4668742258990104e-05
+614.3000000000715 5.467528883132824e-05
+614.4000000000715 5.468183577111896e-05
+614.5000000000715 5.468838307841536e-05
+614.6000000000715 5.470703140164216e-05
+614.7000000000716 5.472568298984073e-05
+614.8000000000716 5.4744337843190804e-05
+614.9000000000716 5.476299596206172e-05
+615.0000000000716 5.478165734668689e-05
+615.1000000000716 5.478700830198404e-05
+615.2000000000717 5.4792359368532904e-05
+615.3000000000717 5.4797710546300946e-05
+615.4000000000717 5.480306183544513e-05
+615.5000000000717 5.480841323594173e-05
+615.6000000000718 5.4825878286967816e-05
+615.7000000000718 5.48433458147479e-05
+615.8000000000718 5.486081581934063e-05
+615.9000000000718 5.487828830086768e-05
+616.0000000000719 5.489576325950586e-05
+616.1000000000719 5.490158699433798e-05
+616.2000000000719 5.490741086383173e-05
+616.3000000000719 5.491323486808206e-05
+616.4000000000719 5.491905900705736e-05
+616.500000000072 5.492488328073465e-05
+616.600000000072 5.494283367330509e-05
+616.700000000072 5.496078677213116e-05
+616.800000000072 5.497874257747734e-05
+616.900000000072 5.4996701089418216e-05
+617.0000000000721 5.501466230801938e-05
+617.1000000000721 5.502017063033537e-05
+617.2000000000721 5.50256791041068e-05
+617.3000000000721 5.503118772943197e-05
+617.4000000000722 5.5036696506219256e-05
+617.5000000000722 5.5042205434639134e-05
+617.6000000000722 5.505985293011568e-05
+617.7000000000722 5.507750300691976e-05
+617.8000000000723 5.5095155665076654e-05
+617.9000000000723 5.51128109047382e-05
+618.0000000000723 5.513046872611053e-05
+618.1000000000723 5.513547715933567e-05
+618.2000000000724 5.514048556129594e-05
+618.3000000000724 5.514549393195647e-05
+618.4000000000724 5.5150502271345784e-05
+618.5000000000724 5.515551057942899e-05
+618.6000000000724 5.516051885636152e-05
+618.7000000000725 5.516552710204504e-05
+618.8000000000725 5.517053531657168e-05
+618.9000000000725 5.517554349996994e-05
+619.0000000000725 5.518055165221436e-05
+619.1000000000726 5.519833703025064e-05
+619.2000000000726 5.52161250617994e-05
+619.3000000000726 5.523391574702711e-05
+619.4000000000726 5.5251709086036704e-05
+619.5000000000726 5.526950507898579e-05
+619.6000000000727 5.527514197860099e-05
+619.7000000000727 5.5280779051907206e-05
+619.8000000000727 5.528641629887702e-05
+619.9000000000727 5.5292053719609875e-05
+620.0000000000728 5.529769131408541e-05
+620.1000000000728 5.531306766006657e-05
+620.2000000000728 5.532844519555473e-05
+620.3000000000728 5.53438239203945e-05
+620.4000000000729 5.535920383443045e-05
+620.5000000000729 5.5374584937625384e-05
+620.6000000000729 5.537779628561567e-05
+620.7000000000729 5.538100741099357e-05
+620.8000000000729 5.538421831386192e-05
+620.900000000073 5.5387428994196696e-05
+621.000000000073 5.539063945204067e-05
+621.100000000073 5.539848694289138e-05
+621.200000000073 5.540633502238257e-05
+621.300000000073 5.5414183690633845e-05
+621.4000000000731 5.5422032947637774e-05
+621.5000000000731 5.542988279358652e-05
+621.6000000000731 5.544991734553939e-05
+621.7000000000731 5.5469955937479125e-05
+621.8000000000732 5.5489998569801774e-05
+621.9000000000732 5.5510045242966975e-05
+622.0000000000732 5.553009595729807e-05
+622.1000000000732 5.553760694782773e-05
+622.2000000000733 5.554511853782284e-05
+622.3000000000733 5.5552630727289e-05
+622.4000000000733 5.556014351629548e-05
+622.5000000000733 5.556765690504797e-05
+622.6000000000734 5.558737180908227e-05
+622.7000000000734 5.560709061237208e-05
+622.8000000000734 5.5626813315396536e-05
+622.9000000000734 5.564653991857109e-05
+623.0000000000734 5.5666270422363876e-05
+623.1000000000735 5.5670736242427966e-05
+623.2000000000735 5.5675201932188125e-05
+623.3000000000735 5.567966749167537e-05
+623.4000000000735 5.568413292085699e-05
+623.5000000000736 5.568859821976391e-05
+623.6000000000736 5.569298538596911e-05
+623.7000000000736 5.569732226115456e-05
+623.8000000000736 5.570163477429177e-05
+623.9000000000736 5.570594694102265e-05
+624.0000000000737 5.5710280862432656e-05
+624.1000000000737 5.57286424907535e-05
+624.2000000000737 5.574706747061509e-05
+624.3000000000737 5.576557221393947e-05
+624.4000000000738 5.5784171230274954e-05
+624.5000000000738 5.580287712362194e-05
+624.6000000000738 5.5809477372370956e-05
+624.7000000000738 5.581620251045337e-05
+624.8000000000739 5.5823058557599956e-05
+624.9000000000739 5.583004966758932e-05
+625.0000000000739 5.583717812732614e-05
+625.1000000000739 5.5843646549923294e-05
+625.2000000000739 5.585025110091932e-05
+625.300000000074 5.585698845404391e-05
+625.400000000074 5.586385341168166e-05
+625.500000000074 5.587083890380927e-05
+625.600000000074 5.5890176499921464e-05
+625.700000000074 5.590961802290268e-05
+625.8000000000741 5.592915083563504e-05
+625.9000000000741 5.594876041106519e-05
+626.0000000000741 5.596843032875662e-05
+626.1000000000741 5.597588879334559e-05
+626.2000000000742 5.598336570453666e-05
+626.3000000000742 5.5990838944522364e-05
+626.4000000000742 5.5998284510184124e-05
+626.5000000000742 5.60056765119933e-05
+626.6000000000743 5.600073050022051e-05
+626.7000000000743 5.5995778676987834e-05
+626.8000000000743 5.599082141233378e-05
+626.9000000000743 5.598585913284882e-05
+627.0000000000744 5.5980892321766074e-05
+627.1000000000744 5.5877581263230006e-05
+627.2000000000744 5.577424215803629e-05
+627.3000000000744 5.5670875656421356e-05
+627.4000000000744 5.556748246017243e-05
+627.5000000000745 5.546406332192353e-05
+627.6000000000745 5.529925496536843e-05
+627.7000000000745 5.513440223163409e-05
+627.8000000000745 5.4969505882311724e-05
+627.9000000000746 5.480456661411364e-05
+628.0000000000746 5.463958506045842e-05
+628.1000000000746 5.471104942142786e-05
+628.2000000000746 5.4782539469456226e-05
+628.3000000000746 5.4854055688989655e-05
+628.4000000000747 5.492559851117624e-05
+628.5000000000747 5.4997168313663864e-05
+628.6000000000747 5.510579612284909e-05
+628.7000000000747 5.5214565091011314e-05
+628.8000000000748 5.532342451958584e-05
+628.9000000000748 5.543232707580813e-05
+629.0000000000748 5.5541228828832804e-05
+629.1000000000748 5.5545326709763306e-05
+629.2000000000749 5.554930817967604e-05
+629.3000000000749 5.5553140569634764e-05
+629.4000000000749 5.555679497880831e-05
+629.5000000000749 5.5560246275942914e-05
+629.6000000000749 5.557577723060647e-05
+629.700000000075 5.559106597748244e-05
+629.800000000075 5.560609929372017e-05
+629.900000000075 5.562086766743759e-05
+630.000000000075 5.563536530312291e-05
+630.100000000075 5.568816591181277e-05
+630.2000000000751 5.57407006398523e-05
+630.3000000000751 5.579297431705584e-05
+630.4000000000751 5.584499553442553e-05
+630.5000000000751 5.5896776661444814e-05
+630.6000000000752 5.593602128877548e-05
+630.7000000000752 5.5975064226589466e-05
+630.8000000000752 5.601393034768523e-05
+630.9000000000752 5.605264840620692e-05
+631.0000000000753 5.609125104992849e-05
+631.1000000000753 5.611997511950808e-05
+631.2000000000753 5.614866249486637e-05
+631.3000000000753 5.6177357581721965e-05
+631.4000000000754 5.620610869855696e-05
+631.5000000000754 5.623496808631107e-05
+631.6000000000754 5.62639919206149e-05
+631.7000000000754 5.62930225142956e-05
+631.8000000000754 5.632205950046533e-05
+631.9000000000755 5.6351102454514283e-05
+632.0000000000755 5.638015089357641e-05
+632.1000000000755 5.640971677488549e-05
+632.2000000000755 5.6439287621670546e-05
+632.3000000000756 5.646886277626261e-05
+632.4000000000756 5.649844152230159e-05
+632.5000000000756 5.652802308463802e-05
+632.6000000000756 5.654527897931175e-05
+632.7000000000756 5.656253853196423e-05
+632.8000000000757 5.6579800969258436e-05
+632.9000000000757 5.659706557426224e-05
+633.0000000000757 5.661433168647407e-05
+633.1000000000757 5.663177757670764e-05
+633.2000000000758 5.664922383314665e-05
+633.3000000000758 5.666666996530393e-05
+633.4000000000758 5.668411553941219e-05
+633.5000000000758 5.670156017883639e-05
+633.6000000000759 5.671892413718042e-05
+633.7000000000759 5.6736235453747306e-05
+633.8000000000759 5.675352030246507e-05
+633.9000000000759 5.677080298963484e-05
+634.0000000000759 5.678810595151621e-05
+634.100000000076 5.679090847868623e-05
+634.200000000076 5.6793768134506796e-05
+634.300000000076 5.679670166949996e-05
+634.400000000076 5.679972393677173e-05
+634.500000000076 5.680284789175668e-05
+634.6000000000761 5.681843374050367e-05
+634.7000000000761 5.683414295077157e-05
+634.8000000000761 5.684998286549065e-05
+634.9000000000761 5.6865958932474054e-05
+635.0000000000762 5.6882074701702e-05
+635.1000000000762 5.688504958398247e-05
+635.2000000000762 5.688816369052356e-05
+635.3000000000762 5.68914147657134e-05
+635.4000000000763 5.689479864917477e-05
+635.5000000000763 5.689830927487315e-05
+635.6000000000763 5.691429522622318e-05
+635.7000000000763 5.693038845319171e-05
+635.8000000000764 5.6946576276425735e-05
+635.9000000000764 5.69628440374596e-05
+636.0000000000764 5.697917509569833e-05
+636.1000000000764 5.6985333438994335e-05
+636.2000000000764 5.699151438051004e-05
+636.3000000000765 5.6997695315739837e-05
+636.4000000000765 5.700385166373816e-05
+636.5000000000765 5.7009956866560896e-05
+636.6000000000765 5.7028350280056605e-05
+636.7000000000766 5.7046746464824146e-05
+636.8000000000766 5.7065145420946325e-05
+636.9000000000766 5.708354714857049e-05
+637.0000000000766 5.7101951647769276e-05
+637.1000000000766 5.7107164997553815e-05
+637.2000000000767 5.711237844385681e-05
+637.3000000000767 5.711759198671825e-05
+637.4000000000767 5.712280562624265e-05
+637.5000000000767 5.712801936235055e-05
+637.6000000000768 5.714561309392593e-05
+637.7000000000768 5.716320918178853e-05
+637.8000000000768 5.7180807625986424e-05
+637.9000000000768 5.719840842663197e-05
+638.0000000000769 5.721601158369955e-05
+638.1000000000769 5.7221769986495225e-05
+638.2000000000769 5.7227528575566996e-05
+638.3000000000769 5.723328735089049e-05
+638.400000000077 5.723904631257034e-05
+638.500000000077 5.724480546052714e-05
+638.600000000077 5.7262956692003445e-05
+638.700000000077 5.728111060317847e-05
+638.800000000077 5.7299267194222695e-05
+638.9000000000771 5.731742646517737e-05
+639.0000000000771 5.733558841633415e-05
+639.1000000000771 5.734345214793382e-05
+639.2000000000771 5.735131644224478e-05
+639.3000000000771 5.735918129919477e-05
+639.4000000000772 5.736704671884085e-05
+639.5000000000772 5.737491270130468e-05
+639.6000000000772 5.738277924657873e-05
+639.7000000000772 5.7390646354655424e-05
+639.8000000000773 5.739851402572119e-05
+639.9000000000773 5.740638225963916e-05
+640.0000000000773 5.741425105660642e-05
+640.1000000000773 5.743576399553227e-05
+640.2000000000774 5.745728183831715e-05
+640.3000000000774 5.747880458570792e-05
+640.4000000000774 5.750033223845142e-05
+640.5000000000774 5.752186479728506e-05
+640.6000000000774 5.753097656606323e-05
+640.7000000000775 5.754008930598363e-05
+640.8000000000775 5.754920301715559e-05
+640.9000000000775 5.755831769962368e-05
+641.0000000000775 5.756743335356664e-05
+641.1000000000776 5.758247719669203e-05
+641.2000000000776 5.759752188082795e-05
+641.3000000000776 5.761256740584784e-05
+641.4000000000776 5.762761377162507e-05
+641.5000000000776 5.764266097795858e-05
+641.6000000000777 5.764527207288411e-05
+641.7000000000777 5.7647882881462334e-05
+641.8000000000777 5.765049340387327e-05
+641.9000000000777 5.765310364003775e-05
+642.0000000000778 5.765571359000695e-05
+642.1000000000778 5.7659253192915674e-05
+642.2000000000778 5.766279252526166e-05
+642.3000000000778 5.7666331587088224e-05
+642.4000000000779 5.766987037837394e-05
+642.5000000000779 5.767340889923675e-05
+642.6000000000779 5.768939093547344e-05
+642.7000000000779 5.770537422793615e-05
+642.800000000078 5.7721358776436435e-05
+642.900000000078 5.7737344580915484e-05
+643.000000000078 5.7753331641109974e-05
+643.100000000078 5.775658960491718e-05
+643.200000000078 5.7759847362900056e-05
+643.3000000000781 5.7763104915103354e-05
+643.4000000000781 5.7766362261571884e-05
+643.5000000000781 5.7769619402285595e-05
+643.6000000000781 5.7772876337354186e-05
+643.7000000000781 5.7776133066757534e-05
+643.8000000000782 5.77793895904757e-05
+643.9000000000782 5.7782645908618396e-05
+644.0000000000782 5.7785902021237695e-05
+644.1000000000782 5.779841370404799e-05
+644.2000000000783 5.7810924894723895e-05
+644.3000000000783 5.78234355930297e-05
+644.4000000000783 5.783594579859986e-05
+644.5000000000783 5.784845551125378e-05
+644.6000000000784 5.7848510799522647e-05
+644.7000000000784 5.784856557077275e-05
+644.8000000000784 5.7848619825030276e-05
+644.9000000000784 5.784867356251596e-05
+645.0000000000784 5.784872678313034e-05
+645.1000000000785 5.785404920432544e-05
+645.2000000000785 5.785937173131097e-05
+645.3000000000785 5.786469436412653e-05
+645.4000000000785 5.787001710274673e-05
+645.5000000000786 5.78753399472663e-05
+645.6000000000786 5.786820204454585e-05
+645.7000000000786 5.7861061955714045e-05
+645.8000000000786 5.785391968086494e-05
+645.9000000000786 5.784677521989798e-05
+646.0000000000787 5.783962857278094e-05
+646.1000000000787 5.7836848461716026e-05
+646.2000000000787 5.7834065257026835e-05
+646.3000000000787 5.783127895818234e-05
+646.4000000000788 5.782848956452165e-05
+646.5000000000788 5.782569707543883e-05
+646.6000000000788 5.781042352285492e-05
+646.7000000000788 5.7795142695279764e-05
+646.8000000000789 5.777985459141035e-05
+646.9000000000789 5.776455920987881e-05
+647.0000000000789 5.774925654945587e-05
+647.1000000000789 5.774506693409901e-05
+647.200000000079 5.774087448608279e-05
+647.300000000079 5.773667920506159e-05
+647.400000000079 5.773248109049457e-05
+647.500000000079 5.772828014203611e-05
+647.600000000079 5.7724076359275434e-05
+647.7000000000791 5.771986974173674e-05
+647.8000000000791 5.7715660289074494e-05
+647.9000000000791 5.7711448000812795e-05
+648.0000000000791 5.7707232876567546e-05
+648.1000000000791 5.773652600904261e-05
+648.2000000000792 5.7765822703188635e-05
+648.3000000000792 5.779512295892701e-05
+648.4000000000792 5.782442677604864e-05
+648.5000000000792 5.785373415439976e-05
+648.6000000000793 5.787061153572678e-05
+648.7000000000793 5.788753972151409e-05
+648.8000000000793 5.790449337397146e-05
+648.9000000000793 5.792144900650782e-05
+649.0000000000794 5.793838498590236e-05
+649.1000000000794 5.794171717182103e-05
+649.2000000000794 5.794499009326433e-05
+649.3000000000794 5.794818774782071e-05
+649.4000000000794 5.7951296011328304e-05
+649.5000000000795 5.795430263842815e-05
+649.6000000000795 5.7994755300118104e-05
+649.7000000000795 5.803509414865149e-05
+649.8000000000795 5.8075310747669345e-05
+649.9000000000796 5.811539864324898e-05
+650.0000000000796 5.815535337108971e-05
+650.1000000000796 5.8188351675486826e-05
+650.2000000000796 5.822121873167575e-05
+650.3000000000796 5.825395613540904e-05
+650.4000000000797 5.8286567497885995e-05
+650.5000000000797 5.831905845132649e-05
+650.6000000000797 5.8313844752174504e-05
+650.7000000000797 5.830851715951378e-05
+650.8000000000798 5.830308838973396e-05
+650.9000000000798 5.829757310785028e-05
+651.0000000000798 5.829198792606342e-05
+651.1000000000798 5.825781717823221e-05
+651.2000000000799 5.822361366491477e-05
+651.3000000000799 5.818939984374717e-05
+651.4000000000799 5.81552000685949e-05
+651.5000000000799 5.8121040583307326e-05
+651.60000000008 5.811203023576756e-05
+651.70000000008 5.8103015596767106e-05
+651.80000000008 5.809399764068979e-05
+651.90000000008 5.808497740008328e-05
+652.00000000008 5.8075955966190514e-05
+652.1000000000801 5.813103148387128e-05
+652.2000000000801 5.818611831099831e-05
+652.3000000000801 5.8241217726713564e-05
+652.4000000000801 5.829633107423077e-05
+652.5000000000801 5.8351459760970036e-05
+652.6000000000802 5.838150573123459e-05
+652.7000000000802 5.841155913699092e-05
+652.8000000000802 5.8441619597552306e-05
+652.9000000000802 5.8471686672105424e-05
+653.0000000000803 5.850175985940579e-05
+653.1000000000803 5.8508041277912135e-05
+653.2000000000803 5.851432356520023e-05
+653.3000000000803 5.85206060384721e-05
+653.4000000000804 5.85268879551031e-05
+653.5000000000804 5.853316851281316e-05
+653.6000000000804 5.8551929334679276e-05
+653.7000000000804 5.857064178094494e-05
+653.8000000000804 5.858933229517725e-05
+653.9000000000805 5.860802539276316e-05
+654.0000000000805 5.8626743657810134e-05
+654.1000000000805 5.861617396022629e-05
+654.2000000000805 5.860566472287358e-05
+654.3000000000806 5.8595232598973885e-05
+654.4000000000806 5.858489226826413e-05
+654.5000000000806 5.8574656438718824e-05
+654.6000000000806 5.8577106042612576e-05
+654.7000000000806 5.857968076292641e-05
+654.8000000000807 5.8582387488464996e-05
+654.9000000000807 5.858523114760732e-05
+655.0000000000807 5.858821470778835e-05
+655.1000000000807 5.859266595107816e-05
+655.2000000000808 5.859725731223212e-05
+655.3000000000808 5.8601985881794554e-05
+655.4000000000808 5.86068467864584e-05
+655.5000000000808 5.8611833188369045e-05
+655.6000000000809 5.8629515025718833e-05
+655.7000000000809 5.864730501991001e-05
+655.8000000000809 5.8665190492588346e-05
+655.9000000000809 5.868315678429284e-05
+656.000000000081 5.870118725105056e-05
+656.100000000081 5.872131614389069e-05
+656.200000000081 5.874147129259406e-05
+656.300000000081 5.8761630081733535e-05
+656.400000000081 5.878176789542373e-05
+656.5000000000811 5.880185811410572e-05
+656.6000000000811 5.882187211160868e-05
+656.7000000000811 5.884188984131319e-05
+656.8000000000811 5.8861911303576896e-05
+656.9000000000811 5.8881936498757395e-05
+657.0000000000812 5.890196542739758e-05
+657.1000000000812 5.890798647868877e-05
+657.2000000000812 5.891400776997415e-05
+657.3000000000812 5.892002930143354e-05
+657.4000000000813 5.892605107298447e-05
+657.5000000000813 5.893207308468598e-05
+657.6000000000813 5.8950702415806803e-05
+657.7000000000813 5.896933456366375e-05
+657.8000000000814 5.8987969528331665e-05
+657.9000000000814 5.900660731008229e-05
+658.0000000000814 5.902524790905367e-05
+658.1000000000814 5.904089385362387e-05
+658.2000000000814 5.905654087126539e-05
+658.3000000000815 5.907218896182302e-05
+658.4000000000815 5.9087838125272586e-05
+658.5000000000815 5.910348836139319e-05
+658.6000000000815 5.911913967009499e-05
+658.7000000000816 5.913479205135398e-05
+658.8000000000816 5.9150445504949156e-05
+658.9000000000816 5.91661000308564e-05
+659.0000000000816 5.918175562891451e-05
+659.1000000000816 5.919027183168692e-05
+659.2000000000817 5.919878881297897e-05
+659.3000000000817 5.9207306572812734e-05
+659.4000000000817 5.921582511127593e-05
+659.5000000000817 5.922434442846672e-05
+659.6000000000818 5.924549413298184e-05
+659.7000000000818 5.926664824998511e-05
+659.8000000000818 5.92878067800652e-05
+659.9000000000818 5.9308969723745e-05
+660.0000000000819 5.9330137081534474e-05
+660.1000000000819 5.9335295199927986e-05
+660.2000000000819 5.934045338841348e-05
+660.3000000000819 5.9345611647097976e-05
+660.400000000082 5.93507699760227e-05
+660.500000000082 5.9355928375173595e-05
+660.600000000082 5.9373730313536414e-05
+660.700000000082 5.9391534519612675e-05
+660.800000000082 5.940934099349092e-05
+660.9000000000821 5.942714973525964e-05
+661.0000000000821 5.9444960744865644e-05
+661.1000000000821 5.945062939570015e-05
+661.2000000000821 5.945629826621194e-05
+661.3000000000822 5.946196735644828e-05
+661.4000000000822 5.9467636666456566e-05
+661.5000000000822 5.9473306196294534e-05
+661.6000000000822 5.94916310471775e-05
+661.7000000000822 5.9509958530673795e-05
+661.8000000000823 5.9528288646907235e-05
+661.9000000000823 5.954662139613343e-05
+662.0000000000823 5.95649567784677e-05
+662.1000000000823 5.957303023642451e-05
+662.2000000000824 5.958110435687677e-05
+662.3000000000824 5.958917913983492e-05
+662.4000000000824 5.9597254585441316e-05
+662.5000000000824 5.960533069370656e-05
+662.6000000000824 5.9613407464707035e-05
+662.7000000000825 5.962148489845334e-05
+662.8000000000825 5.9629562995021934e-05
+662.9000000000825 5.9637641754489345e-05
+663.0000000000825 5.964572117693625e-05
+663.1000000000826 5.965866990670806e-05
+663.2000000000826 5.967161840664158e-05
+663.3000000000826 5.9684566676532786e-05
+663.4000000000826 5.9697514716243505e-05
+663.5000000000827 5.971046252555926e-05
+663.6000000000827 5.971081634268143e-05
+663.7000000000827 5.9711223607514264e-05
+663.8000000000827 5.971165649745965e-05
+663.9000000000827 5.9712089250223626e-05
+664.0000000000828 5.971249816378436e-05
+664.1000000000828 5.972177511127534e-05
+664.2000000000828 5.97309882828975e-05
+664.3000000000828 5.974012012181606e-05
+664.4000000000829 5.974915512295656e-05
+664.5000000000829 5.975807983494342e-05
+664.6000000000829 5.977956482922626e-05
+664.7000000000829 5.9800917722172686e-05
+664.800000000083 5.982213359938001e-05
+664.900000000083 5.9843209423333665e-05
+665.000000000083 5.9864144037138805e-05
+665.100000000083 5.986434299489509e-05
+665.200000000083 5.9864399818362765e-05
+665.3000000000831 5.986431915346088e-05
+665.4000000000831 5.9864107531060995e-05
+665.5000000000831 5.9863773366620214e-05
+665.6000000000831 5.986333436280448e-05
+665.7000000000832 5.986280006087615e-05
+665.8000000000832 5.986218206873678e-05
+665.9000000000832 5.986149406115727e-05
+666.0000000000832 5.986075177941822e-05
+666.1000000000832 5.987789466771083e-05
+666.2000000000833 5.9895023068635416e-05
+666.3000000000833 5.991215892750829e-05
+666.4000000000833 5.9929326284591707e-05
+666.5000000000833 5.994655127841922e-05
+666.6000000000834 5.995115816172701e-05
+666.7000000000834 5.995576155834101e-05
+666.8000000000834 5.996036046233154e-05
+666.9000000000834 5.9964953806628524e-05
+667.0000000000834 5.996954046292846e-05
+667.1000000000835 5.9972418106851314e-05
+667.2000000000835 5.997528652723077e-05
+667.3000000000835 5.997814441294856e-05
+667.4000000000835 5.9980990391444994e-05
+667.5000000000836 5.998382302911028e-05
+667.6000000000836 5.9999349863177355e-05
+667.7000000000836 6.001487174772238e-05
+667.8000000000836 6.003039008049445e-05
+667.9000000000837 6.004590638249854e-05
+668.0000000000837 6.006142229861299e-05
+668.1000000000837 6.006452293281609e-05
+668.2000000000837 6.0067625594021084e-05
+668.3000000000837 6.0070732296418755e-05
+668.4000000000838 6.007384517651336e-05
+668.5000000000838 6.00769664934267e-05
+668.6000000000838 6.008001687909145e-05
+668.7000000000838 6.008301775136045e-05
+668.8000000000839 6.008599589090217e-05
+668.9000000000839 6.008897601020977e-05
+669.0000000000839 6.009198075280555e-05
+669.1000000000839 6.010482186559398e-05
+669.200000000084 6.0117726676027756e-05
+669.300000000084 6.013071165616782e-05
+669.400000000084 6.014379121647094e-05
+669.500000000084 6.015697770296573e-05
+669.600000000084 6.0157563094894775e-05
+669.7000000000841 6.015827702959405e-05
+669.8000000000841 6.0159126572151283e-05
+669.9000000000841 6.0160116772241047e-05
+670.0000000000841 6.016125066418665e-05
+670.1000000000842 6.016866914279287e-05
+670.2000000000842 6.0176232113836264e-05
+670.3000000000842 6.018393660687464e-05
+670.4000000000842 6.0191777632966416e-05
+670.5000000000842 6.0199748183211645e-05
+670.6000000000843 6.0220568157277555e-05
+670.7000000000843 6.0241501042294495e-05
+670.8000000000843 6.0262533822640294e-05
+670.9000000000843 6.028365144403847e-05
+671.0000000000844 6.0304836809792e-05
+671.1000000000844 6.0306638082319256e-05
+671.2000000000844 6.030846215213701e-05
+671.3000000000844 6.031028577307329e-05
+671.4000000000844 6.031208367493496e-05
+671.5000000000845 6.031382856265426e-05
+671.6000000000845 6.0315491116647026e-05
+671.7000000000845 6.031715341496208e-05
+671.8000000000845 6.031881545772895e-05
+671.9000000000846 6.032047724501088e-05
+672.0000000000846 6.032213877682048e-05
+672.1000000000846 6.034236727448157e-05
+672.2000000000846 6.0362599506314264e-05
+672.3000000000847 6.0382835472751886e-05
+672.4000000000847 6.040307517416143e-05
+672.5000000000847 6.042331861096543e-05
+672.6000000000847 6.0430816666221535e-05
+672.7000000000847 6.043831529364529e-05
+672.8000000000848 6.0445814493441776e-05
+672.9000000000848 6.04533142655508e-05
+673.0000000000848 6.046081461010716e-05
+673.1000000000848 6.0463585932243236e-05
+673.2000000000849 6.046635709171334e-05
+673.3000000000849 6.046912808863699e-05
+673.4000000000849 6.0471898923000975e-05
+673.5000000000849 6.0474669594858514e-05
+673.600000000085 6.047744010419635e-05
+673.700000000085 6.0480210451067736e-05
+673.800000000085 6.048298063552582e-05
+673.900000000085 6.04857506576238e-05
+674.000000000085 6.048852051736034e-05
+674.1000000000851 6.050514955754224e-05
+674.2000000000851 6.0521780194221455e-05
+674.3000000000851 6.053841242742299e-05
+674.4000000000851 6.055504625710551e-05
+674.5000000000852 6.0571681683216765e-05
+674.6000000000852 6.057555251991978e-05
+674.7000000000852 6.0579423321588175e-05
+674.8000000000852 6.0583294088270886e-05
+674.9000000000852 6.0587164819950597e-05
+675.0000000000853 6.0591035516677025e-05
+675.1000000000853 6.059590428361404e-05
+675.2000000000853 6.060077313441565e-05
+675.3000000000853 6.060564206912689e-05
+675.4000000000854 6.0610511087792575e-05
+675.5000000000854 6.061538019039126e-05
+675.6000000000854 6.062024937703433e-05
+675.7000000000854 6.062511864770034e-05
+675.8000000000854 6.0629988002367824e-05
+675.9000000000855 6.063485744114822e-05
+676.0000000000855 6.0639726963965194e-05
+676.1000000000855 6.065810826808772e-05
+676.2000000000855 6.067649214943718e-05
+676.3000000000856 6.069487860820046e-05
+676.4000000000856 6.0713267644564504e-05
+676.5000000000856 6.073165925870525e-05
+676.6000000000856 6.073726665783885e-05
+676.7000000000857 6.074287427390962e-05
+676.8000000000857 6.074848210703639e-05
+676.9000000000857 6.075409015727132e-05
+677.0000000000857 6.075969842453076e-05
+677.1000000000857 6.0761791012739444e-05
+677.2000000000858 6.0763883381087146e-05
+677.3000000000858 6.076597552963337e-05
+677.4000000000858 6.076806745843764e-05
+677.5000000000858 6.077015916750397e-05
+677.6000000000859 6.078504481482733e-05
+677.7000000000859 6.0799931123072856e-05
+677.8000000000859 6.081481809215878e-05
+677.9000000000859 6.082970572180366e-05
+678.000000000086 6.084459401205119e-05
+678.100000000086 6.085076441861466e-05
+678.200000000086 6.085693513248708e-05
+678.300000000086 6.0863106153790066e-05
+678.400000000086 6.0869277482379064e-05
+678.5000000000861 6.0875449118442166e-05
+678.6000000000861 6.088162106196788e-05
+678.7000000000861 6.0887793312944783e-05
+678.8000000000861 6.089396587149449e-05
+678.9000000000862 6.090013873753899e-05
+679.0000000000862 6.090631191119692e-05
+679.1000000000862 6.0908899783038916e-05
+679.2000000000862 6.0911487477053136e-05
+679.3000000000862 6.091407499322828e-05
+679.4000000000863 6.091666233161968e-05
+679.5000000000863 6.091924949234914e-05
+679.6000000000863 6.0921836475272276e-05
+679.7000000000863 6.092442328057753e-05
+679.8000000000864 6.092700990818694e-05
+679.9000000000864 6.092959635822257e-05
+680.0000000000864 6.0932182630685245e-05
+680.1000000000864 6.0948902320558664e-05
+680.2000000000864 6.096562368120583e-05
+680.3000000000865 6.0982346712692966e-05
+680.4000000000865 6.0999071415019606e-05
+680.5000000000865 6.101579778824091e-05
+680.6000000000865 6.101970656639909e-05
+680.7000000000866 6.102361537328362e-05
+680.8000000000866 6.10275242087462e-05
+680.9000000000866 6.1031433072971634e-05
+681.0000000000866 6.103534196594703e-05
+681.1000000000867 6.104159598964578e-05
+681.2000000000867 6.10478503064156e-05
+681.3000000000867 6.10541049162382e-05
+681.4000000000867 6.106035981929528e-05
+681.5000000000867 6.106661501543525e-05
+681.6000000000868 6.107287050483979e-05
+681.7000000000868 6.107912628735732e-05
+681.8000000000868 6.108538236316958e-05
+681.9000000000868 6.109163873225837e-05
+682.0000000000869 6.109789539467063e-05
+682.1000000000869 6.110242696270368e-05
+682.2000000000869 6.11069586354076e-05
+682.3000000000869 6.11114904127676e-05
+682.400000000087 6.111602229490231e-05
+682.500000000087 6.112055428174135e-05
+682.600000000087 6.11379277780582e-05
+682.700000000087 6.115530328338423e-05
+682.800000000087 6.117268079796697e-05
+682.9000000000871 6.119006032178685e-05
+683.0000000000871 6.120744185494391e-05
+683.1000000000871 6.120884871492596e-05
+683.2000000000871 6.121025530856207e-05
+683.3000000000872 6.121166163585283e-05
+683.4000000000872 6.121306769686551e-05
+683.5000000000872 6.121447349166755e-05
+683.6000000000872 6.121596233057805e-05
+683.7000000000872 6.121750446512944e-05
+683.8000000000873 6.121907219629504e-05
+683.9000000000873 6.122063987435199e-05
+684.0000000000873 6.122218389929949e-05
+684.1000000000873 6.12264407904923e-05
+684.2000000000874 6.123063330555536e-05
+684.3000000000874 6.123474398422353e-05
+684.4000000000874 6.123875741438648e-05
+684.5000000000874 6.124266023306137e-05
+684.6000000000874 6.124644365119749e-05
+684.7000000000875 6.125009750541399e-05
+684.8000000000875 6.125361374554572e-05
+684.9000000000875 6.12569864358206e-05
+685.0000000000875 6.126021175525902e-05
+685.1000000000876 6.126124074776577e-05
+685.2000000000876 6.126212095054056e-05
+685.3000000000876 6.126285490598072e-05
+685.4000000000876 6.126344727331103e-05
+685.5000000000877 6.126390482846247e-05
+685.6000000000877 6.11999457552502e-05
+685.7000000000877 6.113586808774191e-05
+685.8000000000877 6.107168695842944e-05
+685.9000000000877 6.100741942172467e-05
+686.0000000000878 6.09430844430709e-05
+686.1000000000878 6.0358523528822826e-05
+686.2000000000878 5.97738049019902e-05
+686.3000000000878 5.918895317046752e-05
+686.4000000000879 5.860399390294923e-05
+686.5000000000879 5.801895353140066e-05
+686.6000000000879 5.655897538960585e-05
+686.7000000000879 5.509866353158817e-05
+686.800000000088 5.363801663593249e-05
+686.900000000088 5.217703351397239e-05
+687.000000000088 5.0715713103825106e-05
+687.100000000088 5.002028784854451e-05
+687.200000000088 4.9324875196009466e-05
+687.3000000000881 4.862947458901447e-05
+687.4000000000881 4.7934085543234245e-05
+687.5000000000881 4.7238707645876674e-05
+687.6000000000881 4.8036432450978624e-05
+687.7000000000882 4.8834144367022094e-05
+687.8000000000882 4.963184294450084e-05
+687.9000000000882 5.042952766166296e-05
+688.0000000000882 5.122719791987201e-05
+688.1000000000882 5.188452907876547e-05
+688.2000000000883 5.254187815031169e-05
+688.3000000000883 5.319924432825172e-05
+688.4000000000883 5.38566267205917e-05
+688.5000000000883 5.4514024345189134e-05
+688.6000000000884 5.4334651156142534e-05
+688.7000000000884 5.415522238997711e-05
+688.8000000000884 5.397576388267672e-05
+688.9000000000884 5.37962993850908e-05
+689.0000000000884 5.3616850592350375e-05
+689.1000000000885 5.361887354281094e-05
+689.2000000000885 5.362095543759639e-05
+689.3000000000885 5.362311274291084e-05
+689.4000000000885 5.362536018472434e-05
+689.5000000000886 5.362771074862512e-05
+689.6000000000886 5.3874827139637395e-05
+689.7000000000886 5.4122084848952017e-05
+689.8000000000886 5.4369491531582256e-05
+689.9000000000887 5.461705306605761e-05
+690.0000000000887 5.4864773511672013e-05
+690.1000000000887 5.507165432764096e-05
+690.2000000000887 5.527867407597904e-05
+690.3000000000887 5.548583081147823e-05
+690.4000000000888 5.569312061366142e-05
+690.5000000000888 5.590053755110218e-05
+690.6000000000888 5.613383492804042e-05
+690.7000000000888 5.636724603449054e-05
+690.8000000000889 5.6600759795204095e-05
+690.9000000000889 5.683436302580817e-05
+691.0000000000889 5.706804039295718e-05
+691.1000000000889 5.724050488881072e-05
+691.200000000089 5.741302077648798e-05
+691.300000000089 5.758556604473705e-05
+691.400000000089 5.7758116479044066e-05
+691.500000000089 5.7930645632811566e-05
+691.600000000089 5.8090235906036e-05
+691.7000000000891 5.824985265047116e-05
+691.8000000000891 5.840949586755129e-05
+691.9000000000891 5.856916555877697e-05
+692.0000000000891 5.872886172563401e-05
+692.1000000000892 5.887159573757647e-05
+692.2000000000892 5.901433397508632e-05
+692.3000000000892 5.915707643707935e-05
+692.4000000000892 5.929982312247097e-05
+692.5000000000892 5.9442574030287826e-05
+692.6000000000893 5.955954022671427e-05
+692.7000000000893 5.9676509848860446e-05
+692.8000000000893 5.979348289578408e-05
+692.9000000000893 5.991045936674336e-05
+693.0000000000894 6.002743926066299e-05
+693.1000000000894 6.0070493907607175e-05
+693.2000000000894 6.011355427335957e-05
+693.3000000000894 6.0156620358128065e-05
+693.4000000000894 6.0199692162120355e-05
+693.5000000000895 6.024276968550964e-05
+693.6000000000895 6.02471502624406e-05
+693.7000000000895 6.025153093090635e-05
+693.8000000000895 6.025591169095895e-05
+693.9000000000896 6.026029254258338e-05
+694.0000000000896 6.02646734859111e-05
+694.1000000000896 6.028282863916532e-05
+694.2000000000896 6.0300986222746205e-05
+694.3000000000897 6.0319146236811787e-05
+694.4000000000897 6.033730868145296e-05
+694.5000000000897 6.0355473556862466e-05
+694.6000000000897 6.041237502113277e-05
+694.7000000000897 6.0469285662155836e-05
+694.8000000000898 6.052620548055337e-05
+694.9000000000898 6.058313447667861e-05
+695.0000000000898 6.0640072651056485e-05
+695.1000000000898 6.066398758918378e-05
+695.2000000000899 6.068790071271446e-05
+695.3000000000899 6.071181202162561e-05
+695.4000000000899 6.073572151569325e-05
+695.5000000000899 6.07596291946701e-05
+695.60000000009 6.07577081900554e-05
+695.70000000009 6.075578700335802e-05
+695.80000000009 6.075386563473513e-05
+695.90000000009 6.075194408414278e-05
+696.00000000009 6.075002235188032e-05
+696.1000000000901 6.083142591396883e-05
+696.2000000000901 6.091283950972524e-05
+696.3000000000901 6.09942631393485e-05
+696.4000000000901 6.107569680290309e-05
+696.5000000000902 6.115714050046536e-05
+696.6000000000902 6.125151104162364e-05
+696.7000000000902 6.134589328662379e-05
+696.8000000000902 6.144028723553283e-05
+696.9000000000902 6.153469288848447e-05
+697.0000000000903 6.16291102453403e-05
+697.1000000000903 6.164477990222739e-05
+697.2000000000903 6.16604506665137e-05
+697.3000000000903 6.16761225382858e-05
+697.4000000000904 6.169179551749616e-05
+697.5000000000904 6.17074696040738e-05
+697.6000000000904 6.169729758503356e-05
+697.7000000000904 6.168712436847631e-05
+697.8000000000904 6.167694995449407e-05
+697.9000000000905 6.166677434304466e-05
+698.0000000000905 6.165659753419943e-05
+698.1000000000905 6.162344999986249e-05
+698.2000000000905 6.159029565473657e-05
+698.3000000000906 6.155713449818133e-05
+698.4000000000906 6.152396652982488e-05
+698.5000000000906 6.149079174907067e-05
+698.6000000000906 6.1431744158024e-05
+698.7000000000907 6.137268502791781e-05
+698.8000000000907 6.131361435798233e-05
+698.9000000000907 6.125453214731374e-05
+699.0000000000907 6.119543839525971e-05
+699.1000000000907 6.119164130851545e-05
+699.2000000000908 6.11878441527704e-05
+699.3000000000908 6.11840469281316e-05
+699.4000000000908 6.118024963477327e-05
+699.5000000000908 6.117645227275874e-05
+699.6000000000909 6.11985206580545e-05
+699.7000000000909 6.122058576335117e-05
+699.8000000000909 6.124264758871911e-05
+699.9000000000909 6.126470613409427e-05
+700.000000000091 6.128676139946486e-05
+700.100000000091 6.129210845817427e-05
+700.200000000091 6.12974557544545e-05
+700.300000000091 6.130280328842874e-05
+700.400000000091 6.130815106001884e-05
+700.5000000000911 6.131349906934806e-05
+700.6000000000911 6.13188473164726e-05
+700.7000000000911 6.13241958013143e-05
+700.8000000000911 6.132954452392932e-05
+700.9000000000912 6.133489348437377e-05
+701.0000000000912 6.134024268263693e-05
+701.1000000000912 6.134572663869778e-05
+701.2000000000912 6.135121081729925e-05
+701.3000000000912 6.135669521842349e-05
+701.4000000000913 6.136217984211979e-05
+701.5000000000913 6.136766468838208e-05
+701.6000000000913 6.138609767914221e-05
+701.7000000000913 6.140453320697233e-05
+701.8000000000914 6.142297127205373e-05
+701.9000000000914 6.144141187450047e-05
+702.0000000000914 6.14598550145441e-05
+702.1000000000914 6.14597765726784e-05
+702.2000000000914 6.145969795216801e-05
+702.3000000000915 6.145961915288422e-05
+702.4000000000915 6.145954017503462e-05
+702.5000000000915 6.145946101864868e-05
+702.6000000000915 6.148528658637888e-05
+702.7000000000916 6.15111119085306e-05
+702.8000000000916 6.153693698499994e-05
+702.9000000000916 6.156276181561588e-05
+703.0000000000916 6.158858640016517e-05
+703.1000000000917 6.164175650759343e-05
+703.2000000000917 6.169492877074312e-05
+703.3000000000917 6.174810318924128e-05
+703.4000000000917 6.180127976284912e-05
+703.5000000000917 6.18544584910789e-05
+703.6000000000918 6.185582297770506e-05
+703.7000000000918 6.185718733269703e-05
+703.8000000000918 6.185855155605012e-05
+703.9000000000918 6.185991564789433e-05
+704.0000000000919 6.18612796080933e-05
+704.1000000000919 6.186548389075038e-05
+704.2000000000919 6.186968824285791e-05
+704.3000000000919 6.187389266439818e-05
+704.400000000092 6.187809715535347e-05
+704.500000000092 6.188230171584061e-05
+704.600000000092 6.188650634590918e-05
+704.700000000092 6.189071104540697e-05
+704.800000000092 6.189491581451811e-05
+704.9000000000921 6.189912065315767e-05
+705.0000000000921 6.19033255614372e-05
+705.1000000000921 6.190176334200643e-05
+705.2000000000921 6.190020099960077e-05
+705.3000000000922 6.189863853423323e-05
+705.4000000000922 6.189707594591653e-05
+705.5000000000922 6.189551323481018e-05
+705.6000000000922 6.190691248468272e-05
+705.7000000000922 6.191831095714766e-05
+705.8000000000923 6.192970865219806e-05
+705.9000000000923 6.194110556975966e-05
+706.0000000000923 6.195250170989632e-05
+706.1000000000923 6.196758212151585e-05
+706.2000000000924 6.19826633306665e-05
+706.3000000000924 6.199774533734096e-05
+706.4000000000924 6.201282814159918e-05
+706.5000000000924 6.202791174329929e-05
+706.6000000000925 6.204299614250124e-05
+706.7000000000925 6.205808133913045e-05
+706.8000000000925 6.207316733324692e-05
+706.9000000000925 6.208825412464138e-05
+707.0000000000925 6.210334171343078e-05
+707.1000000000926 6.210721061327672e-05
+707.2000000000926 6.21110795605947e-05
+707.3000000000926 6.21149485555702e-05
+707.4000000000926 6.211881759818694e-05
+707.5000000000927 6.212268668836126e-05
+707.6000000000927 6.212655582621137e-05
+707.7000000000927 6.213042501178827e-05
+707.8000000000927 6.213429424500836e-05
+707.9000000000927 6.213816352598988e-05
+708.0000000000928 6.214203285472514e-05
+708.1000000000928 6.215516994388004e-05
+708.2000000000928 6.2168306929161e-05
+708.3000000000928 6.21814438105883e-05
+708.4000000000929 6.219458058811481e-05
+708.5000000000929 6.22077172615587e-05
+708.6000000000929 6.222085383094029e-05
+708.7000000000929 6.223399029614515e-05
+708.800000000093 6.22471266571935e-05
+708.900000000093 6.226026291390357e-05
+709.000000000093 6.227339906622011e-05
+709.100000000093 6.22777098475614e-05
+709.200000000093 6.228202074651525e-05
+709.3000000000931 6.228633176306916e-05
+709.4000000000931 6.229064289734552e-05
+709.5000000000931 6.229495414919734e-05
+709.6000000000931 6.229926551881425e-05
+709.7000000000932 6.230357700618394e-05
+709.8000000000932 6.230788861122669e-05
+709.9000000000932 6.231220033413234e-05
+710.0000000000932 6.231651217474881e-05
+710.1000000000932 6.231551205799594e-05
+710.2000000000933 6.231451181649661e-05
+710.3000000000933 6.231351145025964e-05
+710.4000000000933 6.231251095949602e-05
+710.5000000000933 6.231151034407977e-05
+710.6000000000934 6.231050960415451e-05
+710.7000000000934 6.230950873972906e-05
+710.8000000000934 6.230850775087959e-05
+710.9000000000934 6.230750663761492e-05
+711.0000000000935 6.230650540009517e-05
+711.1000000000935 6.23232269365539e-05
+711.2000000000935 6.233995009387585e-05
+711.3000000000935 6.2356674872144e-05
+711.4000000000935 6.237340127137414e-05
+711.5000000000936 6.239012929164922e-05
+711.6000000000936 6.24068589330523e-05
+711.7000000000936 6.242359019559912e-05
+711.8000000000936 6.244032307944004e-05
+711.9000000000937 6.245705758459076e-05
+712.0000000000937 6.24737937109733e-05
+712.1000000000937 6.246252102118639e-05
+712.2000000000937 6.245124753742772e-05
+712.3000000000937 6.243997325968498e-05
+712.4000000000938 6.242869818808064e-05
+712.5000000000938 6.241742232274937e-05
+712.6000000000938 6.241913611858958e-05
+712.7000000000938 6.242084983419664e-05
+712.8000000000939 6.242256346949661e-05
+712.9000000000939 6.242427702448289e-05
+713.0000000000939 6.242599049928689e-05
+713.1000000000939 6.243126559180454e-05
+713.200000000094 6.243654086843237e-05
+713.300000000094 6.244181632935334e-05
+713.400000000094 6.244709197448075e-05
+713.500000000094 6.24523678039302e-05
+713.600000000094 6.245772886324438e-05
+713.7000000000941 6.246314479825406e-05
+713.8000000000941 6.246858733936731e-05
+713.9000000000941 6.247403030274793e-05
+714.0000000000941 6.247944959075737e-05
+714.1000000000942 6.246736835516441e-05
+714.2000000000942 6.245522085389683e-05
+714.3000000000942 6.24429893245154e-05
+714.4000000000942 6.243065811271577e-05
+714.5000000000942 6.241821367009487e-05
+714.6000000000943 6.24056445548728e-05
+714.7000000000943 6.23929414241988e-05
+714.8000000000943 6.238009703539562e-05
+714.9000000000943 6.236710624409994e-05
+715.0000000000944 6.235396600222196e-05
+715.1000000000944 6.233842785070288e-05
+715.2000000000944 6.232274148901021e-05
+715.3000000000944 6.23069101608408e-05
+715.4000000000945 6.229093919682963e-05
+715.5000000000945 6.227483601194903e-05
+715.6000000000945 6.224560976636535e-05
+715.7000000000945 6.221627376524074e-05
+715.8000000000945 6.218684172173474e-05
+715.9000000000946 6.215732940915644e-05
+716.0000000000946 6.212775465584524e-05
+716.1000000000946 6.20092785901723e-05
+716.2000000000946 6.189078438967904e-05
+716.3000000000947 6.177229601854864e-05
+716.4000000000947 6.165383932750405e-05
+716.5000000000947 6.15354420337736e-05
+716.6000000000947 6.127418226729671e-05
+716.7000000000947 6.101293376243072e-05
+716.8000000000948 6.0751696522143844e-05
+716.9000000000948 6.0490470549195845e-05
+717.0000000000948 6.022925584655567e-05
+717.1000000000948 5.998338618450557e-05
+717.2000000000949 5.9737507943692784e-05
+717.3000000000949 5.9491621127389665e-05
+717.4000000000949 5.9245725738458905e-05
+717.5000000000949 5.8999821780294437e-05
+717.600000000095 5.8896862808513797e-05
+717.700000000095 5.8793900151638684e-05
+717.800000000095 5.86909338098908e-05
+717.900000000095 5.858796378342092e-05
+718.000000000095 5.848499007223227e-05
+718.1000000000951 5.830074270195286e-05
+718.2000000000951 5.8116509598099325e-05
+718.3000000000951 5.793229076047293e-05
+718.4000000000951 5.7748086189013625e-05
+718.5000000000952 5.7563895883860855e-05
+718.6000000000952 5.744468782164092e-05
+718.7000000000952 5.732548890897674e-05
+718.8000000000952 5.720629914672534e-05
+718.9000000000952 5.7087118535337596e-05
+719.0000000000953 5.6967947075641495e-05
+719.1000000000953 5.696483251144413e-05
+719.2000000000953 5.696171382566519e-05
+719.3000000000953 5.695859102016737e-05
+719.4000000000954 5.695546409680797e-05
+719.5000000000954 5.695233305726006e-05
+719.6000000000954 5.697513460939981e-05
+719.7000000000954 5.6997915867867206e-05
+719.8000000000955 5.702067761968803e-05
+719.9000000000955 5.7043420595282434e-05
+720.0000000000955 5.7066145468581095e-05
+720.1000000000955 5.719493143135269e-05
+720.2000000000955 5.732371565203108e-05
+720.3000000000956 5.745249863920245e-05
+720.4000000000956 5.758128084708977e-05
+720.5000000000956 5.771006267588813e-05
+720.6000000000956 5.803315668822508e-05
+720.7000000000957 5.835624903069492e-05
+720.8000000000957 5.867933841344849e-05
+720.9000000000957 5.900242357550092e-05
+721.0000000000957 5.932550328643139e-05
+721.1000000000957 5.963458255007718e-05
+721.2000000000958 5.994364353902942e-05
+721.3000000000958 6.0252685126152485e-05
+721.4000000000958 6.0561706222730244e-05
+721.5000000000958 6.087070577930631e-05
+721.6000000000959 6.0972467122490027e-05
+721.7000000000959 6.107421590764214e-05
+721.8000000000959 6.117595210289222e-05
+721.9000000000959 6.127767567671991e-05
+722.000000000096 6.137938659722935e-05
+722.100000000096 6.135290769087002e-05
+722.200000000096 6.132642291478186e-05
+722.300000000096 6.12999322773681e-05
+722.400000000096 6.127343578698097e-05
+722.5000000000961 6.124693345168074e-05
+722.6000000000961 6.103914652266349e-05
+722.7000000000961 6.083136088789087e-05
+722.8000000000961 6.062357759442187e-05
+722.9000000000962 6.041579773681262e-05
+723.0000000000962 6.0208022455827904e-05
+723.1000000000962 5.989649576356065e-05
+723.2000000000962 5.95849799334365e-05
+723.3000000000962 5.9273476217926055e-05
+723.4000000000963 5.8961985902569274e-05
+723.5000000000963 5.865051030438741e-05
+723.6000000000963 5.8610857272610236e-05
+723.7000000000963 5.857115708218225e-05
+723.8000000000964 5.853143597015489e-05
+723.9000000000964 5.849171808073925e-05
+724.0000000000964 5.845202547208407e-05
+724.1000000000964 5.8476088915134445e-05
+724.2000000000965 5.8500213031916406e-05
+724.3000000000965 5.852441391858222e-05
+724.4000000000965 5.854870567344682e-05
+724.5000000000965 5.857310039284883e-05
+724.6000000000965 5.86234962197731e-05
+724.7000000000966 5.867401541454266e-05
+724.8000000000966 5.872466520561649e-05
+724.9000000000966 5.877545087264292e-05
+725.0000000000966 5.882637573782628e-05
+725.1000000000967 5.887851870127667e-05
+725.2000000000967 5.893080348724789e-05
+725.3000000000967 5.898322750206982e-05
+725.4000000000967 5.9035786159705355e-05
+725.5000000000967 5.908847287329405e-05
+725.6000000000968 5.9193055170752434e-05
+725.7000000000968 5.929774830740233e-05
+725.8000000000968 5.9402539887350265e-05
+725.9000000000968 5.950741542557274e-05
+726.0000000000969 5.961235832999902e-05
+726.1000000000969 5.9611334691608076e-05
+726.2000000000969 5.9610333796806554e-05
+726.3000000000969 5.960933262803835e-05
+726.400000000097 5.9608306167995886e-05
+726.500000000097 5.960722739989042e-05
+726.600000000097 5.959312353626357e-05
+726.700000000097 5.957902010871309e-05
+726.800000000097 5.956491711737077e-05
+726.9000000000971 5.9550814562234325e-05
+727.0000000000971 5.953671244333453e-05
+727.1000000000971 5.941856313410131e-05
+727.2000000000971 5.9300420287625386e-05
+727.3000000000972 5.918228390435253e-05
+727.4000000000972 5.906415398459468e-05
+727.5000000000972 5.8946030529099344e-05
+727.6000000000972 5.893143824258206e-05
+727.7000000000972 5.891684661890711e-05
+727.8000000000973 5.890225565807222e-05
+727.9000000000973 5.888766536020932e-05
+728.0000000000973 5.8873075725802606e-05
+728.1000000000973 5.908264196365654e-05
+728.2000000000974 5.929222598712653e-05
+728.3000000000974 5.9501827796134806e-05
+728.4000000000974 5.971144739060272e-05
+728.5000000000974 5.992108476975543e-05
+728.6000000000975 5.989769372952147e-05
+728.7000000000975 5.987424804272265e-05
+728.8000000000975 5.985077489965209e-05
+728.9000000000975 5.9827299439382566e-05
+729.0000000000975 5.98038447538456e-05
+729.1000000000976 5.984269642385914e-05
+729.2000000000976 5.988161116038565e-05
+729.3000000000976 5.9920606187489435e-05
+729.4000000000976 5.995969676052767e-05
+729.5000000000977 5.99988961601397e-05
+729.6000000000977 6.0089995083544955e-05
+729.7000000000977 6.0181224501254994e-05
+729.8000000000977 6.0272592083009e-05
+729.9000000000977 6.0364103514929986e-05
+730.0000000000978 6.045576248451317e-05
+730.1000000000978 6.041795593118796e-05
+730.2000000000978 6.0380292715885914e-05
+730.3000000000978 6.0342769526665506e-05
+730.4000000000979 6.030538103518277e-05
+730.5000000000979 6.026811990282516e-05
+730.6000000000979 6.026981628812635e-05
+730.7000000000979 6.0271620080997636e-05
+730.800000000098 6.027351896200837e-05
+730.900000000098 6.027549852603524e-05
+731.000000000098 6.027754228228394e-05
+731.100000000098 6.031882956239435e-05
+731.200000000098 6.036014498879903e-05
+731.3000000000981 6.040146581502394e-05
+731.4000000000981 6.044276714246141e-05
+731.5000000000981 6.0484021913759055e-05
+731.6000000000981 6.057701434020852e-05
+731.7000000000982 6.067002087362705e-05
+731.8000000000982 6.0763040093845494e-05
+731.9000000000982 6.085607063385559e-05
+732.0000000000982 6.094911117999463e-05
+732.1000000000982 6.109446597400399e-05
+732.2000000000983 6.123983465384349e-05
+732.3000000000983 6.13852160676871e-05
+732.4000000000983 6.153060911561918e-05
+732.5000000000983 6.167601274968801e-05
+732.6000000000984 6.174367692765448e-05
+732.7000000000984 6.181134087219737e-05
+732.8000000000984 6.187900456258763e-05
+732.9000000000984 6.19466679781763e-05
+733.0000000000985 6.20143310981975e-05
+733.1000000000985 6.201725409207494e-05
+733.2000000000985 6.202017079368716e-05
+733.3000000000985 6.202308120224511e-05
+733.4000000000985 6.202598531737828e-05
+733.5000000000986 6.202888313863423e-05
+733.6000000000986 6.207075063875106e-05
+733.7000000000986 6.211267352298689e-05
+733.8000000000986 6.215462477603516e-05
+733.9000000000987 6.219657946121837e-05
+734.0000000000987 6.223851472780925e-05
+734.1000000000987 6.225295712777354e-05
+734.2000000000987 6.226733752115896e-05
+734.3000000000987 6.228163946218668e-05
+734.4000000000988 6.229584864463929e-05
+734.5000000000988 6.230995290465722e-05
+734.6000000000988 6.229800633378208e-05
+734.7000000000988 6.228592909704109e-05
+734.8000000000989 6.227371354791352e-05
+734.9000000000989 6.226135407311416e-05
+735.0000000000989 6.224884709023851e-05
+735.1000000000989 6.226367521037373e-05
+735.200000000099 6.227835556050633e-05
+735.300000000099 6.229289044535934e-05
+735.400000000099 6.230728420008663e-05
+735.500000000099 6.232154319237478e-05
+735.600000000099 6.230973505285519e-05
+735.7000000000991 6.229781367338426e-05
+735.8000000000991 6.22857927045767e-05
+735.9000000000991 6.227368787679073e-05
+736.0000000000991 6.226151699761732e-05
+736.1000000000992 6.224731926788362e-05
+736.2000000000992 6.22330981709227e-05
+736.3000000000992 6.221887773347113e-05
+736.4000000000992 6.22046840477938e-05
+736.5000000000992 6.219054526950877e-05
+736.6000000000993 6.220243091044697e-05
+736.7000000000993 6.221431602292012e-05
+736.8000000000993 6.222620060693656e-05
+736.9000000000993 6.223808466243744e-05
+737.0000000000994 6.22499681895273e-05
+737.1000000000994 6.229097965590539e-05
+737.2000000000994 6.233199367165521e-05
+737.3000000000994 6.237301023669986e-05
+737.4000000000995 6.241402935089514e-05
+737.5000000000995 6.245505101408405e-05
+737.6000000000995 6.248310385317796e-05
+737.7000000000995 6.251115836465736e-05
+737.8000000000995 6.253921454837793e-05
+737.9000000000996 6.25672724042625e-05
+738.0000000000996 6.259533193220413e-05
+738.1000000000996 6.259346742471314e-05
+738.2000000000996 6.259160287338337e-05
+738.3000000000997 6.258973827829032e-05
+738.4000000000997 6.258787363944207e-05
+738.5000000000997 6.258600895685972e-05
+738.6000000000997 6.259711503775132e-05
+738.7000000000997 6.260822030211749e-05
+738.8000000000998 6.261932474985501e-05
+738.9000000000998 6.263042838099492e-05
+739.0000000000998 6.264153119562668e-05
+739.1000000000998 6.264373842933687e-05
+739.2000000000999 6.2645945615229e-05
+739.3000000000999 6.264815275329471e-05
+739.4000000000999 6.265035984352568e-05
+739.5000000000999 6.265256688606092e-05
+739.6000000001 6.266774588377571e-05
+739.7000000001 6.268292574757721e-05
+739.8000000001 6.269810647747732e-05
+739.9000000001 6.271328807348798e-05
+740.0000000001 6.272847053568538e-05
+740.1000000001001 6.274078558390256e-05
+740.2000000001001 6.275310027799729e-05
+740.3000000001001 6.276541461790522e-05
+740.4000000001001 6.277772860362928e-05
+740.5000000001002 6.279004223510517e-05
+740.6000000001002 6.280235551240299e-05
+740.7000000001002 6.281466843539125e-05
+740.8000000001002 6.282698100420735e-05
+740.9000000001002 6.28392932187197e-05
+741.0000000001003 6.28516050789867e-05
+741.1000000001003 6.285222083301629e-05
+741.2000000001003 6.285283649679112e-05
+741.3000000001003 6.285345207044403e-05
+741.4000000001004 6.285406755390617e-05
+741.5000000001004 6.285468294725615e-05
+741.6000000001004 6.286827148029303e-05
+741.7000000001004 6.288186017717916e-05
+741.8000000001005 6.289544903797386e-05
+741.9000000001005 6.290903806266922e-05
+742.0000000001005 6.292262725104045e-05
+742.1000000001005 6.29210491740804e-05
+742.2000000001005 6.291947103499275e-05
+742.3000000001006 6.291789283391941e-05
+742.4000000001006 6.291631457086784e-05
+742.5000000001006 6.291473624584542e-05
+742.6000000001006 6.29131578589269e-05
+742.7000000001007 6.291157941018682e-05
+742.8000000001007 6.291000089963263e-05
+742.9000000001007 6.290842232727182e-05
+743.0000000001007 6.290684369325943e-05
+743.1000000001007 6.291844804914627e-05
+743.2000000001008 6.293005177980186e-05
+743.3000000001008 6.2941654885109e-05
+743.4000000001008 6.295325736515197e-05
+743.5000000001008 6.296485921986773e-05
+743.6000000001009 6.296349165601324e-05
+743.7000000001009 6.296212403026286e-05
+743.8000000001009 6.296075634262299e-05
+743.9000000001009 6.295938859316717e-05
+744.000000000101 6.295802078197124e-05
+744.100000000101 6.295899006127857e-05
+744.200000000101 6.295995923737451e-05
+744.300000000101 6.296092831038964e-05
+744.400000000101 6.296189728018582e-05
+744.5000000001011 6.296286614689359e-05
+744.6000000001011 6.296383491057638e-05
+744.7000000001011 6.296480357116319e-05
+744.8000000001011 6.296577212871741e-05
+744.9000000001012 6.296674058323531e-05
+745.0000000001012 6.296770893484668e-05
+745.1000000001012 6.296793833062384e-05
+745.2000000001012 6.296816763602332e-05
+745.3000000001012 6.296839685104519e-05
+745.4000000001013 6.296862597575667e-05
+745.5000000001013 6.296885501022503e-05
+745.6000000001013 6.296908395438315e-05
+745.7000000001013 6.296931280836542e-05
+745.8000000001014 6.296954157217194e-05
+745.9000000001014 6.296977024573555e-05
+746.0000000001014 6.296999882918852e-05
+746.1000000001014 6.296808760019023e-05
+746.2000000001015 6.296617633215377e-05
+746.3000000001015 6.29642650251543e-05
+746.4000000001015 6.296235367919976e-05
+746.5000000001015 6.296044229443244e-05
+746.6000000001015 6.295853087072591e-05
+746.7000000001016 6.295661940828956e-05
+746.8000000001016 6.295470790706419e-05
+746.9000000001016 6.295279636712486e-05
+747.0000000001016 6.295088478856422e-05
+747.1000000001017 6.296625408993063e-05
+747.2000000001017 6.298162434248023e-05
+747.3000000001017 6.299699554616138e-05
+747.4000000001017 6.30123677009895e-05
+747.5000000001017 6.302774080689973e-05
+747.6000000001018 6.303014569811892e-05
+747.7000000001018 6.303255055085399e-05
+747.8000000001018 6.303495536509595e-05
+747.9000000001018 6.30373601408357e-05
+748.0000000001019 6.303976487806e-05
+748.1000000001019 6.303798621872601e-05
+748.2000000001019 6.303620750984685e-05
+748.3000000001019 6.303442875156471e-05
+748.400000000102 6.303264994382015e-05
+748.500000000102 6.30308710866209e-05
+748.600000000102 6.302909218010907e-05
+748.700000000102 6.302731322429248e-05
+748.800000000102 6.3025534219246e-05
+748.9000000001021 6.302375516491023e-05
+749.0000000001021 6.302197606136217e-05
+749.1000000001021 6.302226672760302e-05
+749.2000000001021 6.302255730615273e-05
+749.3000000001022 6.302284779707829e-05
+749.4000000001022 6.30231382003795e-05
+749.5000000001022 6.302342851605621e-05
+749.6000000001022 6.302371874424252e-05
+749.7000000001022 6.302400888480398e-05
+749.8000000001023 6.302429893794189e-05
+749.9000000001023 6.302458890358887e-05
+750.0000000001023 6.302487878181111e-05
+750.1000000001023 6.302437107642329e-05
+750.2000000001024 6.302386328160646e-05
+750.3000000001024 6.302335539729659e-05
+750.4000000001024 6.302284742349682e-05
+750.5000000001024 6.302233936035783e-05
+750.6000000001025 6.303479866278152e-05
+750.7000000001025 6.304725766668448e-05
+750.8000000001025 6.30597163720624e-05
+750.9000000001025 6.307217477884386e-05
+751.0000000001025 6.308463288707811e-05
+751.1000000001026 6.308393184633567e-05
+751.2000000001026 6.308323072098361e-05
+751.3000000001026 6.308252951102567e-05
+751.4000000001026 6.308182821653298e-05
+751.5000000001027 6.308112683757652e-05
+751.6000000001027 6.3080425374093e-05
+751.7000000001027 6.307972382622057e-05
+751.8000000001027 6.307902219389594e-05
+751.9000000001028 6.307832047725728e-05
+752.0000000001028 6.307761867624124e-05
+752.1000000001028 6.307685204577885e-05
+752.2000000001028 6.307608533172472e-05
+752.3000000001028 6.3075318534083e-05
+752.4000000001029 6.307455165285777e-05
+752.5000000001029 6.307378468812029e-05
+752.6000000001029 6.307301763987473e-05
+752.7000000001029 6.307225050819228e-05
+752.800000000103 6.307148329314425e-05
+752.900000000103 6.307071599466763e-05
+753.000000000103 6.306994861284889e-05
+753.100000000103 6.308406706839086e-05
+753.200000000103 6.309818589958605e-05
+753.3000000001031 6.311230510634893e-05
+753.4000000001031 6.312642468866113e-05
+753.5000000001031 6.31405446464908e-05
+753.6000000001031 6.314161351061792e-05
+753.7000000001032 6.314262696837625e-05
+753.8000000001032 6.314361362327203e-05
+753.9000000001032 6.314459996166732e-05
+754.0000000001032 6.314561035262946e-05
+754.1000000001033 6.314483759892113e-05
+754.2000000001033 6.314413130656607e-05
+754.3000000001033 6.314350948484295e-05
+754.4000000001033 6.314298802326514e-05
+754.5000000001033 6.314258069237682e-05
+754.6000000001034 6.314229914648165e-05
+754.7000000001034 6.314215291720665e-05
+754.8000000001034 6.314214941775698e-05
+754.9000000001034 6.314229394301145e-05
+755.0000000001035 6.314258966957604e-05
+755.1000000001035 6.314275986416013e-05
+755.2000000001035 6.31430812392904e-05
+755.3000000001035 6.314355061537364e-05
+755.4000000001035 6.314416269456057e-05
+755.5000000001036 6.31449100607353e-05
+755.6000000001036 6.314578317682474e-05
+755.7000000001036 6.314677039100757e-05
+755.8000000001036 6.314785793271526e-05
+755.9000000001037 6.314902991249016e-05
+756.0000000001037 6.315026832163206e-05
+756.1000000001037 6.315237835346934e-05
+756.2000000001037 6.315451248853547e-05
+756.3000000001038 6.315664635943558e-05
+756.4000000001038 6.315875347744073e-05
+756.5000000001038 6.316080523237925e-05
+756.6000000001038 6.317574066073414e-05
+756.7000000001038 6.319067683984334e-05
+756.8000000001039 6.320561377039235e-05
+756.9000000001039 6.322055145312975e-05
+757.0000000001039 6.323548988858377e-05
+757.1000000001039 6.32363017722694e-05
+757.200000000104 6.323711355689046e-05
+757.300000000104 6.323792524309853e-05
+757.400000000104 6.323873683153759e-05
+757.500000000104 6.323954832291058e-05
+757.600000000104 6.324035972057781e-05
+757.7000000001041 6.324117102039023e-05
+757.8000000001041 6.324198222102667e-05
+757.9000000001041 6.324279332118026e-05
+758.0000000001041 6.324360431937081e-05
+758.1000000001042 6.319168745919563e-05
+758.2000000001042 6.313977051930166e-05
+758.3000000001042 6.308785349876728e-05
+758.4000000001042 6.303593639662385e-05
+758.5000000001043 6.298401921082949e-05
+758.6000000001043 6.240029325607001e-05
+758.7000000001043 6.181662017517958e-05
+758.8000000001043 6.123297070867663e-05
+758.9000000001043 6.0649318690064364e-05
+759.0000000001044 6.006564094422e-05
+759.1000000001044 5.773300516386424e-05
+759.2000000001044 5.5400106391878914e-05
+759.3000000001044 5.30669368738164e-05
+759.4000000001045 5.073349321946617e-05
+759.5000000001045 4.8399776009887556e-05
+759.6000000001045 4.498875828193905e-05
+759.7000000001045 4.157740554498973e-05
+759.8000000001045 3.816573526212442e-05
+759.9000000001046 3.475376766674524e-05
+760.0000000001046 3.134152519378183e-05
+760.1000000001046 2.9524297583678166e-05
+760.2000000001046 2.77070439058697e-05
+760.3000000001047 2.5889778526340826e-05
+760.4000000001047 2.4072516251879214e-05
+760.5000000001047 2.2255272029617686e-05
+760.6000000001047 2.244942532193837e-05
+760.7000000001048 2.2643529002790344e-05
+760.8000000001048 2.2837586997683857e-05
+760.9000000001048 2.3031604174066564e-05
+761.0000000001048 2.322558637706194e-05
+761.1000000001048 2.5068029181828308e-05
+761.2000000001049 2.691045667684872e-05
+761.3000000001049 2.875287783004893e-05
+761.4000000001049 3.059530547804485e-05
+761.5000000001049 3.2437756635085716e-05
+761.600000000105 3.4371078603839536e-05
+761.700000000105 3.6304404080773565e-05
+761.800000000105 3.823773305714742e-05
+761.900000000105 4.017106552421423e-05
+762.000000000105 4.2104401468632036e-05
+762.1000000001051 4.1830984676969774e-05
+762.2000000001051 4.1557580072733935e-05
+762.3000000001051 4.128418765664181e-05
+762.4000000001051 4.1010807429478755e-05
+762.5000000001052 4.0737439390418215e-05
+762.6000000001052 3.969865201745573e-05
+762.7000000001052 3.865991118926955e-05
+762.8000000001052 3.762121690862421e-05
+762.9000000001053 3.658256917828736e-05
+763.0000000001053 3.554396800333764e-05
+763.1000000001053 3.5556305420717434e-05
+763.2000000001053 3.5568642323318146e-05
+763.3000000001053 3.558097871119902e-05
+763.4000000001054 3.5593314584217816e-05
+763.5000000001054 3.56056499435723e-05
+763.6000000001054 3.618870267853116e-05
+763.7000000001054 3.677173450719578e-05
+763.8000000001055 3.7354745427198146e-05
+763.9000000001055 3.7937735435899895e-05
+764.0000000001055 3.852070453105643e-05
+764.1000000001055 3.922031949910703e-05
+764.2000000001055 3.991990723143719e-05
+764.3000000001056 4.0619467726038596e-05
+764.4000000001056 4.131900098076639e-05
+764.5000000001056 4.2018506993883856e-05
+764.6000000001056 4.2847669993909e-05
+764.7000000001057 4.367680071004961e-05
+764.8000000001057 4.4505899139824256e-05
+764.9000000001057 4.533496528081592e-05
+765.0000000001057 4.616399913038131e-05
+765.1000000001058 4.690289693040801e-05
+765.2000000001058 4.764178694521243e-05
+765.3000000001058 4.838066917169396e-05
+765.4000000001058 4.91195436066824e-05
+765.5000000001058 4.985841024684562e-05
+765.6000000001059 5.0441664981748445e-05
+765.7000000001059 5.102491354348224e-05
+765.8000000001059 5.1608155929532827e-05
+765.9000000001059 5.219139213751829e-05
+766.000000000106 5.277462216477413e-05
+766.100000000106 5.3279134021030225e-05
+766.200000000106 5.378362321795973e-05
+766.300000000106 5.428808975415985e-05
+766.400000000106 5.479253362822635e-05
+766.5000000001061 5.529695483871728e-05
+766.6000000001061 5.582728338091813e-05
+766.7000000001061 5.63575880970389e-05
+766.8000000001061 5.688786898549054e-05
+766.9000000001062 5.741812604474925e-05
+767.0000000001062 5.794835927290107e-05
+767.1000000001062 5.8298669518176884e-05
+767.2000000001062 5.864898311746165e-05
+767.3000000001063 5.8999300069120724e-05
+767.4000000001063 5.9349620371585385e-05
+767.5000000001063 5.9699944023122625e-05
+767.6000000001063 5.9894700372500446e-05
+767.7000000001063 6.0089458541285685e-05
+767.8000000001064 6.028421852880849e-05
+767.9000000001064 6.047898033406293e-05
+768.0000000001064 6.0673743956174246e-05
+768.1000000001064 6.0802082071954035e-05
+768.2000000001065 6.09304145599927e-05
+768.3000000001065 6.105874141998325e-05
+768.4000000001065 6.118706265161825e-05
+768.5000000001065 6.131537825448221e-05
+768.6000000001065 6.140471620373638e-05
+768.7000000001066 6.149399612182214e-05
+768.8000000001066 6.158324565782248e-05
+768.9000000001066 6.167249055396675e-05
+769.0000000001066 6.176175463078666e-05
+769.1000000001067 6.183951191098085e-05
+769.2000000001067 6.191733424869483e-05
+769.3000000001067 6.199523956334474e-05
+769.4000000001067 6.207324378139371e-05
+769.5000000001068 6.215136082360427e-05
+769.6000000001068 6.225552362532326e-05
+769.7000000001068 6.235981986581447e-05
+769.8000000001068 6.24642583945888e-05
+769.9000000001068 6.256884595433024e-05
+770.0000000001069 6.267358716294769e-05
+770.1000000001069 6.27395002001234e-05
+770.2000000001069 6.28055678328943e-05
+770.3000000001069 6.287178791869596e-05
+770.400000000107 6.293815613003297e-05
+770.500000000107 6.30046659430089e-05
+770.600000000107 6.303242093300803e-05
+770.700000000107 6.306029879690245e-05
+770.800000000107 6.30882844331093e-05
+770.9000000001071 6.311636066153606e-05
+771.0000000001071 6.31445082190178e-05
+771.1000000001071 6.315909776100851e-05
+771.2000000001071 6.317371259854503e-05
+771.3000000001072 6.318832719211828e-05
+771.4000000001072 6.320291392449955e-05
+771.5000000001072 6.321744309872187e-05
+771.6000000001072 6.321890973841152e-05
+771.7000000001073 6.322036820197482e-05
+771.8000000001073 6.322181935648844e-05
+771.9000000001073 6.322326400467381e-05
+772.0000000001073 6.322470288523088e-05
+772.1000000001073 6.322761401425613e-05
+772.2000000001074 6.323052074728002e-05
+772.3000000001074 6.323342363015813e-05
+772.4000000001074 6.323632314461506e-05
+772.5000000001074 6.323921970830006e-05
+772.6000000001075 6.324211628158579e-05
+772.7000000001075 6.324501582533847e-05
+772.8000000001075 6.324791875786329e-05
+772.9000000001075 6.325082556180611e-05
+773.0000000001075 6.32537367839765e-05
+773.1000000001076 6.326773379344414e-05
+773.2000000001076 6.328173680389256e-05
+773.3000000001076 6.329574655840435e-05
+773.4000000001076 6.330976386509267e-05
+773.5000000001077 6.332378959688698e-05
+773.6000000001077 6.332493448267683e-05
+773.7000000001077 6.332613749218263e-05
+773.8000000001077 6.332736890453085e-05
+773.9000000001078 6.33286010564837e-05
+774.0000000001078 6.332980834307447e-05
+774.1000000001078 6.333228565630011e-05
+774.2000000001078 6.333469315678312e-05
+774.3000000001078 6.333701140854447e-05
+774.4000000001079 6.333922303257063e-05
+774.5000000001079 6.334131270758882e-05
+774.6000000001079 6.334326717023207e-05
+774.7000000001079 6.334508243376788e-05
+774.800000000108 6.334675147549704e-05
+774.900000000108 6.334826946072427e-05
+775.000000000108 6.334963374296954e-05
+775.100000000108 6.335039312819361e-05
+775.200000000108 6.335100007552675e-05
+775.3000000001081 6.335145850747074e-05
+775.4000000001081 6.335177453517148e-05
+775.5000000001081 6.335195645843288e-05
+775.6000000001081 6.335201476548645e-05
+775.7000000001082 6.335195852535869e-05
+775.8000000001082 6.335180154180809e-05
+775.9000000001082 6.335155974234663e-05
+776.0000000001082 6.335125117812452e-05
+776.1000000001083 6.335054337501916e-05
+776.2000000001083 6.334981126262543e-05
+776.3000000001083 6.334907926174196e-05
+776.4000000001083 6.334837391559105e-05
+776.5000000001083 6.33477238898128e-05
+776.6000000001084 6.334715997234595e-05
+776.7000000001084 6.334659595089009e-05
+776.8000000001084 6.334603182544782e-05
+776.9000000001084 6.33454675960217e-05
+777.0000000001085 6.334490326268045e-05
+777.1000000001085 6.334340659836849e-05
+777.2000000001085 6.334190988442102e-05
+777.3000000001085 6.334041312104539e-05
+777.4000000001085 6.333891630818032e-05
+777.5000000001086 6.333741944589888e-05
+777.6000000001086 6.333592253420693e-05
+777.7000000001086 6.333442557317753e-05
+777.8000000001086 6.333292856281656e-05
+777.9000000001087 6.333143150312992e-05
+778.0000000001087 6.332993439412581e-05
+778.1000000001087 6.333062326130878e-05
+778.2000000001087 6.333131204125162e-05
+778.3000000001088 6.33320007338852e-05
+778.4000000001088 6.333268933927451e-05
+778.5000000001088 6.333337785755178e-05
+778.6000000001088 6.333406628858064e-05
+778.7000000001088 6.333475463249331e-05
+778.8000000001089 6.333544288928773e-05
+778.9000000001089 6.333613105896178e-05
+779.0000000001089 6.333681914159438e-05
+779.1000000001089 6.335016319110735e-05
+779.200000000109 6.336350730055882e-05
+779.300000000109 6.337685146980142e-05
+779.400000000109 6.3390195698889e-05
+779.500000000109 6.340353998772724e-05
+779.600000000109 6.340390503126327e-05
+779.7000000001091 6.340426998514765e-05
+779.8000000001091 6.340463484937971e-05
+779.9000000001091 6.340499962395865e-05
+780.0000000001091 6.340536430888153e-05
+780.1000000001092 6.340370366624088e-05
+780.2000000001092 6.340204296411114e-05
+780.3000000001092 6.340038220270038e-05
+780.4000000001092 6.339872138188095e-05
+780.5000000001093 6.339706050179363e-05
+780.6000000001093 6.339539956244507e-05
+780.7000000001093 6.33937385638419e-05
+780.8000000001093 6.339207750605774e-05
+780.9000000001093 6.339041638909923e-05
+781.0000000001094 6.338875521297524e-05
+781.1000000001094 6.338918383351671e-05
+781.2000000001094 6.338961236523641e-05
+781.3000000001094 6.339004080820035e-05
+781.4000000001095 6.339046916240761e-05
+781.5000000001095 6.33908974278572e-05
+781.6000000001095 6.339132560461516e-05
+781.7000000001095 6.339175369268062e-05
+781.8000000001095 6.339218169211961e-05
+781.9000000001096 6.339260960286404e-05
+782.0000000001096 6.339303742504561e-05
+782.1000000001096 6.339205153996879e-05
+782.2000000001096 6.33910655894434e-05
+782.3000000001097 6.339007957360792e-05
+782.4000000001097 6.338909349246655e-05
+782.5000000001097 6.33881073460907e-05
+782.6000000001097 6.33871211343504e-05
+782.7000000001098 6.338613485745123e-05
+782.8000000001098 6.33851485153303e-05
+782.9000000001098 6.338416210805891e-05
+783.0000000001098 6.338317563570872e-05
+783.1000000001098 6.338241256777073e-05
+783.2000000001099 6.338164940334383e-05
+783.3000000001099 6.338088614236429e-05
+783.4000000001099 6.338012278490259e-05
+783.5000000001099 6.337935933089496e-05
+783.60000000011 6.337859578054606e-05
+783.70000000011 6.337783213372504e-05
+783.80000000011 6.337706839050237e-05
+783.90000000011 6.337630455094853e-05
+784.00000000011 6.33755406150674e-05
+784.1000000001101 6.337532493731052e-05
+784.2000000001101 6.337510917864495e-05
+784.3000000001101 6.337489333893801e-05
+784.4000000001101 6.33746774183255e-05
+784.5000000001102 6.337446141674183e-05
+784.6000000001102 6.337424533438985e-05
+784.7000000001102 6.337402917106984e-05
+784.8000000001102 6.337381292698459e-05
+784.9000000001103 6.337359660206863e-05
+785.0000000001103 6.337338019639008e-05
+785.1000000001103 6.337277792929615e-05
+785.2000000001103 6.337217558792681e-05
+785.3000000001103 6.337157317248621e-05
+785.4000000001104 6.337097068291027e-05
+785.5000000001104 6.337036811926895e-05
+785.6000000001104 6.336976548156516e-05
+785.7000000001104 6.336916276986894e-05
+785.8000000001105 6.336855998411613e-05
+785.9000000001105 6.336795712444378e-05
+786.0000000001105 6.336735419077522e-05
+786.1000000001105 6.335538729310325e-05
+786.2000000001105 6.33434199050661e-05
+786.3000000001106 6.333145202673432e-05
+786.4000000001106 6.33194836581787e-05
+786.5000000001106 6.330751479955128e-05
+786.6000000001106 6.330851850783266e-05
+786.7000000001107 6.330952213748219e-05
+786.8000000001107 6.331052568849663e-05
+786.9000000001107 6.331152916080556e-05
+787.0000000001107 6.331253255452344e-05
+787.1000000001108 6.32985702146777e-05
+787.2000000001108 6.328460821611992e-05
+787.3000000001108 6.327064655905327e-05
+787.4000000001108 6.32566852434798e-05
+787.5000000001108 6.324272426948288e-05
+787.6000000001109 6.32417363009256e-05
+787.7000000001109 6.324074826878633e-05
+787.8000000001109 6.323976017300215e-05
+787.9000000001109 6.32387720136443e-05
+788.000000000111 6.323778379070347e-05
+788.100000000111 6.322468816255522e-05
+788.200000000111 6.321159247554276e-05
+788.300000000111 6.319849672975965e-05
+788.400000000111 6.31854009252997e-05
+788.5000000001111 6.317230506224219e-05
+788.6000000001111 6.314623744036362e-05
+788.7000000001111 6.312016981107795e-05
+788.8000000001111 6.309410217463922e-05
+788.9000000001112 6.306803453116748e-05
+789.0000000001112 6.304196688084868e-05
+789.1000000001112 6.301510283463994e-05
+789.2000000001112 6.298823948211863e-05
+789.3000000001113 6.296137682348715e-05
+789.4000000001113 6.293451485881397e-05
+789.5000000001113 6.290765358833043e-05
+789.6000000001113 6.290673393312537e-05
+789.7000000001113 6.290581421370592e-05
+789.8000000001114 6.290489443007599e-05
+789.9000000001114 6.290397458223942e-05
+790.0000000001114 6.290305467033468e-05
+790.1000000001114 6.2902517552431e-05
+790.2000000001115 6.290198036159697e-05
+790.3000000001115 6.290144309776815e-05
+790.4000000001115 6.290090576108127e-05
+790.5000000001115 6.290036835153899e-05
+790.6000000001115 6.289983086914383e-05
+790.7000000001116 6.289929331383147e-05
+790.8000000001116 6.289875568580566e-05
+790.9000000001116 6.289821798500187e-05
+791.0000000001116 6.289768021145254e-05
+791.1000000001117 6.292371824873776e-05
+791.2000000001117 6.294975628967036e-05
+791.3000000001117 6.297579433416695e-05
+791.4000000001117 6.300183238207698e-05
+791.5000000001118 6.302787043335515e-05
+791.6000000001118 6.302797105144445e-05
+791.7000000001118 6.302807158997954e-05
+791.8000000001118 6.302817204909488e-05
+791.9000000001118 6.302827242872371e-05
+792.0000000001119 6.302837272891894e-05
+792.1000000001119 6.301556652993994e-05
+792.2000000001119 6.300276018214234e-05
+792.3000000001119 6.298995368560324e-05
+792.400000000112 6.297714704039969e-05
+792.500000000112 6.296434024670474e-05
+792.600000000112 6.297747130736068e-05
+792.700000000112 6.299060235314465e-05
+792.800000000112 6.300373338384571e-05
+792.9000000001121 6.301686439952104e-05
+793.0000000001121 6.302999540025653e-05
+793.1000000001121 6.306874576707169e-05
+793.2000000001121 6.310749586195598e-05
+793.3000000001122 6.314624568475352e-05
+793.4000000001122 6.318499523530818e-05
+793.5000000001122 6.322374451359814e-05
+793.6000000001122 6.326249351940037e-05
+793.7000000001123 6.330124225269296e-05
+793.8000000001123 6.333999071331995e-05
+793.9000000001123 6.337873890105825e-05
+794.0000000001123 6.341748681584246e-05
+794.1000000001123 6.34174246054634e-05
+794.2000000001124 6.34173622898646e-05
+794.3000000001124 6.341729986904609e-05
+794.4000000001124 6.341723734307491e-05
+794.5000000001124 6.341717471193643e-05
+794.6000000001125 6.340414324110532e-05
+794.7000000001125 6.339111169093389e-05
+794.8000000001125 6.337808006144638e-05
+794.9000000001125 6.336504835280103e-05
+795.0000000001125 6.335201656493997e-05
+795.1000000001126 6.332559937039534e-05
+795.2000000001126 6.329918249640276e-05
+795.3000000001126 6.327276594304038e-05
+795.4000000001126 6.324634971038656e-05
+795.5000000001127 6.321993379854255e-05
+795.6000000001127 6.31546139281649e-05
+795.7000000001127 6.308929496898639e-05
+795.8000000001127 6.30239769212324e-05
+795.9000000001128 6.295865978519546e-05
+796.0000000001128 6.289334356121266e-05
+796.1000000001128 6.286763178323664e-05
+796.2000000001128 6.284191974085195e-05
+796.3000000001128 6.281620743427827e-05
+796.4000000001129 6.279049486360127e-05
+796.5000000001129 6.276478202912846e-05
+796.6000000001129 6.281687678797744e-05
+796.7000000001129 6.286897183537874e-05
+796.800000000113 6.292106717116067e-05
+796.900000000113 6.297316279528544e-05
+797.000000000113 6.302525870736403e-05
+797.100000000113 6.306304584154641e-05
+797.200000000113 6.310083153981699e-05
+797.3000000001131 6.313861580212669e-05
+797.4000000001131 6.317639862829249e-05
+797.5000000001131 6.321418001830307e-05
+797.6000000001131 6.322602640923914e-05
+797.7000000001132 6.323787228318647e-05
+797.8000000001132 6.324971764015397e-05
+797.9000000001132 6.326156248015062e-05
+798.0000000001132 6.327340680310462e-05
+798.1000000001133 6.32731176113813e-05
+798.2000000001133 6.327282834495324e-05
+798.3000000001133 6.327253900395624e-05
+798.4000000001133 6.327224958825787e-05
+798.5000000001133 6.327196009799389e-05
+798.6000000001134 6.327167053316592e-05
+798.7000000001134 6.327138089384274e-05
+798.8000000001134 6.327109117989195e-05
+798.9000000001134 6.327080139151631e-05
+799.0000000001135 6.327051152872038e-05
+799.1000000001135 6.327278924021321e-05
+799.2000000001135 6.327506691513494e-05
+799.3000000001135 6.32773445534776e-05
+799.4000000001136 6.327962215530042e-05
+799.5000000001136 6.328189972056603e-05
+799.6000000001136 6.325824111117147e-05
+799.7000000001136 6.323458059847849e-05
+799.8000000001136 6.321091818251198e-05
+799.9000000001137 6.318725386343113e-05
+800.0000000001137 6.316358764125764e-05
+800.1000000001137 6.313701000620709e-05
+800.2000000001137 6.311043283109061e-05
+800.3000000001138 6.308385611604517e-05
+800.4000000001138 6.30572798610739e-05
+800.5000000001138 6.303070406641031e-05
+800.6000000001138 6.303006703122798e-05
+800.7000000001138 6.302942993218418e-05
+800.8000000001139 6.302879276921478e-05
+800.9000000001139 6.30281555423896e-05
+801.0000000001139 6.302751825171307e-05
+801.1000000001139 6.302825152693022e-05
+801.200000000114 6.302898472728995e-05
+801.300000000114 6.30297178527903e-05
+801.400000000114 6.303045090349614e-05
+801.500000000114 6.303118387948729e-05
+801.600000000114 6.304488631084316e-05
+801.7000000001141 6.30585889689743e-05
+801.8000000001141 6.307229185400587e-05
+801.9000000001141 6.30859949657278e-05
+802.0000000001141 6.309969830418324e-05
+802.1000000001142 6.310030429423158e-05
+802.2000000001142 6.310091020988433e-05
+802.3000000001142 6.310151605107288e-05
+802.4000000001142 6.310212181792977e-05
+802.5000000001143 6.310272751038644e-05
+802.6000000001143 6.31033331285084e-05
+802.7000000001143 6.310393867236112e-05
+802.8000000001143 6.310454414187602e-05
+802.9000000001143 6.310514953711861e-05
+803.0000000001144 6.310575485816705e-05
+803.1000000001144 6.311741166933387e-05
+803.2000000001144 6.312906789055814e-05
+803.3000000001144 6.31407235217861e-05
+803.4000000001145 6.315237856303084e-05
+803.5000000001145 6.316403301422386e-05
+803.6000000001145 6.316271711831268e-05
+803.7000000001145 6.316140117283432e-05
+803.8000000001146 6.316008517779358e-05
+803.9000000001146 6.315876913319539e-05
+804.0000000001146 6.315745303918006e-05
+804.1000000001146 6.315748173536553e-05
+804.2000000001146 6.315751035701655e-05
+804.3000000001147 6.315753890413368e-05
+804.4000000001147 6.315756737671739e-05
+804.5000000001147 6.315759577486503e-05
+804.6000000001147 6.318356152107449e-05
+804.7000000001148 6.320952721611004e-05
+804.8000000001148 6.323549285975705e-05
+804.9000000001148 6.326145845206887e-05
+805.0000000001148 6.328742399296566e-05
+805.1000000001148 6.331403237600022e-05
+805.2000000001149 6.334064123523108e-05
+805.3000000001149 6.336725057071064e-05
+805.4000000001149 6.33938603822903e-05
+805.5000000001149 6.342047066992568e-05
+805.600000000115 6.342114231602476e-05
+805.700000000115 6.342181388863414e-05
+805.800000000115 6.342248538788607e-05
+805.900000000115 6.342315681377879e-05
+806.000000000115 6.342382816624174e-05
+806.1000000001151 6.342299072525302e-05
+806.2000000001151 6.34221532249977e-05
+806.3000000001151 6.342131566554625e-05
+806.4000000001151 6.342047804696893e-05
+806.5000000001152 6.341964036920224e-05
+806.6000000001152 6.341880263224938e-05
+806.7000000001152 6.341796483624786e-05
+806.8000000001152 6.341712698120095e-05
+806.9000000001153 6.341628906711202e-05
+807.0000000001153 6.341545109398615e-05
+807.1000000001153 6.341612168760622e-05
+807.2000000001153 6.341679220820074e-05
+807.3000000001153 6.341746265563409e-05
+807.4000000001154 6.341813303010541e-05
+807.5000000001154 6.341880333147896e-05
+807.6000000001154 6.341947355988694e-05
+807.7000000001154 6.342014371532767e-05
+807.8000000001155 6.342081379773229e-05
+807.9000000001155 6.342148380723307e-05
+808.0000000001155 6.342215374381369e-05
+808.1000000001155 6.341020375231559e-05
+808.2000000001156 6.339825328881059e-05
+808.3000000001156 6.338630235329182e-05
+808.4000000001156 6.337435094588643e-05
+808.5000000001156 6.336239906658743e-05
+808.6000000001156 6.335044671538805e-05
+808.7000000001157 6.333849389248231e-05
+808.8000000001157 6.332654059786337e-05
+808.9000000001157 6.33145868315914e-05
+809.0000000001157 6.33026325936577e-05
+809.1000000001158 6.328917328736636e-05
+809.2000000001158 6.327571411242721e-05
+809.3000000001158 6.32622550688465e-05
+809.4000000001158 6.324879615669747e-05
+809.5000000001158 6.323533737613533e-05
+809.6000000001159 6.323484997840424e-05
+809.7000000001159 6.323436251232337e-05
+809.8000000001159 6.3233874977962e-05
+809.9000000001159 6.323338737532237e-05
+810.000000000116 6.323289970447549e-05
+810.100000000116 6.323395088745791e-05
+810.200000000116 6.323500200413053e-05
+810.300000000116 6.323605305449027e-05
+810.400000000116 6.323710403860106e-05
+810.5000000001161 6.323815495636265e-05
+810.6000000001161 6.321326151843696e-05
+810.7000000001161 6.318836715206231e-05
+810.8000000001161 6.316347185744224e-05
+810.9000000001162 6.313857563464632e-05
+811.0000000001162 6.31136784836615e-05
+811.1000000001162 6.307539583396275e-05
+811.2000000001162 6.303711234051723e-05
+811.3000000001163 6.299882800338536e-05
+811.4000000001163 6.296054282269475e-05
+811.5000000001163 6.292225679872193e-05
+811.6000000001163 6.289694372342093e-05
+811.7000000001163 6.287163006666166e-05
+811.8000000001164 6.284631582850635e-05
+811.9000000001164 6.282100100901739e-05
+812.0000000001164 6.279568560827368e-05
+812.1000000001164 6.278461868781207e-05
+812.2000000001165 6.277355096132572e-05
+812.3000000001165 6.27624824289177e-05
+812.4000000001165 6.275141309049003e-05
+812.5000000001165 6.274034294603993e-05
+812.6000000001166 6.263843523459269e-05
+812.7000000001166 6.253652119917102e-05
+812.8000000001166 6.243460083995845e-05
+812.9000000001166 6.233267415700481e-05
+813.0000000001166 6.223074115024981e-05
+813.1000000001167 6.2034643883092e-05
+813.2000000001167 6.183855550829266e-05
+813.3000000001167 6.164247602621819e-05
+813.4000000001167 6.144640543730236e-05
+813.5000000001168 6.125034374218181e-05
+813.6000000001168 6.117107916996597e-05
+813.7000000001168 6.109181813109139e-05
+813.8000000001168 6.101256062569395e-05
+813.9000000001168 6.093330665397669e-05
+814.0000000001169 6.085405621619103e-05
+814.1000000001169 6.0816359291069114e-05
+814.2000000001169 6.077866075210015e-05
+814.3000000001169 6.074096059938122e-05
+814.400000000117 6.07032588329424e-05
+814.500000000117 6.066555545277448e-05
+814.600000000117 6.0537012498469734e-05
+814.700000000117 6.040846426073817e-05
+814.800000000117 6.0279910739999065e-05
+814.9000000001171 6.015135193633703e-05
+815.0000000001171 6.002278785015553e-05
+815.1000000001171 5.9880781734151156e-05
+815.2000000001171 5.973877197447068e-05
+815.3000000001172 5.959675857162837e-05
+815.4000000001172 5.9454741525937947e-05
+815.5000000001172 5.931272083806303e-05
+815.6000000001172 5.918367538447109e-05
+815.7000000001173 5.9054626614863324e-05
+815.8000000001173 5.8925574529615854e-05
+815.9000000001173 5.879651912917213e-05
+816.0000000001173 5.866746041410312e-05
+816.1000000001173 5.8590231725947614e-05
+816.2000000001174 5.851300126268948e-05
+816.3000000001174 5.843576902457665e-05
+816.4000000001174 5.835853501185742e-05
+816.5000000001174 5.828129922528573e-05
+816.6000000001175 5.84636694322453e-05
+816.7000000001175 5.864604360888616e-05
+816.8000000001175 5.882842175464817e-05
+816.9000000001175 5.901080386910436e-05
+817.0000000001176 5.919318995141309e-05
+817.1000000001176 5.9193243551519075e-05
+817.2000000001176 5.919329709263944e-05
+817.3000000001176 5.919335057477478e-05
+817.4000000001176 5.919340399785855e-05
+817.5000000001177 5.919345736141521e-05
+817.6000000001177 5.895985207187545e-05
+817.7000000001177 5.8726246302939944e-05
+817.8000000001177 5.849264005551212e-05
+817.9000000001178 5.825903333016094e-05
+818.0000000001178 5.8025426128681455e-05
+818.1000000001178 5.8207417858132576e-05
+818.2000000001178 5.8389411125291417e-05
+818.3000000001178 5.857140592953464e-05
+818.4000000001179 5.875340227030535e-05
+818.5000000001179 5.8935400146934295e-05
+818.6000000001179 5.907845529053736e-05
+818.7000000001179 5.9221511626077876e-05
+818.800000000118 5.93645691530852e-05
+818.900000000118 5.9507627871155104e-05
+819.000000000118 5.965068777939764e-05
+819.100000000118 5.966565907382542e-05
+819.200000000118 5.9680631226897356e-05
+819.3000000001181 5.969560423870843e-05
+819.4000000001181 5.9710578109219576e-05
+819.5000000001181 5.972555283844343e-05
+819.6000000001181 5.972754417769033e-05
+819.7000000001182 5.972953550985861e-05
+819.8000000001182 5.973152683501105e-05
+819.9000000001182 5.973351815314357e-05
+820.0000000001182 5.973550946501854e-05
+820.1000000001183 6.004554924146169e-05
+820.2000000001183 6.035557213182939e-05
+820.3000000001183 6.066557813573083e-05
+820.4000000001183 6.097556725270731e-05
+820.5000000001183 6.128553948214192e-05
+820.6000000001184 6.151759158423112e-05
+820.7000000001184 6.17496310124615e-05
+820.8000000001184 6.198165776640765e-05
+820.9000000001184 6.221367184577752e-05
+821.0000000001185 6.244567324970963e-05
+821.1000000001185 6.242260432103022e-05
+821.2000000001185 6.239953303102578e-05
+821.3000000001185 6.237645937962563e-05
+821.4000000001186 6.235338336675934e-05
+821.5000000001186 6.233030499215078e-05
+821.6000000001186 6.219034951303489e-05
+821.7000000001186 6.205038082930843e-05
+821.8000000001186 6.191039894070462e-05
+821.9000000001187 6.177040384682316e-05
+822.0000000001187 6.163039554647856e-05
+822.1000000001187 6.11117429450512e-05
+822.2000000001187 6.059307520050885e-05
+822.3000000001188 6.0074392314338196e-05
+822.4000000001188 5.955569428822894e-05
+822.5000000001188 5.9036981123199084e-05
+822.6000000001188 5.834938771923037e-05
+822.7000000001188 5.766177427980612e-05
+822.8000000001189 5.697414080704333e-05
+822.9000000001189 5.628648730292735e-05
+823.0000000001189 5.559881377188721e-05
+823.1000000001189 5.5896363730668816e-05
+823.200000000119 5.619390051446032e-05
+823.300000000119 5.6491424122729875e-05
+823.400000000119 5.678893455481065e-05
+823.500000000119 5.708643181095461e-05
+823.600000000119 5.776058713397699e-05
+823.7000000001191 5.8434712713993674e-05
+823.8000000001191 5.9108808549655035e-05
+823.9000000001191 5.9782874639542275e-05
+824.0000000001191 6.0456910981277086e-05
+824.1000000001192 6.071745327252566e-05
+824.2000000001192 6.097800228992773e-05
+824.3000000001192 6.123855803277144e-05
+824.4000000001192 6.149912050054517e-05
+824.5000000001193 6.175968969203642e-05
+824.6000000001193 6.182543754817752e-05
+824.7000000001193 6.189118704773436e-05
+824.8000000001193 6.195693819059477e-05
+824.9000000001193 6.202269097664656e-05
+825.0000000001194 6.208844540535422e-05
+825.1000000001194 6.202433397709579e-05
+825.2000000001194 6.196022073924017e-05
+825.3000000001194 6.189610569199985e-05
+825.4000000001195 6.183198883565477e-05
+825.5000000001195 6.176787017028334e-05
+825.6000000001195 6.170374969616534e-05
+825.7000000001195 6.16396274135805e-05
+825.8000000001196 6.157550332260733e-05
+825.9000000001196 6.15113774235257e-05
+826.0000000001196 6.144724971707991e-05
+826.1000000001196 6.160328369499107e-05
+826.2000000001196 6.175931832706838e-05
+826.3000000001197 6.191535361283544e-05
+826.4000000001197 6.20713895518154e-05
+826.5000000001197 6.222742614327327e-05
+826.6000000001197 6.227953425200499e-05
+826.7000000001198 6.233164253327791e-05
+826.8000000001198 6.23837509868662e-05
+826.9000000001198 6.243585961267808e-05
+827.0000000001198 6.248796840971636e-05
+827.1000000001198 6.217619595135869e-05
+827.2000000001199 6.18644232480951e-05
+827.3000000001199 6.155265030100636e-05
+827.4000000001199 6.124087711097295e-05
+827.5000000001199 6.0929103679432666e-05
+827.60000000012 6.0747242844377047e-05
+827.70000000012 6.056538184222273e-05
+827.80000000012 6.0383520673723315e-05
+827.90000000012 6.020165933943162e-05
+828.00000000012 6.00197978406594e-05
+828.1000000001201 6.013526487849265e-05
+828.2000000001201 6.025072617583111e-05
+828.3000000001201 6.036618173210817e-05
+828.4000000001201 6.0481631546890975e-05
+828.5000000001202 6.0597075619405495e-05
+828.6000000001202 6.059560923745974e-05
+828.7000000001202 6.059414277097218e-05
+828.8000000001202 6.059267622001432e-05
+828.9000000001203 6.059120958459062e-05
+829.0000000001203 6.0589742864902024e-05
+829.1000000001203 6.064006844964411e-05
+829.2000000001203 6.0690391119536305e-05
+829.3000000001203 6.074071087419702e-05
+829.4000000001204 6.079102771344564e-05
+829.5000000001204 6.084134163706137e-05
+829.6000000001204 6.096956902654722e-05
+829.7000000001204 6.109778931595753e-05
+829.8000000001205 6.122600250450051e-05
+829.9000000001205 6.135420859145103e-05
+830.0000000001205 6.148240757569096e-05
+830.1000000001205 6.150655824738329e-05
+830.2000000001206 6.153070719542446e-05
+830.3000000001206 6.155485441964897e-05
+830.4000000001206 6.15789999198243e-05
+830.5000000001206 6.160314369596165e-05
+830.6000000001206 6.171816230102248e-05
+830.7000000001207 6.18331738030691e-05
+830.8000000001207 6.19481782010161e-05
+830.9000000001207 6.20631754938447e-05
+831.0000000001207 6.217816568018089e-05
+831.1000000001208 6.216505271580176e-05
+831.2000000001208 6.215193953203691e-05
+831.3000000001208 6.21388261290743e-05
+831.4000000001208 6.212571250710213e-05
+831.5000000001208 6.211259866593495e-05
+831.6000000001209 6.195669732997091e-05
+831.7000000001209 6.180079639008427e-05
+831.8000000001209 6.164489584830318e-05
+831.9000000001209 6.148899570679061e-05
+832.000000000121 6.133309596821988e-05
+832.100000000121 6.143335820300542e-05
+832.200000000121 6.153360835448422e-05
+832.300000000121 6.163384642267857e-05
+832.400000000121 6.17340724078785e-05
+832.5000000001211 6.183428631028747e-05
+832.6000000001211 6.197341615513777e-05
+832.7000000001211 6.211252937652174e-05
+832.8000000001211 6.225162597468415e-05
+832.9000000001212 6.239070594986957e-05
+833.0000000001212 6.252976930178528e-05
+833.1000000001212 6.250140608557458e-05
+833.2000000001212 6.247304473048068e-05
+833.3000000001213 6.244468523655366e-05
+833.4000000001213 6.241632760417853e-05
+833.5000000001213 6.238797183351984e-05
+833.6000000001213 6.239861275574767e-05
+833.7000000001213 6.240930715819405e-05
+833.8000000001214 6.242002682213356e-05
+833.9000000001214 6.24307456022752e-05
+834.0000000001214 6.244143942889175e-05
+834.1000000001214 6.254241512663954e-05
+834.2000000001215 6.264331558740292e-05
+834.3000000001215 6.274412261498408e-05
+834.4000000001215 6.284482000504784e-05
+834.5000000001215 6.294539356211962e-05
+834.6000000001216 6.298101176021208e-05
+834.7000000001216 6.30164925312712e-05
+834.8000000001216 6.305182738752781e-05
+834.9000000001216 6.308701000193153e-05
+835.0000000001216 6.312203621444549e-05
+835.1000000001217 6.30920632254572e-05
+835.2000000001217 6.306194055099971e-05
+835.3000000001217 6.303167103270442e-05
+835.4000000001217 6.300125968392679e-05
+835.5000000001218 6.297071368422622e-05
+835.6000000001218 6.296594909703926e-05
+835.7000000001218 6.296106334486289e-05
+835.8000000001218 6.29560716730375e-05
+835.9000000001218 6.295099136945625e-05
+836.0000000001219 6.294584176385857e-05
+836.1000000001219 6.296805310497396e-05
+836.2000000001219 6.299023672551998e-05
+836.3000000001219 6.301241807644023e-05
+836.400000000122 6.303462469483488e-05
+836.500000000122 6.305688620799205e-05
+836.600000000122 6.307923953962962e-05
+836.700000000122 6.31015979711926e-05
+836.800000000122 6.312396064563879e-05
+836.9000000001221 6.314632676883653e-05
+837.0000000001221 6.316869560966238e-05
+837.1000000001221 6.317494678732426e-05
+837.2000000001221 6.318119998272129e-05
+837.3000000001222 6.31874546515147e-05
+837.4000000001222 6.319371031355159e-05
+837.5000000001222 6.31999665522834e-05
+837.6000000001222 6.319328422088156e-05
+837.7000000001223 6.318659928613049e-05
+837.8000000001223 6.317991133137446e-05
+837.9000000001223 6.317321987590385e-05
+838.0000000001223 6.316652437522069e-05
+838.1000000001223 6.318811482556643e-05
+838.2000000001224 6.320969602387247e-05
+838.3000000001224 6.323126722503013e-05
+838.4000000001224 6.325282761886379e-05
+838.5000000001224 6.327437632953678e-05
+838.6000000001225 6.32829869669059e-05
+838.7000000001225 6.329159295308445e-05
+838.8000000001225 6.330019534870659e-05
+838.9000000001225 6.330879527925762e-05
+839.0000000001226 6.331739393503831e-05
+839.1000000001226 6.331300147808349e-05
+839.2000000001226 6.330861209649961e-05
+839.3000000001226 6.330422717327314e-05
+839.4000000001226 6.329984815508828e-05
+839.5000000001227 6.329547655285756e-05
+839.6000000001227 6.330403049769903e-05
+839.7000000001227 6.331258607950709e-05
+839.8000000001227 6.332114288122665e-05
+839.9000000001228 6.332970042123894e-05
+840.0000000001228 6.333825815328195e-05
+840.1000000001228 6.331997163681642e-05
+840.2000000001228 6.33016881569292e-05
+840.3000000001228 6.328340697325183e-05
+840.4000000001229 6.326512728211852e-05
+840.5000000001229 6.324684821618904e-05
+840.6000000001229 6.322856884520464e-05
+840.7000000001229 6.321029177707414e-05
+840.800000000123 6.319201701106328e-05
+840.900000000123 6.317374454663387e-05
+841.000000000123 6.315547438294302e-05
+841.100000000123 6.316358428754847e-05
+841.200000000123 6.317169224563763e-05
+841.3000000001231 6.317979825659384e-05
+841.4000000001231 6.31879023198594e-05
+841.5000000001231 6.319600443473465e-05
+841.6000000001231 6.32041045979102e-05
+841.7000000001232 6.321220281335807e-05
+841.8000000001232 6.322029908234547e-05
+841.9000000001232 6.322839340622117e-05
+842.0000000001232 6.323648578634854e-05
+842.1000000001233 6.324299748939252e-05
+842.2000000001233 6.324950679380681e-05
+842.3000000001233 6.325601370098576e-05
+842.4000000001233 6.326251821267243e-05
+842.5000000001234 6.326902033014353e-05
+842.6000000001234 6.326263561078565e-05
+842.7000000001234 6.32562510990628e-05
+842.8000000001234 6.324986679434926e-05
+842.9000000001234 6.324348269607748e-05
+843.0000000001235 6.32370988035919e-05
+843.1000000001235 6.321924445333873e-05
+843.2000000001235 6.320139207309808e-05
+843.3000000001235 6.318354166241934e-05
+843.4000000001236 6.316569322058244e-05
+843.5000000001236 6.314784674702754e-05
+843.6000000001236 6.315557650484693e-05
+843.7000000001236 6.316319349995313e-05
+843.8000000001236 6.317075491685203e-05
+843.9000000001237 6.317831373096773e-05
+844.0000000001237 6.318591870530252e-05
+844.1000000001237 6.317863696217159e-05
+844.2000000001237 6.317148872110485e-05
+844.3000000001238 6.31645099728436e-05
+844.4000000001238 6.315773245581584e-05
+844.5000000001238 6.31511836589467e-05
+844.6000000001238 6.315774729298391e-05
+844.7000000001239 6.316457943830588e-05
+844.8000000001239 6.317169502605487e-05
+844.9000000001239 6.317910475626832e-05
+845.0000000001239 6.318681509639335e-05
+845.1000000001239 6.319744484192752e-05
+845.200000000124 6.32083762136599e-05
+845.300000000124 6.32196030021356e-05
+845.400000000124 6.323111475276039e-05
+845.500000000124 6.324289676198339e-05
+845.600000000124 6.324207598939533e-05
+845.7000000001241 6.32414835388087e-05
+845.8000000001241 6.324109181100236e-05
+845.9000000001241 6.324086896584531e-05
+846.0000000001241 6.324077892202589e-05
+846.1000000001242 6.322659015225966e-05
+846.2000000001242 6.321244985859858e-05
+846.3000000001242 6.319830923599994e-05
+846.4000000001242 6.318411528561634e-05
+846.5000000001243 6.316981081993789e-05
+846.6000000001243 6.318103871517056e-05
+846.7000000001243 6.319226554769664e-05
+846.8000000001243 6.320349131803056e-05
+846.9000000001244 6.321471602661653e-05
+847.0000000001244 6.322593967374515e-05
+847.1000000001244 6.322369126859239e-05
+847.2000000001244 6.322144239091907e-05
+847.3000000001244 6.321919304128794e-05
+847.4000000001245 6.32169432204529e-05
+847.5000000001245 6.321469292887813e-05
+847.6000000001245 6.319959411272827e-05
+847.7000000001245 6.318449574026336e-05
+847.8000000001246 6.316939781039509e-05
+847.9000000001246 6.315430032205067e-05
+848.0000000001246 6.313920327419186e-05
+848.1000000001246 6.313803915160095e-05
+848.2000000001246 6.313687448178951e-05
+848.3000000001247 6.313570926340403e-05
+848.4000000001247 6.313454349517273e-05
+848.5000000001247 6.31333771757724e-05
+848.6000000001247 6.313238225906383e-05
+848.7000000001248 6.313149732211176e-05
+848.8000000001248 6.313066518149363e-05
+848.9000000001248 6.312983289515898e-05
+849.0000000001248 6.312895176158332e-05
+849.1000000001249 6.312625088565922e-05
+849.2000000001249 6.312341659893536e-05
+849.3000000001249 6.312041293346061e-05
+849.4000000001249 6.311720816444019e-05
+849.5000000001249 6.31137748095502e-05
+849.600000000125 6.311008963094252e-05
+849.700000000125 6.310613362837016e-05
+849.800000000125 6.310189204192627e-05
+849.900000000125 6.309735435116136e-05
+850.000000000125 6.309251427349927e-05
+850.1000000001251 6.308751571246447e-05
+850.2000000001251 6.308221475537825e-05
+850.3000000001251 6.307661782310204e-05
+850.4000000001251 6.307073556803529e-05
+850.5000000001252 6.306458287200078e-05
+850.6000000001252 6.305817884402416e-05
+850.7000000001252 6.305154681423242e-05
+850.8000000001252 6.304471433729117e-05
+850.9000000001253 6.30377131873669e-05
+851.0000000001253 6.303057935543221e-05
+851.1000000001253 6.301065203530591e-05
+851.2000000001253 6.299067953217271e-05
+851.3000000001254 6.297071047138195e-05
+851.4000000001254 6.295079764222828e-05
+851.5000000001254 6.293099799200748e-05
+851.6000000001254 6.293700365107576e-05
+851.7000000001254 6.294300657860498e-05
+851.8000000001255 6.29490067759507e-05
+851.9000000001255 6.295500424448353e-05
+852.0000000001255 6.29609989855071e-05
+852.1000000001255 6.29534227426951e-05
+852.2000000001256 6.294584673002053e-05
+852.3000000001256 6.293827094891627e-05
+852.4000000001256 6.293069540076423e-05
+852.5000000001256 6.292312008704207e-05
+852.6000000001256 6.292834573301245e-05
+852.7000000001257 6.293356853179067e-05
+852.8000000001257 6.293878848306546e-05
+852.9000000001257 6.294400558625273e-05
+853.0000000001257 6.294921984087911e-05
+853.1000000001258 6.294355287135927e-05
+853.2000000001258 6.293788571397678e-05
+853.3000000001258 6.293221836815277e-05
+853.4000000001258 6.292655083317208e-05
+853.5000000001259 6.292088310843069e-05
+853.6000000001259 6.290225617140667e-05
+853.7000000001259 6.288352130532051e-05
+853.8000000001259 6.286473555603282e-05
+853.9000000001259 6.28459516871102e-05
+854.000000000126 6.282721818539312e-05
+854.100000000126 6.281876479746319e-05
+854.200000000126 6.281044407172722e-05
+854.300000000126 6.280229178487892e-05
+854.400000000126 6.279433948306064e-05
+854.5000000001261 6.278661448486659e-05
+854.6000000001261 6.279191285594585e-05
+854.7000000001261 6.279747757164814e-05
+854.8000000001261 6.28033234600516e-05
+854.9000000001262 6.28094611419783e-05
+855.0000000001262 6.281589702951116e-05
+855.1000000001262 6.280923261726838e-05
+855.2000000001262 6.280286904733637e-05
+855.3000000001263 6.279679990444e-05
+855.4000000001263 6.279101456487264e-05
+855.5000000001263 6.278549819796699e-05
+855.6000000001263 6.278023176496619e-05
+855.7000000001264 6.277519202354365e-05
+855.8000000001264 6.277035153151888e-05
+855.9000000001264 6.276567864556876e-05
+856.0000000001264 6.276113752253891e-05
+856.1000000001264 6.275929299199258e-05
+856.2000000001265 6.275749566995614e-05
+856.3000000001265 6.275569712074254e-05
+856.4000000001265 6.275384470601003e-05
+856.5000000001265 6.27518815852125e-05
+856.6000000001266 6.274974671706206e-05
+856.7000000001266 6.274761107458053e-05
+856.8000000001266 6.274547465829967e-05
+856.9000000001266 6.27433374688124e-05
+857.0000000001266 6.274119950676762e-05
+857.1000000001267 6.273519863106011e-05
+857.2000000001267 6.272919733674246e-05
+857.3000000001267 6.272319562447569e-05
+857.4000000001267 6.271719349484722e-05
+857.5000000001268 6.271119094858372e-05
+857.6000000001268 6.271793294593785e-05
+857.7000000001268 6.272467208554715e-05
+857.8000000001268 6.273140836576009e-05
+857.9000000001269 6.273814178500468e-05
+858.0000000001269 6.274487234171164e-05
+858.1000000001269 6.274196793964948e-05
+858.2000000001269 6.273906266787973e-05
+858.3000000001269 6.27361565250877e-05
+858.400000000127 6.27332495098429e-05
+858.500000000127 6.27303416208612e-05
+858.600000000127 6.27276037094715e-05
+858.700000000127 6.272497473392684e-05
+858.800000000127 6.272239787138044e-05
+858.9000000001271 6.271982051921478e-05
+859.0000000001271 6.27171942933545e-05
+859.1000000001271 6.271352983238514e-05
+859.2000000001271 6.270973249228082e-05
+859.3000000001272 6.270576654746623e-05
+859.4000000001272 6.270160048982722e-05
+859.5000000001272 6.269720702783312e-05
+859.6000000001272 6.269256308800322e-05
+859.7000000001273 6.268764980781437e-05
+859.8000000001273 6.268245253815874e-05
+859.9000000001273 6.267696084180905e-05
+860.0000000001273 6.267116849217062e-05
+860.1000000001274 6.266374980377677e-05
+860.2000000001274 6.26560307606321e-05
+860.3000000001274 6.264801777523747e-05
+860.4000000001274 6.263972146185728e-05
+860.5000000001274 6.26311566332676e-05
+860.6000000001275 6.262234229798963e-05
+860.7000000001275 6.261330165321016e-05
+860.8000000001275 6.260406208776558e-05
+860.9000000001275 6.259465517598755e-05
+861.0000000001276 6.258511667415517e-05
+861.1000000001276 6.257643679886159e-05
+861.2000000001276 6.256770909236657e-05
+861.3000000001276 6.255898183643417e-05
+861.4000000001276 6.255030748484816e-05
+861.5000000001277 6.25417426609824e-05
+861.6000000001277 6.253334815269282e-05
+861.7000000001277 6.252495359150377e-05
+861.8000000001277 6.251655897884304e-05
+861.9000000001278 6.250816431589001e-05
+862.0000000001278 6.249976960405218e-05
+862.1000000001278 6.25045076114406e-05
+862.2000000001278 6.250924222153206e-05
+862.3000000001279 6.251397343556274e-05
+862.4000000001279 6.251870125485015e-05
+862.5000000001279 6.252342568071028e-05
+862.6000000001279 6.25154660952961e-05
+862.700000000128 6.250750634629649e-05
+862.800000000128 6.249954643304668e-05
+862.900000000128 6.249158635500494e-05
+863.000000000128 6.248362611161761e-05
+863.100000000128 6.247218700299665e-05
+863.2000000001281 6.246074860517157e-05
+863.3000000001281 6.244931091761727e-05
+863.4000000001281 6.243787393954317e-05
+863.5000000001281 6.242643767048087e-05
+863.6000000001281 6.241483206098075e-05
+863.7000000001282 6.240311792018085e-05
+863.8000000001282 6.239135182814594e-05
+863.9000000001282 6.237958613916858e-05
+864.0000000001282 6.23678689854266e-05
+864.1000000001283 6.235972281914275e-05
+864.2000000001283 6.23517077111174e-05
+864.3000000001283 6.234385917838681e-05
+864.4000000001283 6.23362085389793e-05
+864.5000000001284 6.232878291460017e-05
+864.6000000001284 6.232160523667642e-05
+864.7000000001284 6.231469424645187e-05
+864.8000000001284 6.230806449513623e-05
+864.9000000001284 6.230172634900862e-05
+865.0000000001285 6.229568599213124e-05
+865.1000000001285 6.228754983986672e-05
+865.2000000001285 6.227971184500383e-05
+865.3000000001285 6.227216562415956e-05
+865.4000000001286 6.226490062080478e-05
+865.5000000001286 6.225790210827775e-05
+865.6000000001286 6.225115118872182e-05
+865.7000000001286 6.224462479768971e-05
+865.8000000001286 6.223829570925353e-05
+865.9000000001287 6.223213253426417e-05
+866.0000000001287 6.222609972287626e-05
+866.1000000001287 6.221896544342324e-05
+866.2000000001287 6.221187799045721e-05
+866.3000000001288 6.220478934158397e-05
+866.4000000001288 6.219764732512155e-05
+866.5000000001288 6.21903956226528e-05
+866.6000000001288 6.218297377218823e-05
+866.7000000001289 6.217555123146105e-05
+866.8000000001289 6.216812800107123e-05
+866.9000000001289 6.2160704081679e-05
+867.0000000001289 6.215327947400827e-05
+867.100000000129 6.214874708400381e-05
+867.200000000129 6.214421342687969e-05
+867.300000000129 6.213967850320552e-05
+867.400000000129 6.213514231341325e-05
+867.500000000129 6.213060485805634e-05
+867.6000000001291 6.21260661402997e-05
+867.7000000001291 6.212152615599561e-05
+867.8000000001291 6.211698490364425e-05
+867.9000000001291 6.211244238176062e-05
+868.0000000001291 6.210789858880636e-05
+868.1000000001292 6.210014294271796e-05
+868.2000000001292 6.209238645248843e-05
+868.3000000001292 6.208462911688548e-05
+868.4000000001292 6.207687093469256e-05
+868.5000000001293 6.206911190457883e-05
+868.6000000001293 6.206169010775111e-05
+868.7000000001293 6.205448468377489e-05
+868.8000000001293 6.204738315981603e-05
+868.9000000001294 6.204028144592127e-05
+869.0000000001294 6.203308382888389e-05
+869.1000000001294 6.202665238520577e-05
+869.2000000001294 6.201995851267581e-05
+869.3000000001294 6.201293158651372e-05
+869.4000000001295 6.200550933865346e-05
+869.5000000001295 6.199763785535318e-05
+869.6000000001295 6.200184545974596e-05
+869.7000000001295 6.20055174396127e-05
+869.8000000001296 6.200862458433447e-05
+869.9000000001296 6.201114600640315e-05
+870.0000000001296 6.201306914523379e-05
+870.1000000001296 6.200182440623648e-05
+870.2000000001296 6.198998580538964e-05
+870.3000000001297 6.197756612897763e-05
+870.4000000001297 6.196458647932423e-05
+870.5000000001297 6.195107626605978e-05
+870.6000000001297 6.193707319922588e-05
+870.7000000001298 6.192262326911128e-05
+870.8000000001298 6.1907780745568e-05
+870.9000000001298 6.189260816466718e-05
+871.0000000001298 6.187717631768551e-05
+871.1000000001299 6.185987638747417e-05
+871.2000000001299 6.184248463993073e-05
+871.3000000001299 6.182509656695978e-05
+871.4000000001299 6.180781586323292e-05
+871.50000000013 6.179075441652495e-05
+871.60000000013 6.177403484778924e-05
+871.70000000013 6.17573194394855e-05
+871.80000000013 6.174060734266116e-05
+871.90000000013 6.172389777175599e-05
+872.0000000001301 6.170719000458967e-05
+872.1000000001301 6.168960224726077e-05
+872.2000000001301 6.167201504091848e-05
+872.3000000001301 6.165442785353213e-05
+872.4000000001301 6.163684021617369e-05
+872.5000000001302 6.16192517230016e-05
+872.6000000001302 6.160165948934877e-05
+872.7000000001302 6.15840641495035e-05
+872.8000000001302 6.1566466333792e-05
+872.9000000001303 6.15488666721849e-05
+873.0000000001303 6.153126579385046e-05
+873.1000000001303 6.15152218347361e-05
+873.2000000001303 6.149917706053895e-05
+873.3000000001304 6.148313209901161e-05
+873.4000000001304 6.146708757743262e-05
+873.5000000001304 6.145104412247913e-05
+873.6000000001304 6.143475109272318e-05
+873.7000000001304 6.141829900000951e-05
+873.8000000001305 6.140177209111404e-05
+873.9000000001305 6.13852483504166e-05
+874.0000000001305 6.13687995066345e-05
+874.1000000001305 6.13503783955469e-05
+874.2000000001306 6.133215808298991e-05
+874.3000000001306 6.131419155122622e-05
+874.4000000001306 6.129652555226022e-05
+874.5000000001306 6.127920061758494e-05
+874.6000000001306 6.126225106713365e-05
+874.7000000001307 6.124570152473563e-05
+874.8000000001307 6.122957288992679e-05
+874.9000000001307 6.121387981626997e-05
+875.0000000001307 6.119863071915206e-05
+875.1000000001308 6.118556335096899e-05
+875.2000000001308 6.117293734601574e-05
+875.3000000001308 6.116074248731522e-05
+875.4000000001308 6.114896234626415e-05
+875.5000000001309 6.1137574287954e-05
+875.6000000001309 6.112654947598878e-05
+875.7000000001309 6.111585636349571e-05
+875.8000000001309 6.110545474752264e-05
+875.900000000131 6.109529829744322e-05
+876.000000000131 6.108533455916239e-05
+876.100000000131 6.107592925336002e-05
+876.200000000131 6.106659297801875e-05
+876.300000000131 6.105725493248579e-05
+876.4000000001311 6.104783820711881e-05
+876.5000000001311 6.103825978895053e-05
+876.6000000001311 6.102843056742868e-05
+876.7000000001311 6.101860034555767e-05
+876.8000000001311 6.100876912337271e-05
+876.9000000001312 6.099893690084525e-05
+877.0000000001312 6.098910367794303e-05
+877.1000000001312 6.097648139798165e-05
+877.2000000001312 6.0963858871429406e-05
+877.3000000001313 6.095123609837975e-05
+877.4000000001313 6.093861307886265e-05
+877.5000000001313 6.0925989812971546e-05
+877.6000000001313 6.0913366300736296e-05
+877.7000000001314 6.090074254218666e-05
+877.8000000001314 6.088811853735254e-05
+877.9000000001314 6.087549428632728e-05
+878.0000000001314 6.0862869789079026e-05
+878.1000000001314 6.085166317650432e-05
+878.2000000001315 6.0840455757721744e-05
+878.3000000001315 6.082924753279019e-05
+878.4000000001315 6.081803850164167e-05
+878.5000000001315 6.080682866439827e-05
+878.6000000001316 6.0795449661730366e-05
+878.7000000001316 6.0783961704666075e-05
+878.8000000001316 6.077242081457311e-05
+878.9000000001316 6.076087882647173e-05
+879.0000000001316 6.074938339257506e-05
+879.1000000001317 6.0737281905229715e-05
+879.2000000001317 6.0725309704865376e-05
+879.3000000001317 6.0713501915223e-05
+879.4000000001317 6.0701889492737116e-05
+879.5000000001318 6.0690499231302406e-05
+879.6000000001318 6.067935627582025e-05
+879.7000000001318 6.066847821190229e-05
+879.8000000001318 6.0657878538479154e-05
+879.9000000001319 6.064756667222572e-05
+880.0000000001319 6.063754795156339e-05
+880.1000000001319 6.062795291413553e-05
+880.2000000001319 6.061864943936951e-05
+880.300000000132 6.0609630654747265e-05
+880.400000000132 6.060088562332117e-05
+880.500000000132 6.0592399346793087e-05
+880.600000000132 6.058415276861861e-05
+880.700000000132 6.057612277640319e-05
+880.8000000001321 6.056828220456811e-05
+880.9000000001321 6.056059983706828e-05
+881.0000000001321 6.0553040409699486e-05
+881.1000000001321 6.054525890269893e-05
+881.2000000001321 6.0537517752849776e-05
+881.3000000001322 6.052976956713445e-05
+881.4000000001322 6.052196291640365e-05
+881.5000000001322 6.051404233827577e-05
+881.6000000001322 6.049368526376777e-05
+881.7000000001323 6.047332433687392e-05
+881.8000000001323 6.045296079470575e-05
+881.9000000001323 6.043259587260244e-05
+882.0000000001323 6.0412230804352725e-05
+882.1000000001324 6.0416408304051985e-05
+882.2000000001324 6.0420581212038886e-05
+882.3000000001324 6.042475075656516e-05
+882.4000000001324 6.042891816623354e-05
+882.5000000001324 6.0433084669727036e-05
+882.6000000001325 6.042501231417445e-05
+882.7000000001325 6.041694454114812e-05
+882.8000000001325 6.040887990195489e-05
+882.9000000001325 6.040081701047693e-05
+883.0000000001326 6.039275454280631e-05
+883.1000000001326 6.038394480110756e-05
+883.2000000001326 6.037513288924414e-05
+883.3000000001326 6.03663176702953e-05
+883.4000000001326 6.035749806922284e-05
+883.5000000001327 6.034867307338618e-05
+883.6000000001327 6.033975700311017e-05
+883.7000000001327 6.0330779268091346e-05
+883.8000000001327 6.032176723346554e-05
+883.9000000001328 6.0312746221261095e-05
+884.0000000001328 6.03037395119401e-05
+884.1000000001328 6.0294274202225076e-05
+884.2000000001328 6.0284863794629257e-05
+884.3000000001329 6.027552545411993e-05
+884.4000000001329 6.026627431096804e-05
+884.5000000001329 6.0257123462737195e-05
+884.6000000001329 6.024808397582436e-05
+884.700000000133 6.02391683254529e-05
+884.800000000133 6.023038453117441e-05
+884.900000000133 6.022173864771444e-05
+885.000000000133 6.021323476697892e-05
+885.100000000133 6.019353449265615e-05
+885.2000000001331 6.0173981270273304e-05
+885.3000000001331 6.0154573232791564e-05
+885.4000000001331 6.013530655944932e-05
+885.5000000001331 6.0116175479717425e-05
+885.6000000001332 6.009716979747019e-05
+885.7000000001332 6.007827388407772e-05
+885.8000000001332 6.0059474955285024e-05
+885.9000000001332 6.004075810871488e-05
+886.0000000001332 6.002210632693154e-05
+886.1000000001333 6.0012924033362434e-05
+886.2000000001333 6.000376420532553e-05
+886.3000000001333 5.999460350150513e-05
+886.4000000001333 5.998541646443393e-05
+886.5000000001334 5.9976175521982965e-05
+886.6000000001334 5.997902947315354e-05
+886.7000000001334 5.998188207533387e-05
+886.8000000001334 5.9984732717546624e-05
+886.9000000001334 5.9987580788576215e-05
+887.0000000001335 5.999042567733064e-05
+887.1000000001335 5.998192894556594e-05
+887.2000000001335 5.99734309710296e-05
+887.3000000001335 5.99649311430812e-05
+887.4000000001336 5.99564288513697e-05
+887.5000000001336 5.994792348581709e-05
+887.6000000001336 5.9927256343480816e-05
+887.7000000001336 5.990658836404644e-05
+887.8000000001337 5.98859189410233e-05
+887.9000000001337 5.9865247468855876e-05
+888.0000000001337 5.984457334293697e-05
+888.1000000001337 5.983586398360902e-05
+888.2000000001337 5.982714735306175e-05
+888.3000000001338 5.981842284490921e-05
+888.4000000001338 5.980968985332854e-05
+888.5000000001338 5.980094777296679e-05
+888.6000000001338 5.981704687605719e-05
+888.7000000001339 5.983349860816939e-05
+888.8000000001339 5.9850114065519885e-05
+888.9000000001339 5.986671827084748e-05
+889.0000000001339 5.9883150189083943e-05
+889.100000000134 5.9859449754514776e-05
+889.200000000134 5.9835309474682404e-05
+889.300000000134 5.981061138327163e-05
+889.400000000134 5.9785251817096104e-05
+889.500000000134 5.975914139127765e-05
+889.6000000001341 5.9744323498915965e-05
+889.7000000001341 5.9728608938842514e-05
+889.8000000001341 5.9711949438946264e-05
+889.9000000001341 5.969431081258907e-05
+890.0000000001342 5.967567294214587e-05
+890.1000000001342 5.964826757795479e-05
+890.2000000001342 5.961986876368843e-05
+890.3000000001342 5.959049885004526e-05
+890.4000000001342 5.9560194149730336e-05
+890.5000000001343 5.952900490074068e-05
+890.6000000001343 5.952116380485462e-05
+890.7000000001343 5.951256503520809e-05
+890.8000000001343 5.950329874565627e-05
+890.9000000001344 5.949346908300141e-05
+891.0000000001344 5.948319417223265e-05
+891.1000000001344 5.9448571335087995e-05
+891.2000000001344 5.941379933700645e-05
+891.3000000001344 5.937903814894409e-05
+891.4000000001345 5.9344461386114806e-05
+891.5000000001345 5.93102562730191e-05
+891.6000000001345 5.9276621166135875e-05
+891.7000000001345 5.9242991306906156e-05
+891.8000000001346 5.9209367304835644e-05
+891.9000000001346 5.9175749768055355e-05
+892.0000000001346 5.914213930342029e-05
+892.1000000001346 5.908892787024988e-05
+892.2000000001347 5.903574615654494e-05
+892.3000000001347 5.898259475629303e-05
+892.4000000001347 5.892947426149786e-05
+892.5000000001347 5.887638526180709e-05
+892.6000000001347 5.8775387572825456e-05
+892.7000000001348 5.8674469929475474e-05
+892.8000000001348 5.8573632891911536e-05
+892.9000000001348 5.8472877016251124e-05
+893.0000000001348 5.837220285482277e-05
+893.1000000001349 5.8312868905242116e-05
+893.2000000001349 5.82535704774413e-05
+893.3000000001349 5.819430814713775e-05
+893.4000000001349 5.813508248769943e-05
+893.500000000135 5.807589407039551e-05
+893.600000000135 5.80637622992097e-05
+893.700000000135 5.8051169837992815e-05
+893.800000000135 5.80383531757506e-05
+893.900000000135 5.802553106093539e-05
+894.0000000001351 5.8012904512532825e-05
+894.1000000001351 5.791222064234965e-05
+894.2000000001351 5.7812165753186826e-05
+894.3000000001351 5.7712884565406206e-05
+894.4000000001352 5.761450336382542e-05
+894.5000000001352 5.7517130156464286e-05
+894.6000000001352 5.734958359997569e-05
+894.7000000001352 5.7183269359199656e-05
+894.8000000001352 5.7018238136715806e-05
+894.9000000001353 5.6854522821063225e-05
+895.0000000001353 5.669213874088773e-05
+895.1000000001353 5.648886028862081e-05
+895.2000000001353 5.628688377508579e-05
+895.3000000001354 5.608617068814513e-05
+895.4000000001354 5.588666605871261e-05
+895.5000000001354 5.568829875884194e-05
+895.6000000001354 5.555021411042586e-05
+895.7000000001354 5.541306116724804e-05
+895.8000000001355 5.5276725377071496e-05
+895.9000000001355 5.5141076590870696e-05
+896.0000000001355 5.5005969261843996e-05
+896.1000000001355 5.4809999177355346e-05
+896.2000000001356 5.461425736855993e-05
+896.3000000001356 5.441855331757589e-05
+896.4000000001356 5.4222682839554625e-05
+896.5000000001356 5.402642838541096e-05
+896.6000000001357 5.3947894308929825e-05
+896.7000000001357 5.3869379042241484e-05
+896.8000000001357 5.379088203653012e-05
+896.9000000001357 5.371240274632542e-05
+897.0000000001357 5.363394063007492e-05
+897.1000000001358 5.375451360275073e-05
+897.2000000001358 5.387503738525273e-05
+897.3000000001358 5.399551140243888e-05
+897.4000000001358 5.411593507454462e-05
+897.5000000001359 5.4236307816943085e-05
+897.6000000001359 5.430937267746787e-05
+897.7000000001359 5.438240222803741e-05
+897.8000000001359 5.445539588856692e-05
+897.900000000136 5.452835307586394e-05
+898.000000000136 5.460127320267052e-05
+898.100000000136 5.414438321940515e-05
+898.200000000136 5.3687620345593493e-05
+898.300000000136 5.323098429128648e-05
+898.4000000001361 5.277447478534494e-05
+898.5000000001361 5.23180915746038e-05
+898.6000000001361 5.170906451331427e-05
+898.7000000001361 5.110055768192512e-05
+898.8000000001362 5.049237620628945e-05
+898.9000000001362 4.988434747476909e-05
+899.0000000001362 4.9276320308411245e-05
+899.1000000001362 4.9539186977088836e-05
+899.2000000001362 4.9801537850646765e-05
+899.3000000001363 5.006325283756535e-05
+899.4000000001363 5.032422305146094e-05
+899.5000000001363 5.058435116995372e-05
+899.6000000001363 5.096130181064459e-05
+899.7000000001364 5.133719215403358e-05
+899.8000000001364 5.171195372857825e-05
+899.9000000001364 5.208553070437871e-05
+900.0000000001364 5.245788040102097e-05
+900.1000000001364 5.230956361707271e-05
+900.2000000001365 5.216034059103048e-05
+900.3000000001365 5.201024035360808e-05
+900.4000000001365 5.185930567101654e-05
+900.5000000001365 5.170759283984188e-05
+900.6000000001366 5.173116347724008e-05
+900.7000000001366 5.175394141811965e-05
+900.8000000001366 5.177601701946104e-05
+900.9000000001366 5.179749465282339e-05
+901.0000000001367 5.181849272750372e-05
+901.1000000001367 5.192370425894779e-05
+901.2000000001367 5.202864196162688e-05
+901.3000000001367 5.2133466511401426e-05
+901.4000000001367 5.223835385776091e-05
+901.5000000001368 5.234349536441761e-05
+901.6000000001368 5.2297279004387665e-05
+901.7000000001368 5.225109158910192e-05
+901.8000000001368 5.220493238355232e-05
+901.9000000001369 5.2158800708402906e-05
+902.0000000001369 5.21126959390309e-05
+902.1000000001369 5.2016468568226176e-05
+902.2000000001369 5.192032011794671e-05
+902.300000000137 5.182425010183265e-05
+902.400000000137 5.1728258089119985e-05
+902.500000000137 5.163234370505681e-05
+902.600000000137 5.175734202935186e-05
+902.700000000137 5.188218974302601e-05
+902.8000000001371 5.2006886525035846e-05
+902.9000000001371 5.213143199829558e-05
+903.0000000001371 5.2255825729280674e-05
+903.1000000001371 5.263683017474096e-05
+903.2000000001372 5.301744783698262e-05
+903.3000000001372 5.339767806062834e-05
+903.4000000001372 5.3777520118121895e-05
+903.5000000001372 5.415697320723141e-05
+903.6000000001372 5.439709040445651e-05
+903.7000000001373 5.463685824805459e-05
+903.8000000001373 5.487632608086504e-05
+903.9000000001373 5.5115540498247955e-05
+904.0000000001373 5.535454526513529e-05
+904.1000000001374 5.5280992039674e-05
+904.2000000001374 5.520760721724116e-05
+904.3000000001374 5.513442295945968e-05
+904.4000000001374 5.506146762360772e-05
+904.5000000001374 5.4988765786963744e-05
+904.6000000001375 5.4904827827380736e-05
+904.7000000001375 5.482118597882294e-05
+904.8000000001375 5.473785165169075e-05
+904.9000000001375 5.465483246373823e-05
+905.0000000001376 5.4572132268662906e-05
+905.1000000001376 5.4546719406092345e-05
+905.2000000001376 5.452156990421595e-05
+905.3000000001376 5.449667729608832e-05
+905.4000000001377 5.447203141859928e-05
+905.5000000001377 5.4447618420110486e-05
+905.6000000001377 5.436613295761044e-05
+905.7000000001377 5.4284895263789464e-05
+905.8000000001377 5.420388082797167e-05
+905.9000000001378 5.4123061650894205e-05
+906.0000000001378 5.404240627053375e-05
+906.1000000001378 5.3743686166133526e-05
+906.2000000001378 5.3445255026709136e-05
+906.3000000001379 5.3147071153277644e-05
+906.4000000001379 5.284909022030259e-05
+906.5000000001379 5.255126537367398e-05
+906.6000000001379 5.2230734164667875e-05
+906.700000000138 5.1910474503347593e-05
+906.800000000138 5.159048637389462e-05
+906.900000000138 5.1270769760476384e-05
+907.000000000138 5.095132464774598e-05
+907.100000000138 5.082550481384241e-05
+907.2000000001381 5.069977960603984e-05
+907.3000000001381 5.057414902222124e-05
+907.4000000001381 5.044861306050563e-05
+907.5000000001381 5.0323171718930056e-05
+907.6000000001382 5.0265951428068194e-05
+907.7000000001382 5.020876302506137e-05
+907.8000000001382 5.015160650844481e-05
+907.9000000001382 5.009448187657419e-05
+908.0000000001382 5.003738912831702e-05
+908.1000000001383 5.005771243836226e-05
+908.2000000001383 5.007799281020006e-05
+908.3000000001383 5.0098230249674904e-05
+908.4000000001383 5.0118424762509484e-05
+908.5000000001384 5.013857635439063e-05
+908.6000000001384 5.013601764158696e-05
+908.7000000001384 5.013339474754759e-05
+908.8000000001384 5.013073038816146e-05
+908.9000000001384 5.012804559375241e-05
+909.0000000001385 5.012535970937008e-05
+909.1000000001385 5.0167979945330376e-05
+909.2000000001385 5.021058665446659e-05
+909.3000000001385 5.0253194310174973e-05
+909.4000000001386 5.02958157470306e-05
+909.5000000001386 5.0338462153531934e-05
+909.6000000001386 5.035865650260695e-05
+909.7000000001386 5.0378915285762266e-05
+909.8000000001387 5.039924455758696e-05
+909.9000000001387 5.0419648690261825e-05
+910.0000000001387 5.044013037000056e-05
+910.1000000001387 5.033756871940161e-05
+910.2000000001387 5.023520224360615e-05
+910.3000000001388 5.01330276864171e-05
+910.4000000001388 5.0031040135051745e-05
+910.5000000001388 4.992923303754818e-05
+910.6000000001388 5.00513916067565e-05
+910.7000000001389 5.017350444020734e-05
+910.8000000001389 5.029556122370197e-05
+910.9000000001389 5.041754984370581e-05
+911.0000000001389 5.053945636669326e-05
+911.100000000139 5.0583083371742236e-05
+911.200000000139 5.0626666263187836e-05
+911.300000000139 5.0670185530185576e-05
+911.400000000139 5.071361989306088e-05
+911.500000000139 5.075694629553377e-05
+911.6000000001391 5.0610794936608786e-05
+911.7000000001391 5.046475629148298e-05
+911.8000000001391 5.0318830370604926e-05
+911.9000000001391 5.017301718459509e-05
+912.0000000001392 5.0027316744559726e-05
+912.1000000001392 5.014907694904201e-05
+912.2000000001392 5.027070396896748e-05
+912.3000000001392 5.0392197786814245e-05
+912.4000000001392 5.0513558384944906e-05
+912.5000000001393 5.0634785744450004e-05
+912.6000000001393 5.033457722143573e-05
+912.7000000001393 5.003461896850245e-05
+912.8000000001393 4.973491101957635e-05
+912.9000000001394 4.9435453408414496e-05
+913.0000000001394 4.9136246168782636e-05
+913.1000000001394 4.8802602385512265e-05
+913.2000000001394 4.84692592009507e-05
+913.3000000001394 4.8136216637643054e-05
+913.4000000001395 4.7803474718191924e-05
+913.5000000001395 4.747103346668113e-05
+913.6000000001395 4.7712745928852675e-05
+913.7000000001395 4.795424115322645e-05
+913.8000000001396 4.819549791996701e-05
+913.9000000001396 4.843649619654119e-05
+914.0000000001396 4.8677217179754705e-05
+914.1000000001396 4.903696093987255e-05
+914.2000000001397 4.939624854984836e-05
+914.3000000001397 4.975506468040265e-05
+914.4000000001397 5.011339527767568e-05
+914.5000000001397 5.0471227623102426e-05
+914.6000000001397 5.033453433542135e-05
+914.7000000001398 5.019784948949782e-05
+914.8000000001398 5.0061168778863024e-05
+914.9000000001398 4.992448957744213e-05
+915.0000000001398 4.9787810915751665e-05
+915.1000000001399 4.922429427194912e-05
+915.2000000001399 4.866124637766819e-05
+915.3000000001399 4.80986740330478e-05
+915.4000000001399 4.753658544477228e-05
+915.50000000014 4.6974990137285334e-05
+915.60000000014 4.710175868889949e-05
+915.70000000014 4.722827875210563e-05
+915.80000000014 4.735455889401599e-05
+915.90000000014 4.7480609423682525e-05
+916.0000000001401 4.760644241481932e-05
+916.1000000001401 4.8124333305441605e-05
+916.2000000001401 4.8641600145147754e-05
+916.3000000001401 4.915826042206947e-05
+916.4000000001402 4.967433410195601e-05
+916.5000000001402 5.018984371425315e-05
+916.6000000001402 5.0194506960279245e-05
+916.7000000001402 5.019912935038367e-05
+916.8000000001402 5.0203710883859096e-05
+916.9000000001403 5.0208251560197814e-05
+917.0000000001403 5.0212751377762594e-05
+917.1000000001403 4.982611080840021e-05
+917.2000000001403 4.943988440356146e-05
+917.3000000001404 4.9054072252992274e-05
+917.4000000001404 4.866867444619285e-05
+917.5000000001404 4.8283691073049614e-05
+917.6000000001404 4.8115029914643905e-05
+917.7000000001404 4.7946532633688184e-05
+917.8000000001405 4.7778200043795414e-05
+917.9000000001405 4.761003299561045e-05
+918.0000000001405 4.7442032377314524e-05
+918.1000000001405 4.7707009330077186e-05
+918.2000000001406 4.7971672837378225e-05
+918.3000000001406 4.8236023970313395e-05
+918.4000000001406 4.8500063872225996e-05
+918.5000000001406 4.8763793760276034e-05
+918.6000000001407 4.903801889432023e-05
+918.7000000001407 4.9311964697905925e-05
+918.8000000001407 4.9585608450560084e-05
+918.9000000001407 4.985892858520208e-05
+919.0000000001407 5.01319047347898e-05
+919.1000000001408 5.0188617284015625e-05
+919.2000000001408 5.024517668626703e-05
+919.3000000001408 5.030156737839008e-05
+919.4000000001408 5.035777541938947e-05
+919.5000000001409 5.0413788499781784e-05
+919.6000000001409 5.038419692356329e-05
+919.7000000001409 5.035449293021515e-05
+919.8000000001409 5.0324671312288515e-05
+919.900000000141 5.029472856392065e-05
+920.000000000141 5.026466287660819e-05
+920.100000000141 5.0385778279165174e-05
+920.200000000141 5.050660327703064e-05
+920.300000000141 5.062714002975755e-05
+920.4000000001411 5.074739243332558e-05
+920.5000000001411 5.086736613982109e-05
+920.6000000001411 5.082786665818576e-05
+920.7000000001411 5.078828663306229e-05
+920.8000000001412 5.074863786766213e-05
+920.9000000001412 5.070893383300808e-05
+921.0000000001412 5.0669189661299726e-05
+921.1000000001412 5.050544902661807e-05
+921.2000000001412 5.034188479003693e-05
+921.3000000001413 5.017851693694312e-05
+921.4000000001413 5.001536687565859e-05
+921.5000000001413 4.9852457410877624e-05
+921.6000000001413 4.9805783126949385e-05
+921.7000000001414 4.975913217823231e-05
+921.8000000001414 4.971250559515739e-05
+921.9000000001414 4.9665904252918637e-05
+922.0000000001414 4.961932887202788e-05
+922.1000000001414 4.970098795991751e-05
+922.2000000001415 4.978249694871115e-05
+922.3000000001415 4.986385616461256e-05
+922.4000000001415 4.994506578317664e-05
+922.5000000001415 5.002612582732988e-05
+922.6000000001416 4.998140834229898e-05
+922.7000000001416 4.993671982011732e-05
+922.8000000001416 4.989205852903286e-05
+922.9000000001416 4.98474227939714e-05
+923.0000000001417 4.9802810996372944e-05
+923.1000000001417 4.972791063671989e-05
+923.2000000001417 4.965307111670352e-05
+923.3000000001417 4.957829097993217e-05
+923.4000000001417 4.950356882889387e-05
+923.5000000001418 4.9428903324697705e-05
+923.6000000001418 4.933376413900516e-05
+923.7000000001418 4.923887861272776e-05
+923.8000000001418 4.914415541816647e-05
+923.9000000001419 4.904951056222377e-05
+924.0000000001419 4.8954867321388286e-05
+924.1000000001419 4.8871482093201324e-05
+924.2000000001419 4.8787948549428774e-05
+924.300000000142 4.870421121108214e-05
+924.400000000142 4.862022156948548e-05
+924.500000000142 4.853593803143551e-05
+924.600000000142 4.849264494452488e-05
+924.700000000142 4.844894137972879e-05
+924.8000000001421 4.840480796162205e-05
+924.9000000001421 4.836023194500274e-05
+925.0000000001421 4.831520718763198e-05
+925.1000000001421 4.8340420581759e-05
+925.2000000001422 4.836508480598731e-05
+925.3000000001422 4.838921141307112e-05
+925.4000000001422 4.841281855672782e-05
+925.5000000001422 4.84359310080465e-05
+925.6000000001422 4.8438074948111166e-05
+925.7000000001423 4.8439819854513734e-05
+925.8000000001423 4.8441207687484987e-05
+925.9000000001423 4.84422868973037e-05
+926.0000000001423 4.844311242485241e-05
+926.1000000001424 4.842184364707984e-05
+926.2000000001424 4.8400484957123224e-05
+926.3000000001424 4.837911074995626e-05
+926.4000000001424 4.8357801769206295e-05
+926.5000000001424 4.83366450953025e-05
+926.6000000001425 4.8346234492609975e-05
+926.7000000001425 4.835575125627846e-05
+926.8000000001425 4.836519527771662e-05
+926.9000000001425 4.837456634942834e-05
+927.0000000001426 4.838386416403869e-05
+927.1000000001426 4.80893717926184e-05
+927.2000000001426 4.7795325170898914e-05
+927.3000000001426 4.7501723471741274e-05
+927.4000000001427 4.7208565787092415e-05
+927.5000000001427 4.691585113053298e-05
+927.6000000001427 4.6522772629496975e-05
+927.7000000001427 4.613031453950683e-05
+927.8000000001427 4.5738476359920444e-05
+927.9000000001428 4.53472576419891e-05
+928.0000000001428 4.4956657987787114e-05
+928.1000000001428 4.485595931328784e-05
+928.2000000001428 4.475538525022358e-05
+928.3000000001429 4.465493579649283e-05
+928.4000000001429 4.4554610995022427e-05
+928.5000000001429 4.4454410933098074e-05
+928.6000000001429 4.43046771250078e-05
+928.700000000143 4.415534706075563e-05
+928.800000000143 4.400631877436824e-05
+928.900000000143 4.3857498978187725e-05
+929.000000000143 4.3708802935507364e-05
+929.100000000143 4.3473427407455065e-05
+929.2000000001431 4.32381625564041e-05
+929.3000000001431 4.3002950287503445e-05
+929.4000000001431 4.276774099541177e-05
+929.5000000001431 4.253249336758957e-05
+929.6000000001432 4.211887054166407e-05
+929.7000000001432 4.170546814287873e-05
+929.8000000001432 4.129227573729803e-05
+929.9000000001432 4.087929063984984e-05
+930.0000000001432 4.046651756898806e-05
+930.1000000001433 4.009392585250681e-05
+930.2000000001433 3.972149125986846e-05
+930.3000000001433 3.934923735370697e-05
+930.4000000001433 3.897719380336783e-05
+930.5000000001434 3.860539607708399e-05
+930.6000000001434 3.8243700345605375e-05
+930.7000000001434 3.7882316925944954e-05
+930.8000000001434 3.752129551201328e-05
+930.9000000001435 3.716069046989022e-05
+931.0000000001435 3.6800560543265416e-05
+931.1000000001435 3.639927228947097e-05
+931.2000000001435 3.599872604003622e-05
+931.3000000001435 3.559899169091641e-05
+931.4000000001436 3.520014201080503e-05
+931.5000000001436 3.4802252323800475e-05
+931.6000000001436 3.4084940633931796e-05
+931.7000000001436 3.3369115797861566e-05
+931.8000000001437 3.265477727167855e-05
+931.9000000001437 3.194192439666685e-05
+932.0000000001437 3.123055640803229e-05
+932.1000000001437 3.0945491528109775e-05
+932.2000000001437 3.066099170500813e-05
+932.3000000001438 3.0377056696129187e-05
+932.4000000001438 3.009368618938644e-05
+932.5000000001438 2.9810879806887857e-05
+932.6000000001438 2.9836028190040285e-05
+932.7000000001439 2.9861071917336145e-05
+932.8000000001439 2.9886011096643703e-05
+932.9000000001439 2.9910845835640728e-05
+933.0000000001439 2.9935576241121467e-05
+933.100000000144 2.972082295635342e-05
+933.200000000144 2.9506495255188996e-05
+933.300000000144 2.9292592715337467e-05
+933.400000000144 2.9079114914895034e-05
+933.500000000144 2.8866061430748954e-05
+933.6000000001441 2.8159289793404147e-05
+933.7000000001441 2.745397226880578e-05
+933.8000000001441 2.675014969196571e-05
+933.9000000001441 2.604785634694827e-05
+934.0000000001442 2.5347120348200203e-05
+934.1000000001442 2.5072618051091276e-05
+934.2000000001442 2.479877169346122e-05
+934.3000000001442 2.4525599071862148e-05
+934.4000000001442 2.4253114558271218e-05
+934.5000000001443 2.39813292472287e-05
+934.6000000001443 2.4724794319688613e-05
+934.7000000001443 2.546671550836012e-05
+934.8000000001443 2.6207118401959036e-05
+934.9000000001444 2.6946026875800877e-05
+935.0000000001444 2.768346270882629e-05
+935.1000000001444 2.7890247275510908e-05
+935.2000000001444 2.8096794110150494e-05
+935.3000000001445 2.8303104001464524e-05
+935.4000000001445 2.8509174700977928e-05
+935.5000000001445 2.8715000816239144e-05
+935.6000000001445 2.8455613908799103e-05
+935.7000000001445 2.819682765698863e-05
+935.8000000001446 2.793861852399266e-05
+935.9000000001446 2.768096086446836e-05
+936.0000000001446 2.742382705200403e-05
+936.1000000001446 2.7498080563646998e-05
+936.2000000001447 2.757217164857348e-05
+936.3000000001447 2.764606771243685e-05
+936.4000000001447 2.7719732971224192e-05
+936.5000000001447 2.7793128413774995e-05
+936.6000000001447 2.7617569596021035e-05
+936.7000000001448 2.7442318990709135e-05
+936.8000000001448 2.7267376743332943e-05
+936.9000000001448 2.709274299204009e-05
+937.0000000001448 2.6918417869179687e-05
+937.1000000001449 2.7174029588699866e-05
+937.2000000001449 2.742905293645398e-05
+937.3000000001449 2.768348856065146e-05
+937.4000000001449 2.793733712000163e-05
+937.500000000145 2.8190599283268578e-05
+937.600000000145 2.8270118974163284e-05
+937.700000000145 2.834942046843628e-05
+937.800000000145 2.8428504212597424e-05
+937.900000000145 2.8507370656558713e-05
+938.0000000001451 2.8586020253407045e-05
+938.1000000001451 2.868278974456028e-05
+938.2000000001451 2.8779306146154963e-05
+938.3000000001451 2.887556994489993e-05
+938.4000000001452 2.8971581631446945e-05
+938.5000000001452 2.9067341702345037e-05
+938.6000000001452 2.9820726720670263e-05
+938.7000000001452 3.057217741977841e-05
+938.8000000001452 3.1321817261126924e-05
+938.9000000001453 3.206977259025588e-05
+939.0000000001453 3.281617130060918e-05
+939.1000000001453 3.3595176742137005e-05
+939.2000000001453 3.437271811835449e-05
+939.3000000001454 3.5148921706262755e-05
+939.4000000001454 3.5923910419388846e-05
+939.5000000001454 3.669780245873504e-05
+939.6000000001454 3.654308470422277e-05
+939.7000000001455 3.63894105840056e-05
+939.8000000001455 3.623681288476956e-05
+939.9000000001455 3.6085311601174975e-05
+940.0000000001455 3.5934914194503124e-05
+940.1000000001455 3.546999160054962e-05
+940.2000000001456 3.50066373750681e-05
+940.3000000001456 3.454480073924497e-05
+940.4000000001456 3.4084420505182786e-05
+940.5000000001456 3.3625425841462926e-05
+940.6000000001457 3.357448472489428e-05
+940.7000000001457 3.352418428913777e-05
+940.8000000001457 3.3474448993167426e-05
+940.9000000001457 3.342519246751879e-05
+941.0000000001457 3.337631759116985e-05
+941.1000000001458 3.359960813481827e-05
+941.2000000001458 3.3822675942668234e-05
+941.3000000001458 3.404539192929632e-05
+941.4000000001458 3.4267612010664114e-05
+941.5000000001459 3.448917674649386e-05
+941.6000000001459 3.44113703255256e-05
+941.7000000001459 3.4333638110118996e-05
+941.8000000001459 3.425597975120155e-05
+941.900000000146 3.417839490318396e-05
+942.000000000146 3.410088322208582e-05
+942.100000000146 3.3425974119536234e-05
+942.200000000146 3.275211103100207e-05
+942.300000000146 3.207929369349015e-05
+942.4000000001461 3.140752187194813e-05
+942.5000000001461 3.07367953597793e-05
+942.6000000001461 3.023265299318722e-05
+942.7000000001461 2.972928659478745e-05
+942.8000000001462 2.9226695992148887e-05
+942.9000000001462 2.872488103316405e-05
+943.0000000001462 2.8223841588650993e-05
+943.1000000001462 2.857432255966966e-05
+943.2000000001462 2.8924199663877316e-05
+943.3000000001463 2.9273472422226446e-05
+943.4000000001463 2.9622140341467745e-05
+943.5000000001463 2.997020291214075e-05
+943.6000000001463 2.963470489227323e-05
+943.7000000001464 2.9299580426160113e-05
+943.8000000001464 2.8964900043601595e-05
+943.9000000001464 2.863072642480691e-05
+944.0000000001464 2.829711469118662e-05
+944.1000000001465 2.799940336707435e-05
+944.2000000001465 2.7702268341970846e-05
+944.3000000001465 2.7405744536490606e-05
+944.4000000001465 2.710986064405645e-05
+944.5000000001465 2.6814639389228108e-05
+944.6000000001466 2.749755784490043e-05
+944.7000000001466 2.8179713604248367e-05
+944.8000000001466 2.88611458573735e-05
+944.9000000001466 2.9541890376521234e-05
+945.0000000001467 3.0221978932283974e-05
+945.1000000001467 3.0321126829249844e-05
+945.2000000001467 3.0420469247819855e-05
+945.3000000001467 3.052000242613089e-05
+945.4000000001467 3.0619717295041234e-05
+945.5000000001468 3.071959939302942e-05
+945.6000000001468 3.030015154074665e-05
+945.7000000001468 2.9881467555189858e-05
+945.8000000001468 2.9463503490621204e-05
+945.9000000001469 2.904621242328692e-05
+946.0000000001469 2.8629544796958814e-05
+946.1000000001469 2.8763964730373623e-05
+946.2000000001469 2.8898233765462557e-05
+946.300000000147 2.9032295803480532e-05
+946.400000000147 2.916608881663725e-05
+946.500000000147 2.929954474337144e-05
+946.600000000147 2.9678000753961485e-05
+946.700000000147 3.0055919360680497e-05
+946.8000000001471 3.0433299823031065e-05
+946.9000000001471 3.0810141358413335e-05
+947.0000000001471 3.118644313931507e-05
+947.1000000001471 3.1114471841038464e-05
+947.2000000001472 3.104255539066832e-05
+947.3000000001472 3.097069349716093e-05
+947.4000000001472 3.089888584101621e-05
+947.5000000001472 3.082713207308538e-05
+947.6000000001472 3.0276322885309787e-05
+947.7000000001473 2.9726232299319683e-05
+947.8000000001473 2.9176861481912302e-05
+947.9000000001473 2.8628211591893147e-05
+948.0000000001473 2.8080283779818558e-05
+948.1000000001474 2.8286107071482526e-05
+948.2000000001474 2.849159366025763e-05
+948.3000000001474 2.8696743961658687e-05
+948.4000000001474 2.8901558438768643e-05
+948.5000000001475 2.910603760472994e-05
+948.6000000001475 2.9852693970775723e-05
+948.7000000001475 3.0598250277232736e-05
+948.8000000001475 3.134269356673355e-05
+948.9000000001475 3.2086010561315654e-05
+949.0000000001476 3.282818778250406e-05
+949.1000000001476 3.239922649637505e-05
+949.2000000001476 3.197075172177382e-05
+949.3000000001476 3.1542756123692735e-05
+949.4000000001477 3.111523385720892e-05
+949.5000000001477 3.0688180496668544e-05
+949.6000000001477 3.008753285647823e-05
+949.7000000001477 2.9487583967271614e-05
+949.8000000001477 2.888833505731269e-05
+949.9000000001478 2.828978855158964e-05
+950.0000000001478 2.7691947975104427e-05
+950.1000000001478 2.8094846358831508e-05
+950.2000000001478 2.849710390973488e-05
+950.3000000001479 2.8898718629572076e-05
+950.4000000001479 2.9299689571108722e-05
+950.5000000001479 2.9700016904456452e-05
+950.6000000001479 3.0429021650436072e-05
+950.700000000148 3.115693797593949e-05
+950.800000000148 3.188376740581278e-05
+950.900000000148 3.260951315997674e-05
+951.000000000148 3.333418027106148e-05
+951.100000000148 3.320059121491232e-05
+951.2000000001481 3.306715084831985e-05
+951.3000000001481 3.2933871593260494e-05
+951.4000000001481 3.280076678275953e-05
+951.5000000001481 3.2667850636727334e-05
+951.6000000001482 3.184064000006011e-05
+951.7000000001482 3.1014716565256084e-05
+951.8000000001482 3.0190081633680187e-05
+951.9000000001482 2.9366736472511624e-05
+952.0000000001482 2.8544682316303443e-05
+952.1000000001483 2.8318723654842744e-05
+952.2000000001483 2.8093075733910808e-05
+952.3000000001483 2.786773906774763e-05
+952.4000000001483 2.7642714161433604e-05
+952.5000000001484 2.7418001512622046e-05
+952.6000000001484 2.7833926681368677e-05
+952.7000000001484 2.8249146449537745e-05
+952.8000000001484 2.866366104792681e-05
+952.9000000001485 2.9077470717122808e-05
+953.0000000001485 2.9490575705102867e-05
+953.1000000001485 2.974269437445188e-05
+953.2000000001485 2.9994386027559132e-05
+953.3000000001485 3.0245650951589563e-05
+953.4000000001486 3.049648942099862e-05
+953.5000000001486 3.0746901695585054e-05
+953.6000000001486 3.079590431728784e-05
+953.7000000001486 3.084484227914229e-05
+953.8000000001487 3.0893687011040854e-05
+953.9000000001487 3.094241182982944e-05
+954.0000000001487 3.099099195514524e-05
+954.1000000001487 3.087110376347637e-05
+954.2000000001487 3.075128568703871e-05
+954.3000000001488 3.0631520322461466e-05
+954.4000000001488 3.051179258786987e-05
+954.5000000001488 3.0392089681818947e-05
+954.6000000001488 3.0416059999779184e-05
+954.7000000001489 3.043980950450266e-05
+954.8000000001489 3.0463330747244787e-05
+954.9000000001489 3.048661829268247e-05
+955.0000000001489 3.0509668726008344e-05
+955.100000000149 3.0373272835909083e-05
+955.200000000149 3.0236902435816246e-05
+955.300000000149 3.0100562657183723e-05
+955.400000000149 2.9964260567181472e-05
+955.500000000149 2.9828005122617597e-05
+955.6000000001491 2.968389265512869e-05
+955.7000000001491 2.95398662542837e-05
+955.8000000001491 2.9395940411287612e-05
+955.9000000001491 2.9252131367708453e-05
+956.0000000001492 2.91084570665045e-05
+956.1000000001492 2.912040699461465e-05
+956.2000000001492 2.9132255931388544e-05
+956.3000000001492 2.914402652225642e-05
+956.4000000001492 2.91557434453453e-05
+956.5000000001493 2.916743341438359e-05
+956.6000000001493 2.9218344432475824e-05
+956.7000000001493 2.9269101629235776e-05
+956.8000000001493 2.931970466196142e-05
+956.9000000001494 2.937015318585972e-05
+957.0000000001494 2.9420446855395066e-05
+957.1000000001494 2.987728954074161e-05
+957.2000000001494 3.0333226848639038e-05
+957.3000000001495 3.078825799728451e-05
+957.4000000001495 3.12423821865341e-05
+957.5000000001495 3.169559859694998e-05
+957.6000000001495 3.171273883471003e-05
+957.7000000001495 3.172978124486725e-05
+957.8000000001496 3.174672643456795e-05
+957.9000000001496 3.1763575012268236e-05
+958.0000000001496 3.178032758687687e-05
+958.1000000001496 3.152937388056085e-05
+958.2000000001497 3.1278783140182756e-05
+958.3000000001497 3.1028556279487224e-05
+958.4000000001497 3.077869419172866e-05
+958.5000000001497 3.052919775010026e-05
+958.6000000001497 3.0303219260495476e-05
+958.7000000001498 3.007759400482988e-05
+958.8000000001498 2.985230768286947e-05
+958.9000000001498 2.9627347418079784e-05
+959.0000000001498 2.9402701717631e-05
+959.1000000001499 2.9230387425150195e-05
+959.2000000001499 2.9058298260784443e-05
+959.3000000001499 2.888642630838156e-05
+959.4000000001499 2.8714764824263e-05
+959.50000000015 2.8543308208619146e-05
+959.60000000015 2.8761439964760744e-05
+959.70000000015 2.897904999346217e-05
+959.80000000015 2.9196133698553384e-05
+959.90000000015 2.9412687335674984e-05
+960.0000000001501 2.9628708046845982e-05
+960.1000000001501 2.9834042115443124e-05
+960.2000000001501 3.0038818080467575e-05
+960.3000000001501 3.0243036116425712e-05
+960.4000000001502 3.0446697416673555e-05
+960.5000000001502 3.064980422511455e-05
+960.6000000001502 3.077676242122236e-05
+960.7000000001502 3.090333467768122e-05
+960.8000000001502 3.102952667244299e-05
+960.9000000001503 3.115534527184255e-05
+961.0000000001503 3.1280798551532366e-05
+961.1000000001503 3.140996627596656e-05
+961.2000000001503 3.153882002681616e-05
+961.3000000001504 3.166737148620862e-05
+961.4000000001504 3.179563363400948e-05
+961.5000000001504 3.192362076764776e-05
+961.6000000001504 3.173689809998011e-05
+961.7000000001505 3.155045144113883e-05
+961.8000000001505 3.1364280805735604e-05
+961.9000000001505 3.1178386181600585e-05
+962.0000000001505 3.099276753008785e-05
+962.1000000001505 3.067048938261498e-05
+962.2000000001506 3.034879673550691e-05
+962.3000000001506 3.0027689503724765e-05
+962.4000000001506 2.9707167586692528e-05
+962.5000000001506 2.9387230871278423e-05
+962.6000000001507 2.9601642888124897e-05
+962.7000000001507 2.981554360578607e-05
+962.8000000001507 3.002893335004675e-05
+962.9000000001507 3.024181249188852e-05
+963.0000000001507 3.04541814487528e-05
+963.1000000001508 3.066822737004159e-05
+963.2000000001508 3.088179458152868e-05
+963.3000000001508 3.109488354388811e-05
+963.4000000001508 3.130749476808612e-05
+963.5000000001509 3.151962881552522e-05
+963.6000000001509 3.140836451093303e-05
+963.7000000001509 3.129727504816905e-05
+963.8000000001509 3.118634580737392e-05
+963.900000000151 3.107556339105562e-05
+964.000000000151 3.0964915605203015e-05
+964.100000000151 3.093794260008389e-05
+964.200000000151 3.091091729369956e-05
+964.300000000151 3.088383056892648e-05
+964.4000000001511 3.08566743499125e-05
+964.5000000001511 3.0829441598225644e-05
+964.6000000001511 3.091107039894829e-05
+964.7000000001511 3.09923682963344e-05
+964.8000000001512 3.107333107598662e-05
+964.9000000001512 3.1153955538701744e-05
+965.0000000001512 3.123423951442974e-05
+965.1000000001512 3.1380412584253276e-05
+965.2000000001512 3.152610821635677e-05
+965.3000000001513 3.1671326905460305e-05
+965.4000000001513 3.181607025287623e-05
+965.5000000001513 3.196034098941852e-05
+965.6000000001513 3.1795309884751726e-05
+965.7000000001514 3.163050716657989e-05
+965.8000000001514 3.146594110224923e-05
+965.9000000001514 3.130162082430587e-05
+966.0000000001514 3.113755630385605e-05
+966.1000000001515 3.085626326808452e-05
+966.2000000001515 3.0575450305279235e-05
+966.3000000001515 3.02951299996388e-05
+966.4000000001515 3.0015315469966397e-05
+966.5000000001515 2.97360203272977e-05
+966.6000000001516 2.9833916031902493e-05
+966.7000000001516 2.9931544440146736e-05
+966.8000000001516 3.002890470742909e-05
+966.9000000001516 3.0125996010350236e-05
+967.0000000001517 3.0222817548385096e-05
+967.1000000001517 3.0671122111263096e-05
+967.2000000001517 3.1118385104429156e-05
+967.3000000001517 3.1564605600548595e-05
+967.4000000001517 3.200978267131405e-05
+967.5000000001518 3.245391538884778e-05
+967.6000000001518 3.2580550263466435e-05
+967.7000000001518 3.270682454325908e-05
+967.8000000001518 3.2832737630273736e-05
+967.9000000001519 3.29582889534895e-05
+968.0000000001519 3.3083477968582134e-05
+968.1000000001519 3.291041545770806e-05
+968.2000000001519 3.2737671730509814e-05
+968.300000000152 3.2565246574979385e-05
+968.400000000152 3.239313981785775e-05
+968.500000000152 3.2221351324456955e-05
+968.600000000152 3.227234621515783e-05
+968.700000000152 3.232314306570713e-05
+968.8000000001521 3.2373728599867976e-05
+968.9000000001521 3.242409054918223e-05
+969.0000000001521 3.2474217662339664e-05
+969.1000000001521 3.252743189243497e-05
+969.2000000001522 3.258040249096651e-05
+969.3000000001522 3.2633121233535916e-05
+969.4000000001522 3.268558094583903e-05
+969.5000000001522 3.273777551240378e-05
+969.6000000001522 3.263169649105952e-05
+969.7000000001523 3.2525703243755876e-05
+969.8000000001523 3.241979196759154e-05
+969.9000000001523 3.231396000366082e-05
+970.0000000001523 3.220820581933221e-05
+970.1000000001524 3.214514118495591e-05
+970.2000000001524 3.208205246761297e-05
+970.3000000001524 3.20189410982028e-05
+970.4000000001524 3.195580957435164e-05
+970.5000000001525 3.189266145005922e-05
+970.6000000001525 3.1938178156999087e-05
+970.7000000001525 3.1983440758783334e-05
+970.8000000001525 3.202845615769861e-05
+970.9000000001525 3.2073232311814394e-05
+971.0000000001526 3.211777824097645e-05
+971.1000000001526 3.200979466163271e-05
+971.2000000001526 3.1901968988146074e-05
+971.3000000001526 3.179431355111247e-05
+971.4000000001527 3.1686841516223845e-05
+971.5000000001527 3.1579566867908154e-05
+971.6000000001527 3.151276902695496e-05
+971.7000000001527 3.144604216757039e-05
+971.8000000001527 3.1379386484804486e-05
+971.9000000001528 3.1312802203682775e-05
+972.0000000001528 3.124628957923331e-05
+972.1000000001528 3.119203727814966e-05
+972.2000000001528 3.1137825339707904e-05
+972.3000000001529 3.108365411078855e-05
+972.4000000001529 3.102952396738684e-05
+972.5000000001529 3.097543531406809e-05
+972.6000000001529 3.0855147394080626e-05
+972.700000000153 3.0735073042121e-05
+972.800000000153 3.0615211708236104e-05
+972.900000000153 3.049556281953096e-05
+973.000000000153 3.037612578081979e-05
+973.100000000153 3.028578639002972e-05
+973.2000000001531 3.0195572372524276e-05
+973.3000000001531 3.0105483102793457e-05
+973.4000000001531 3.0015517932625732e-05
+973.5000000001531 2.992567619172313e-05
+973.6000000001532 2.9868657708832373e-05
+973.7000000001532 2.9811682800793702e-05
+973.8000000001532 2.975475168198089e-05
+973.9000000001532 2.96978645955544e-05
+974.0000000001532 2.964102181281457e-05
+974.1000000001533 2.9546622081321302e-05
+974.2000000001533 2.945235651158311e-05
+974.3000000001533 2.935822549442851e-05
+974.4000000001533 2.9264229446036724e-05
+974.5000000001534 2.9170368807407947e-05
+974.6000000001534 2.907664284282555e-05
+974.7000000001534 2.8983050826496078e-05
+974.8000000001534 2.888959320671001e-05
+974.9000000001535 2.8796270397255297e-05
+975.0000000001535 2.8703082778167567e-05
+975.1000000001535 2.8690696002154474e-05
+975.2000000001535 2.8678241903891092e-05
+975.3000000001535 2.8665720730774565e-05
+975.4000000001536 2.865313270055563e-05
+975.5000000001536 2.8640478001352967e-05
+975.6000000001536 2.8576740653022785e-05
+975.7000000001536 2.8513074805059123e-05
+975.8000000001537 2.8449479754304854e-05
+975.9000000001537 2.8385954832711517e-05
+976.0000000001537 2.8322499407102282e-05
+976.1000000001537 2.834822996542518e-05
+976.2000000001538 2.8373792756035768e-05
+976.3000000001538 2.8399187247771694e-05
+976.4000000001538 2.8424412936538663e-05
+976.5000000001538 2.8449469345837072e-05
+976.6000000001538 2.858762418210943e-05
+976.7000000001539 2.8725305546754324e-05
+976.8000000001539 2.8862513021743308e-05
+976.9000000001539 2.8999246211478636e-05
+977.0000000001539 2.9135504743057766e-05
+977.100000000154 2.9180254124783267e-05
+977.200000000154 2.9224787199291524e-05
+977.300000000154 2.9269103624836065e-05
+977.400000000154 2.931320308812054e-05
+977.500000000154 2.935708530419199e-05
+977.6000000001541 2.9257875949008787e-05
+977.7000000001541 2.9158811358840568e-05
+977.8000000001541 2.9059892411008813e-05
+977.9000000001541 2.8961120001565064e-05
+978.0000000001542 2.8862495044841348e-05
+978.1000000001542 2.8794027558960396e-05
+978.2000000001542 2.8725634849946657e-05
+978.3000000001542 2.8657317853480817e-05
+978.4000000001543 2.8589077525613577e-05
+978.5000000001543 2.8520914842478683e-05
+978.6000000001543 2.8477359100473687e-05
+978.7000000001543 2.8433815310178068e-05
+978.8000000001543 2.8390283568003274e-05
+978.9000000001544 2.8346763940926756e-05
+979.0000000001544 2.8303256466589095e-05
+979.1000000001544 2.82386324077049e-05
+979.2000000001544 2.8174083324689896e-05
+979.3000000001545 2.8109609152196588e-05
+979.4000000001545 2.8045209796766917e-05
+979.5000000001545 2.798088513741816e-05
+979.6000000001545 2.7983159646159685e-05
+979.7000000001545 2.7985317049902768e-05
+979.8000000001546 2.7987357564423184e-05
+979.9000000001546 2.7989281348551823e-05
+980.0000000001546 2.7991088504124673e-05
+980.1000000001546 2.7995596868882158e-05
+980.2000000001547 2.7999987489242934e-05
+980.3000000001547 2.8004260252186895e-05
+980.4000000001547 2.8008414987633453e-05
+980.5000000001547 2.8012451468634523e-05
+980.6000000001548 2.8123736998976097e-05
+980.7000000001548 2.823461631270156e-05
+980.8000000001548 2.8345088671756363e-05
+980.9000000001548 2.845515335627897e-05
+981.0000000001548 2.856480966485929e-05
+981.1000000001549 2.85753354229864e-05
+981.2000000001549 2.8585728985927695e-05
+981.3000000001549 2.8595989765165067e-05
+981.4000000001549 2.860611720055054e-05
+981.500000000155 2.8616110760110714e-05
+981.600000000155 2.854944329488251e-05
+981.700000000155 2.8482838933631544e-05
+981.800000000155 2.8416298122538592e-05
+981.900000000155 2.834982127517746e-05
+982.0000000001551 2.8283408772988457e-05
+982.1000000001551 2.8200737116670325e-05
+982.2000000001551 2.8118185684627644e-05
+982.3000000001551 2.8035754732153952e-05
+982.4000000001552 2.7953444483264334e-05
+982.5000000001552 2.787125513105921e-05
+982.6000000001552 2.7824011528927745e-05
+982.7000000001552 2.7776787726485413e-05
+982.8000000001553 2.7729583900424866e-05
+982.9000000001553 2.7682400254330422e-05
+983.0000000001553 2.763523701878238e-05
+983.1000000001553 2.7675773494935716e-05
+983.2000000001553 2.7716077449638415e-05
+983.3000000001554 2.77561492145136e-05
+983.4000000001554 2.779598915108325e-05
+983.5000000001554 2.783559765104456e-05
+983.6000000001554 2.7846455486323576e-05
+983.7000000001555 2.7857212185812677e-05
+983.8000000001555 2.7867842065538662e-05
+983.9000000001555 2.7878321246584923e-05
+984.0000000001555 2.788862765950213e-05
+984.1000000001555 2.7822230221861834e-05
+984.2000000001556 2.7755841056212167e-05
+984.3000000001556 2.7689444209583046e-05
+984.4000000001556 2.7623025713556392e-05
+984.5000000001556 2.7556573561878752e-05
+984.6000000001557 2.748443983258525e-05
+984.7000000001557 2.741227383411869e-05
+984.8000000001557 2.734006991102142e-05
+984.9000000001557 2.7267824363164386e-05
+985.0000000001558 2.7195535421125543e-05
+985.1000000001558 2.718854237624473e-05
+985.2000000001558 2.7181316705366416e-05
+985.3000000001558 2.7173861331705885e-05
+985.4000000001558 2.7166181059115492e-05
+985.5000000001559 2.715828256933595e-05
+985.6000000001559 2.716684235971123e-05
+985.7000000001559 2.7175148842546554e-05
+985.8000000001559 2.7183214446248276e-05
+985.900000000156 2.7191053416880254e-05
+986.000000000156 2.7198681819701084e-05
+986.100000000156 2.7166712601031254e-05
+986.200000000156 2.713469427228094e-05
+986.300000000156 2.7102648358883836e-05
+986.4000000001561 2.7070598076550473e-05
+986.5000000001561 2.7038568320805243e-05
+986.6000000001561 2.6984706916829325e-05
+986.7000000001561 2.6930890175387444e-05
+986.8000000001562 2.6877117698810798e-05
+986.9000000001562 2.682338911969801e-05
+987.0000000001562 2.6769704100611512e-05
+987.1000000001562 2.6717410765246783e-05
+987.2000000001563 2.6665153019171135e-05
+987.3000000001563 2.661293062132031e-05
+987.4000000001563 2.6560743359473094e-05
+987.5000000001563 2.6508591049935016e-05
+987.6000000001563 2.647801241851717e-05
+987.7000000001564 2.6447398950071684e-05
+987.8000000001564 2.6416750474278227e-05
+987.9000000001564 2.6386066794717955e-05
+988.0000000001564 2.6355347689215324e-05
+988.1000000001565 2.6336611045767146e-05
+988.2000000001565 2.631780494738773e-05
+988.3000000001565 2.629892908701267e-05
+988.4000000001565 2.6279983131766152e-05
+988.5000000001565 2.626096672305828e-05
+988.6000000001566 2.622063387384858e-05
+988.7000000001566 2.6180275124937243e-05
+988.8000000001566 2.6139902880303757e-05
+988.9000000001566 2.6099528618550217e-05
+989.0000000001567 2.605916289921659e-05
+989.1000000001567 2.600989213095547e-05
+989.2000000001567 2.5960675676933243e-05
+989.3000000001567 2.591152133579406e-05
+989.4000000001568 2.5862436004002864e-05
+989.5000000001568 2.5813425683772474e-05
+989.6000000001568 2.5759278950358335e-05
+989.7000000001568 2.5705231318536698e-05
+989.8000000001568 2.5651285270731905e-05
+989.9000000001569 2.559744238044019e-05
+990.0000000001569 2.5543703321536325e-05
+990.1000000001569 2.550712664890985e-05
+990.2000000001569 2.5470597745327744e-05
+990.300000000157 2.543411477021692e-05
+990.400000000157 2.5397675012987743e-05
+990.500000000157 2.5361274899394162e-05
+990.600000000157 2.5330040652132962e-05
+990.700000000157 2.529882097942517e-05
+990.8000000001571 2.526761019689198e-05
+990.9000000001571 2.523640179926439e-05
+991.0000000001571 2.5205188465894034e-05
+991.1000000001571 2.516690023035868e-05
+991.2000000001572 2.512861332809579e-05
+991.3000000001572 2.5090318021689097e-05
+991.4000000001572 2.5052003791293227e-05
+991.5000000001572 2.5013659341128925e-05
+991.6000000001573 2.4980323217216753e-05
+991.7000000001573 2.494696345066078e-05
+991.8000000001573 2.4913580036858886e-05
+991.9000000001573 2.488017297131281e-05
+992.0000000001573 2.4846742249375894e-05
+992.1000000001574 2.4800955561579434e-05
+992.2000000001574 2.4755187168041885e-05
+992.3000000001574 2.4709437067836862e-05
+992.4000000001574 2.4663705260114917e-05
+992.5000000001575 2.461799174394939e-05
+992.6000000001575 2.4572296518439215e-05
+992.7000000001575 2.4526619582734143e-05
+992.8000000001575 2.4480960935932615e-05
+992.9000000001575 2.443532057715837e-05
+993.0000000001576 2.438969850549717e-05
+993.1000000001576 2.43523902087566e-05
+993.2000000001576 2.4315069593566146e-05
+993.3000000001576 2.427773666277145e-05
+993.4000000001577 2.4240391419243404e-05
+993.5000000001577 2.4203033865885602e-05
+993.6000000001577 2.4170516937703232e-05
+993.7000000001577 2.4137949540377915e-05
+993.8000000001578 2.410534269829504e-05
+993.9000000001578 2.4072706568174706e-05
+994.0000000001578 2.4040050444272234e-05
+994.1000000001578 2.4001282898797764e-05
+994.2000000001578 2.396253579165664e-05
+994.3000000001579 2.392381583207949e-05
+994.4000000001579 2.388512888270521e-05
+994.5000000001579 2.3846479966031595e-05
+994.6000000001579 2.3807872288019384e-05
+994.700000000158 2.376930956594619e-05
+994.800000000158 2.3730794670202307e-05
+994.900000000158 2.3692329631037038e-05
+995.000000000158 2.365391564519128e-05
+995.100000000158 2.361454357942678e-05
+995.2000000001581 2.357522588727727e-05
+995.3000000001581 2.353596129817188e-05
+995.4000000001581 2.3496747735181884e-05
+995.5000000001581 2.3457582321745917e-05
+995.6000000001582 2.341846332347621e-05
+995.7000000001582 2.3379385585239093e-05
+995.8000000001582 2.3340343224610527e-05
+995.9000000001582 2.330132963838993e-05
+996.0000000001583 2.326233750894088e-05
+996.1000000001583 2.3221664009968246e-05
+996.2000000001583 2.3181003369367008e-05
+996.3000000001583 2.3140346164740084e-05
+996.4000000001583 2.3099682287680618e-05
+996.5000000001584 2.305900095026767e-05
+996.6000000001584 2.301828879020857e-05
+996.7000000001584 2.2977577667147387e-05
+996.8000000001584 2.2936867912245625e-05
+996.9000000001585 2.2896159831223583e-05
+997.0000000001585 2.28554537043363e-05
+997.1000000001585 2.2817769657524933e-05
+997.2000000001585 2.27800751793625e-05
+997.3000000001585 2.274237047385068e-05
+997.4000000001586 2.2704655720593974e-05
+997.5000000001586 2.266693107501537e-05
+997.6000000001586 2.2629197602599458e-05
+997.7000000001586 2.2591456361807147e-05
+997.8000000001587 2.2553707495851088e-05
+997.9000000001587 2.2515951169826896e-05
+998.0000000001587 2.247818757049514e-05
+998.1000000001587 2.2439662797002385e-05
+998.2000000001588 2.2401136368846402e-05
+998.3000000001588 2.2362608537187387e-05
+998.4000000001588 2.232407957408803e-05
+998.5000000001588 2.2285549772269993e-05
+998.6000000001588 2.224704977733593e-05
+998.7000000001589 2.22085664151892e-05
+998.8000000001589 2.2170089155807577e-05
+998.9000000001589 2.213160826264993e-05
+999.0000000001589 2.2093114786431492e-05
+999.100000000159 2.2051578036323467e-05
+999.200000000159 2.201002390570226e-05
+999.300000000159 2.1968445782573633e-05
+999.400000000159 2.1926837820371636e-05
+999.500000000159 2.1885194931097276e-05
+999.6000000001591 2.1843512778549068e-05
+999.7000000001591 2.1801790259871935e-05
+999.8000000001591 2.1760025238330362e-05
+999.9000000001591 2.1718216347201013e-05
+1000.0000000001592 2.167636298264158e-05
+1000.1000000001592 2.164394019008421e-05
+1000.2000000001592 2.1611443197949532e-05
+1000.3000000001592 2.1578873576151408e-05
+1000.4000000001593 2.1546233632270587e-05
+1000.5000000001593 2.151352640606368e-05
+1000.6000000001593 2.1472095814584037e-05
+1000.7000000001593 2.143063492695522e-05
+1000.8000000001593 2.1389148640074273e-05
+1000.9000000001594 2.1347642531407695e-05
+1001.0000000001594 2.1306122852097208e-05
+1001.1000000001594 2.1259383062486713e-05
+1001.2000000001594 2.1212663267023823e-05
+1001.3000000001595 2.1165971695652636e-05
+1001.4000000001595 2.1119317215352116e-05
+1001.5000000001595 2.1072709322387818e-05
+1001.6000000001595 2.1026158134716854e-05
+1001.7000000001595 2.0979634865786634e-05
+1001.8000000001596 2.0933139519233922e-05
+1001.9000000001596 2.0886672098760516e-05
+1002.0000000001596 2.084023260806261e-05
+1002.1000000001596 2.0804204298314352e-05
+1002.2000000001597 2.0768165288415298e-05
+1002.3000000001597 2.0732115581785876e-05
+1002.4000000001597 2.0696055181846668e-05
+1002.5000000001597 2.0659984092117542e-05
+1002.6000000001598 2.0632250384066296e-05
+1002.7000000001598 2.0604473401794126e-05
+1002.8000000001598 2.057665315555149e-05
+1002.9000000001598 2.054878965558895e-05
+1003.0000000001598 2.0520882912140287e-05
+1003.1000000001599 2.0482437354565454e-05
+1003.2000000001599 2.044399019263308e-05
+1003.3000000001599 2.0405541426386237e-05
+1003.4000000001599 2.036709105591036e-05
+1003.50000000016 2.0328639081290813e-05
+1003.60000000016 2.029021316255429e-05
+1003.70000000016 2.025180328270735e-05
+1003.80000000016 2.0213400178344304e-05
+1003.90000000016 2.017499533312146e-05
+1004.0000000001601 2.013658097130353e-05
+1004.1000000001601 2.0099621500786255e-05
+1004.2000000001601 2.006263630141817e-05
+1004.3000000001601 2.0025619774780873e-05
+1004.4000000001602 1.9988567035974533e-05
+1004.5000000001602 1.9951473907483635e-05
+1004.6000000001602 1.991433773475912e-05
+1004.7000000001602 1.9877155438918362e-05
+1004.8000000001603 1.983992465217684e-05
+1004.9000000001603 1.9802643711571352e-05
+1005.0000000001603 1.976531165253785e-05
+1005.1000000001603 1.9724648078481264e-05
+1005.2000000001603 1.9683946466394483e-05
+1005.3000000001604 1.9643207930390403e-05
+1005.4000000001604 1.9602434256021695e-05
+1005.5000000001604 1.9561627893262697e-05
+1005.6000000001604 1.952079033712059e-05
+1005.7000000001605 1.947992592994326e-05
+1005.8000000001605 1.9439039613076736e-05
+1005.9000000001605 1.9398136920090865e-05
+1006.0000000001605 1.9357223970176953e-05
+1006.1000000001605 1.9320153251995222e-05
+1006.2000000001606 1.928307355761705e-05
+1006.3000000001606 1.9245992725317467e-05
+1006.4000000001606 1.9208919159230187e-05
+1006.5000000001606 1.91718618233584e-05
+1006.6000000001607 1.9138693538058125e-05
+1006.7000000001607 1.9105511147783602e-05
+1006.8000000001607 1.9072314377086585e-05
+1006.9000000001607 1.903910297159765e-05
+1007.0000000001608 1.9005876697946995e-05
+1007.1000000001608 1.8964849100053638e-05
+1007.2000000001608 1.8923836692577707e-05
+1007.3000000001608 1.8882839304583386e-05
+1007.4000000001608 1.8841856785728626e-05
+1007.5000000001609 1.880088900602343e-05
+1007.6000000001609 1.876372190701056e-05
+1007.7000000001609 1.872655278360456e-05
+1007.8000000001609 1.868938151756734e-05
+1007.900000000161 1.865220797277107e-05
+1008.000000000161 1.8615031995162454e-05
+1008.100000000161 1.857114853109476e-05
+1008.200000000161 1.8527290695792915e-05
+1008.300000000161 1.8483458276399623e-05
+1008.4000000001611 1.843965104341262e-05
+1008.5000000001611 1.8395868750749696e-05
+1008.6000000001611 1.835206107990294e-05
+1008.7000000001611 1.8308248033844336e-05
+1008.8000000001612 1.8264446710857415e-05
+1008.9000000001612 1.82206728425465e-05
+1009.0000000001612 1.8176940808450442e-05
+1009.1000000001612 1.8136732668693694e-05
+1009.2000000001613 1.8096578075959653e-05
+1009.3000000001613 1.8056487478917463e-05
+1009.4000000001613 1.8016470039897587e-05
+1009.5000000001613 1.797653364839444e-05
+1009.6000000001613 1.794394747957339e-05
+1009.7000000001614 1.791142259233866e-05
+1009.8000000001614 1.787896289705132e-05
+1009.9000000001614 1.7846571037529198e-05
+1010.0000000001614 1.7814248402358052e-05
+1010.1000000001615 1.778541862207117e-05
+1010.2000000001615 1.775664313012079e-05
+1010.3000000001615 1.7727919664226502e-05
+1010.4000000001615 1.7699244748754007e-05
+1010.5000000001615 1.7670613704612874e-05
+1010.6000000001616 1.7638463105141244e-05
+1010.7000000001616 1.7606359772693e-05
+1010.8000000001616 1.757429524764181e-05
+1010.9000000001616 1.7542259969073476e-05
+1011.0000000001617 1.7510243285433073e-05
+1011.1000000001617 1.7473839334096204e-05
+1011.2000000001617 1.7437450300764212e-05
+1011.3000000001617 1.740106232952899e-05
+1011.4000000001618 1.7364660531447706e-05
+1011.5000000001618 1.7328228996822153e-05
+1011.6000000001618 1.7288263138857686e-05
+1011.7000000001618 1.7248311540985722e-05
+1011.8000000001618 1.7208374454635802e-05
+1011.9000000001619 1.7168452111490497e-05
+1012.0000000001619 1.7128544723842025e-05
+1012.1000000001619 1.709343337129422e-05
+1012.2000000001619 1.7058317139421175e-05
+1012.300000000162 1.7023196182782624e-05
+1012.400000000162 1.698807063749643e-05
+1012.500000000162 1.695294062131727e-05
+1012.600000000162 1.6921221222225986e-05
+1012.700000000162 1.6889484759372228e-05
+1012.8000000001621 1.6857731337513526e-05
+1012.9000000001621 1.6825961077645404e-05
+1013.0000000001621 1.679417411686715e-05
+1013.1000000001621 1.6758815429626777e-05
+1013.2000000001622 1.672345524882123e-05
+1013.3000000001622 1.6688093760357226e-05
+1013.4000000001622 1.6652731165458378e-05
+1013.5000000001622 1.661736768039797e-05
+1013.6000000001623 1.6582026144928668e-05
+1013.7000000001623 1.6546696713748282e-05
+1013.8000000001623 1.6511371526399176e-05
+1013.9000000001623 1.6476043325716474e-05
+1014.0000000001623 1.6440705452058577e-05
+1014.1000000001624 1.6404938184921218e-05
+1014.2000000001624 1.636915453301936e-05
+1014.3000000001624 1.63333495968778e-05
+1014.4000000001624 1.629751905192311e-05
+1014.5000000001625 1.6261659142713158e-05
+1014.6000000001625 1.622576667711478e-05
+1014.7000000001625 1.6189840868134145e-05
+1014.8000000001625 1.615388016263418e-05
+1014.9000000001625 1.6117883581129156e-05
+1015.0000000001626 1.608185071169583e-05
+1015.1000000001626 1.6048380095050245e-05
+1015.2000000001626 1.6014865892130173e-05
+1015.3000000001626 1.5981309337184037e-05
+1015.4000000001627 1.5947712208077326e-05
+1015.5000000001627 1.591407682038264e-05
+1015.6000000001627 1.588040602160566e-05
+1015.7000000001627 1.5846702281525746e-05
+1015.8000000001628 1.5812969234316965e-05
+1015.9000000001628 1.577921101464216e-05
+1016.0000000001628 1.5745432251970476e-05
+1016.1000000001628 1.5710421748537797e-05
+1016.2000000001628 1.5675406780174108e-05
+1016.3000000001629 1.5640393426409207e-05
+1016.4000000001629 1.5605388236711386e-05
+1016.5000000001629 1.5570398224611478e-05
+1016.6000000001629 1.5535430861865706e-05
+1016.700000000163 1.5500464875037276e-05
+1016.800000000163 1.546550026421919e-05
+1016.900000000163 1.5430537029504443e-05
+1017.000000000163 1.5395575170969227e-05
+1017.100000000163 1.5360058192551318e-05
+1017.2000000001631 1.5324545050990894e-05
+1017.3000000001631 1.5289035746721645e-05
+1017.4000000001631 1.5253530280193067e-05
+1017.5000000001631 1.5218028651822977e-05
+1017.6000000001632 1.5182530862076474e-05
+1017.7000000001632 1.514703691135566e-05
+1017.8000000001632 1.5111546800109845e-05
+1017.9000000001632 1.5076060528788176e-05
+1018.0000000001633 1.5040578097812206e-05
+1018.1000000001633 1.5007358567481195e-05
+1018.2000000001633 1.497413579295707e-05
+1018.3000000001633 1.4940909774575678e-05
+1018.4000000001633 1.490768051267291e-05
+1018.5000000001634 1.4874448007579716e-05
+1018.6000000001634 1.4838220079750442e-05
+1018.7000000001634 1.480200231222075e-05
+1018.8000000001634 1.4765794707313669e-05
+1018.9000000001635 1.472959726732126e-05
+1019.0000000001635 1.4693409994524741e-05
+1019.1000000001635 1.466006395095935e-05
+1019.2000000001635 1.462671855331755e-05
+1019.3000000001635 1.4593373801675986e-05
+1019.4000000001636 1.4560029696096093e-05
+1019.5000000001636 1.4526686236644091e-05
+1019.6000000001636 1.4496268417000403e-05
+1019.7000000001636 1.4465837785617964e-05
+1019.8000000001637 1.443539434293881e-05
+1019.9000000001637 1.4404938089434959e-05
+1020.0000000001637 1.4374469025542815e-05
+1020.1000000001637 1.4340498525962986e-05
+1020.2000000001638 1.4306531426215013e-05
+1020.3000000001638 1.4272567726468872e-05
+1020.4000000001638 1.4238607426923977e-05
+1020.5000000001638 1.4204650527720704e-05
+1020.6000000001638 1.4170697029043643e-05
+1020.7000000001639 1.4136746931062597e-05
+1020.8000000001639 1.4102800233947383e-05
+1020.9000000001639 1.4068856937882343e-05
+1021.0000000001639 1.4034917043024947e-05
+1021.100000000164 1.4002391089413296e-05
+1021.200000000164 1.3969861844274821e-05
+1021.300000000164 1.393732930781255e-05
+1021.400000000164 1.3904793480171724e-05
+1021.500000000164 1.3872254361555277e-05
+1021.6000000001641 1.3839711952122894e-05
+1021.7000000001641 1.380716625206302e-05
+1021.8000000001641 1.377461726153543e-05
+1021.9000000001641 1.3742064980728502e-05
+1022.0000000001642 1.3709509409815827e-05
+1022.1000000001642 1.3676675344402764e-05
+1022.2000000001642 1.3643842747615396e-05
+1022.3000000001642 1.3611011619544926e-05
+1022.4000000001643 1.3578181960197865e-05
+1022.5000000001643 1.354535376964668e-05
+1022.6000000001643 1.3509802748145545e-05
+1022.7000000001643 1.3474266431517421e-05
+1022.8000000001643 1.343874481894649e-05
+1022.9000000001644 1.3403237909575062e-05
+1023.0000000001644 1.3367745702592661e-05
+1023.1000000001644 1.3335651908630743e-05
+1023.2000000001644 1.3303559615732258e-05
+1023.3000000001645 1.3271468823955796e-05
+1023.4000000001645 1.3239379533359811e-05
+1023.5000000001645 1.3207291743970903e-05
+1023.6000000001645 1.3172564441082944e-05
+1023.7000000001646 1.3137863008735699e-05
+1023.8000000001646 1.3103181415379365e-05
+1023.9000000001646 1.306851413126643e-05
+1024.0000000001646 1.303385612254119e-05
+1024.1000000001645 1.3005351155403302e-05
+1024.2000000001647 1.2976816940067922e-05
+1024.3000000001648 1.294824986978485e-05
+1024.4000000001647 1.2919646804353791e-05
+1024.5000000001646 1.2891005065398612e-05
+1024.6000000001648 1.2862322962514586e-05
+1024.700000000165 1.2833598534064083e-05
+1024.8000000001648 1.2804830280728567e-05
+1024.9000000001647 1.2776017160522841e-05
+1025.0000000001648 1.2747158583900659e-05
+1025.100000000165 1.270304729811134e-05
+1025.200000000165 1.2658911978552009e-05
+1025.3000000001648 1.2614753472212951e-05
+1025.400000000165 1.2570573053674822e-05
+1025.500000000165 1.2526372417435913e-05
+1025.600000000165 1.2482152639334803e-05
+1025.700000000165 1.2437916608687544e-05
+1025.800000000165 1.2393667581408258e-05
+1025.9000000001652 1.2349409172808403e-05
+1026.000000000165 1.2305145350412075e-05
+1026.100000000165 1.226143209353789e-05
+1026.2000000001651 1.2217718456290007e-05
+1026.3000000001653 1.2174009420246508e-05
+1026.4000000001652 1.2130310291431181e-05
+1026.500000000165 1.2086626693206866e-05
+1026.6000000001652 1.2042965554127176e-05
+1026.7000000001653 1.1999310139420239e-05
+1026.8000000001653 1.1955660267937404e-05
+1026.9000000001652 1.1912015773009906e-05
+1027.0000000001653 1.1868376502280718e-05
+1027.1000000001654 1.1827038475550363e-05
+1027.2000000001653 1.17856989545596e-05
+1027.3000000001653 1.1744357829862662e-05
+1027.4000000001654 1.1703015005338219e-05
+1027.5000000001655 1.1661670397980184e-05
+1027.6000000001654 1.1620323457986055e-05
+1027.7000000001653 1.1578973643309712e-05
+1027.8000000001655 1.1537620884156486e-05
+1027.9000000001656 1.149626510017096e-05
+1028.0000000001655 1.1454906200596763e-05
+1028.1000000001654 1.1412462028985617e-05
+1028.2000000001656 1.1370027587088548e-05
+1028.3000000001657 1.1327602752573615e-05
+1028.4000000001656 1.1285187393584871e-05
+1028.5000000001655 1.1242781369003091e-05
+1028.6000000001657 1.1200353979089915e-05
+1028.7000000001658 1.1157917553987693e-05
+1028.8000000001657 1.1115482588455125e-05
+1028.9000000001656 1.1073058688354016e-05
+1029.0000000001658 1.1030654584619633e-05
+1029.100000000166 1.0991084843048052e-05
+1029.2000000001658 1.0951539254889392e-05
+1029.3000000001657 1.0912024035557681e-05
+1029.4000000001658 1.08725445877174e-05
+1029.500000000166 1.083310551443928e-05
+1029.600000000166 1.0795886337905752e-05
+1029.7000000001658 1.0758697018860035e-05
+1029.800000000166 1.0721539673095264e-05
+1029.900000000166 1.0684415640740794e-05
+1030.000000000166 1.064732549919993e-05
+1030.100000000166 1.060770518688713e-05
+1030.200000000166 1.0568136627406872e-05
+1030.3000000001662 1.0528618152653547e-05
+1030.400000000166 1.0489147385343034e-05
+1030.500000000166 1.0449721252640941e-05
+1030.6000000001661 1.0410336860016649e-05
+1030.7000000001663 1.0370990060195044e-05
+1030.8000000001662 1.0331675651706323e-05
+1030.900000000166 1.0292387824945492e-05
+1031.0000000001662 1.0253120175101322e-05
+1031.1000000001663 1.0215382600845023e-05
+1031.2000000001663 1.0177655179445633e-05
+1031.3000000001662 1.0139929798255024e-05
+1031.4000000001663 1.0102197796085194e-05
+1031.5000000001664 1.0064449975743212e-05
+1031.6000000001663 1.0026675788186041e-05
+1031.7000000001663 9.988902951504616e-06
+1031.8000000001664 9.951131617174386e-06
+1031.9000000001665 9.913361924496083e-06
+1032.0000000001664 9.875594000821469e-06
+1032.1000000001663 9.839109631130254e-06
+1032.2000000001665 9.802617565804554e-06
+1032.3000000001666 9.766117896461407e-06
+1032.4000000001665 9.729610703569752e-06
+1032.5000000001664 9.693096056605595e-06
+1032.6000000001666 9.656574412906426e-06
+1032.7000000001667 9.62004622293322e-06
+1032.8000000001666 9.5835115444066e-06
+1032.9000000001665 9.54697044381071e-06
+1033.0000000001667 9.510422996137707e-06
+1033.1000000001668 9.474047545418402e-06
+1033.2000000001667 9.43767552776858e-06
+1033.3000000001666 9.401307043428262e-06
+1033.4000000001668 9.364942200501674e-06
+1033.500000000167 9.328581114675175e-06
+1033.6000000001668 9.292236578475989e-06
+1033.7000000001667 9.255903009712846e-06
+1033.8000000001668 9.21957597338811e-06
+1033.900000000167 9.183251402057195e-06
+1034.000000000167 9.146925589914999e-06
+1034.1000000001668 9.111924812961315e-06
+1034.200000000167 9.076911569043042e-06
+1034.300000000167 9.04188319593569e-06
+1034.400000000167 9.006837367939033e-06
+1034.500000000167 8.971772090120871e-06
+1034.600000000167 8.936685692698866e-06
+1034.7000000001672 8.90157784119429e-06
+1034.800000000167 8.866447784513009e-06
+1034.900000000167 8.831295092775804e-06
+1035.0000000001671 8.796119651288308e-06
+1035.1000000001673 8.762673255286509e-06
+1035.2000000001672 8.72920220799659e-06
+1035.300000000167 8.695707291378136e-06
+1035.4000000001672 8.662189578873717e-06
+1035.5000000001673 8.628650429556704e-06
+1035.6000000001673 8.595091482379047e-06
+1035.7000000001672 8.561514162013026e-06
+1035.8000000001673 8.527920512277715e-06
+1035.9000000001674 8.494312832938978e-06
+1036.0000000001673 8.460693674049323e-06
+1036.1000000001673 8.426636331242126e-06
+1036.2000000001674 8.392582407619868e-06
+1036.3000000001675 8.358535169339446e-06
+1036.4000000001674 8.324498109497093e-06
+1036.5000000001673 8.290474942446306e-06
+1036.6000000001675 8.256469598113772e-06
+1036.7000000001676 8.22247072801763e-06
+1036.8000000001675 8.188478331756105e-06
+1036.9000000001674 8.154492408952812e-06
+1037.0000000001676 8.12051295923409e-06
+1037.1000000001677 8.088249296658591e-06
+1037.2000000001676 8.05598386799721e-06
+1037.3000000001675 8.023716673394244e-06
+1037.4000000001677 7.991447712985741e-06
+1037.5000000001678 7.959176986932706e-06
+1037.6000000001677 7.92690449536311e-06
+1037.7000000001676 7.894630238437683e-06
+1037.8000000001678 7.862354216300643e-06
+1037.900000000168 7.83007642908018e-06
+1038.0000000001678 7.79779687694707e-06
+1038.1000000001677 7.766726758887035e-06
+1038.2000000001678 7.735656570479537e-06
+1038.300000000168 7.704586311803257e-06
+1038.400000000168 7.673515982912954e-06
+1038.5000000001678 7.64244558389508e-06
+1038.600000000168 7.611375114812257e-06
+1038.700000000168 7.580304575735184e-06
+1038.800000000168 7.549233966750171e-06
+1038.900000000168 7.518163287912065e-06
+1039.000000000168 7.4870925392981395e-06
+1039.1000000001682 7.455407741350623e-06
+1039.200000000168 7.423728032838796e-06
+1039.300000000168 7.3920534133066024e-06
+1039.4000000001681 7.360383882328686e-06
+1039.5000000001683 7.3287194394644465e-06
+1039.6000000001682 7.29706008426577e-06
+1039.700000000168 7.265405816307041e-06
+1039.8000000001682 7.233756635132537e-06
+1039.9000000001683 7.202112540309255e-06
+1040.0000000001683 7.170473531407509e-06
+1040.1000000001682 7.140872680526062e-06
+1040.2000000001683 7.111271474045463e-06
+1040.3000000001684 7.081669912177433e-06
+1040.4000000001683 7.052067995126284e-06
+1040.5000000001683 7.022465723088919e-06
+1040.6000000001684 6.9928630962840275e-06
+1040.7000000001685 6.963260114901399e-06
+1040.8000000001684 6.933656779159726e-06
+1040.9000000001683 6.904053089255895e-06
+1041.0000000001685 6.874449045400496e-06
+1041.1000000001686 6.84447705438998e-06
+1041.2000000001685 6.814507914685866e-06
+1041.3000000001684 6.784541626219082e-06
+1041.4000000001686 6.754578188920553e-06
+1041.5000000001687 6.724617602721323e-06
+1041.6000000001686 6.694659867559362e-06
+1041.7000000001685 6.6647049833585904e-06
+1041.8000000001687 6.634752950049901e-06
+1041.9000000001688 6.604803767571142e-06
+1042.0000000001687 6.574857435848805e-06
+1042.1000000001686 6.54630773957147e-06
+1042.2000000001688 6.5177609045133055e-06
+1042.300000000169 6.489216930615188e-06
+1042.4000000001688 6.460675817838123e-06
+1042.5000000001687 6.4321375661294375e-06
+1042.6000000001688 6.403602175429833e-06
+1042.700000000169 6.375069645686825e-06
+1042.800000000169 6.346539976854468e-06
+1042.9000000001688 6.318013168886547e-06
+1043.000000000169 6.2894892217176515e-06
+1043.100000000169 6.26121481509314e-06
+1043.200000000169 6.2329410368971284e-06
+1043.300000000169 6.204667887204614e-06
+1043.400000000169 6.176395366103444e-06
+1043.5000000001692 6.1481234736688074e-06
+1043.600000000169 6.1198605526926185e-06
+1043.700000000169 6.0916035218820465e-06
+1043.8000000001691 6.063349558587441e-06
+1043.9000000001693 6.035096094049185e-06
+1044.0000000001692 6.00684080862376e-06
+1044.100000000169 5.979544261123495e-06
+1044.2000000001692 5.952245984447164e-06
+1044.3000000001693 5.924944373697422e-06
+1044.4000000001693 5.897638053162153e-06
+1044.5000000001692 5.870325871706573e-06
+1044.6000000001693 5.841830300079793e-06
+1044.7000000001694 5.813338380271004e-06
+1044.8000000001693 5.784849530640745e-06
+1044.9000000001693 5.756363383467613e-06
+1045.0000000001694 5.727879780036815e-06
+1045.1000000001695 5.701098217887233e-06
+1045.2000000001694 5.674303230685805e-06
+1045.3000000001693 5.6474952495835165e-06
+1045.4000000001695 5.620674895762086e-06
+1045.5000000001696 5.593842975819996e-06
+1045.6000000001695 5.567000017289526e-06
+1045.7000000001694 5.540147353727976e-06
+1045.8000000001696 5.513286475765588e-06
+1045.9000000001697 5.48641902677372e-06
+1046.0000000001696 5.459546798449186e-06
+1046.1000000001695 5.434008536195175e-06
+1046.2000000001697 5.408470111294342e-06
+1046.3000000001698 5.382933733910775e-06
+1046.4000000001697 5.35740174738316e-06
+1046.5000000001696 5.331876624120963e-06
+1046.6000000001698 5.30636139981464e-06
+1046.70000000017 5.280848681256859e-06
+1046.8000000001698 5.255338386558877e-06
+1046.9000000001697 5.229830440554095e-06
+1047.0000000001698 5.204324774652991e-06
+1047.10000000017 5.179246669074374e-06
+1047.20000000017 5.1541733577480905e-06
+1047.3000000001698 5.129104790572611e-06
+1047.40000000017 5.104040923482075e-06
+1047.50000000017 5.078981718356134e-06
+1047.60000000017 5.0539269342436995e-06
+1047.70000000017 5.0288763348730455e-06
+1047.80000000017 5.003829890146433e-06
+1047.9000000001702 4.978787565569529e-06
+1048.00000000017 4.953749322368656e-06
+1048.10000000017 4.929238905329861e-06
+1048.2000000001701 4.904727204417159e-06
+1048.3000000001703 4.880214169377377e-06
+1048.4000000001702 4.855699746150632e-06
+1048.50000000017 4.831183877013528e-06
+1048.6000000001702 4.8056908608502134e-06
+1048.7000000001703 4.780202583692228e-06
+1048.8000000001703 4.754721352531563e-06
+1048.9000000001702 4.729249272452854e-06
+1049.0000000001703 4.70378825082646e-06
+1049.1000000001704 4.680428889436764e-06
+1049.2000000001703 4.657076556519202e-06
+1049.3000000001703 4.633732599555235e-06
+1049.4000000001704 4.610398187219861e-06
+1049.5000000001705 4.587074313196212e-06
+1049.6000000001704 4.563761799988364e-06
+1049.7000000001703 4.540460784275665e-06
+1049.8000000001705 4.517171613881108e-06
+1049.9000000001706 4.493894470813385e-06
+1050.0000000001705 4.470629375301944e-06
+1050.1000000001704 4.448024812746186e-06
+1050.2000000001706 4.425432389138791e-06
+1050.3000000001707 4.402851667944141e-06
+1050.4000000001706 4.380282066687064e-06
+1050.5000000001705 4.357722860844504e-06
+1050.6000000001707 4.335173187738708e-06
+1050.7000000001708 4.3126322964873415e-06
+1050.8000000001707 4.290099127906557e-06
+1050.9000000001706 4.267572499148526e-06
+1051.0000000001708 4.245051107491332e-06
+1051.100000000171 4.222586772828746e-06
+1051.2000000001708 4.2001241612810105e-06
+1051.3000000001707 4.177661633059851e-06
+1051.4000000001708 4.1551974434912425e-06
+1051.500000000171 4.132729746804492e-06
+1051.600000000171 4.110256599913572e-06
+1051.7000000001708 4.087783670535623e-06
+1051.800000000171 4.0653109587342505e-06
+1051.900000000171 4.0428384645857905e-06
+1052.000000000171 4.020366188150896e-06
+1052.100000000171 3.9985665319825455e-06
+1052.200000000171 3.9767747506903e-06
+1052.3000000001712 3.954990844701989e-06
+1052.400000000171 3.933214814433038e-06
+1052.500000000171 3.911446660316387e-06
+1052.6000000001711 3.890472336762628e-06
+1052.7000000001713 3.869497415485206e-06
+1052.8000000001712 3.848521896530224e-06
+1052.900000000171 3.827545779963769e-06
+1053.0000000001712 3.8065690658447447e-06
+1053.1000000001713 3.7861040738408664e-06
+1053.2000000001713 3.765640530837368e-06
+1053.3000000001712 3.7451784368902446e-06
+1053.4000000001713 3.724717792055459e-06
+1053.5000000001714 3.7042585963929017e-06
+1053.6000000001713 3.6838008499547177e-06
+1053.7000000001713 3.6633445527968217e-06
+1053.8000000001714 3.642889704978887e-06
+1053.9000000001715 3.622436306560573e-06
+1054.0000000001714 3.6019843575867566e-06
+1054.1000000001713 3.5816770866763423e-06
+1054.2000000001715 3.561377291019802e-06
+1054.3000000001716 3.54108497120296e-06
+1054.4000000001715 3.5208001278187276e-06
+1054.5000000001714 3.5005227614534897e-06
+1054.6000000001716 3.4809568073294034e-06
+1054.7000000001717 3.461390417787727e-06
+1054.8000000001716 3.4418235931500495e-06
+1054.9000000001715 3.4222563337449826e-06
+1055.0000000001717 3.402688639884473e-06
+1055.1000000001718 3.3837657113066203e-06
+1055.2000000001717 3.3648429843555828e-06
+1055.3000000001716 3.3459204592348642e-06
+1055.4000000001718 3.3269981361444264e-06
+1055.500000000172 3.308076015283144e-06
+1055.6000000001718 3.2884889494173357e-06
+1055.7000000001717 3.2689097390467994e-06
+1055.8000000001718 3.249338384254261e-06
+1055.900000000172 3.2297748851155186e-06
+1056.000000000172 3.210219241711648e-06
+1056.1000000001718 3.1919000963152646e-06
+1056.200000000172 3.1735824899435904e-06
+1056.300000000172 3.155266422561168e-06
+1056.400000000172 3.136951894129283e-06
+1056.500000000172 3.118638904611369e-06
+1056.600000000172 3.099699857328704e-06
+1056.7000000001722 3.0807697618145684e-06
+1056.800000000172 3.0618486170981357e-06
+1056.900000000172 3.0429364222085487e-06
+1057.0000000001721 3.024033176183805e-06
+1057.1000000001723 3.0066096098382036e-06
+1057.2000000001722 2.989185619956158e-06
+1057.300000000172 2.9717612065898426e-06
+1057.4000000001722 2.9543363697852922e-06
+1057.5000000001723 2.9369111095999502e-06
+1057.6000000001723 2.918893838359683e-06
+1057.7000000001722 2.9008832060983578e-06
+1057.8000000001723 2.882879213118629e-06
+1057.9000000001724 2.8648818597382488e-06
+1058.0000000001723 2.8468911462648347e-06
+1058.1000000001723 2.8300352096331234e-06
+1058.2000000001724 2.8131805691070414e-06
+1058.3000000001725 2.796327224692185e-06
+1058.4000000001724 2.77947517638244e-06
+1058.5000000001723 2.7626244241832434e-06
+1058.6000000001725 2.745774968088457e-06
+1058.7000000001726 2.7289268081035024e-06
+1058.8000000001725 2.712079944228019e-06
+1058.9000000001724 2.695234376458752e-06
+1059.0000000001726 2.6783901047968024e-06
+1059.1000000001727 2.6624219453175247e-06
+1059.2000000001726 2.646461000849021e-06
+1059.3000000001725 2.630507270825536e-06
+1059.4000000001727 2.6145607546730334e-06
+1059.5000000001728 2.598621451823932e-06
+1059.6000000001727 2.583213872135444e-06
+1059.7000000001726 2.567807248111668e-06
+1059.8000000001728 2.552401579766738e-06
+1059.900000000173 2.536996867106879e-06
+1060.0000000001728 2.521593110149082e-06
+1060.1000000001727 2.5062803407174554e-06
+1060.2000000001728 2.490967423869912e-06
+1060.300000000173 2.4756543596598463e-06
+1060.400000000173 2.4603411481380267e-06
+1060.5000000001728 2.445027789351751e-06
+1060.600000000173 2.4292209403567585e-06
+1060.700000000173 2.4134201629436008e-06
+1060.800000000173 2.397625457254531e-06
+1060.900000000173 2.381836823429168e-06
+1061.000000000173 2.366054261611215e-06
+1061.1000000001732 2.3512295935846833e-06
+1061.200000000173 2.3364075598789993e-06
+1061.300000000173 2.3215881602291395e-06
+1061.4000000001731 2.3067713943724877e-06
+1061.5000000001733 2.2919572620416774e-06
+1061.6000000001732 2.277145762971788e-06
+1061.700000000173 2.2623368969002045e-06
+1061.8000000001732 2.247530663561925e-06
+1061.9000000001733 2.232727062692024e-06
+1062.0000000001733 2.2179260940277954e-06
+1062.1000000001732 2.2043977622100986e-06
+1062.2000000001733 2.190873190992188e-06
+1062.3000000001734 2.177352381306963e-06
+1062.4000000001733 2.163835334085049e-06
+1062.5000000001733 2.1503220502578065e-06
+1062.6000000001734 2.1372473725394646e-06
+1062.7000000001735 2.1241711391308805e-06
+1062.8000000001734 2.111093350011551e-06
+1062.9000000001733 2.098014005165351e-06
+1063.0000000001735 2.0849331045735505e-06
+1063.1000000001736 2.071628054977874e-06
+1063.2000000001735 2.0583242891922898e-06
+1063.3000000001734 2.0450218071562093e-06
+1063.4000000001736 2.0317206088154473e-06
+1063.5000000001737 2.018420694108748e-06
+1063.6000000001736 2.0047141032514096e-06
+1063.7000000001735 1.991014206839892e-06
+1063.8000000001737 1.97732100402763e-06
+1063.9000000001738 1.963634493976482e-06
+1064.0000000001737 1.949954675849112e-06
+1064.1000000001736 1.9379406545249262e-06
+1064.2000000001738 1.9259292958485023e-06
+1064.300000000174 1.913920599461915e-06
+1064.4000000001738 1.9019145650112854e-06
+1064.5000000001737 1.8899111921387195e-06
+1064.6000000001738 1.8779104804922798e-06
+1064.700000000174 1.8659124297122246e-06
+1064.800000000174 1.8539170394447453e-06
+1064.9000000001738 1.8419243093359624e-06
+1065.000000000174 1.8299342390287306e-06
+1065.100000000174 1.8182763117596102e-06
+1065.200000000174 1.8066167575975639e-06
+1065.300000000174 1.7949555764856834e-06
+1065.400000000174 1.7832927683651616e-06
+1065.5000000001742 1.7716283331754068e-06
+1065.600000000174 1.75996227086139e-06
+1065.700000000174 1.7482945813624752e-06
+1065.8000000001741 1.7366252646198907e-06
+1065.9000000001743 1.7249543205749311e-06
+1066.0000000001742 1.7132817491728101e-06
+1066.100000000174 1.702827418006113e-06
+1066.2000000001742 1.6923736945373594e-06
+1066.3000000001744 1.6819205787811014e-06
+1066.4000000001743 1.6714680707501013e-06
+1066.5000000001742 1.6610161704570698e-06
+1066.6000000001743 1.6505648779147188e-06
+1066.7000000001744 1.640114193137512e-06
+1066.8000000001744 1.6296641161364664e-06
+1066.9000000001743 1.6192146469259746e-06
+1067.0000000001744 1.6087657855170353e-06
+1067.1000000001745 1.5983250235323838e-06
+1067.2000000001744 1.5878847720762117e-06
+1067.3000000001744 1.5774450311554785e-06
+1067.4000000001745 1.5670058007820954e-06
+1067.5000000001746 1.5565670809630562e-06
+1067.6000000001745 1.5461288717086243e-06
+1067.7000000001744 1.535691173025763e-06
+1067.8000000001746 1.525253984923073e-06
+1067.9000000001747 1.5148173074107774e-06
+1068.0000000001746 1.5043811405004295e-06
+1068.1000000001745 1.4956293165009158e-06
+1068.2000000001747 1.4868743334611972e-06
+1068.3000000001748 1.4781161917064965e-06
+1068.4000000001747 1.4693548915620246e-06
+1068.5000000001746 1.4605904333514202e-06
+1068.6000000001748 1.4518228174013764e-06
+1068.700000000175 1.4430520440355693e-06
+1068.8000000001748 1.434278113579198e-06
+1068.9000000001747 1.42550102635741e-06
+1069.0000000001749 1.4167207826946167e-06
+1069.100000000175 1.4083653143736376e-06
+1069.200000000175 1.4000101033621865e-06
+1069.3000000001748 1.3916551496744839e-06
+1069.400000000175 1.3833004533262208e-06
+1069.500000000175 1.3749460143364796e-06
+1069.600000000175 1.3668695952836624e-06
+1069.700000000175 1.3587900377154362e-06
+1069.800000000175 1.3507073418047542e-06
+1069.9000000001752 1.3426215077218142e-06
+1070.000000000175 1.3345325356410338e-06
+1070.100000000175 1.326429837156015e-06
+1070.2000000001751 1.318324130422912e-06
+1070.3000000001753 1.310215415685576e-06
+1070.4000000001752 1.3021036931892415e-06
+1070.500000000175 1.2939889631804482e-06
+1070.6000000001752 1.2858712259030205e-06
+1070.7000000001754 1.277750481602182e-06
+1070.8000000001753 1.2696267305231475e-06
+1070.9000000001752 1.2614999729097822e-06
+1071.0000000001753 1.253370209010535e-06
+1071.1000000001754 1.2463527224709845e-06
+1071.2000000001754 1.2393358440669755e-06
+1071.3000000001753 1.2323195737792013e-06
+1071.4000000001754 1.2253039115857814e-06
+1071.5000000001755 1.2182888574674254e-06
+1071.6000000001754 1.2112744114022976e-06
+1071.7000000001754 1.2042605733723104e-06
+1071.8000000001755 1.1972473433555866e-06
+1071.9000000001756 1.1902347213315443e-06
+1072.0000000001755 1.18322270728094e-06
+1072.1000000001754 1.1769710440486802e-06
+1072.2000000001756 1.1707192467599023e-06
+1072.3000000001757 1.1644673154367649e-06
+1072.4000000001756 1.1582152501038592e-06
+1072.5000000001755 1.1519630507849356e-06
+1072.6000000001757 1.1459428777295545e-06
+1072.7000000001758 1.1399200368047392e-06
+1072.8000000001757 1.1338945279563061e-06
+1072.9000000001756 1.1278663511229547e-06
+1073.0000000001758 1.121835506247976e-06
+1073.100000000176 1.1157146713566842e-06
+1073.2000000001758 1.1095921199454705e-06
+1073.3000000001757 1.1034678524716211e-06
+1073.4000000001759 1.097341869391199e-06
+1073.500000000176 1.0912141711575942e-06
+1073.600000000176 1.0848653719061652e-06
+1073.7000000001758 1.0785174258359797e-06
+1073.800000000176 1.0721703328839367e-06
+1073.900000000176 1.0658240929880967e-06
+1074.000000000176 1.0594787060867802e-06
+1074.100000000176 1.0532838291373759e-06
+1074.200000000176 1.0470954728159472e-06
+1074.3000000001762 1.0409136375447613e-06
+1074.400000000176 1.034738323741693e-06
+1074.500000000176 1.0285695318292566e-06
+1074.6000000001761 1.0232373066823374e-06
+1074.7000000001763 1.0179026144760941e-06
+1074.8000000001762 1.0125654550969243e-06
+1074.900000000176 1.0072258284290965e-06
+1075.0000000001762 1.0018837343606236e-06
+1075.1000000001764 9.96870843511694e-07
+1075.2000000001763 9.918517107726649e-07
+1075.3000000001762 9.868263371868982e-07
+1075.4000000001763 9.817947237956236e-07
+1075.5000000001764 9.767568716403705e-07
+1075.6000000001764 9.713204083448754e-07
+1075.7000000001763 9.658822595309502e-07
+1075.8000000001764 9.604424255268816e-07
+1075.9000000001765 9.550009066599385e-07
+1076.0000000001764 9.495577032550741e-07
+1076.1000000001764 9.439306438564749e-07
+1076.2000000001765 9.383040754860902e-07
+1076.3000000001766 9.326779981280981e-07
+1076.4000000001765 9.27052411771513e-07
+1076.5000000001764 9.214273163985538e-07
+1076.6000000001766 9.152482401255467e-07
+1076.7000000001767 9.090764650401675e-07
+1076.8000000001766 9.029119902351531e-07
+1076.9000000001765 8.967548148060798e-07
+1077.0000000001767 8.906049378489002e-07
+1077.1000000001768 8.851989343465127e-07
+1077.2000000001767 8.797988162562713e-07
+1077.3000000001766 8.744045836433173e-07
+1077.4000000001768 8.690162365764052e-07
+1077.500000000177 8.636337751239751e-07
+1077.6000000001768 8.591290575345461e-07
+1077.7000000001767 8.546203708924068e-07
+1077.8000000001769 8.501077151810349e-07
+1077.900000000177 8.455910903857177e-07
+1078.000000000177 8.41070496488218e-07
+1078.1000000001768 8.360315419501992e-07
+1078.200000000177 8.309856569227899e-07
+1078.300000000177 8.259328410866284e-07
+1078.400000000177 8.208730941215319e-07
+1078.500000000177 8.158064157076186e-07
+1078.600000000177 8.104065404620656e-07
+1078.7000000001772 8.050049210802531e-07
+1078.800000000177 7.996011806023284e-07
+1078.900000000177 7.941949785485722e-07
+1079.0000000001771 7.88786010014767e-07
+1079.1000000001773 7.838365272285397e-07
+1079.2000000001772 7.788870144598543e-07
+1079.300000000177 7.739372663003811e-07
+1079.4000000001772 7.689871088235599e-07
+1079.5000000001774 7.64036398755094e-07
+1079.6000000001773 7.584722082553832e-07
+1079.7000000001772 7.529152430777765e-07
+1079.8000000001773 7.473654595727227e-07
+1079.9000000001774 7.418228404504348e-07
+1080.0000000001774 7.362873938726261e-07
+1080.1000000001773 7.309318020842635e-07
+1080.2000000001774 7.255811131041975e-07
+1080.3000000001775 7.202354061279109e-07
+1080.4000000001774 7.148947822999644e-07
+1080.5000000001774 7.095593638453474e-07
+1080.6000000001775 7.048021866710709e-07
+1080.7000000001776 7.000425502214331e-07
+1080.8000000001775 6.952806340953307e-07
+1080.9000000001774 6.905166361850854e-07
+1081.0000000001776 6.857507718972196e-07
+1081.1000000001777 6.815676725509749e-07
+1081.2000000001776 6.773846925399073e-07
+1081.3000000001775 6.732020948446554e-07
+1081.4000000001777 6.690201578161424e-07
+1081.5000000001778 6.648391745005756e-07
+1081.6000000001777 6.610619387468986e-07
+1081.7000000001776 6.572799893690922e-07
+1081.8000000001778 6.534933034263063e-07
+1081.900000000178 6.497018591511927e-07
+1082.0000000001778 6.459056359353704e-07
+1082.1000000001777 6.419496651004743e-07
+1082.2000000001779 6.379908822091254e-07
+1082.300000000178 6.340292702077996e-07
+1082.400000000178 6.300648131441546e-07
+1082.5000000001778 6.260974961463545e-07
+1082.600000000178 6.213734906082884e-07
+1082.700000000178 6.16656850339627e-07
+1082.800000000178 6.119475799872584e-07
+1082.900000000178 6.072456846839824e-07
+1083.000000000178 6.025511700265084e-07
+1083.1000000001782 5.971966478506213e-07
+1083.200000000178 5.918503082013195e-07
+1083.300000000178 5.865121589118187e-07
+1083.4000000001781 5.811822081533868e-07
+1083.5000000001783 5.758604644118636e-07
+1083.6000000001782 5.71360227040527e-07
+1083.700000000178 5.668539062272072e-07
+1083.8000000001782 5.623417797007536e-07
+1083.9000000001784 5.578240985515187e-07
+1084.0000000001783 5.533010879438615e-07
+1084.1000000001782 5.501309447185599e-07
+1084.2000000001783 5.469577297246616e-07
+1084.3000000001784 5.437816007404957e-07
+1084.4000000001784 5.406026939944047e-07
+1084.5000000001783 5.3742112467454e-07
+1084.6000000001784 5.338046694246592e-07
+1084.7000000001785 5.301913390486177e-07
+1084.8000000001784 5.265811678027915e-07
+1084.9000000001784 5.229741702640265e-07
+1085.0000000001785 5.19370341950111e-07
+1085.1000000001786 5.146747928146843e-07
+1085.2000000001785 5.099892302597261e-07
+1085.3000000001784 5.053135881562512e-07
+1085.4000000001786 5.006477843295816e-07
+1085.5000000001787 4.959917213529253e-07
+1085.6000000001786 4.907442533651292e-07
+1085.7000000001785 4.855164456773332e-07
+1085.8000000001787 4.803081636486821e-07
+1085.9000000001788 4.75119261408217e-07
+1086.0000000001787 4.69949582686952e-07
+1086.1000000001786 4.663518484974441e-07
+1086.2000000001788 4.6275709846900643e-07
+1086.300000000179 4.5916515098409626e-07
+1086.4000000001788 4.5557581467054756e-07
+1086.5000000001787 4.5198888899380925e-07
+1086.6000000001789 4.4951522202509674e-07
+1086.700000000179 4.4702753853459634e-07
+1086.800000000179 4.4452583863766823e-07
+1086.9000000001788 4.420101224511739e-07
+1087.000000000179 4.3948039009047916e-07
+1087.100000000179 4.368188503451244e-07
+1087.200000000179 4.341450474159745e-07
+1087.300000000179 4.314589838647043e-07
+1087.400000000179 4.287606622518424e-07
+1087.5000000001792 4.260500851363497e-07
+1087.600000000179 4.2281402745461593e-07
+1087.700000000179 4.19574202463832e-07
+1087.8000000001791 4.1633061099516123e-07
+1087.9000000001793 4.1308325388144455e-07
+1088.0000000001792 4.09832131952876e-07
+1088.100000000179 4.0610534895176406e-07
+1088.2000000001792 4.0238291034257607e-07
+1088.3000000001794 3.98664815897144e-07
+1088.4000000001793 3.9495106538687105e-07
+1088.5000000001792 3.9124165858311255e-07
+1088.6000000001793 3.8730110613892084e-07
+1088.7000000001794 3.833691108458161e-07
+1088.8000000001794 3.7944567223997195e-07
+1088.9000000001793 3.7553078985672187e-07
+1089.0000000001794 3.7162446323373777e-07
+1089.1000000001795 3.6795830443987205e-07
+1089.2000000001794 3.6429635468620697e-07
+1089.3000000001794 3.606386139777959e-07
+1089.4000000001795 3.569850823200331e-07
+1089.5000000001796 3.533357597173004e-07
+1089.6000000001795 3.4976212831837816e-07
+1089.7000000001794 3.4619130428324106e-07
+1089.8000000001796 3.4262328761930564e-07
+1089.9000000001797 3.390580783336236e-07
+1090.0000000001796 3.3549567643498794e-07
+1090.1000000001795 3.3252218391550407e-07
+1090.2000000001797 3.295525948020588e-07
+1090.3000000001798 3.265869081152459e-07
+1090.4000000001797 3.2362512287580214e-07
+1090.5000000001796 3.2066723810791466e-07
+1090.6000000001798 3.1843132264030143e-07
+1090.70000000018 3.161868481412839e-07
+1090.8000000001798 3.139338170264988e-07
+1090.9000000001797 3.116722317115634e-07
+1091.0000000001799 3.094020946114971e-07
+1091.10000000018 3.0698003013319743e-07
+1091.20000000018 3.0455211102268115e-07
+1091.3000000001798 3.021183364124084e-07
+1091.40000000018 2.996787054345402e-07
+1091.50000000018 2.972332172185072e-07
+1091.60000000018 2.937674393638268e-07
+1091.70000000018 2.903147488074478e-07
+1091.80000000018 2.86875147642446e-07
+1091.9000000001802 2.834486379630974e-07
+1092.00000000018 2.800352218627692e-07
+1092.10000000018 2.7665439588735287e-07
+1092.2000000001801 2.732864584030351e-07
+1092.3000000001803 2.699314062739311e-07
+1092.4000000001802 2.665892363631157e-07
+1092.50000000018 2.632599455387185e-07
+1092.6000000001802 2.6080838748736687e-07
+1092.7000000001804 2.58351635033699e-07
+1092.8000000001803 2.558896895405537e-07
+1092.9000000001802 2.534225523694825e-07
+1093.0000000001803 2.509502248834351e-07
+1093.1000000001804 2.4874192701592215e-07
+1093.2000000001804 2.465225666551014e-07
+1093.3000000001803 2.442921448380694e-07
+1093.4000000001804 2.420506626021774e-07
+1093.5000000001805 2.3979812098289944e-07
+1093.6000000001804 2.3705025084581187e-07
+1093.7000000001804 2.3430254996308192e-07
+1093.8000000001805 2.3155501833441633e-07
+1093.9000000001806 2.2880765596026398e-07
+1094.0000000001805 2.2606046284013742e-07
+1094.1000000001804 2.2359785334771757e-07
+1094.2000000001806 2.2114270499675094e-07
+1094.3000000001807 2.1869501823862895e-07
+1094.4000000001806 2.1625479352468198e-07
+1094.5000000001805 2.1382203130777832e-07
+1094.6000000001807 2.117897439320537e-07
+1094.7000000001808 2.0975737714984215e-07
+1094.8000000001807 2.0772493096999293e-07
+1094.9000000001806 2.056924054017896e-07
+1095.0000000001808 2.036598004539645e-07
+1095.100000000181 2.015649992546871e-07
+1095.2000000001808 1.9947138161817066e-07
+1095.3000000001807 1.9737894730659298e-07
+1095.4000000001809 1.9528769608278622e-07
+1095.500000000181 1.9319762770849627e-07
+1095.600000000181 1.9095093126031333e-07
+1095.7000000001808 1.8870880062848647e-07
+1095.800000000181 1.864712347421419e-07
+1095.900000000181 1.842382325309308e-07
+1096.000000000181 1.820097929257157e-07
+1096.100000000181 1.8028571386506773e-07
+1096.200000000181 1.7855493067989928e-07
+1096.3000000001812 1.7681744343125301e-07
+1096.400000000181 1.7507325218042136e-07
+1096.500000000181 1.7332235698868416e-07
+1096.6000000001811 1.715295145410334e-07
+1096.7000000001813 1.6973080759076685e-07
+1096.8000000001812 1.6792623619239255e-07
+1096.900000000181 1.6611580040134916e-07
+1097.0000000001812 1.6429950027040552e-07
+1097.1000000001814 1.6194358084075672e-07
+1097.2000000001813 1.595953254218338e-07
+1097.3000000001812 1.5725473347584005e-07
+1097.4000000001813 1.5492180446495935e-07
+1097.5000000001814 1.5259653785169363e-07
+1097.6000000001814 1.503720619551358e-07
+1097.7000000001813 1.481527259934648e-07
+1097.8000000001814 1.4593852960902405e-07
+1097.9000000001815 1.4372947244415697e-07
+1098.0000000001814 1.4152555414307116e-07
+1098.1000000001814 1.401112115967981e-07
+1098.2000000001815 1.3869815464804677e-07
+1098.3000000001816 1.372863830886157e-07
+1098.4000000001815 1.3587589671032086e-07
+1098.5000000001814 1.5171784097603962e-07
+1098.6000000001816 1.615702232721661e-07
+1098.7000000001817 1.6537896964062437e-07
+1098.8000000001816 1.6338587586193406e-07
+1098.9000000001815 1.5624305512174176e-07
+1099.0000000001817 0.0
+1099.1000000001818 0.0
+1099.2000000001817 0.0
+1099.3000000001816 0.0
+1099.4000000001818 0.0
+1099.500000000182 0.0
+1099.6000000001818 0.0
+1099.7000000001817 0.0
+1099.8000000001819 0.0
+1099.900000000182 0.0
+1100.000000000182 0.0
+1100.1000000001818 0.0
+1100.200000000182 0.0
+1100.300000000182 0.0
+1100.400000000182 0.0
+1100.500000000182 0.0
+1100.600000000182 0.0
+1100.7000000001822 0.0
+1100.800000000182 -0.0
+1100.900000000182 -0.0
+1101.0000000001821 -0.0
+1101.1000000001823 -0.0
+1101.2000000001822 -0.0
+1101.300000000182 -0.0
+1101.4000000001822 -0.0
+1101.5000000001824 0.0
+1101.6000000001823 0.0
+1101.7000000001822 0.0
+1101.8000000001823 0.0
+1101.9000000001824 0.0
+1102.0000000001824 0.0
+1102.1000000001823 0.0
+1102.2000000001824 0.0
+1102.3000000001825 0.0
+1102.4000000001824 0.0
+1102.5000000001824 0.0
+1102.6000000001825 0.0
+1102.7000000001826 0.0
+1102.8000000001825 0.0
+1102.9000000001824 0.0
+1103.0000000001826 0.0
+1103.1000000001827 0.0
+1103.2000000001826 0.0
+1103.3000000001825 0.0
+1103.4000000001827 0.0
+1103.5000000001828 0.0
+1103.6000000001827 0.0
+1103.7000000001826 0.0
+1103.8000000001828 0.0
+1103.900000000183 0.0
+1104.0000000001828 0.0
+1104.1000000001827 0.0
+1104.2000000001829 0.0
+1104.300000000183 0.0
+1104.400000000183 0.0
+1104.5000000001828 0.0
+1104.600000000183 0.0
+1104.700000000183 0.0
+1104.800000000183 0.0
+1104.900000000183 0.0
+1105.000000000183 0.0
+1105.1000000001832 0.0
+1105.200000000183 0.0
+1105.300000000183 0.0
+1105.4000000001831 0.0
+1105.5000000001833 0.0
+1105.6000000001832 0.0
+1105.700000000183 0.0
+1105.8000000001832 0.0
+1105.9000000001834 0.0
+1106.0000000001833 0.0
+1106.1000000001832 0.0
+1106.2000000001833 0.0
+1106.3000000001834 0.0
+1106.4000000001834 0.0
+1106.5000000001833 0.0
+1106.6000000001834 0.0
+1106.7000000001835 0.0
+1106.8000000001834 0.0
+1106.9000000001834 0.0
+1107.0000000001835 0.0
+1107.1000000001836 0.0
+1107.2000000001835 0.0
+1107.3000000001834 0.0
+1107.4000000001836 0.0
+1107.5000000001837 0.0
+1107.6000000001836 0.0
+1107.7000000001835 0.0
+1107.8000000001837 0.0
+1107.9000000001838 0.0
+1108.0000000001837 0.0
+1108.1000000001836 0.0
+1108.2000000001838 0.0
+1108.300000000184 0.0
+1108.4000000001838 0.0
+1108.5000000001837 0.0
+1108.6000000001839 0.0
+1108.700000000184 0.0
+1108.800000000184 0.0
+1108.9000000001838 0.0
+1109.000000000184 0.0
+1109.100000000184 0.0
+1109.200000000184 0.0
+1109.300000000184 0.0
+1109.400000000184 0.0
+1109.5000000001842 0.0
+1109.600000000184 0.0
+1109.700000000184 0.0
+1109.8000000001841 0.0
+1109.9000000001843 0.0
+1110.0000000001842 0.0
+1110.100000000184 0.0
+1110.2000000001842 0.0
+1110.3000000001844 0.0
+1110.4000000001843 0.0
+1110.5000000001842 0.0
+1110.6000000001843 0.0
+1110.7000000001844 0.0
+1110.8000000001844 0.0
+1110.9000000001843 0.0
+1111.0000000001844 0.0
+1111.1000000001845 0.0
+1111.2000000001844 0.0
+1111.3000000001844 0.0
+1111.4000000001845 0.0
+1111.5000000001846 0.0
+1111.6000000001845 0.0
+1111.7000000001844 0.0
+1111.8000000001846 0.0
+1111.9000000001847 0.0
+1112.0000000001846 0.0
+1112.1000000001845 0.0
+1112.2000000001847 0.0
+1112.3000000001848 0.0
+1112.4000000001847 0.0
+1112.5000000001846 0.0
+1112.6000000001848 0.0
+1112.700000000185 0.0
+1112.8000000001848 0.0
+1112.9000000001847 0.0
+1113.0000000001849 0.0
+1113.100000000185 0.0
+1113.200000000185 0.0
+1113.3000000001848 0.0
+1113.400000000185 0.0
+1113.500000000185 0.0
+1113.600000000185 0.0
+1113.700000000185 0.0
+1113.800000000185 0.0
+1113.9000000001852 0.0
+1114.000000000185 0.0
+1114.100000000185 0.0
+1114.2000000001851 0.0
+1114.3000000001853 0.0
+1114.4000000001852 0.0
+1114.500000000185 0.0
+1114.6000000001852 0.0
+1114.7000000001854 0.0
+1114.8000000001853 0.0
+1114.9000000001852 0.0
+1115.0000000001853 0.0
+1115.1000000001854 0.0
+1115.2000000001854 0.0
+1115.3000000001853 0.0
+1115.4000000001854 0.0
+1115.5000000001855 0.0
+1115.6000000001854 0.0
+1115.7000000001854 0.0
+1115.8000000001855 0.0
+1115.9000000001856 0.0
+1116.0000000001855 0.0
+1116.1000000001854 0.0
+1116.2000000001856 0.0
+1116.3000000001857 0.0
+1116.4000000001856 0.0
+1116.5000000001855 0.0
+1116.6000000001857 0.0
+1116.7000000001858 0.0
+1116.8000000001857 0.0
+1116.9000000001856 0.0
+1117.0000000001858 0.0
+1117.100000000186 0.0
+1117.2000000001858 0.0
+1117.3000000001857 0.0
+1117.4000000001859 0.0
+1117.500000000186 0.0
+1117.600000000186 0.0
+1117.7000000001858 0.0
+1117.800000000186 0.0
+1117.900000000186 0.0
+1118.000000000186 0.0
+1118.100000000186 0.0
+1118.200000000186 0.0
+1118.3000000001862 0.0
+1118.400000000186 0.0
+1118.500000000186 0.0
+1118.6000000001861 0.0
+1118.7000000001863 0.0
+1118.8000000001862 0.0
+1118.900000000186 0.0
+1119.0000000001862 0.0
+1119.1000000001864 0.0
+1119.2000000001863 0.0
+1119.3000000001862 0.0
+1119.4000000001863 0.0
+1119.5000000001864 0.0
+1119.6000000001864 0.0
+1119.7000000001863 0.0
+1119.8000000001864 0.0
+1119.9000000001865 0.0
+1120.0000000001864 0.0
+1120.1000000001864 0.0
+1120.2000000001865 0.0
+1120.3000000001866 0.0
+1120.4000000001865 0.0
+1120.5000000001864 0.0
+1120.6000000001866 0.0
+1120.7000000001867 0.0
+1120.8000000001866 0.0
+1120.9000000001865 0.0
+1121.0000000001867 0.0
+1121.1000000001868 0.0
+1121.2000000001867 0.0
+1121.3000000001866 0.0
+1121.4000000001868 0.0
+1121.500000000187 0.0
+1121.6000000001868 0.0
+1121.7000000001867 0.0
+1121.8000000001869 0.0
+1121.900000000187 0.0
+1122.000000000187 0.0
+1122.1000000001868 0.0
+1122.200000000187 0.0
+1122.300000000187 0.0
+1122.400000000187 0.0
+1122.500000000187 0.0
+1122.600000000187 0.0
+1122.7000000001872 0.0
+1122.800000000187 0.0
+1122.900000000187 0.0
+1123.0000000001871 0.0
+1123.1000000001873 0.0
+1123.2000000001872 0.0
+1123.300000000187 0.0
+1123.4000000001872 0.0
+1123.5000000001874 0.0
+1123.6000000001873 0.0
+1123.7000000001872 0.0
+1123.8000000001873 0.0
+1123.9000000001874 0.0
+1124.0000000001874 0.0
+1124.1000000001873 0.0
+1124.2000000001874 0.0
+1124.3000000001875 0.0
+1124.4000000001874 0.0
+1124.5000000001874 0.0
+1124.6000000001875 0.0
+1124.7000000001876 0.0
+1124.8000000001875 0.0
+1124.9000000001874 0.0
+1125.0000000001876 0.0
+1125.1000000001877 0.0
+1125.2000000001876 0.0
+1125.3000000001875 0.0
+1125.4000000001877 0.0
+1125.5000000001878 0.0
+1125.6000000001877 0.0
+1125.7000000001876 0.0
+1125.8000000001878 0.0
+1125.900000000188 0.0
+1126.0000000001878 0.0
+1126.1000000001877 0.0
+1126.2000000001879 0.0
+1126.300000000188 0.0
+1126.400000000188 0.0
+1126.5000000001878 0.0
+1126.600000000188 0.0
+1126.700000000188 0.0
+1126.800000000188 0.0
+1126.900000000188 0.0
+1127.000000000188 0.0
+1127.1000000001882 0.0
+1127.200000000188 0.0
+1127.300000000188 0.0
+1127.4000000001881 0.0
+1127.5000000001883 0.0
+1127.6000000001882 0.0
+1127.700000000188 0.0
+1127.8000000001882 0.0
+1127.9000000001884 0.0
+1128.0000000001883 0.0
+1128.1000000001882 0.0
+1128.2000000001883 0.0
+1128.3000000001884 0.0
+1128.4000000001884 0.0
+1128.5000000001883 0.0
+1128.6000000001884 0.0
+1128.7000000001885 0.0
+1128.8000000001884 0.0
+1128.9000000001884 0.0
+1129.0000000001885 0.0
+1129.1000000001886 0.0
+1129.2000000001885 0.0
+1129.3000000001884 0.0
+1129.4000000001886 0.0
+1129.5000000001887 0.0
+1129.6000000001886 0.0
+1129.7000000001885 0.0
+1129.8000000001887 0.0
+1129.9000000001888 0.0
+1130.0000000001887 0.0
+1130.1000000001886 0.0
+1130.2000000001888 0.0
+1130.300000000189 0.0
+1130.4000000001888 0.0
+1130.5000000001887 0.0
+1130.6000000001889 0.0
+1130.700000000189 0.0
+1130.800000000189 0.0
+1130.9000000001888 0.0
+1131.000000000189 0.0
+1131.100000000189 0.0
+1131.200000000189 0.0
+1131.300000000189 0.0
+1131.400000000189 0.0
+1131.5000000001892 0.0
+1131.600000000189 0.0
+1131.700000000189 0.0
+1131.8000000001891 0.0
+1131.9000000001893 0.0
+1132.0000000001892 0.0
+1132.100000000189 0.0
+1132.2000000001892 0.0
+1132.3000000001894 0.0
+1132.4000000001893 0.0
+1132.5000000001892 0.0
+1132.6000000001893 0.0
+1132.7000000001894 0.0
+1132.8000000001894 0.0
+1132.9000000001893 0.0
+1133.0000000001894 0.0
+1133.1000000001895 0.0
+1133.2000000001894 0.0
+1133.3000000001894 0.0
+1133.4000000001895 0.0
+1133.5000000001896 0.0
+1133.6000000001895 0.0
+1133.7000000001894 0.0
+1133.8000000001896 0.0
+1133.9000000001897 0.0
+1134.0000000001896 0.0
+1134.1000000001895 0.0
+1134.2000000001897 0.0
+1134.3000000001898 0.0
+1134.4000000001897 0.0
+1134.5000000001896 0.0
+1134.6000000001898 0.0
+1134.70000000019 0.0
+1134.8000000001898 0.0
+1134.9000000001897 0.0
+1135.0000000001899 0.0
+1135.10000000019 0.0
+1135.20000000019 0.0
+1135.3000000001898 0.0
+1135.40000000019 0.0
+1135.50000000019 0.0
+1135.60000000019 0.0
+1135.70000000019 0.0
+1135.80000000019 0.0
+1135.9000000001902 0.0
+1136.00000000019 0.0
+1136.10000000019 0.0
+1136.2000000001901 0.0
+1136.3000000001903 0.0
+1136.4000000001902 0.0
+1136.50000000019 0.0
+1136.6000000001902 0.0
+1136.7000000001904 0.0
+1136.8000000001903 0.0
+1136.9000000001902 0.0
+1137.0000000001903 0.0
+1137.1000000001904 0.0
+1137.2000000001904 0.0
+1137.3000000001903 0.0
+1137.4000000001904 0.0
+1137.5000000001905 0.0
+1137.6000000001904 0.0
+1137.7000000001904 0.0
+1137.8000000001905 0.0
+1137.9000000001906 0.0
+1138.0000000001905 0.0
+1138.1000000001904 0.0
+1138.2000000001906 0.0
+1138.3000000001907 0.0
+1138.4000000001906 0.0
+1138.5000000001905 0.0
+1138.6000000001907 0.0
+1138.7000000001908 0.0
+1138.8000000001907 0.0
+1138.9000000001906 0.0
+1139.0000000001908 0.0
+1139.100000000191 0.0
+1139.2000000001908 0.0
+1139.3000000001907 0.0
+1139.4000000001909 0.0
+1139.500000000191 0.0
+1139.600000000191 0.0
+1139.7000000001908 0.0
+1139.800000000191 0.0
+1139.900000000191 0.0
+1140.000000000191 0.0
+1140.100000000191 0.0
+1140.200000000191 0.0
+1140.3000000001912 0.0
+1140.400000000191 0.0
+1140.500000000191 0.0
+1140.6000000001911 0.0
+1140.7000000001913 0.0
+1140.8000000001912 0.0
+1140.900000000191 0.0
+1141.0000000001912 0.0
+1141.1000000001914 0.0
+1141.2000000001913 0.0
+1141.3000000001912 0.0
+1141.4000000001913 0.0
+1141.5000000001914 0.0
+1141.6000000001914 0.0
+1141.7000000001913 0.0
+1141.8000000001914 0.0
+1141.9000000001915 0.0
+1142.0000000001914 0.0
+1142.1000000001914 0.0
+1142.2000000001915 0.0
+1142.3000000001916 0.0
+1142.4000000001915 0.0
+1142.5000000001914 0.0
+1142.6000000001916 0.0
+1142.7000000001917 0.0
+1142.8000000001916 0.0
+1142.9000000001915 0.0
+1143.0000000001917 0.0
+1143.1000000001918 0.0
+1143.2000000001917 0.0
+1143.3000000001916 0.0
+1143.4000000001918 0.0
+1143.500000000192 0.0
+1143.6000000001918 0.0
+1143.7000000001917 0.0
+1143.8000000001919 0.0
+1143.900000000192 0.0
+1144.000000000192 0.0
+1144.1000000001918 0.0
+1144.200000000192 0.0
+1144.300000000192 0.0
+1144.400000000192 0.0
+1144.500000000192 0.0
+1144.600000000192 0.0
+1144.7000000001922 0.0
+1144.800000000192 0.0
+1144.900000000192 0.0
+1145.0000000001921 0.0
+1145.1000000001923 0.0
+1145.2000000001922 0.0
+1145.300000000192 0.0
+1145.4000000001922 0.0
+1145.5000000001924 0.0
+1145.6000000001923 0.0
+1145.7000000001922 0.0
+1145.8000000001923 0.0
+1145.9000000001924 0.0
+1146.0000000001924 0.0
+1146.1000000001923 0.0
+1146.2000000001924 0.0
+1146.3000000001925 0.0
+1146.4000000001924 0.0
+1146.5000000001924 0.0
+1146.6000000001925 0.0
+1146.7000000001926 0.0
+1146.8000000001925 0.0
+1146.9000000001924 0.0
+1147.0000000001926 0.0
+1147.1000000001927 0.0
+1147.2000000001926 0.0
+1147.3000000001925 0.0
+1147.4000000001927 0.0
+1147.5000000001928 0.0
+1147.6000000001927 0.0
+1147.7000000001926 0.0
+1147.8000000001928 0.0
+1147.900000000193 0.0
+1148.0000000001928 0.0
+1148.1000000001927 0.0
+1148.2000000001929 0.0
+1148.300000000193 0.0
+1148.400000000193 0.0
+1148.5000000001928 0.0
+1148.600000000193 0.0
+1148.700000000193 0.0
+1148.800000000193 0.0
+1148.900000000193 0.0
+1149.000000000193 0.0
+1149.1000000001932 0.0
+1149.200000000193 0.0
+1149.300000000193 0.0
+1149.4000000001931 0.0
+1149.5000000001933 0.0
+1149.6000000001932 0.0
+1149.700000000193 0.0
+1149.8000000001932 0.0
+1149.9000000001934 0.0
+1150.0000000001933 0.0
diff --git a/filt_func/rubin/i.dat b/filt_func/rubin/i.dat
new file mode 100755
index 00000000..3479c5bf
--- /dev/null
+++ b/filt_func/rubin/i.dat
@@ -0,0 +1,8508 @@
+# LSST Throughputs files created from syseng_throughputs repo
+# Version 1.9
+# sha1 fcc05772f99427e4a45cd1b9da1628dded9a06d5
+# Aerosols added to atmosphere
+# Wavelen_cutoff_BLUE 669.90
+# Wavelen_cutoff_RED 837.80
+# Wavelength(nm) Throughput(0-1)
+300.0 0.0
+300.1 0.0
+300.20000000000005 0.0
+300.30000000000007 0.0
+300.4000000000001 0.0
+300.5000000000001 0.0
+300.60000000000014 0.0
+300.70000000000016 0.0
+300.8000000000002 0.0
+300.9000000000002 0.0
+301.0000000000002 0.0
+301.10000000000025 0.0
+301.2000000000003 0.0
+301.3000000000003 0.0
+301.4000000000003 0.0
+301.50000000000034 0.0
+301.60000000000036 0.0
+301.7000000000004 0.0
+301.8000000000004 0.0
+301.90000000000043 0.0
+302.00000000000045 0.0
+302.1000000000005 0.0
+302.2000000000005 0.0
+302.3000000000005 0.0
+302.40000000000055 0.0
+302.50000000000057 0.0
+302.6000000000006 0.0
+302.7000000000006 0.0
+302.80000000000064 0.0
+302.90000000000066 0.0
+303.0000000000007 0.0
+303.1000000000007 0.0
+303.2000000000007 0.0
+303.30000000000075 0.0
+303.4000000000008 0.0
+303.5000000000008 0.0
+303.6000000000008 0.0
+303.70000000000084 0.0
+303.80000000000086 0.0
+303.9000000000009 0.0
+304.0000000000009 0.0
+304.10000000000093 0.0
+304.20000000000095 0.0
+304.300000000001 0.0
+304.400000000001 0.0
+304.500000000001 0.0
+304.60000000000105 0.0
+304.70000000000107 0.0
+304.8000000000011 0.0
+304.9000000000011 0.0
+305.00000000000114 0.0
+305.10000000000116 0.0
+305.2000000000012 0.0
+305.3000000000012 0.0
+305.4000000000012 0.0
+305.50000000000125 0.0
+305.6000000000013 0.0
+305.7000000000013 0.0
+305.8000000000013 0.0
+305.90000000000134 0.0
+306.00000000000136 0.0
+306.1000000000014 0.0
+306.2000000000014 0.0
+306.30000000000143 0.0
+306.40000000000146 0.0
+306.5000000000015 0.0
+306.6000000000015 0.0
+306.7000000000015 0.0
+306.80000000000155 0.0
+306.90000000000157 0.0
+307.0000000000016 0.0
+307.1000000000016 0.0
+307.20000000000164 0.0
+307.30000000000166 0.0
+307.4000000000017 0.0
+307.5000000000017 0.0
+307.6000000000017 0.0
+307.70000000000175 0.0
+307.8000000000018 0.0
+307.9000000000018 0.0
+308.0000000000018 0.0
+308.10000000000184 0.0
+308.20000000000186 0.0
+308.3000000000019 0.0
+308.4000000000019 0.0
+308.50000000000193 0.0
+308.60000000000196 0.0
+308.700000000002 0.0
+308.800000000002 0.0
+308.900000000002 0.0
+309.00000000000205 0.0
+309.10000000000207 0.0
+309.2000000000021 0.0
+309.3000000000021 0.0
+309.40000000000214 0.0
+309.50000000000216 0.0
+309.6000000000022 0.0
+309.7000000000022 0.0
+309.8000000000022 0.0
+309.90000000000225 0.0
+310.0000000000023 0.0
+310.1000000000023 0.0
+310.2000000000023 0.0
+310.30000000000234 0.0
+310.40000000000236 0.0
+310.5000000000024 0.0
+310.6000000000024 0.0
+310.70000000000243 0.0
+310.80000000000246 0.0
+310.9000000000025 0.0
+311.0000000000025 0.0
+311.1000000000025 0.0
+311.20000000000255 0.0
+311.30000000000257 0.0
+311.4000000000026 0.0
+311.5000000000026 0.0
+311.60000000000264 0.0
+311.70000000000266 0.0
+311.8000000000027 0.0
+311.9000000000027 0.0
+312.00000000000273 0.0
+312.10000000000275 0.0
+312.2000000000028 0.0
+312.3000000000028 0.0
+312.4000000000028 0.0
+312.50000000000284 0.0
+312.60000000000286 0.0
+312.7000000000029 0.0
+312.8000000000029 0.0
+312.90000000000293 0.0
+313.00000000000296 0.0
+313.100000000003 0.0
+313.200000000003 0.0
+313.300000000003 0.0
+313.40000000000305 0.0
+313.50000000000307 0.0
+313.6000000000031 0.0
+313.7000000000031 0.0
+313.80000000000314 0.0
+313.90000000000316 0.0
+314.0000000000032 0.0
+314.1000000000032 0.0
+314.20000000000323 0.0
+314.30000000000325 0.0
+314.4000000000033 0.0
+314.5000000000033 0.0
+314.6000000000033 0.0
+314.70000000000334 0.0
+314.80000000000337 0.0
+314.9000000000034 0.0
+315.0000000000034 0.0
+315.10000000000343 0.0
+315.20000000000346 0.0
+315.3000000000035 0.0
+315.4000000000035 0.0
+315.5000000000035 0.0
+315.60000000000355 0.0
+315.70000000000357 0.0
+315.8000000000036 0.0
+315.9000000000036 0.0
+316.00000000000364 0.0
+316.10000000000366 0.0
+316.2000000000037 0.0
+316.3000000000037 0.0
+316.40000000000373 0.0
+316.50000000000375 0.0
+316.6000000000038 0.0
+316.7000000000038 0.0
+316.8000000000038 0.0
+316.90000000000384 0.0
+317.00000000000387 0.0
+317.1000000000039 0.0
+317.2000000000039 0.0
+317.30000000000393 0.0
+317.40000000000396 0.0
+317.500000000004 0.0
+317.600000000004 0.0
+317.700000000004 0.0
+317.80000000000405 0.0
+317.90000000000407 0.0
+318.0000000000041 0.0
+318.1000000000041 0.0
+318.20000000000414 0.0
+318.30000000000416 0.0
+318.4000000000042 0.0
+318.5000000000042 0.0
+318.60000000000423 0.0
+318.70000000000425 0.0
+318.8000000000043 0.0
+318.9000000000043 0.0
+319.0000000000043 0.0
+319.10000000000434 0.0
+319.20000000000437 0.0
+319.3000000000044 0.0
+319.4000000000044 0.0
+319.50000000000443 0.0
+319.60000000000446 0.0
+319.7000000000045 0.0
+319.8000000000045 0.0
+319.9000000000045 0.0
+320.00000000000455 2.608869266023373e-22
+320.10000000000457 6.862571085041226e-12
+320.2000000000046 1.626854545004664e-11
+320.3000000000046 2.8687964396523257e-11
+320.40000000000464 4.4634300768670185e-11
+320.50000000000466 6.466582158962241e-11
+320.6000000000047 8.95330049259959e-11
+320.7000000000047 1.1983661519473885e-10
+320.80000000000473 1.5630415958495064e-10
+320.90000000000475 1.9971726550069323e-10
+321.0000000000048 2.5091327577556116e-10
+321.1000000000048 3.183320768183344e-10
+321.2000000000048 3.971737395177138e-10
+321.30000000000484 4.884235764642338e-10
+321.40000000000487 5.930860373510596e-10
+321.5000000000049 7.121847181240911e-10
+321.6000000000049 8.411202203716658e-10
+321.70000000000493 9.84627031075741e-10
+321.80000000000496 1.1434568914988235e-09
+321.900000000005 1.3183565778659266e-09
+322.000000000005 1.5100677600778475e-09
+322.100000000005 1.741790698738026e-09
+322.20000000000505 1.9963220538734223e-09
+322.30000000000507 2.274774326228702e-09
+322.4000000000051 2.5782652359155363e-09
+322.5000000000051 2.9079176786460683e-09
+322.60000000000514 3.292382071261634e-09
+322.70000000000516 3.7118313248415742e-09
+322.8000000000052 4.168173709952787e-09
+322.9000000000052 4.6633644813881795e-09
+323.00000000000523 5.199406274653162e-09
+323.10000000000525 5.9708311151900165e-09
+323.2000000000053 6.8211456286571045e-09
+323.3000000000053 7.75520703256862e-09
+323.4000000000053 8.778006281576449e-09
+323.50000000000534 9.894668789753337e-09
+323.60000000000537 1.10417566835276e-08
+323.7000000000054 1.2278641310758627e-08
+323.8000000000054 1.3609307211476378e-08
+323.90000000000543 1.5037801651615337e-08
+324.00000000000546 1.6568234787969987e-08
+324.1000000000055 1.851528927503892e-08
+324.2000000000055 2.0607310945604746e-08
+324.3000000000055 2.2849211707462818e-08
+324.40000000000555 2.5245869669339028e-08
+324.50000000000557 2.7802128838206408e-08
+324.6000000000056 3.050822952062498e-08
+324.7000000000056 3.3380677269803465e-08
+324.80000000000564 3.64239396781661e-08
+324.90000000000566 3.9642437399147384e-08
+325.0000000000057 4.304054404806238e-08
+325.1000000000057 4.723823481464026e-08
+325.20000000000573 5.171314597926598e-08
+325.30000000000575 5.647563743726436e-08
+325.4000000000058 6.15362061908306e-08
+325.5000000000058 6.690548768160693e-08
+325.6000000000058 7.290360781187837e-08
+325.70000000000584 7.92812240310507e-08
+325.80000000000587 8.605325108999668e-08
+325.9000000000059 9.323488852946361e-08
+326.0000000000059 1.0084162390549472e-07
+326.10000000000593 1.0774586375278682e-07
+326.20000000000596 1.1498683350247573e-07
+326.300000000006 1.2257491299906895e-07
+326.400000000006 1.3052065366013176e-07
+326.500000000006 1.3883478192066855e-07
+326.60000000000605 1.4681109724046835e-07
+326.70000000000607 1.5509788743375283e-07
+326.8000000000061 1.6370185365572512e-07
+326.9000000000061 1.726297404331781e-07
+327.00000000000614 1.8188833578184155e-07
+327.10000000000616 1.938645298374479e-07
+327.2000000000062 2.063446021867002e-07
+327.3000000000062 2.1933797368633066e-07
+327.40000000000623 2.3285399983346025e-07
+327.50000000000625 2.4690197023417943e-07
+327.6000000000063 2.617256292430431e-07
+327.7000000000063 2.77127882946725e-07
+327.8000000000063 2.931195230243034e-07
+327.90000000000634 3.09711321084252e-07
+328.00000000000637 3.2691402836177847e-07
+328.1000000000064 3.443056057978998e-07
+328.2000000000064 3.6235995772587894e-07
+328.30000000000643 3.810931070857026e-07
+328.40000000000646 4.005212705074333e-07
+328.5000000000065 4.206608590523559e-07
+328.6000000000065 4.4249615658281534e-07
+328.7000000000065 4.651617521923471e-07
+328.80000000000655 4.886786443392147e-07
+328.90000000000657 5.13068132818508e-07
+329.0000000000066 5.383518194962324e-07
+329.1000000000066 5.645058192529429e-07
+329.20000000000664 5.9156473092298e-07
+329.30000000000666 6.195483807912428e-07
+329.4000000000067 6.484768179735613e-07
+329.5000000000067 6.783703131738169e-07
+329.60000000000673 7.068782183592938e-07
+329.70000000000675 7.361956573270905e-07
+329.8000000000068 7.663352963921719e-07
+329.9000000000068 7.973098458200418e-07
+330.0000000000068 8.291320557816061e-07
+330.10000000000684 8.609489073360979e-07
+330.20000000000687 8.93553959238348e-07
+330.3000000000069 9.269560073011085e-07
+330.4000000000069 9.611637770452618e-07
+330.50000000000693 9.9618591721217e-07
+330.60000000000696 1.0333423837495973e-06
+330.700000000007 1.0714281062989098e-06
+330.800000000007 1.1104551588925565e-06
+330.900000000007 1.1504355750694133e-06
+331.00000000000705 1.191381339018585e-06
+331.10000000000707 1.2244006409490044e-06
+331.2000000000071 1.258092216354064e-06
+331.3000000000071 1.292464670749971e-06
+331.40000000000714 1.3275265805147979e-06
+331.50000000000716 1.363286484432577e-06
+331.6000000000072 1.4026738950893548e-06
+331.7000000000072 1.4429190714202516e-06
+331.80000000000723 1.4840348669762222e-06
+331.90000000000725 1.5260342437644325e-06
+332.0000000000073 1.5689302722807557e-06
+332.1000000000073 1.6181922826434363e-06
+332.2000000000073 1.6685818857949504e-06
+332.30000000000734 1.720115915220796e-06
+332.40000000000737 1.7728113329832594e-06
+332.5000000000074 1.8266852295672382e-06
+332.6000000000074 1.877971641402541e-06
+332.70000000000744 1.9302668829804456e-06
+332.80000000000746 1.9835828504630803e-06
+332.9000000000075 2.037931502648968e-06
+333.0000000000075 2.093324861445553e-06
+333.1000000000075 2.1365808382738607e-06
+333.20000000000755 2.180417839808241e-06
+333.30000000000757 2.2248393634141458e-06
+333.4000000000076 2.2698488990171777e-06
+333.5000000000076 2.3154499292609065e-06
+333.60000000000764 2.364499178815764e-06
+333.70000000000766 2.4142584525916262e-06
+333.8000000000077 2.464737705691354e-06
+333.9000000000077 2.5159469281146056e-06
+334.00000000000773 2.56789612307389e-06
+334.10000000000775 2.6195022369161514e-06
+334.2000000000078 2.671901809868677e-06
+334.3000000000078 2.7251067936740967e-06
+334.4000000000078 2.779129084388929e-06
+334.50000000000784 2.8339804956003956e-06
+334.60000000000787 2.890820553066841e-06
+334.7000000000079 2.9485512669110734e-06
+334.8000000000079 3.007184805586025e-06
+334.90000000000794 3.0667331427434433e-06
+335.00000000000796 3.1272080217455936e-06
+335.100000000008 3.179693425840954e-06
+335.200000000008 3.2328748614881067e-06
+335.300000000008 3.2867591268322075e-06
+335.40000000000805 3.341352597493915e-06
+335.5000000000081 3.39666118863705e-06
+335.6000000000081 3.44867584465491e-06
+335.7000000000081 3.5012999049159026e-06
+335.80000000000814 3.554535708736146e-06
+335.90000000000816 3.608384967199923e-06
+336.0000000000082 3.6628487219606776e-06
+336.1000000000082 3.716155037389912e-06
+336.20000000000823 3.770000472360646e-06
+336.30000000000825 3.824382291821672e-06
+336.4000000000083 3.879296911213236e-06
+336.5000000000083 3.9347398513209234e-06
+336.6000000000083 3.9907053617835004e-06
+336.70000000000834 4.047217441667936e-06
+336.80000000000837 4.104279063484093e-06
+336.9000000000084 4.1618931959356266e-06
+337.0000000000084 4.220062803289128e-06
+337.10000000000844 4.2708953598451736e-06
+337.20000000000846 4.322175348780332e-06
+337.3000000000085 4.373905329854475e-06
+337.4000000000085 4.426087861020346e-06
+337.5000000000085 4.478725497875668e-06
+337.60000000000855 4.5406001768508836e-06
+337.7000000000086 4.603136335279485e-06
+337.8000000000086 4.666339091808079e-06
+337.9000000000086 4.730213596366683e-06
+338.00000000000864 4.794765030587987e-06
+338.10000000000866 4.856167436952302e-06
+338.2000000000087 4.918179208258169e-06
+338.3000000000087 4.9808047544757665e-06
+338.40000000000873 5.044048513255453e-06
+338.50000000000875 5.107914950353962e-06
+338.6000000000088 5.166551195431679e-06
+338.7000000000088 5.225702473868994e-06
+338.8000000000088 5.285369566753142e-06
+338.90000000000884 5.3455533308761345e-06
+339.00000000000887 5.406254706177254e-06
+339.1000000000089 5.469790612668221e-06
+339.2000000000089 5.533876127282153e-06
+339.30000000000894 5.598512610697885e-06
+339.40000000000896 5.6637015358438115e-06
+339.500000000009 5.729444496740806e-06
+339.600000000009 5.791396953970292e-06
+339.700000000009 5.853814020797747e-06
+339.80000000000905 5.916696884188974e-06
+339.9000000000091 5.980046908129608e-06
+340.0000000000091 6.043865644074657e-06
+340.1000000000091 6.087877061804044e-06
+340.20000000000914 6.132120523654098e-06
+340.30000000000916 6.176597077290599e-06
+340.4000000000092 6.221307995421351e-06
+340.5000000000092 6.266254783579946e-06
+340.60000000000923 6.3161542349053355e-06
+340.70000000000925 6.366353543160706e-06
+340.8000000000093 6.41685533368861e-06
+340.9000000000093 6.4676624896662606e-06
+341.0000000000093 6.518778161136373e-06
+341.10000000000935 6.5781825200921615e-06
+341.20000000000937 6.6380010261954824e-06
+341.3000000000094 6.698238334444041e-06
+341.4000000000094 6.75889942027753e-06
+341.50000000000944 6.819989591165666e-06
+341.60000000000946 6.881514782339727e-06
+341.7000000000095 6.943467845022935e-06
+341.8000000000095 7.0058508369104665e-06
+341.9000000000095 7.068665819794019e-06
+342.00000000000955 7.131914859541107e-06
+342.1000000000096 7.189212575026496e-06
+342.2000000000096 7.246866870464701e-06
+342.3000000000096 7.304879262654031e-06
+342.40000000000964 7.363251270429033e-06
+342.50000000000966 7.4219844145994095e-06
+342.6000000000097 7.475625547687881e-06
+342.7000000000097 7.529556169433841e-06
+342.80000000000973 7.583777252714121e-06
+342.90000000000975 7.638289770156885e-06
+343.0000000000098 7.69309469423005e-06
+343.1000000000098 7.732485648398493e-06
+343.2000000000098 7.772029552244526e-06
+343.30000000000985 7.81172672957991e-06
+343.40000000000987 7.851577503115324e-06
+343.5000000000099 7.89158219447525e-06
+343.6000000000099 7.931762375360303e-06
+343.70000000000994 7.972111512602596e-06
+343.80000000000996 8.01262313654927e-06
+343.90000000001 8.053291176645909e-06
+344.00000000001 8.094109973744466e-06
+344.10000000001 8.130034078404173e-06
+344.20000000001005 8.166065550688739e-06
+344.3000000000101 8.202199969618953e-06
+344.4000000000101 8.238433386212764e-06
+344.5000000000101 8.274762334984361e-06
+344.60000000001014 8.3171915491089e-06
+344.70000000001016 8.359754675478758e-06
+344.8000000000102 8.402449604661342e-06
+344.9000000000102 8.445274748101414e-06
+345.00000000001023 8.488229052084405e-06
+345.10000000001025 8.53903253535376e-06
+345.2000000000103 8.590032439764371e-06
+345.3000000000103 8.641229611072122e-06
+345.4000000000103 8.692625490809122e-06
+345.50000000001035 8.744222133575776e-06
+345.60000000001037 8.792884150439356e-06
+345.7000000000104 8.841722591250905e-06
+345.8000000000104 8.890741328461433e-06
+345.90000000001044 8.939944913154781e-06
+346.00000000001046 8.98933859228902e-06
+346.1000000000105 9.030617906549303e-06
+346.2000000000105 9.072035699801238e-06
+346.3000000000105 9.113599150644943e-06
+346.40000000001055 9.155316176542167e-06
+346.5000000000106 9.197195448795986e-06
+346.6000000000106 9.239246027374077e-06
+346.7000000000106 9.281443942136885e-06
+346.80000000001064 9.32378973311264e-06
+346.90000000001066 9.366283944161686e-06
+347.0000000000107 9.408927122954091e-06
+347.1000000000107 9.4674971438245e-06
+347.20000000001073 9.526346311285065e-06
+347.30000000001075 9.58547574725234e-06
+347.4000000000108 9.644886580140536e-06
+347.5000000000108 9.70457994497283e-06
+347.6000000000108 9.764557385459772e-06
+347.70000000001085 9.82481935398841e-06
+347.80000000001087 9.885366699444355e-06
+347.9000000000109 9.946200270146657e-06
+348.0000000000109 1.00073209137997e-05
+348.10000000001094 1.0045919719737389e-05
+348.20000000001096 1.0084632926964535e-05
+348.300000000011 1.0123460666331087e-05
+348.400000000011 1.0162403067435823e-05
+348.500000000011 1.0201460258443225e-05
+348.60000000001105 1.0244252248883742e-05
+348.7000000000111 1.0287209014539156e-05
+348.8000000000111 1.0330317095016903e-05
+348.9000000000111 1.037356383894039e-05
+349.00000000001114 1.0416937423475558e-05
+349.10000000001116 1.0462750915636139e-05
+349.2000000000112 1.0508685557625524e-05
+349.3000000000112 1.0554732158300822e-05
+349.40000000001123 1.0600882429428517e-05
+349.50000000001125 1.0647129007599035e-05
+349.6000000000113 1.0693465476373465e-05
+349.7000000000113 1.0739886999954756e-05
+349.8000000000113 1.0786389312388918e-05
+349.90000000001135 1.0832969176951633e-05
+350.00000000001137 1.0879624409417736e-05
+350.1000000000114 1.0917899566196507e-05
+350.2000000000114 1.0956196251829091e-05
+350.30000000001144 1.0994515590973334e-05
+350.40000000001146 1.103285984830713e-05
+350.5000000000115 1.107123244806707e-05
+350.6000000000115 1.1113467583078412e-05
+350.7000000000115 1.1155764688053837e-05
+350.80000000001155 1.1198130612268451e-05
+350.9000000000116 1.12405734409056e-05
+351.0000000000116 1.1283102516881774e-05
+351.1000000000116 1.1313759770829463e-05
+351.20000000001164 1.1344463573653673e-05
+351.30000000001166 1.1375227012957347e-05
+351.4000000000117 1.1406064463577656e-05
+351.5000000000117 1.143699160390317e-05
+351.60000000001173 1.1471958697738875e-05
+351.70000000001176 1.1507005006493728e-05
+351.8000000000118 1.1542130485685188e-05
+351.9000000000118 1.157733510076365e-05
+352.0000000000118 1.1612618827131356e-05
+352.10000000001185 1.1643602921582543e-05
+352.20000000001187 1.167464236933035e-05
+352.3000000000119 1.1705737118179907e-05
+352.4000000000119 1.173688712681782e-05
+352.50000000001194 1.1768092364793353e-05
+352.60000000001196 1.1795342547778418e-05
+352.700000000012 1.1822634208794398e-05
+352.800000000012 1.1849967655087328e-05
+352.900000000012 1.1877343184448582e-05
+353.00000000001205 1.1904761085022194e-05
+353.1000000000121 1.1946981689064835e-05
+353.2000000000121 1.1989315804305873e-05
+353.3000000000121 1.2031763858295185e-05
+353.40000000001214 1.2074326269649397e-05
+353.50000000001216 1.2117003447943504e-05
+353.6000000000122 1.215567451599046e-05
+353.7000000000122 1.2194427300177516e-05
+353.80000000001223 1.2233267370513295e-05
+353.90000000001226 1.2272199956669158e-05
+354.0000000000123 1.231122994172527e-05
+354.1000000000123 1.2342034109406575e-05
+354.2000000000123 1.2372906984692496e-05
+354.30000000001235 1.2403852257384663e-05
+354.40000000001237 1.243487323708201e-05
+354.5000000000124 1.2465972848018584e-05
+354.6000000000124 1.249715362420958e-05
+354.70000000001244 1.2528416991759039e-05
+354.80000000001246 1.2559764473236699e-05
+354.9000000000125 1.2591197170639618e-05
+355.0000000000125 1.2622715760002336e-05
+355.1000000000125 1.2653958581369233e-05
+355.20000000001255 1.268528605536798e-05
+355.3000000000126 1.2716697542925588e-05
+355.4000000000126 1.2748191957351961e-05
+355.5000000000126 1.2779767758726863e-05
+355.60000000001264 1.2811422948409573e-05
+355.70000000001266 1.2843156524536649e-05
+355.8000000000127 1.2874965995916796e-05
+355.9000000000127 1.2906848426352168e-05
+356.00000000001273 1.2938800429197509e-05
+356.10000000001276 1.2976216570053914e-05
+356.2000000000128 1.3013717763984459e-05
+356.3000000000128 1.3051299292008593e-05
+356.4000000000128 1.3088955954371249e-05
+356.50000000001285 1.3126682064245738e-05
+356.60000000001287 1.3168843567289379e-05
+356.7000000000129 1.3211107933975908e-05
+356.8000000000129 1.3253475331954902e-05
+356.90000000001294 1.329594592894552e-05
+357.00000000001296 1.3338519892852986e-05
+357.100000000013 1.336904290722115e-05
+357.200000000013 1.3399614928638698e-05
+357.30000000001303 1.3430236001678422e-05
+357.40000000001305 1.346090617103364e-05
+357.5000000000131 1.3491625481327373e-05
+357.6000000000131 1.3522393977183788e-05
+357.7000000000131 1.3553211703252167e-05
+357.80000000001314 1.3584078704182964e-05
+357.90000000001316 1.3614995024603714e-05
+358.0000000000132 1.3645960709190998e-05
+358.1000000000132 1.367541455210703e-05
+358.20000000001323 1.3704912313429546e-05
+358.30000000001326 1.3734454029672387e-05
+358.4000000000133 1.3764039737350326e-05
+358.5000000000133 1.3793669473051377e-05
+358.6000000000133 1.3818795793840727e-05
+358.70000000001335 1.3843940895028042e-05
+358.80000000001337 1.3869110807904812e-05
+358.9000000000134 1.389431115702272e-05
+359.0000000000134 1.3919547156029188e-05
+359.10000000001344 1.3954535723649702e-05
+359.20000000001346 1.3989603126696512e-05
+359.3000000000135 1.4024753415697324e-05
+359.4000000000135 1.4059990224344444e-05
+359.50000000001353 1.4095316763761654e-05
+359.60000000001355 1.4130734653834673e-05
+359.7000000000136 1.4166246651973703e-05
+359.8000000000136 1.4201855051694914e-05
+359.9000000000136 1.4237561676727436e-05
+360.00000000001364 1.4273367874977509e-05
+360.10000000001367 1.4297940021785393e-05
+360.2000000000137 1.4322574272051483e-05
+360.3000000000137 1.4347270367387045e-05
+360.40000000001373 1.4372027551321832e-05
+360.50000000001376 1.4396844565185229e-05
+360.6000000000138 1.4426401094031185e-05
+360.7000000000138 1.4456026936907698e-05
+360.8000000000138 1.4485719145226397e-05
+360.90000000001385 1.4515474259582822e-05
+361.00000000001387 1.4545288304574855e-05
+361.1000000000139 1.4582313635269094e-05
+361.2000000000139 1.4619416631207756e-05
+361.30000000001394 1.465659179532619e-05
+361.40000000001396 1.469383308219811e-05
+361.500000000014 1.473113389140597e-05
+361.600000000014 1.4768487061440504e-05
+361.70000000001403 1.4805911810596997e-05
+361.80000000001405 1.4843407984172423e-05
+361.9000000000141 1.4880975410022736e-05
+362.0000000000141 1.4918613898257428e-05
+362.1000000000141 1.494847142701184e-05
+362.20000000001414 1.4978371488255006e-05
+362.30000000001417 1.5008313790481113e-05
+362.4000000000142 1.5038298024346415e-05
+362.5000000000142 1.50683238625093e-05
+362.60000000001423 1.5103236399138269e-05
+362.70000000001426 1.5138207761690693e-05
+362.8000000000143 1.5173238110822619e-05
+362.9000000000143 1.5208327623428416e-05
+363.0000000000143 1.524347649300503e-05
+363.10000000001435 1.5280914193288568e-05
+363.20000000001437 1.5318420858925385e-05
+363.3000000000144 1.5355996753140815e-05
+363.4000000000144 1.5393642156550133e-05
+363.50000000001444 1.5431357367435423e-05
+363.60000000001446 1.546421087569476e-05
+363.7000000000145 1.549711571211672e-05
+363.8000000000145 1.5530072139873938e-05
+363.90000000001453 1.5563080408287576e-05
+364.00000000001455 1.559614075248105e-05
+364.1000000000146 1.562532461925476e-05
+364.2000000000146 1.5654546784240782e-05
+364.3000000000146 1.5683807414470612e-05
+364.40000000001464 1.5713106662046424e-05
+364.50000000001467 1.574244466410372e-05
+364.6000000000147 1.5771822840358108e-05
+364.7000000000147 1.580124083979737e-05
+364.80000000001473 1.5830698324904415e-05
+364.90000000001476 1.5860194971419283e-05
+365.0000000000148 1.5889730468614805e-05
+365.1000000000148 1.592734501243466e-05
+365.2000000000148 1.5965027526811746e-05
+365.30000000001485 1.6002777796867752e-05
+365.40000000001487 1.604059562118373e-05
+365.5000000000149 1.607848081206083e-05
+365.6000000000149 1.612152234077044e-05
+365.70000000001494 1.616465083564594e-05
+365.80000000001496 1.6207866631392567e-05
+365.900000000015 1.6251170048566022e-05
+366.000000000015 1.6294561393583144e-05
+366.10000000001503 1.6326694719804795e-05
+366.20000000001505 1.635887263274054e-05
+366.3000000000151 1.639109530870656e-05
+366.4000000000151 1.642336290854171e-05
+366.5000000000151 1.6455675577364668e-05
+366.60000000001514 1.6482861272653964e-05
+366.70000000001517 1.651008026274694e-05
+366.8000000000152 1.653733246100636e-05
+366.9000000000152 1.656461781353164e-05
+367.00000000001523 1.659193629962904e-05
+367.10000000001526 1.6636040158924852e-05
+367.2000000000153 1.6680236878200106e-05
+367.3000000000153 1.6724526654585063e-05
+367.4000000000153 1.6768909719912627e-05
+367.50000000001535 1.6813386341085408e-05
+367.60000000001537 1.6857956820643307e-05
+367.7000000000154 1.690261957583202e-05
+367.8000000000154 1.694737439996128e-05
+367.90000000001544 1.6992221082808947e-05
+368.00000000001546 1.7037159410628228e-05
+368.1000000000155 1.7065671973804197e-05
+368.2000000000155 1.709421765308752e-05
+368.30000000001553 1.7122796121105116e-05
+368.40000000001555 1.715140704816991e-05
+368.5000000000156 1.7180050102303513e-05
+368.6000000000156 1.721412123507476e-05
+368.7000000000156 1.7248269670665906e-05
+368.80000000001564 1.7282480720758656e-05
+368.90000000001567 1.7316740737924766e-05
+369.0000000000157 1.735103712662236e-05
+369.1000000000157 1.7376466048772705e-05
+369.20000000001573 1.7401885563669112e-05
+369.30000000001576 1.7427286336021938e-05
+369.4000000000158 1.745266014393552e-05
+369.5000000000158 1.7477999887429803e-05
+369.6000000000158 1.7508716897786295e-05
+369.70000000001585 1.7539399325631785e-05
+369.80000000001587 1.757004283331306e-05
+369.9000000000159 1.7600644196184248e-05
+370.0000000000159 1.763120131248701e-05
+370.10000000001594 1.7663064658026495e-05
+370.20000000001596 1.7694887619758544e-05
+370.300000000016 1.77266715137918e-05
+370.400000000016 1.7758418819493137e-05
+370.50000000001603 1.7790133189798838e-05
+370.60000000001605 1.7816340662629043e-05
+370.7000000000161 1.7842514290732315e-05
+370.8000000000161 1.7868660862308893e-05
+370.9000000000161 1.7894788403323687e-05
+371.00000000001614 1.7920906186318642e-05
+371.10000000001617 1.7968264807819225e-05
+371.2000000000162 1.801570747751678e-05
+371.3000000000162 1.806324738655347e-05
+371.40000000001623 1.8110899076120635e-05
+371.50000000001626 1.8158678454284687e-05
+371.6000000000163 1.8201028434745292e-05
+371.7000000000163 1.824345215506399e-05
+371.8000000000163 1.8285950063085764e-05
+371.90000000001635 1.8328522609996282e-05
+372.00000000001637 1.8371170250607226e-05
+372.1000000000164 1.841243865467914e-05
+372.2000000000164 1.8453777812661428e-05
+372.30000000001644 1.8495188180613224e-05
+372.40000000001646 1.8536670218007954e-05
+372.5000000000165 1.8578224387716203e-05
+372.6000000000165 1.8614179362843264e-05
+372.70000000001653 1.8650189913229002e-05
+372.80000000001655 1.8686255973368434e-05
+372.9000000000166 1.8722377514788688e-05
+373.0000000000166 1.8758554546230793e-05
+373.1000000000166 1.8797205503470957e-05
+373.20000000001664 1.883591874120341e-05
+373.30000000001667 1.887469439261338e-05
+373.4000000000167 1.8913532629726904e-05
+373.5000000000167 1.895243366390032e-05
+373.60000000001673 1.898558442668899e-05
+373.70000000001676 1.901874529858066e-05
+373.8000000000168 1.9051933477463165e-05
+373.9000000000168 1.9085164967448974e-05
+374.0000000000168 1.9118454567805972e-05
+374.10000000001685 1.914829749144096e-05
+374.20000000001687 1.9178211979357843e-05
+374.3000000000169 1.920820910014685e-05
+374.4000000000169 1.9238298665572794e-05
+374.50000000001694 1.926848922070223e-05
+374.60000000001696 1.9292962692399696e-05
+374.700000000017 1.9317542304005702e-05
+374.800000000017 1.9342232782249245e-05
+374.90000000001703 1.9367037621455806e-05
+375.00000000001705 1.9391959075906486e-05
+375.1000000000171 1.9431095793892222e-05
+375.2000000000171 1.9470388482111627e-05
+375.3000000000171 1.9509835885136792e-05
+375.40000000001714 1.9549435466959047e-05
+375.50000000001717 1.958918339803428e-05
+375.6000000000172 1.962317299532624e-05
+375.7000000000172 1.9657279110714743e-05
+375.80000000001723 1.9691493732823253e-05
+375.90000000001726 1.9725807434185825e-05
+376.0000000000173 1.976020935912083e-05
+376.1000000000173 1.980667929769783e-05
+376.2000000000173 1.9853251520364646e-05
+376.30000000001735 1.9899910888720212e-05
+376.40000000001737 1.9946640746867658e-05
+376.5000000000174 1.9993422904749018e-05
+376.6000000000174 2.0034242789255217e-05
+376.70000000001744 2.007513175979748e-05
+376.80000000001746 2.0116089769636127e-05
+376.9000000000175 2.0157116811798827e-05
+377.0000000000175 2.0198212919490126e-05
+377.10000000001753 2.0241545018463488e-05
+377.20000000001755 2.028495267762355e-05
+377.3000000000176 2.0328436063875424e-05
+377.4000000000176 2.0371995386079488e-05
+377.5000000000176 2.041563089545982e-05
+377.60000000001764 2.0453248354359077e-05
+377.70000000001767 2.049092148758719e-05
+377.8000000000177 2.0528649941794764e-05
+377.9000000000177 2.056643336050447e-05
+378.00000000001774 2.0604271384362656e-05
+378.10000000001776 2.0643732739863592e-05
+378.2000000000178 2.0683251205670413e-05
+378.3000000000178 2.0722826416028003e-05
+378.4000000000178 2.076245800196915e-05
+378.50000000001785 2.080214559140077e-05
+378.60000000001787 2.0835706226592793e-05
+378.7000000000179 2.086930711067144e-05
+378.8000000000179 2.090294911856089e-05
+378.90000000001794 2.0936633130568745e-05
+379.00000000001796 2.0970360032469326e-05
+379.100000000018 2.10037564745713e-05
+379.200000000018 2.1037196795987033e-05
+379.30000000001803 2.1070681897857112e-05
+379.40000000001805 2.1104212686763654e-05
+379.5000000000181 2.1137790074883258e-05
+379.6000000000181 2.1177677730047705e-05
+379.7000000000181 2.121762818799579e-05
+379.80000000001814 2.1257641395142977e-05
+379.90000000001817 2.1297717275357015e-05
+380.0000000000182 2.1337855729819323e-05
+380.1000000000182 2.1378113986145763e-05
+380.20000000001824 2.1418437014727612e-05
+380.30000000001826 2.145882465571892e-05
+380.4000000000183 2.1499276725598096e-05
+380.5000000000183 2.1539793017262512e-05
+380.6000000000183 2.1586727056667722e-05
+380.70000000001835 2.163374444379126e-05
+380.8000000000184 2.1680845229763925e-05
+380.9000000000184 2.172802942126209e-05
+381.0000000000184 2.1775296980061474e-05
+381.10000000001844 2.181099088842809e-05
+381.20000000001846 2.184673258773423e-05
+381.3000000000185 2.1882521839990986e-05
+381.4000000000185 2.1918358361015283e-05
+381.50000000001853 2.195424182009871e-05
+381.60000000001855 2.1996620488375044e-05
+381.7000000000186 2.2039066276946713e-05
+381.8000000000186 2.2081578893320542e-05
+381.9000000000186 2.212415808685472e-05
+382.00000000001864 2.2166803649452606e-05
+382.10000000001867 2.2203320515093437e-05
+382.2000000000187 2.2239887009770404e-05
+382.3000000000187 2.2276503029464364e-05
+382.40000000001874 2.231316851442639e-05
+382.50000000001876 2.2349883449440193e-05
+382.6000000000188 2.239318036280376e-05
+382.7000000000188 2.243654203494862e-05
+382.8000000000188 2.2479968839362763e-05
+382.90000000001885 2.2523461129156653e-05
+383.0000000000189 2.2567019236887852e-05
+383.1000000000189 2.2609053671156827e-05
+383.2000000000189 2.2651151218276755e-05
+383.30000000001894 2.2693312144198907e-05
+383.40000000001896 2.273553669338593e-05
+383.500000000019 2.2777825088533495e-05
+383.600000000019 2.2820209425568936e-05
+383.70000000001903 2.2862679946208562e-05
+383.80000000001905 2.2905226665847413e-05
+383.9000000000191 2.294784031512389e-05
+384.0000000000191 2.299051234673622e-05
+384.1000000000191 2.30323040434305e-05
+384.20000000001914 2.307413678965306e-05
+384.30000000001917 2.311600424694316e-05
+384.4000000000192 2.315790082843036e-05
+384.5000000000192 2.3199821705827495e-05
+384.60000000001924 2.324849760714321e-05
+384.70000000001926 2.329720821315857e-05
+384.8000000000193 2.334595021221088e-05
+384.9000000000193 2.339472102398001e-05
+385.0000000000193 2.3443518807051565e-05
+385.10000000001935 2.348143462756311e-05
+385.2000000000194 2.3519343932689843e-05
+385.3000000000194 2.355724716819614e-05
+385.4000000000194 2.3595145548135803e-05
+385.50000000001944 2.3633041060915077e-05
+385.60000000001946 2.3677765943611484e-05
+385.7000000000195 2.3722514901031898e-05
+385.8000000000195 2.3767293082133024e-05
+385.90000000001953 2.381210649502557e-05
+386.00000000001955 2.3856962014865298e-05
+386.1000000000196 2.3892739802757633e-05
+386.2000000000196 2.3928552715403467e-05
+386.3000000000196 2.3964410241053093e-05
+386.40000000001965 2.4000322750823172e-05
+386.50000000001967 2.403630150522752e-05
+386.6000000000197 2.40723586604352e-05
+386.7000000000197 2.4108460722205775e-05
+386.80000000001974 2.4144607735757082e-05
+386.90000000001976 2.41807997462683e-05
+387.0000000000198 2.421703679895774e-05
+387.1000000000198 2.4272570433578862e-05
+387.2000000000198 2.4328208433368226e-05
+387.30000000001985 2.4383950953122495e-05
+387.4000000000199 2.4439798147697634e-05
+387.5000000000199 2.4495750172194155e-05
+387.6000000000199 2.4544786362000324e-05
+387.70000000001994 2.4593903616690747e-05
+387.80000000001996 2.464310204284335e-05
+387.90000000002 2.4692381747217266e-05
+388.00000000002 2.4741742836675752e-05
+388.10000000002003 2.478071583840783e-05
+388.20000000002005 2.481973976678201e-05
+388.3000000000201 2.4858814675174358e-05
+388.4000000000201 2.4897940616965806e-05
+388.5000000000201 2.493711764573368e-05
+388.60000000002015 2.4983435814760864e-05
+388.70000000002017 2.5029801565153676e-05
+388.8000000000202 2.507622616635729e-05
+388.9000000000202 2.5122720132275905e-05
+389.00000000002024 2.5169293213557766e-05
+389.10000000002026 2.5207842952173173e-05
+389.2000000000203 2.524646828465661e-05
+389.3000000000203 2.528517656338383e-05
+389.4000000000203 2.5323974339075003e-05
+389.50000000002035 2.5362867354592227e-05
+389.6000000000204 2.5401860538862505e-05
+389.7000000000204 2.544095800003384e-05
+389.8000000000204 2.5480163019341126e-05
+389.90000000002044 2.5519478044769847e-05
+390.00000000002046 2.555890468452496e-05
+390.1000000000205 2.5610273955391853e-05
+390.2000000000205 2.5661789015233534e-05
+390.30000000002053 2.5713449054362308e-05
+390.40000000002055 2.576525239364338e-05
+390.5000000000206 2.581719647576014e-05
+390.6000000000206 2.5861963952485977e-05
+390.7000000000206 2.5906843146476786e-05
+390.80000000002065 2.5951828741185963e-05
+390.90000000002067 2.5996914513557716e-05
+391.0000000000207 2.604209332653277e-05
+391.1000000000207 2.6078050145395486e-05
+391.20000000002074 2.6114058712556136e-05
+391.30000000002076 2.6150109063890516e-05
+391.4000000000208 2.618619030573869e-05
+391.5000000000208 2.6222290608860748e-05
+391.6000000000208 2.6258396123171382e-05
+391.70000000002085 2.6294542782642792e-05
+391.8000000000209 2.6330730984173183e-05
+391.9000000000209 2.636696110012466e-05
+392.0000000000209 2.640323347791115e-05
+392.10000000002094 2.645156348874647e-05
+392.20000000002096 2.6499966474321063e-05
+392.300000000021 2.654844275359119e-05
+392.400000000021 2.6596992620390286e-05
+392.50000000002103 2.6645616343108593e-05
+392.60000000002105 2.6686822164949987e-05
+392.7000000000211 2.6728084762531835e-05
+392.8000000000211 2.676940357083722e-05
+392.9000000000211 2.6810778048159106e-05
+393.00000000002115 2.6852207676377278e-05
+393.10000000002117 2.6897261490560393e-05
+393.2000000000212 2.6942379194991925e-05
+393.3000000000212 2.6987560359347903e-05
+393.40000000002124 2.7032804577243928e-05
+393.50000000002126 2.7078111466695233e-05
+393.6000000000213 2.713103714223e-05
+393.7000000000213 2.7184020702985746e-05
+393.8000000000213 2.7237074751358935e-05
+393.90000000002135 2.729021104874214e-05
+394.0000000000214 2.7343440506573095e-05
+394.1000000000214 2.7382006252395245e-05
+394.2000000000214 2.7420644646704217e-05
+394.30000000002144 2.7459363876873673e-05
+394.40000000002146 2.7498171229686466e-05
+394.5000000000215 2.7537073084828205e-05
+394.6000000000215 2.7576076041309488e-05
+394.70000000002153 2.761518581210992e-05
+394.80000000002156 2.765440611046752e-05
+394.9000000000216 2.7693739772912755e-05
+395.0000000000216 2.773318875327367e-05
+395.1000000000216 2.776866398776337e-05
+395.20000000002165 2.7804246224469213e-05
+395.30000000002167 2.7839934687725126e-05
+395.4000000000217 2.787572769490194e-05
+395.5000000000217 2.7911622650701792e-05
+395.60000000002174 2.7947652774274378e-05
+395.70000000002176 2.79837974556189e-05
+395.8000000000218 2.8020038224147117e-05
+395.9000000000218 2.8056356457836247e-05
+396.0000000000218 2.809273338249166e-05
+396.10000000002185 2.814887406259066e-05
+396.2000000000219 2.8205088300692545e-05
+396.3000000000219 2.8261356868330977e-05
+396.4000000000219 2.8317660328065563e-05
+396.50000000002194 2.8373979032183975e-05
+396.60000000002196 2.8422461738121306e-05
+396.700000000022 2.8470979548028448e-05
+396.800000000022 2.851951608615767e-05
+396.90000000002203 2.8568056802465727e-05
+397.00000000002206 2.861658898892838e-05
+397.1000000000221 2.8660602977305514e-05
+397.2000000000221 2.870457693975038e-05
+397.3000000000221 2.8748503821907503e-05
+397.40000000002215 2.8792378479693808e-05
+397.50000000002217 2.8836197693641835e-05
+397.6000000000222 2.887996018403752e-05
+397.7000000000222 2.892366498455723e-05
+397.80000000002224 2.896731424795183e-05
+397.90000000002226 2.9010912078697784e-05
+398.0000000000223 2.9054464547078573e-05
+398.1000000000223 2.9094153450314148e-05
+398.2000000000223 2.91338056225787e-05
+398.30000000002235 2.9173433132151185e-05
+398.4000000000224 2.9213050063543246e-05
+398.5000000000224 2.9252672531147004e-05
+398.6000000000224 2.930038597897535e-05
+398.70000000002244 2.934810747024751e-05
+398.80000000002246 2.9395843373228082e-05
+398.9000000000225 2.9443601110702178e-05
+399.0000000000225 2.9491389168350302e-05
+399.10000000002253 2.9531960102535844e-05
+399.20000000002256 2.957256612237817e-05
+399.3000000000226 2.9613218932381805e-05
+399.4000000000226 2.9653931320763854e-05
+399.5000000000226 2.969471716705905e-05
+399.60000000002265 2.973559144896847e-05
+399.70000000002267 2.9776512816891664e-05
+399.8000000000227 2.9817481314805055e-05
+399.9000000000227 2.9858496986760608e-05
+400.00000000002274 2.9899559876928835e-05
+400.10000000002276 2.9936151788032734e-05
+400.2000000000228 2.997278107243919e-05
+400.3000000000228 3.000944776103308e-05
+400.4000000000228 3.004615188480682e-05
+400.50000000002285 3.0082893474772925e-05
+400.6000000000229 3.0119672561919993e-05
+400.7000000000229 3.0156489177256516e-05
+400.8000000000229 3.019334335185507e-05
+400.90000000002294 3.023023511680828e-05
+401.00000000002296 3.0267164503186985e-05
+401.100000000023 3.0313906338484846e-05
+401.200000000023 3.0360705554518182e-05
+401.30000000002303 3.0407562206565338e-05
+401.40000000002306 3.0454476349856458e-05
+401.5000000000231 3.0501448039704118e-05
+401.6000000000231 3.0540158029366634e-05
+401.7000000000231 3.057890910132018e-05
+401.80000000002315 3.061770129097988e-05
+401.90000000002317 3.065653463369572e-05
+402.0000000000232 3.0695409164974746e-05
+402.1000000000232 3.0733340048296133e-05
+402.20000000002324 3.077131016621498e-05
+402.30000000002326 3.080931955173716e-05
+402.4000000000233 3.084736823789031e-05
+402.5000000000233 3.08854562577686e-05
+402.60000000002333 3.092358364444319e-05
+402.70000000002335 3.096175043105187e-05
+402.8000000000234 3.0999956650709434e-05
+402.9000000000234 3.103820233659741e-05
+403.0000000000234 3.10764875218744e-05
+403.10000000002344 3.111553361129934e-05
+403.20000000002346 3.11546209958817e-05
+403.3000000000235 3.119374971142995e-05
+403.4000000000235 3.1232919793867524e-05
+403.50000000002353 3.127213127905232e-05
+403.60000000002356 3.131138420286688e-05
+403.7000000000236 3.135067860121828e-05
+403.8000000000236 3.139001451012903e-05
+403.9000000000236 3.142939196551038e-05
+404.00000000002365 3.146881100343383e-05
+404.10000000002367 3.150598759081247e-05
+404.2000000000237 3.154320073935427e-05
+404.3000000000237 3.158045047801279e-05
+404.40000000002374 3.161773683585048e-05
+404.50000000002376 3.165505984194957e-05
+404.6000000000238 3.170098272974114e-05
+404.7000000000238 3.174695790109813e-05
+404.80000000002383 3.179298540212816e-05
+404.90000000002385 3.183906527924388e-05
+405.0000000000239 3.1885197578702345e-05
+405.1000000000239 3.191787224420935e-05
+405.2000000000239 3.1950574675322205e-05
+405.30000000002394 3.198330489119136e-05
+405.40000000002397 3.2016062910885594e-05
+405.500000000024 3.204884875362197e-05
+405.600000000024 3.208166243853595e-05
+405.70000000002403 3.2114503984819404e-05
+405.80000000002406 3.214737341158233e-05
+405.9000000000241 3.218027073812954e-05
+406.0000000000241 3.221319598354698e-05
+406.1000000000241 3.22521194909163e-05
+406.20000000002415 3.229108217048171e-05
+406.30000000002417 3.2330084053974735e-05
+406.4000000000242 3.2369125173285746e-05
+406.5000000000242 3.240820556018593e-05
+406.60000000002424 3.244732524655907e-05
+406.70000000002426 3.248648426426249e-05
+406.8000000000243 3.252568264526642e-05
+406.9000000000243 3.256492042146807e-05
+407.00000000002433 3.260419762478214e-05
+407.10000000002435 3.263345833967162e-05
+407.2000000000244 3.26627404504279e-05
+407.3000000000244 3.269204396961428e-05
+407.4000000000244 3.272136890961273e-05
+407.50000000002444 3.275071528299772e-05
+407.60000000002447 3.278008310230275e-05
+407.7000000000245 3.280947237997328e-05
+407.8000000000245 3.283888312860082e-05
+407.90000000002453 3.286831536064206e-05
+408.00000000002456 3.2897769088702155e-05
+408.1000000000246 3.293677766928142e-05
+408.2000000000246 3.297582505943727e-05
+408.3000000000246 3.3014911290745257e-05
+408.40000000002465 3.305403639475412e-05
+408.50000000002467 3.3093200403127046e-05
+408.6000000000247 3.3132403347359e-05
+408.7000000000247 3.317164525920083e-05
+408.80000000002474 3.321092617023507e-05
+408.90000000002476 3.325024611220622e-05
+409.0000000000248 3.3289605116735995e-05
+409.1000000000248 3.332440141112673e-05
+409.20000000002483 3.335922783515035e-05
+409.30000000002485 3.339408440973277e-05
+409.4000000000249 3.342897115600102e-05
+409.5000000000249 3.3463888094856086e-05
+409.6000000000249 3.3498835247447646e-05
+409.70000000002494 3.3533812634746684e-05
+409.80000000002497 3.356882027778286e-05
+409.900000000025 3.360385819769236e-05
+410.000000000025 3.3638926415480115e-05
+410.10000000002503 3.367529015598009e-05
+410.20000000002506 3.3711686401730576e-05
+410.3000000000251 3.374811517595761e-05
+410.4000000000251 3.3784576501995665e-05
+410.5000000000251 3.382107040300265e-05
+410.60000000002515 3.386658723614479e-05
+410.70000000002517 3.391215132787972e-05
+410.8000000000252 3.395776271588941e-05
+410.9000000000252 3.400342143787803e-05
+411.00000000002524 3.404912753152016e-05
+411.10000000002526 3.4080883435186597e-05
+411.2000000000253 3.41126637119918e-05
+411.3000000000253 3.414446837700997e-05
+411.40000000002533 3.417629744527425e-05
+411.50000000002535 3.42081509318732e-05
+411.6000000000254 3.424002885190264e-05
+411.7000000000254 3.427193122041734e-05
+411.8000000000254 3.4303858052479146e-05
+411.90000000002544 3.433580936320549e-05
+412.00000000002547 3.436778516772173e-05
+412.1000000000255 3.4402609739482165e-05
+412.2000000000255 3.443746335601896e-05
+412.30000000002553 3.447234603665892e-05
+412.40000000002556 3.450725780073859e-05
+412.5000000000256 3.4542198667555696e-05
+412.6000000000256 3.4577168656514845e-05
+412.7000000000256 3.461216778688457e-05
+412.80000000002565 3.4647196077991634e-05
+412.90000000002567 3.468225354931858e-05
+413.0000000000257 3.471734022011325e-05
+413.1000000000257 3.474849410489817e-05
+413.20000000002574 3.4779670866810414e-05
+413.30000000002576 3.481087051921901e-05
+413.4000000000258 3.484209307559665e-05
+413.5000000000258 3.4873338549422054e-05
+413.60000000002583 3.4904606954180136e-05
+413.70000000002585 3.493589830331296e-05
+413.8000000000259 3.496721261026857e-05
+413.9000000000259 3.499854988855007e-05
+414.0000000000259 3.502991015161841e-05
+414.10000000002594 3.506433118775191e-05
+414.20000000002597 3.50987801458798e-05
+414.300000000026 3.513325704412173e-05
+414.400000000026 3.516776190080316e-05
+414.50000000002603 3.52022947340619e-05
+414.60000000002606 3.5236855562143354e-05
+414.7000000000261 3.5271444403252724e-05
+414.8000000000261 3.530606127565362e-05
+414.9000000000261 3.5340706197618873e-05
+415.00000000002615 3.537537918737992e-05
+415.10000000002617 3.540571066928163e-05
+415.2000000000262 3.543606320188179e-05
+415.3000000000262 3.546643679667575e-05
+415.40000000002624 3.54968314652626e-05
+415.50000000002626 3.55272472191472e-05
+415.6000000000263 3.5557684069888624e-05
+415.7000000000263 3.5588142028951546e-05
+415.80000000002633 3.561862110795406e-05
+415.90000000002635 3.564912131841986e-05
+416.0000000000264 3.5679642671927355e-05
+416.1000000000264 3.5711876518065314e-05
+416.2000000000264 3.574413411786349e-05
+416.30000000002644 3.5776415485225995e-05
+416.40000000002647 3.580872063396336e-05
+416.5000000000265 3.584104957804163e-05
+416.6000000000265 3.5873402331333424e-05
+416.70000000002653 3.590577890771734e-05
+416.80000000002656 3.593817932117796e-05
+416.9000000000266 3.597060358555624e-05
+417.0000000000266 3.600305171484802e-05
+417.1000000000266 3.603185489930329e-05
+417.20000000002665 3.606067651832466e-05
+417.30000000002667 3.608951658115385e-05
+417.4000000000267 3.611837509698595e-05
+417.5000000000267 3.614725207511975e-05
+417.60000000002674 3.6176147524757086e-05
+417.70000000002676 3.620506145510334e-05
+417.8000000000268 3.6233993875367114e-05
+417.9000000000268 3.62629447948609e-05
+418.00000000002683 3.6291914222799754e-05
+418.10000000002685 3.6319354507742026e-05
+418.2000000000269 3.6346811173801246e-05
+418.3000000000269 3.6374284228654435e-05
+418.4000000000269 3.640177367972951e-05
+418.50000000002694 3.64292795347086e-05
+418.60000000002697 3.6456801801074995e-05
+418.700000000027 3.6484340486364795e-05
+418.800000000027 3.6511895598267887e-05
+418.90000000002703 3.653946714422457e-05
+419.00000000002706 3.656705513188063e-05
+419.1000000000271 3.659916206857007e-05
+419.2000000000271 3.663129214488931e-05
+419.3000000000271 3.6663445374282936e-05
+419.40000000002715 3.6695621770100325e-05
+419.50000000002717 3.672782134584874e-05
+419.6000000000272 3.676004411499093e-05
+419.7000000000272 3.6792290090843514e-05
+419.80000000002724 3.682455928698268e-05
+419.90000000002726 3.685685171683852e-05
+420.0000000000273 3.688916739389701e-05
+420.1000000000273 3.691804724899571e-05
+420.20000000002733 3.694694506275061e-05
+420.30000000002735 3.697586084375584e-05
+420.4000000000274 3.700479460065934e-05
+420.5000000000274 3.7033746342061e-05
+420.6000000000274 3.706271607656379e-05
+420.70000000002744 3.709170381292657e-05
+420.80000000002747 3.712070955965621e-05
+420.9000000000275 3.714973332546666e-05
+421.0000000000275 3.717877511897231e-05
+421.10000000002753 3.720647709956427e-05
+421.20000000002756 3.72341953423448e-05
+421.3000000000276 3.726192985473868e-05
+421.4000000000276 3.728968064396843e-05
+421.5000000000276 3.731744771751475e-05
+421.60000000002765 3.73452310827073e-05
+421.70000000002767 3.7373030746826834e-05
+421.8000000000277 3.740084671736139e-05
+421.9000000000277 3.7428679001596514e-05
+422.00000000002774 3.74565276069216e-05
+422.10000000002776 3.7480822203241174e-05
+422.2000000000278 3.7505128778456344e-05
+422.3000000000278 3.7529447337010946e-05
+422.40000000002783 3.7553777883298544e-05
+422.50000000002785 3.757812042191947e-05
+422.6000000000279 3.7602474957269644e-05
+422.7000000000279 3.7626841493900455e-05
+422.8000000000279 3.765122003621012e-05
+422.90000000002794 3.7675610588700925e-05
+423.00000000002797 3.7700013155875405e-05
+423.100000000028 3.7721109545092093e-05
+423.200000000028 3.774221522756983e-05
+423.30000000002804 3.776333020629207e-05
+423.40000000002806 3.778445448434621e-05
+423.5000000000281 3.7805588064771495e-05
+423.6000000000281 3.7836442563227075e-05
+423.7000000000281 3.786731723137001e-05
+423.80000000002815 3.789821207945202e-05
+423.9000000000282 3.792912711767686e-05
+424.0000000000282 3.796006235630293e-05
+424.1000000000282 3.798812514330622e-05
+424.20000000002824 3.801620420198809e-05
+424.30000000002826 3.804429953961822e-05
+424.4000000000283 3.8072411163416794e-05
+424.5000000000283 3.8100539080502485e-05
+424.60000000002833 3.8128683298151864e-05
+424.70000000002835 3.8156843823591844e-05
+424.8000000000284 3.818502066394778e-05
+424.9000000000284 3.8213213826451033e-05
+425.0000000000284 3.8241423318335655e-05
+425.10000000002844 3.8270926780295293e-05
+425.20000000002847 3.830044847696084e-05
+425.3000000000285 3.8329988417230494e-05
+425.4000000000285 3.8359546609953714e-05
+425.50000000002854 3.838912306403523e-05
+425.60000000002856 3.841871778833091e-05
+425.7000000000286 3.844833079180426e-05
+425.8000000000286 3.8477962083265374e-05
+425.9000000000286 3.850761167168437e-05
+426.00000000002865 3.853727956587635e-05
+426.1000000000287 3.8561929168458204e-05
+426.2000000000287 3.858659065763861e-05
+426.3000000000287 3.861126403780289e-05
+426.40000000002874 3.863594931312811e-05
+426.50000000002876 3.866064648784462e-05
+426.6000000000288 3.86853555662886e-05
+426.7000000000288 3.8710076552692496e-05
+426.80000000002883 3.873480945134227e-05
+426.90000000002885 3.875955426647233e-05
+427.0000000000289 3.8784311002372e-05
+427.1000000000289 3.881368372839951e-05
+427.2000000000289 3.8843073951997955e-05
+427.30000000002894 3.887248168111432e-05
+427.40000000002897 3.8901906923645496e-05
+427.500000000029 3.8931349687540626e-05
+427.600000000029 3.895091140094507e-05
+427.70000000002904 3.897048070532037e-05
+427.80000000002906 3.899005760274822e-05
+427.9000000000291 3.900964209546887e-05
+428.0000000000291 3.9029234185569864e-05
+428.1000000000291 3.906572459232184e-05
+428.20000000002915 3.910223743260479e-05
+428.3000000000292 3.913877271620399e-05
+428.4000000000292 3.9175330452960335e-05
+428.5000000000292 3.9211910652608986e-05
+428.60000000002924 3.923856944010467e-05
+428.70000000002926 3.92652422333641e-05
+428.8000000000293 3.929192903789298e-05
+428.9000000000293 3.931862985935728e-05
+429.00000000002933 3.934534470326498e-05
+429.10000000002935 3.9369219753613054e-05
+429.2000000000294 3.939310556354446e-05
+429.3000000000294 3.941700213660797e-05
+429.4000000000294 3.9440909476459294e-05
+429.50000000002944 3.946482758664583e-05
+429.60000000002947 3.947877447971038e-05
+429.7000000000295 3.9492725095627476e-05
+429.8000000000295 3.950667943509147e-05
+429.90000000002954 3.952063749895621e-05
+430.00000000002956 3.953459928786709e-05
+430.1000000000296 3.956148192015986e-05
+430.2000000000296 3.9588378729660224e-05
+430.3000000000296 3.9615289722007133e-05
+430.40000000002965 3.964221490294758e-05
+430.5000000000297 3.9669154278283456e-05
+430.6000000000297 3.9696107853658636e-05
+430.7000000000297 3.9723075634825096e-05
+430.80000000002974 3.975005762753652e-05
+430.90000000002976 3.9777053837548286e-05
+431.0000000000298 3.980406427056215e-05
+431.1000000000298 3.982444965851846e-05
+431.20000000002983 3.984484217115324e-05
+431.30000000002985 3.986524181013615e-05
+431.4000000000299 3.9885648577297346e-05
+431.5000000000299 3.990606247436033e-05
+431.6000000000299 3.992648350310243e-05
+431.70000000002995 3.994691166524772e-05
+431.80000000002997 3.996734696257397e-05
+431.90000000003 3.9987789396805845e-05
+432.00000000003 4.000823896977691e-05
+432.10000000003004 4.0034809892369786e-05
+432.20000000003006 4.006139429923737e-05
+432.3000000000301 4.008799219544684e-05
+432.4000000000301 4.0114603586066574e-05
+432.5000000000301 4.014122847627039e-05
+432.60000000003015 4.0157776977393044e-05
+432.7000000000302 4.0174330669834645e-05
+432.8000000000302 4.0190889554778e-05
+432.9000000000302 4.02074536334063e-05
+433.00000000003024 4.022402290695838e-05
+433.10000000003026 4.0246329816592135e-05
+433.2000000000303 4.026864555890698e-05
+433.3000000000303 4.029097013627387e-05
+433.40000000003033 4.031330355127926e-05
+433.50000000003035 4.033564580640245e-05
+433.6000000000304 4.035805323970618e-05
+433.7000000000304 4.0380505816495374e-05
+433.8000000000304 4.040298484652615e-05
+433.90000000003045 4.0425472988057114e-05
+434.00000000003047 4.044795425115576e-05
+434.1000000000305 4.046459908464079e-05
+434.2000000000305 4.0481205444300306e-05
+434.30000000003054 4.049776144244838e-05
+434.40000000003056 4.051425656495893e-05
+434.5000000000306 4.0530681674476496e-05
+434.6000000000306 4.0557187845438604e-05
+434.7000000000306 4.058361587536808e-05
+434.80000000003065 4.0609961811725225e-05
+434.9000000000307 4.0636223007384906e-05
+435.0000000000307 4.066239812484678e-05
+435.1000000000307 4.0686212269785045e-05
+435.20000000003074 4.070993915946148e-05
+435.30000000003076 4.0733581425704604e-05
+435.4000000000308 4.075714302605393e-05
+435.5000000000308 4.078062924769439e-05
+435.60000000003083 4.080405006200488e-05
+435.70000000003085 4.082741223539799e-05
+435.8000000000309 4.085072395507538e-05
+435.9000000000309 4.0873994833161365e-05
+436.0000000000309 4.089723591061588e-05
+436.10000000003095 4.091600136299388e-05
+436.20000000003097 4.0934759423378225e-05
+436.300000000031 4.0953525441175215e-05
+436.400000000031 4.0972316203823874e-05
+436.50000000003104 4.0991149939782034e-05
+436.60000000003106 4.101004463810368e-05
+436.7000000000311 4.1028942867328634e-05
+436.8000000000311 4.104784435578365e-05
+436.9000000000311 4.1066748789856715e-05
+437.00000000003115 4.108565581379188e-05
+437.1000000000312 4.110828135630223e-05
+437.2000000000312 4.113091197131553e-05
+437.3000000000312 4.1153547176242044e-05
+437.40000000003124 4.117618644571039e-05
+437.50000000003126 4.119882921155857e-05
+437.6000000000313 4.12214765554078e-05
+437.7000000000313 4.12441319018591e-05
+437.80000000003133 4.12667953771969e-05
+437.90000000003135 4.1289467191464264e-05
+438.0000000000314 4.13121476388571e-05
+438.1000000000314 4.132377168311236e-05
+438.2000000000314 4.1335398583880206e-05
+438.30000000003145 4.134702888561418e-05
+438.40000000003147 4.1358663217299865e-05
+438.5000000000315 4.13703022923627e-05
+438.6000000000315 4.139217033527845e-05
+438.70000000003154 4.1414008649534465e-05
+438.80000000003156 4.143583599758957e-05
+438.9000000000316 4.1457669756582456e-05
+439.0000000000316 4.1479525914382736e-05
+439.1000000000316 4.1489230657239465e-05
+439.20000000003165 4.149897912397253e-05
+439.3000000000317 4.1508783062688175e-05
+439.4000000000317 4.1518652805025915e-05
+439.5000000000317 4.152859726449693e-05
+439.60000000003174 4.154893128565846e-05
+439.70000000003176 4.156936096897371e-05
+439.8000000000318 4.158989173039515e-05
+439.9000000000318 4.16105276077676e-05
+440.00000000003183 4.163127125719519e-05
+440.10000000003186 4.165222493443393e-05
+440.2000000000319 4.1673287579683685e-05
+440.3000000000319 4.1694457684024005e-05
+440.4000000000319 4.1715732342971994e-05
+440.50000000003195 4.173710725270611e-05
+440.60000000003197 4.175857670631114e-05
+440.700000000032 4.178013121921962e-05
+440.800000000032 4.1801761566220306e-05
+440.90000000003204 4.182345706429396e-05
+441.00000000003206 4.184520556881904e-05
+441.1000000000321 4.186424893500382e-05
+441.2000000000321 4.188331424902309e-05
+441.3000000000321 4.190238495734325e-05
+441.40000000003215 4.192144303418407e-05
+441.5000000000322 4.1940468978194287e-05
+441.6000000000322 4.1959441809352337e-05
+441.7000000000322 4.197842007952046e-05
+441.80000000003224 4.1997403789850316e-05
+441.90000000003226 4.201639294132869e-05
+442.0000000000323 4.203538753505384e-05
+442.1000000000323 4.2058732312154814e-05
+442.20000000003233 4.208208641983611e-05
+442.30000000003236 4.2105449860803e-05
+442.4000000000324 4.2128822637761175e-05
+442.5000000000324 4.215220475341348e-05
+442.6000000000324 4.216521069053258e-05
+442.70000000003245 4.217821956341848e-05
+442.80000000003247 4.2191231372535493e-05
+442.9000000000325 4.220424611840335e-05
+443.0000000000325 4.2217263801543116e-05
+443.10000000003254 4.22340851241764e-05
+443.20000000003256 4.2250910101673776e-05
+443.3000000000326 4.226773873442135e-05
+443.4000000000326 4.228457102297085e-05
+443.5000000000326 4.2301406967818854e-05
+443.60000000003265 4.231824656940671e-05
+443.7000000000327 4.233508982817586e-05
+443.8000000000327 4.2351936744678064e-05
+443.9000000000327 4.23687873192996e-05
+444.00000000003274 4.238564155259113e-05
+444.10000000003276 4.239889597895989e-05
+444.2000000000328 4.241215338237226e-05
+444.3000000000328 4.242541376332981e-05
+444.40000000003283 4.243867712238944e-05
+444.50000000003286 4.2451943460052925e-05
+444.6000000000329 4.246521277676692e-05
+444.7000000000329 4.247848507303346e-05
+444.8000000000329 4.249176034941018e-05
+444.90000000003295 4.250503860628866e-05
+445.00000000003297 4.2518319844285146e-05
+445.100000000033 4.254034577453524e-05
+445.200000000033 4.256237966277791e-05
+445.30000000003304 4.258442151108008e-05
+445.40000000003306 4.260647132145372e-05
+445.5000000000331 4.262852909596644e-05
+445.6000000000331 4.265059483668637e-05
+445.7000000000331 4.2672668545626344e-05
+445.80000000003315 4.2694750224855046e-05
+445.9000000000332 4.271683987638609e-05
+446.0000000000332 4.273893750234682e-05
+446.1000000000332 4.276833654779162e-05
+446.20000000003324 4.279774491247749e-05
+446.30000000003326 4.282716259795943e-05
+446.4000000000333 4.285658960601496e-05
+446.5000000000333 4.2886025938303476e-05
+446.60000000003333 4.2894496292718435e-05
+446.70000000003336 4.2902967689780314e-05
+446.8000000000334 4.2911440129597986e-05
+446.9000000000334 4.2919913612336046e-05
+447.0000000000334 4.292838813821866e-05
+447.10000000003345 4.294823652102547e-05
+447.20000000003347 4.2968090877522995e-05
+447.3000000000335 4.2987951208987614e-05
+447.4000000000335 4.30078175165846e-05
+447.50000000003354 4.302768980164289e-05
+447.60000000003356 4.303705840522819e-05
+447.7000000000336 4.304642841251172e-05
+447.8000000000336 4.305579982361793e-05
+447.90000000003363 4.30651726388387e-05
+448.00000000003365 4.307454685835752e-05
+448.1000000000337 4.309315310103692e-05
+448.2000000000337 4.311176424187926e-05
+448.3000000000337 4.313038028186897e-05
+448.40000000003374 4.314900122182316e-05
+448.50000000003376 4.316762706255908e-05
+448.6000000000338 4.318631457429608e-05
+448.7000000000338 4.320504354799011e-05
+448.80000000003383 4.3223795139021306e-05
+448.90000000003386 4.3242551870286466e-05
+449.0000000000339 4.326129763484753e-05
+449.1000000000339 4.328004580921102e-05
+449.2000000000339 4.3298754921274064e-05
+449.30000000003395 4.3317412993601136e-05
+449.40000000003397 4.333600943128538e-05
+449.500000000034 4.3354535025392945e-05
+449.600000000034 4.337298551894441e-05
+449.70000000003404 4.339135321503361e-05
+449.80000000003406 4.3409631897597016e-05
+449.9000000000341 4.342781683428003e-05
+450.0000000000341 4.3445904780003714e-05
+450.10000000003413 4.3458424400478176e-05
+450.20000000003415 4.347084316288125e-05
+450.3000000000342 4.3483162340870134e-05
+450.4000000000342 4.34953847065929e-05
+450.5000000000342 4.3507514532600814e-05
+450.60000000003424 4.353013164013725e-05
+450.70000000003427 4.35526739257142e-05
+450.8000000000343 4.357515071783519e-05
+450.9000000000343 4.359757282087356e-05
+451.00000000003433 4.361995251886658e-05
+451.10000000003436 4.363540105190117e-05
+451.2000000000344 4.365083097965454e-05
+451.3000000000344 4.366625904827318e-05
+451.4000000000344 4.368170348725019e-05
+451.50000000003445 4.36971840118317e-05
+451.60000000003447 4.370212737077675e-05
+451.7000000000345 4.370706887705272e-05
+451.8000000000345 4.3712009259960946e-05
+451.90000000003454 4.3716949293405696e-05
+452.00000000003456 4.3721889795870716e-05
+452.1000000000346 4.3742146743010215e-05
+452.2000000000346 4.376241185026081e-05
+452.30000000003463 4.3782686074521686e-05
+452.40000000003465 4.3802970418830876e-05
+452.5000000000347 4.382326593247145e-05
+452.6000000000347 4.3843573711324325e-05
+452.7000000000347 4.386388991653825e-05
+452.80000000003474 4.3884214263889206e-05
+452.90000000003477 4.39045464242865e-05
+453.0000000000348 4.392488602338129e-05
+453.1000000000348 4.393126500163302e-05
+453.20000000003483 4.393764480900176e-05
+453.30000000003486 4.394402493429641e-05
+453.4000000000349 4.395040482158277e-05
+453.5000000000349 4.395678386992769e-05
+453.6000000000349 4.3973733760459233e-05
+453.70000000003495 4.399064865768983e-05
+453.80000000003497 4.400754836126754e-05
+453.900000000035 4.402445123170783e-05
+454.000000000035 4.4041374187413565e-05
+454.10000000003504 4.405592405044251e-05
+454.20000000003506 4.40705219378806e-05
+454.3000000000351 4.4085180414973355e-05
+454.4000000000351 4.4099910591005694e-05
+454.50000000003513 4.41147221171671e-05
+454.60000000003515 4.412962318390166e-05
+454.7000000000352 4.41446205189374e-05
+454.8000000000352 4.415971938422797e-05
+454.9000000000352 4.4174923573550545e-05
+455.00000000003524 4.419023541015255e-05
+455.10000000003527 4.4198117192706974e-05
+455.2000000000353 4.42061051708265e-05
+455.3000000000353 4.421419718753504e-05
+455.40000000003533 4.422238960750678e-05
+455.50000000003536 4.4230677315296075e-05
+455.6000000000354 4.424971372719293e-05
+455.7000000000354 4.4268834825592265e-05
+455.8000000000354 4.4288031097656446e-05
+455.90000000003545 4.430729153376768e-05
+456.00000000003547 4.432660362447936e-05
+456.1000000000355 4.4334448528167216e-05
+456.2000000000355 4.4342311133851644e-05
+456.30000000003554 4.435017441162832e-05
+456.40000000003556 4.4358019837781006e-05
+456.5000000000356 4.436582739333345e-05
+456.6000000000356 4.438425512360872e-05
+456.70000000003563 4.440268736337785e-05
+456.80000000003565 4.442112411329151e-05
+456.9000000000357 4.443956537400049e-05
+457.0000000000357 4.4458011146211965e-05
+457.1000000000357 4.447589260089733e-05
+457.20000000003574 4.4493778151162154e-05
+457.30000000003577 4.4511667797544606e-05
+457.4000000000358 4.452956154058311e-05
+457.5000000000358 4.454745938092545e-05
+457.60000000003583 4.45546639207714e-05
+457.70000000003586 4.456186909920666e-05
+457.8000000000359 4.4569074916251364e-05
+457.9000000000359 4.45762813720957e-05
+458.0000000000359 4.458348846681698e-05
+458.10000000003595 4.459163907323839e-05
+458.20000000003597 4.459979059159423e-05
+458.300000000036 4.4607943021989424e-05
+458.400000000036 4.4616096364585664e-05
+458.50000000003604 4.4624250619491894e-05
+458.60000000003606 4.464318423744179e-05
+458.7000000000361 4.466216286009235e-05
+458.8000000000361 4.4681165777370314e-05
+458.90000000003613 4.4700173782587986e-05
+459.00000000003615 4.471916917554068e-05
+459.1000000000362 4.4735612703409924e-05
+459.2000000000362 4.4752010910614596e-05
+459.3000000000362 4.476835064650104e-05
+459.40000000003624 4.478462028282872e-05
+459.50000000003627 4.4800809716858116e-05
+459.6000000000363 4.4806174672294496e-05
+459.7000000000363 4.481143891400243e-05
+459.80000000003633 4.481659823158929e-05
+459.90000000003636 4.4821649865017055e-05
+460.0000000000364 4.482659250568304e-05
+460.1000000000364 4.484463914838796e-05
+460.2000000000364 4.486258246237515e-05
+460.30000000003645 4.4880425406713935e-05
+460.40000000003647 4.489817240036465e-05
+460.5000000000365 4.4915829325228655e-05
+460.6000000000365 4.492266017467205e-05
+460.70000000003654 4.492941626507047e-05
+460.80000000003656 4.493610670465648e-05
+460.9000000000366 4.4942742155081454e-05
+461.0000000000366 4.4949334832048026e-05
+461.10000000003663 4.496089500623486e-05
+461.20000000003665 4.4972441235603456e-05
+461.3000000000367 4.4983990406531614e-05
+461.4000000000367 4.499556097249603e-05
+461.5000000000367 4.5007172956356056e-05
+461.60000000003674 4.5008091480333135e-05
+461.70000000003677 4.500900758675304e-05
+461.8000000000368 4.500992097940377e-05
+461.9000000000368 4.501083131618237e-05
+462.00000000003683 4.5011738209605904e-05
+462.10000000003686 4.502573550011887e-05
+462.2000000000369 4.503973011512797e-05
+462.3000000000369 4.505372152598888e-05
+462.4000000000369 4.506770915781075e-05
+462.50000000003695 4.5081692389326237e-05
+462.60000000003697 4.5095672406363744e-05
+462.700000000037 4.510965295930039e-05
+462.800000000037 4.512363418445666e-05
+462.90000000003704 4.5137616309686836e-05
+463.00000000003706 4.5151599654581295e-05
+463.1000000000371 4.516057310408697e-05
+463.2000000000371 4.516954833921179e-05
+463.30000000003713 4.5178525955211655e-05
+463.40000000003715 4.518750663964785e-05
+463.5000000000372 4.5196491171974416e-05
+463.6000000000372 4.521619324910267e-05
+463.7000000000372 4.523585944672013e-05
+463.80000000003724 4.525551029007419e-05
+463.90000000003727 4.527516478228905e-05
+464.0000000000373 4.529484040058775e-05
+464.1000000000373 4.5300141334488414e-05
+464.20000000003733 4.5305488509443645e-05
+464.30000000003736 4.53108947476911e-05
+464.4000000000374 4.531637131777048e-05
+464.5000000000374 4.532192793350172e-05
+464.6000000000374 4.5338365032358336e-05
+464.70000000003745 4.535490224663736e-05
+464.80000000003747 4.537154545286902e-05
+464.9000000000375 4.538829901962458e-05
+465.0000000000375 4.540516580462936e-05
+465.10000000003754 4.5418451178067174e-05
+465.20000000003756 4.543184870717662e-05
+465.3000000000376 4.544535667339152e-05
+465.4000000000376 4.545897183695963e-05
+465.50000000003763 4.547268943460483e-05
+465.60000000003765 4.548650317709943e-05
+465.7000000000377 4.550040266204719e-05
+465.8000000000377 4.551437777831304e-05
+465.9000000000377 4.552841683465194e-05
+466.00000000003774 4.554250655695346e-05
+466.10000000003777 4.556032144205821e-05
+466.2000000000378 4.557815811364742e-05
+466.3000000000378 4.559599853463661e-05
+466.40000000003783 4.56138230689533e-05
+466.50000000003786 4.5631610478425086e-05
+466.6000000000379 4.5638523103726255e-05
+466.7000000000379 4.564543626396494e-05
+466.8000000000379 4.565234995920881e-05
+466.90000000003795 4.565926418958284e-05
+467.00000000003797 4.5666178955158376e-05
+467.100000000038 4.568250602767295e-05
+467.200000000038 4.5698835891880644e-05
+467.30000000003804 4.571516854806212e-05
+467.40000000003806 4.5731503996326254e-05
+467.5000000000381 4.574784223694957e-05
+467.6000000000381 4.575335407381466e-05
+467.70000000003813 4.575886609422493e-05
+467.80000000003815 4.576437829822498e-05
+467.9000000000382 4.576989068585956e-05
+468.0000000000382 4.577540325717773e-05
+468.1000000000382 4.5792178416724874e-05
+468.20000000003824 4.580895667109063e-05
+468.30000000003827 4.582573802051523e-05
+468.4000000000383 4.5842522465296245e-05
+468.5000000000383 4.5859310005669785e-05
+468.60000000003834 4.586525779146929e-05
+468.70000000003836 4.587120586111539e-05
+468.8000000000384 4.5877154214714235e-05
+468.9000000000384 4.588310285231463e-05
+469.0000000000384 4.588905177402622e-05
+469.10000000003845 4.590365952396377e-05
+469.2000000000385 4.591826901201229e-05
+469.3000000000385 4.593288023820029e-05
+469.4000000000385 4.594749320261364e-05
+469.50000000003854 4.596210790533412e-05
+469.60000000003856 4.5965870539965206e-05
+469.7000000000386 4.596963313610998e-05
+469.8000000000386 4.59733956938923e-05
+469.90000000003863 4.5977158213378925e-05
+470.00000000003865 4.598092069469868e-05
+470.1000000000387 4.599701578902464e-05
+470.2000000000387 4.6013113426669846e-05
+470.3000000000387 4.602921360764293e-05
+470.40000000003874 4.604531633212494e-05
+470.50000000003877 4.606142160018191e-05
+470.6000000000388 4.6077529411937384e-05
+470.7000000000388 4.609363976745729e-05
+470.80000000003884 4.61097526668651e-05
+470.90000000003886 4.612586811028415e-05
+471.0000000000389 4.6141986097775935e-05
+471.1000000000389 4.6146709640492414e-05
+471.2000000000389 4.615143326007214e-05
+471.30000000003895 4.615615695657035e-05
+471.400000000039 4.616088073004224e-05
+471.500000000039 4.616560458066232e-05
+471.600000000039 4.618120491091029e-05
+471.70000000003904 4.619680754411302e-05
+471.80000000003906 4.6212412480309936e-05
+471.9000000000391 4.622801971977071e-05
+472.0000000000391 4.624362926253087e-05
+472.10000000003913 4.624913403451979e-05
+472.20000000003915 4.625463897636003e-05
+472.3000000000392 4.626014408803703e-05
+472.4000000000392 4.626564936970888e-05
+472.5000000000392 4.627115482142301e-05
+472.60000000003924 4.6287549069119163e-05
+472.70000000003927 4.6303946078004126e-05
+472.8000000000393 4.632034584816974e-05
+472.9000000000393 4.6336748379822954e-05
+473.00000000003934 4.635315367316543e-05
+473.10000000003936 4.635610242689744e-05
+473.2000000000394 4.635905098007965e-05
+473.3000000000394 4.63619993328343e-05
+473.4000000000394 4.636494748522599e-05
+473.50000000003945 4.636789543726606e-05
+473.6000000000395 4.6381741154615547e-05
+473.7000000000395 4.639558805731449e-05
+473.8000000000395 4.640943614532933e-05
+473.90000000003954 4.642328541856874e-05
+474.00000000003956 4.643713587693803e-05
+474.1000000000396 4.644237142539062e-05
+474.2000000000396 4.644760714919783e-05
+474.30000000003963 4.6452843048358806e-05
+474.40000000003965 4.6458079123045716e-05
+474.5000000000397 4.6463315373257815e-05
+474.6000000000397 4.6468551799052045e-05
+474.7000000000397 4.647378840060067e-05
+474.80000000003974 4.647902517796072e-05
+474.90000000003977 4.648426213118938e-05
+475.0000000000398 4.6489499260348126e-05
+475.1000000000398 4.650609251381035e-05
+475.20000000003984 4.652268854867531e-05
+475.30000000003986 4.653928736508512e-05
+475.4000000000399 4.655588896306655e-05
+475.5000000000399 4.6572493342815006e-05
+475.6000000000399 4.657817947757678e-05
+475.70000000003995 4.65838657278963e-05
+475.80000000004 4.658955209379341e-05
+475.90000000004 4.6595238575288035e-05
+476.00000000004 4.660092517240312e-05
+476.10000000004004 4.661412577335538e-05
+476.20000000004006 4.662732718998863e-05
+476.3000000000401 4.6640529422302616e-05
+476.4000000000401 4.6653732470181475e-05
+476.50000000004013 4.666693633356273e-05
+476.60000000004015 4.666921145462689e-05
+476.7000000000402 4.6671486325484536e-05
+476.8000000000402 4.667376094632892e-05
+476.9000000000402 4.6676035317122184e-05
+477.00000000004025 4.667830943805888e-05
+477.10000000004027 4.668350073018063e-05
+477.2000000000403 4.6688692164586935e-05
+477.3000000000403 4.669388374127173e-05
+477.40000000004034 4.6699075460344524e-05
+477.50000000004036 4.67042673218615e-05
+477.6000000000404 4.672039830939833e-05
+477.7000000000404 4.673653187135912e-05
+477.8000000000404 4.6752668008050455e-05
+477.90000000004045 4.676880671954781e-05
+478.0000000000405 4.6784948006094956e-05
+478.1000000000405 4.6788419819159274e-05
+478.2000000000405 4.679189151279791e-05
+478.30000000004054 4.679536308695543e-05
+478.40000000004056 4.6798834541807806e-05
+478.5000000000406 4.680230587741536e-05
+478.6000000000406 4.6805777093838486e-05
+478.70000000004063 4.6809248191137535e-05
+478.80000000004065 4.681271916948867e-05
+478.9000000000407 4.681619002883659e-05
+479.0000000000407 4.681966076935729e-05
+479.1000000000407 4.682244244501201e-05
+479.20000000004075 4.682522390375841e-05
+479.30000000004077 4.682800514566384e-05
+479.4000000000408 4.683078617085353e-05
+479.5000000000408 4.683356697939499e-05
+479.60000000004084 4.683634757129776e-05
+479.70000000004086 4.683912794680296e-05
+479.8000000000409 4.684190810586232e-05
+479.9000000000409 4.6844688048659145e-05
+480.0000000000409 4.684746777515003e-05
+480.10000000004095 4.686206041303265e-05
+480.200000000041 4.687665461655455e-05
+480.300000000041 4.689125038571209e-05
+480.400000000041 4.690584772044381e-05
+480.50000000004104 4.692044662079941e-05
+480.60000000004106 4.692408351580917e-05
+480.7000000000411 4.692772027694094e-05
+480.8000000000411 4.693135690424858e-05
+480.90000000004113 4.6934993397843885e-05
+481.00000000004115 4.693862975772672e-05
+481.1000000000412 4.695169524836021e-05
+481.2000000000412 4.696476146277791e-05
+481.3000000000412 4.697782840097475e-05
+481.40000000004125 4.699089606288781e-05
+481.50000000004127 4.70039644483916e-05
+481.6000000000413 4.7006063647590884e-05
+481.7000000000413 4.700816259054292e-05
+481.80000000004134 4.701026127738671e-05
+481.90000000004136 4.701235970820324e-05
+482.0000000000414 4.7014457883020996e-05
+482.1000000000414 4.70297736514211e-05
+482.2000000000414 4.704509138288338e-05
+482.30000000004145 4.7060411077439416e-05
+482.4000000000415 4.707573273506273e-05
+482.5000000000415 4.7091056355780265e-05
+482.6000000000415 4.709540398997391e-05
+482.70000000004154 4.709975156042298e-05
+482.80000000004156 4.7104099067226964e-05
+482.9000000000416 4.7108446510427316e-05
+483.0000000000416 4.711279389007017e-05
+483.10000000004163 4.7128086213660634e-05
+483.20000000004165 4.714338051838446e-05
+483.3000000000417 4.715867680424663e-05
+483.4000000000417 4.7173975071367924e-05
+483.5000000000417 4.7189275319753295e-05
+483.60000000004175 4.720463967044849e-05
+483.70000000004177 4.722004599087099e-05
+483.8000000000418 4.723547365055038e-05
+483.9000000000418 4.7250903523696416e-05
+484.00000000004184 4.726631799170939e-05
+484.10000000004186 4.726829119687319e-05
+484.2000000000419 4.727021604417549e-05
+484.3000000000419 4.7272079503658496e-05
+484.4000000000419 4.727387007580998e-05
+484.50000000004195 4.727557779186311e-05
+484.600000000042 4.7288188910514366e-05
+484.700000000042 4.730070253564771e-05
+484.800000000042 4.7313113221044206e-05
+484.90000000004204 4.7325417049097336e-05
+485.00000000004206 4.733761163319297e-05
+485.1000000000421 4.733898597057655e-05
+485.2000000000421 4.734025037162774e-05
+485.30000000004213 4.7341407127417526e-05
+485.40000000004216 4.734246006429902e-05
+485.5000000000422 4.734341454433178e-05
+485.6000000000422 4.7355278869490945e-05
+485.7000000000422 4.736706293794416e-05
+485.80000000004225 4.737877537447832e-05
+485.90000000004227 4.739042644531725e-05
+486.0000000000423 4.7402028060130165e-05
+486.1000000000423 4.7413064511196184e-05
+486.20000000004234 4.742408008500687e-05
+486.30000000004236 4.743509163375964e-05
+486.4000000000424 4.744611766043008e-05
+486.5000000000424 4.7457178320775385e-05
+486.6000000000424 4.745729330662423e-05
+486.70000000004245 4.745739928932654e-05
+486.8000000000425 4.745749723016193e-05
+486.9000000000425 4.7457588090405166e-05
+487.0000000000425 4.7457672831564555e-05
+487.10000000004254 4.747373313677766e-05
+487.20000000004256 4.7489791880447295e-05
+487.3000000000426 4.750585002101771e-05
+487.4000000000426 4.7521908518276026e-05
+487.50000000004263 4.753796833352088e-05
+487.60000000004266 4.754302901035267e-05
+487.7000000000427 4.754809310559404e-05
+487.8000000000427 4.7553160283186704e-05
+487.9000000000427 4.755823030339898e-05
+488.00000000004275 4.7563303022648456e-05
+488.10000000004277 4.7563979588604276e-05
+488.2000000000428 4.756465855065325e-05
+488.3000000000428 4.756534005376657e-05
+488.40000000004284 4.756602433914722e-05
+488.50000000004286 4.756671174470687e-05
+488.6000000000429 4.7567336167637605e-05
+488.7000000000429 4.7567916489480567e-05
+488.8000000000429 4.7568473868714216e-05
+488.90000000004295 4.756902782673435e-05
+489.000000000043 4.756959624785861e-05
+489.100000000043 4.7581227496487405e-05
+489.200000000043 4.759290436714368e-05
+489.30000000004304 4.7604639872393766e-05
+489.40000000004306 4.7616445397554924e-05
+489.5000000000431 4.762833069868035e-05
+489.6000000000431 4.76292913477375e-05
+489.70000000004313 4.763035131699897e-05
+489.80000000004316 4.7631516987698194e-05
+489.9000000000432 4.7632793197444264e-05
+490.0000000000432 4.763418324022478e-05
+490.1000000000432 4.764716375952023e-05
+490.20000000004325 4.766026099178993e-05
+490.30000000004327 4.767347368132235e-05
+490.4000000000433 4.768679902471541e-05
+490.5000000000433 4.770023266906188e-05
+490.60000000004334 4.7702751907408676e-05
+490.70000000004336 4.770535945131347e-05
+490.8000000000434 4.7708044629847416e-05
+490.9000000000434 4.7710795125951336e-05
+491.0000000000434 4.771359697585395e-05
+491.10000000004345 4.7726179970600546e-05
+491.2000000000435 4.773878217565444e-05
+491.3000000000435 4.775138468313977e-05
+491.4000000000435 4.7763966919407765e-05
+491.50000000004354 4.7776506643014696e-05
+491.60000000004356 4.777795849869425e-05
+491.7000000000436 4.7779410082856254e-05
+491.8000000000436 4.778086139553701e-05
+491.90000000004363 4.778231243688911e-05
+492.00000000004366 4.778376320695412e-05
+492.1000000000437 4.779716143653817e-05
+492.2000000000437 4.781056055108645e-05
+492.3000000000437 4.782396055055859e-05
+492.40000000004375 4.783736143485609e-05
+492.50000000004377 4.785076320393371e-05
+492.6000000000438 4.785313978868672e-05
+492.7000000000438 4.78555161629798e-05
+492.80000000004384 4.785789232689223e-05
+492.90000000004386 4.78602682805614e-05
+493.0000000000439 4.786264402400861e-05
+493.1000000000439 4.786568143401042e-05
+493.20000000004393 4.7868718654223726e-05
+493.30000000004395 4.787175568465558e-05
+493.400000000044 4.7874792525487615e-05
+493.500000000044 4.7877829176673614e-05
+493.600000000044 4.7891898095893084e-05
+493.70000000004404 4.7905968224871145e-05
+493.80000000004407 4.792003956350896e-05
+493.9000000000441 4.793411211176595e-05
+494.0000000000441 4.794818586965434e-05
+494.10000000004413 4.795010437947554e-05
+494.20000000004416 4.795202262661979e-05
+494.3000000000442 4.795394061111461e-05
+494.4000000000442 4.7955858333103755e-05
+494.5000000000442 4.795777579267286e-05
+494.60000000004425 4.79596929898494e-05
+494.70000000004427 4.796160992483545e-05
+494.8000000000443 4.796352659760029e-05
+494.9000000000443 4.7965443008287795e-05
+495.00000000004434 4.796735915704673e-05
+495.10000000004436 4.798000257678413e-05
+495.2000000000444 4.799264641002094e-05
+495.3000000000444 4.8005290656699845e-05
+495.40000000004443 4.8017935316589e-05
+495.50000000004445 4.803058038968437e-05
+495.6000000000445 4.8032183994330504e-05
+495.7000000000445 4.8033787274729504e-05
+495.8000000000445 4.8035390230966e-05
+495.90000000004454 4.8036992863008327e-05
+496.00000000004457 4.8038595171115865e-05
+496.1000000000446 4.804014101664564e-05
+496.2000000000446 4.80416865922468e-05
+496.30000000004463 4.80432318979541e-05
+496.40000000004466 4.8044776933977016e-05
+496.5000000000447 4.804632170029194e-05
+496.6000000000447 4.804786619705015e-05
+496.7000000000447 4.804941042428633e-05
+496.80000000004475 4.805095438221003e-05
+496.90000000004477 4.805249807079773e-05
+497.0000000000448 4.80540414902646e-05
+497.1000000000448 4.806820687336472e-05
+497.20000000004484 4.808237354120664e-05
+497.30000000004486 4.809654149366221e-05
+497.4000000000449 4.811071073083637e-05
+497.5000000000449 4.812488125259596e-05
+497.60000000004493 4.812800185304009e-05
+497.70000000004495 4.8131122305047624e-05
+497.800000000045 4.8134242608570884e-05
+497.900000000045 4.8137362763737035e-05
+498.000000000045 4.814048277067332e-05
+498.10000000004504 4.814378917051842e-05
+498.20000000004507 4.8147095415438935e-05
+498.3000000000451 4.81504015055563e-05
+498.4000000000451 4.815370744087556e-05
+498.50000000004513 4.815701322145998e-05
+498.60000000004516 4.816031884737275e-05
+498.7000000000452 4.816362431873563e-05
+498.8000000000452 4.8166929635553575e-05
+498.9000000000452 4.817023479789003e-05
+499.00000000004525 4.817353980587113e-05
+499.10000000004527 4.818676082963822e-05
+499.2000000000453 4.8199982603342995e-05
+499.3000000000453 4.8213205126863995e-05
+499.40000000004534 4.822642840013814e-05
+499.50000000004536 4.8239652422980546e-05
+499.6000000000454 4.8241812559589093e-05
+499.7000000000454 4.824397245482186e-05
+499.80000000004543 4.824613210887812e-05
+499.90000000004545 4.8248291521782344e-05
+500.0000000000455 4.825045069366989e-05
+500.1000000000455 4.8240394807645255e-05
+500.2000000000455 4.823033818427971e-05
+500.30000000004554 4.8220280823903556e-05
+500.40000000004557 4.821022272673045e-05
+500.5000000000456 4.820016389309577e-05
+500.6000000000456 4.8201172330700465e-05
+500.70000000004563 4.8202180495395665e-05
+500.80000000004566 4.820318838728487e-05
+500.9000000000457 4.820419600647149e-05
+501.0000000000457 4.820520335311767e-05
+501.1000000000457 4.820697162053707e-05
+501.20000000004575 4.820873965327924e-05
+501.30000000004577 4.821050745143512e-05
+501.4000000000458 4.821227501515391e-05
+501.5000000000458 4.821404234435149e-05
+501.60000000004584 4.821580943929385e-05
+501.70000000004586 4.821757630001355e-05
+501.8000000000459 4.8219342926543214e-05
+501.9000000000459 4.8221109319032076e-05
+502.00000000004593 4.822287547757106e-05
+502.10000000004595 4.8224328841675384e-05
+502.200000000046 4.822578194710326e-05
+502.300000000046 4.822723479395082e-05
+502.400000000046 4.8228687382372525e-05
+502.50000000004604 4.823013971240106e-05
+502.60000000004607 4.822051679182655e-05
+502.7000000000461 4.8210892946364414e-05
+502.8000000000461 4.820126817621258e-05
+502.90000000004613 4.819164248168558e-05
+503.00000000004616 4.818201586310432e-05
+503.1000000000462 4.818590612228544e-05
+503.2000000000462 4.8189796266396734e-05
+503.3000000000462 4.81936862954335e-05
+503.40000000004625 4.819757620950771e-05
+503.50000000004627 4.8201466008668043e-05
+503.6000000000463 4.81943394439912e-05
+503.7000000000463 4.818725302026164e-05
+503.80000000004634 4.8180184965198834e-05
+503.90000000004636 4.817311513037739e-05
+504.0000000000464 4.8166024990315575e-05
+504.1000000000464 4.8176091384501685e-05
+504.20000000004643 4.8186106466880135e-05
+504.30000000004645 4.819605650450625e-05
+504.4000000000465 4.820592936557236e-05
+504.5000000000465 4.8215714521133394e-05
+504.6000000000465 4.8225403045948965e-05
+504.70000000004654 4.8234987622417935e-05
+504.80000000004657 4.824446254099464e-05
+504.9000000000466 4.825382370207396e-05
+505.0000000000466 4.8263068617372216e-05
+505.10000000004663 4.8264555752796665e-05
+505.20000000004666 4.826592734793807e-05
+505.3000000000467 4.826718581245612e-05
+505.4000000000467 4.826833517121613e-05
+505.5000000000467 4.826938106455822e-05
+505.60000000004675 4.827033074955998e-05
+505.70000000004677 4.827119309770237e-05
+505.8000000000468 4.8271978596468195e-05
+505.9000000000468 4.827269934939421e-05
+506.00000000004684 4.8273369076120465e-05
+506.10000000004686 4.828636913663872e-05
+506.2000000000469 4.8299351341392326e-05
+506.3000000000469 4.831233425911863e-05
+506.40000000004693 4.832533809587493e-05
+506.50000000004695 4.833838469739939e-05
+506.600000000047 4.835149954084034e-05
+506.700000000047 4.836461628660392e-05
+506.800000000047 4.837773427367322e-05
+506.90000000004704 4.8390852889261646e-05
+507.00000000004707 4.8403971568816905e-05
+507.1000000000471 4.840343346694176e-05
+507.2000000000471 4.840289356217199e-05
+507.30000000004713 4.84023514373495e-05
+507.40000000004716 4.840180672448026e-05
+507.5000000000472 4.8401259104739285e-05
+507.6000000000472 4.8411792687218126e-05
+507.7000000000472 4.8422320055463514e-05
+507.80000000004725 4.8432842359352586e-05
+507.90000000004727 4.844336070095994e-05
+508.0000000000473 4.845387613397119e-05
+508.1000000000473 4.845448554813418e-05
+508.20000000004734 4.845509421062472e-05
+508.30000000004736 4.845570303042477e-05
+508.4000000000474 4.845631286761438e-05
+508.5000000000474 4.8456924533370324e-05
+508.60000000004743 4.846856362557459e-05
+508.70000000004745 4.848016521625313e-05
+508.8000000000475 4.8491751180783815e-05
+508.9000000000475 4.8503341793639364e-05
+509.0000000000475 4.851495572633376e-05
+509.10000000004754 4.852529527560401e-05
+509.20000000004757 4.853569014233205e-05
+509.3000000000476 4.85461541717367e-05
+509.4000000000476 4.855669959673339e-05
+509.50000000004763 4.856733703656561e-05
+509.60000000004766 4.856698714156572e-05
+509.7000000000477 4.8566742999892476e-05
+509.8000000000477 4.8566609488228356e-05
+509.9000000000477 4.856658980946913e-05
+510.00000000004775 4.856668549268075e-05
+510.10000000004777 4.8579064545104935e-05
+510.2000000000478 4.8591557637195036e-05
+510.3000000000478 4.860416135885819e-05
+510.40000000004784 4.86168706205308e-05
+510.50000000004786 4.862967865101261e-05
+510.6000000000479 4.863148657641615e-05
+510.7000000000479 4.863337934598379e-05
+510.80000000004793 4.8635346711557025e-05
+510.90000000004795 4.863737684527645e-05
+511.000000000048 4.863945633915722e-05
+511.100000000048 4.865374121314056e-05
+511.200000000048 4.86680454301995e-05
+511.30000000004804 4.8682350839179525e-05
+511.40000000004807 4.869663768750394e-05
+511.5000000000481 4.871088461881958e-05
+511.6000000000481 4.8713972093959994e-05
+511.70000000004814 4.871705943906799e-05
+511.80000000004816 4.87201466542799e-05
+511.9000000000482 4.8723233739673674e-05
+512.0000000000482 4.872632069526765e-05
+512.1000000000482 4.87271246144787e-05
+512.2000000000482 4.872792831185991e-05
+512.3000000000483 4.8728731787580326e-05
+512.4000000000483 4.872953504175053e-05
+512.5000000000483 4.8730338074428034e-05
+512.6000000000483 4.87422413734239e-05
+512.7000000000484 4.875414481676258e-05
+512.8000000000484 4.876604840447223e-05
+512.9000000000484 4.8777952136405645e-05
+513.0000000000484 4.8789856012586325e-05
+513.1000000000485 4.8792070636043946e-05
+513.2000000000485 4.8794285055403016e-05
+513.3000000000485 4.8796499270808526e-05
+513.4000000000485 4.8798713282288515e-05
+513.5000000000485 4.88009270898711e-05
+513.6000000000486 4.880314069375965e-05
+513.7000000000486 4.8805354093923925e-05
+513.8000000000486 4.8807567290508916e-05
+513.9000000000486 4.880978028348426e-05
+514.0000000000487 4.881199307305911e-05
+514.1000000000487 4.8825562602897945e-05
+514.2000000000487 4.883913310162435e-05
+514.3000000000487 4.885270456911568e-05
+514.4000000000487 4.8866277005424515e-05
+514.5000000000488 4.887985041053964e-05
+514.6000000000488 4.8882315167285496e-05
+514.7000000000488 4.888477977241489e-05
+514.8000000000488 4.8887244226133466e-05
+514.9000000000489 4.8889708528412894e-05
+515.0000000000489 4.889217267940051e-05
+515.1000000000489 4.88948919154517e-05
+515.2000000000489 4.8897611057633613e-05
+515.300000000049 4.8900330105919693e-05
+515.400000000049 4.890304906045882e-05
+515.500000000049 4.8905767921282986e-05
+515.600000000049 4.890848668848262e-05
+515.700000000049 4.8911205362148165e-05
+515.8000000000491 4.8913923942311674e-05
+515.9000000000491 4.891664242912216e-05
+516.0000000000491 4.8919360822616e-05
+516.1000000000491 4.893109529346484e-05
+516.2000000000492 4.894282983003691e-05
+516.3000000000492 4.895456443224927e-05
+516.4000000000492 4.896629910013606e-05
+516.5000000000492 4.897803383355035e-05
+516.6000000000492 4.8978649756280915e-05
+516.7000000000493 4.897926546500779e-05
+516.8000000000493 4.89798809597279e-05
+516.9000000000493 4.898049624055511e-05
+517.0000000000493 4.898111130766246e-05
+517.1000000000494 4.898286783263817e-05
+517.2000000000494 4.898462417457572e-05
+517.3000000000494 4.89863803335152e-05
+517.4000000000494 4.8988136309613776e-05
+517.5000000000495 4.898989210291156e-05
+517.6000000000495 4.899164771344866e-05
+517.7000000000495 4.899340314144084e-05
+517.8000000000495 4.8995158386811155e-05
+517.9000000000495 4.899691344977536e-05
+518.0000000000496 4.899866833031576e-05
+518.1000000000496 4.900175671329744e-05
+518.2000000000496 4.900484498716011e-05
+518.3000000000496 4.900793315210272e-05
+518.4000000000497 4.9011021208090116e-05
+518.5000000000497 4.9014109155262745e-05
+518.6000000000497 4.9017196993702575e-05
+518.7000000000497 4.902028472337448e-05
+518.8000000000497 4.902337234441901e-05
+518.9000000000498 4.902645985691816e-05
+519.0000000000498 4.9029547260900646e-05
+519.1000000000498 4.9043143461577075e-05
+519.2000000000498 4.9056740676186385e-05
+519.3000000000499 4.9070338904874165e-05
+519.4000000000499 4.908393814761033e-05
+519.5000000000499 4.909753840441776e-05
+519.6000000000499 4.910000588707134e-05
+519.70000000005 4.910247326480084e-05
+519.80000000005 4.910494053764216e-05
+519.90000000005 4.910740770574833e-05
+520.00000000005 4.910987476915552e-05
+520.10000000005 4.9112782946700935e-05
+520.2000000000501 4.9115691050756223e-05
+520.3000000000501 4.91185990813532e-05
+520.4000000000501 4.9121507038582425e-05
+520.5000000000501 4.91244149224758e-05
+520.6000000000502 4.912732273318237e-05
+520.7000000000502 4.913023047079278e-05
+520.8000000000502 4.913313813528037e-05
+520.9000000000502 4.9136045726794305e-05
+521.0000000000502 4.913895324536554e-05
+521.1000000000503 4.913971331679797e-05
+521.2000000000503 4.914047318140755e-05
+521.3000000000503 4.9141232839248075e-05
+521.4000000000503 4.914199229043187e-05
+521.5000000000504 4.914275153512996e-05
+521.6000000000504 4.9143510573337475e-05
+521.7000000000504 4.914426940516677e-05
+521.8000000000504 4.9145028030730316e-05
+521.9000000000505 4.9145786450140415e-05
+522.0000000000505 4.914654466345188e-05
+522.1000000000505 4.9149297260065345e-05
+522.2000000000505 4.9152049761200965e-05
+522.3000000000505 4.9154802166949894e-05
+522.4000000000506 4.9157554477344576e-05
+522.5000000000506 4.916030669241758e-05
+522.6000000000506 4.916305881231865e-05
+522.7000000000506 4.9165810837138976e-05
+522.8000000000507 4.916856276685248e-05
+522.9000000000507 4.9171314601609006e-05
+523.0000000000507 4.917406634149942e-05
+523.1000000000507 4.917605836301819e-05
+523.2000000000507 4.917805024361874e-05
+523.3000000000508 4.918004198340052e-05
+523.4000000000508 4.9182033582345656e-05
+523.5000000000508 4.918402504061238e-05
+523.6000000000508 4.9186016358300185e-05
+523.7000000000509 4.918800753544995e-05
+523.8000000000509 4.9189998572161225e-05
+523.9000000000509 4.9191989468474925e-05
+524.0000000000509 4.919398022449095e-05
+524.100000000051 4.919669679754904e-05
+524.200000000051 4.91994132976841e-05
+524.300000000051 4.920212972504917e-05
+524.400000000051 4.920484607968006e-05
+524.500000000051 4.920756236161246e-05
+524.6000000000511 4.9210278570940876e-05
+524.7000000000511 4.921299470775971e-05
+524.8000000000511 4.921571077210478e-05
+524.9000000000511 4.921842676412928e-05
+525.0000000000512 4.922114268386213e-05
+525.1000000000512 4.921031792080412e-05
+525.2000000000512 4.919949281319835e-05
+525.3000000000512 4.9188667361409594e-05
+525.4000000000513 4.917784156550921e-05
+525.5000000000513 4.9167015425808965e-05
+525.6000000000513 4.9167350656671484e-05
+525.7000000000513 4.916768569624606e-05
+525.8000000000513 4.916802054470992e-05
+525.9000000000514 4.9168355202122856e-05
+526.0000000000514 4.916868966854554e-05
+526.1000000000514 4.9170777013550885e-05
+526.2000000000514 4.9172864231644164e-05
+526.3000000000515 4.9174951322748855e-05
+526.4000000000515 4.917703828714047e-05
+526.5000000000515 4.917912512474246e-05
+526.6000000000515 4.91812118356544e-05
+526.7000000000515 4.918329842009312e-05
+526.8000000000516 4.918538487798216e-05
+526.9000000000516 4.918747120942107e-05
+527.0000000000516 4.918955741456954e-05
+527.1000000000516 4.9194450618517805e-05
+527.2000000000517 4.9199344006394694e-05
+527.3000000000517 4.9204237578286456e-05
+527.4000000000517 4.9209131334103216e-05
+527.5000000000517 4.921402527410741e-05
+527.6000000000518 4.921891939820918e-05
+527.7000000000518 4.922381370655363e-05
+527.8000000000518 4.922870819916844e-05
+527.9000000000518 4.9233602876139975e-05
+528.0000000000518 4.92384977374942e-05
+528.1000000000519 4.9239992343113864e-05
+528.2000000000519 4.9241486800021346e-05
+528.3000000000519 4.9242981108381746e-05
+528.4000000000519 4.924447526818387e-05
+528.500000000052 4.9245969279651544e-05
+528.600000000052 4.9247463142714885e-05
+528.700000000052 4.9248956857538983e-05
+528.800000000052 4.9250450424230206e-05
+528.900000000052 4.9251943842836156e-05
+529.0000000000521 4.9253437113405595e-05
+529.1000000000521 4.925706289708e-05
+529.2000000000521 4.9260688697341884e-05
+529.3000000000521 4.9264314514221946e-05
+529.4000000000522 4.9267940347868455e-05
+529.5000000000522 4.927156619825338e-05
+529.6000000000522 4.9275192065466265e-05
+529.7000000000522 4.927881794959669e-05
+529.8000000000523 4.928244385073423e-05
+529.9000000000523 4.928606976890968e-05
+530.0000000000523 4.928969570421245e-05
+530.1000000000523 4.929271331569933e-05
+530.2000000000523 4.92957308860558e-05
+530.3000000000524 4.9298748415375526e-05
+530.4000000000524 4.930176590369352e-05
+530.5000000000524 4.930478335104469e-05
+530.6000000000524 4.930780075758167e-05
+530.7000000000525 4.931081812333944e-05
+530.8000000000525 4.9313835448353016e-05
+530.9000000000525 4.93168527327751e-05
+531.0000000000525 4.93198699765808e-05
+531.1000000000525 4.932090770470303e-05
+531.2000000000526 4.932194526837221e-05
+531.3000000000526 4.9322982667699626e-05
+531.4000000000526 4.9324019902737774e-05
+531.5000000000526 4.932505697353912e-05
+531.6000000000527 4.9326093880273837e-05
+531.7000000000527 4.932713062293555e-05
+531.8000000000527 4.932816720169444e-05
+531.9000000000527 4.9329203616603e-05
+532.0000000000528 4.933023986771375e-05
+532.1000000000528 4.933129555048751e-05
+532.2000000000528 4.9332351062348796e-05
+532.3000000000528 4.9333406403349284e-05
+532.4000000000528 4.933446157359965e-05
+532.5000000000529 4.933551657321052e-05
+532.6000000000529 4.933657140217484e-05
+532.7000000000529 4.933762606066208e-05
+532.8000000000529 4.933868054872407e-05
+532.900000000053 4.933973486647146e-05
+533.000000000053 4.93407890139626e-05
+533.100000000053 4.935421054821675e-05
+533.200000000053 4.936763299473962e-05
+533.300000000053 4.9381056353504654e-05
+533.4000000000531 4.939448062454412e-05
+533.5000000000531 4.9407905807884405e-05
+533.6000000000531 4.941012779297504e-05
+533.7000000000531 4.941234968266645e-05
+533.8000000000532 4.941457147711851e-05
+533.9000000000532 4.941679317631445e-05
+534.0000000000532 4.941901478047417e-05
+534.1000000000532 4.942345866704261e-05
+534.2000000000533 4.942790269859004e-05
+534.3000000000533 4.9432346875268225e-05
+534.4000000000533 4.943679119705246e-05
+534.5000000000533 4.944123566410057e-05
+534.6000000000533 4.945689244883994e-05
+534.7000000000534 4.947255139471272e-05
+534.8000000000534 4.948821250184758e-05
+534.9000000000534 4.95038757703731e-05
+535.0000000000534 4.951954120058771e-05
+535.1000000000535 4.952209280320606e-05
+535.2000000000535 4.9524644309358e-05
+535.3000000000535 4.952719571902136e-05
+535.4000000000535 4.9529747032350915e-05
+535.5000000000535 4.953229824933063e-05
+535.6000000000536 4.954606904145595e-05
+535.7000000000536 4.95598408930659e-05
+535.8000000000536 4.9573613804068e-05
+535.9000000000536 4.9587387774546656e-05
+536.0000000000537 4.960116280446297e-05
+536.1000000000537 4.9605055427085e-05
+536.2000000000537 4.960894811380161e-05
+536.3000000000537 4.961284086470534e-05
+536.4000000000538 4.961673367988855e-05
+536.5000000000538 4.962062655932587e-05
+536.6000000000538 4.962451950310985e-05
+536.7000000000538 4.9628412511391893e-05
+536.8000000000538 4.9632305584146666e-05
+536.9000000000539 4.9636198721407796e-05
+537.0000000000539 4.964009192338584e-05
+537.1000000000539 4.964407392065432e-05
+537.2000000000539 4.964805600884324e-05
+537.300000000054 4.9652038187929833e-05
+537.400000000054 4.96560204581272e-05
+537.500000000054 4.966000281935965e-05
+537.600000000054 4.967522146752307e-05
+537.700000000054 4.969044200901615e-05
+537.8000000000541 4.9705664443871714e-05
+537.9000000000541 4.9720888772299604e-05
+538.0000000000541 4.973611499432629e-05
+538.1000000000541 4.973943926020663e-05
+538.2000000000542 4.9742763506013715e-05
+538.3000000000542 4.974608773183905e-05
+538.4000000000542 4.9749411937714985e-05
+538.5000000000542 4.975273612379208e-05
+538.6000000000543 4.9756129938114795e-05
+538.7000000000543 4.975956851896075e-05
+538.8000000000543 4.976302871345473e-05
+538.9000000000543 4.9766489078344885e-05
+539.0000000000543 4.9769929880439404e-05
+539.1000000000544 4.977269982926532e-05
+539.2000000000544 4.977541583631573e-05
+539.3000000000544 4.977806330508106e-05
+539.4000000000544 4.9780629352287706e-05
+539.5000000000545 4.9783102808543316e-05
+539.6000000000545 4.978547217031659e-05
+539.7000000000545 4.978773042939757e-05
+539.8000000000545 4.9789872242759865e-05
+539.9000000000545 4.9791893933279056e-05
+540.0000000000546 4.979379349006162e-05
+540.1000000000546 4.979690229372672e-05
+540.2000000000546 4.979989003392894e-05
+540.3000000000546 4.980275969114898e-05
+540.4000000000547 4.980551591404374e-05
+540.5000000000547 4.9808165019913426e-05
+540.6000000000547 4.97994583352164e-05
+540.7000000000547 4.979066106268495e-05
+540.8000000000548 4.978178458129619e-05
+540.9000000000548 4.977284192840341e-05
+541.0000000000548 4.9763847798341205e-05
+541.1000000000548 4.976492217612368e-05
+541.2000000000548 4.976598037862772e-05
+541.3000000000549 4.9767042064062174e-05
+541.4000000000549 4.976812855889415e-05
+541.5000000000549 4.9769262858347824e-05
+541.6000000000549 4.977046962771134e-05
+541.700000000055 4.9771678913664e-05
+541.800000000055 4.977289038827181e-05
+541.900000000055 4.977410367320753e-05
+542.000000000055 4.977531833944886e-05
+542.100000000055 4.97797037686114e-05
+542.2000000000551 4.978408985503082e-05
+542.3000000000551 4.978847601810626e-05
+542.4000000000551 4.979286162652281e-05
+542.5000000000551 4.979724599829259e-05
+542.6000000000552 4.981289778786161e-05
+542.7000000000552 4.982855296017971e-05
+542.8000000000552 4.98442108342102e-05
+542.9000000000552 4.9859870778404994e-05
+543.0000000000553 4.987553221095494e-05
+543.1000000000553 4.987566868191289e-05
+543.2000000000553 4.987580334341223e-05
+543.3000000000553 4.987593576532412e-05
+543.4000000000553 4.987606556800704e-05
+543.5000000000554 4.987619242236858e-05
+543.6000000000554 4.987624620539086e-05
+543.7000000000554 4.987625163292432e-05
+543.8000000000554 4.987623175136633e-05
+543.9000000000555 4.9876207938253606e-05
+544.0000000000555 4.987619990241602e-05
+544.1000000000555 4.987668824105594e-05
+544.2000000000555 4.987722674874376e-05
+544.3000000000555 4.98778301296424e-05
+544.4000000000556 4.987851141925486e-05
+544.5000000000556 4.987928198470713e-05
+544.6000000000556 4.9880151524551434e-05
+544.7000000000556 4.9881128066692836e-05
+544.8000000000557 4.988221797167428e-05
+544.9000000000557 4.9883425931079384e-05
+545.0000000000557 4.988475496723936e-05
+545.1000000000557 4.98872821043193e-05
+545.2000000000558 4.9889931438923254e-05
+545.3000000000558 4.989270099249216e-05
+545.4000000000558 4.989558711575053e-05
+545.5000000000558 4.989858448851016e-05
+545.6000000000558 4.990168611872778e-05
+545.7000000000559 4.990488050304951e-05
+545.8000000000559 4.990815646852006e-05
+545.9000000000559 4.991150111783812e-05
+546.0000000000559 4.991489982848435e-05
+546.100000000056 4.991968984133576e-05
+546.200000000056 4.992449969938009e-05
+546.300000000056 4.9929309600697444e-05
+546.400000000056 4.993409801293982e-05
+546.500000000056 4.9938841673075015e-05
+546.6000000000561 4.9943515586317326e-05
+546.7000000000561 4.994818968944358e-05
+546.8000000000561 4.995286398243429e-05
+546.9000000000561 4.995753846544761e-05
+547.0000000000562 4.996221313846929e-05
+547.1000000000562 4.99762607058737e-05
+547.2000000000562 4.9990309457170474e-05
+547.3000000000562 5.00043593924032e-05
+547.4000000000563 5.00184105116747e-05
+547.5000000000563 5.003246281490373e-05
+547.6000000000563 5.0035221669715425e-05
+547.7000000000563 5.003798046308685e-05
+547.8000000000563 5.00407391950561e-05
+547.9000000000564 5.004349786566135e-05
+548.0000000000564 5.004625647505966e-05
+548.1000000000564 5.004955105741905e-05
+548.2000000000564 5.0052845615418984e-05
+548.3000000000565 5.005614014897537e-05
+548.4000000000565 5.005943465824141e-05
+548.5000000000565 5.0062729143251605e-05
+548.6000000000565 5.006602360404053e-05
+548.7000000000565 5.006931804070212e-05
+548.8000000000566 5.007261245327094e-05
+548.9000000000566 5.007590684184092e-05
+549.0000000000566 5.0079201206387597e-05
+549.1000000000566 5.008283522932321e-05
+549.2000000000567 5.008646928043152e-05
+549.3000000000567 5.0090103359748416e-05
+549.4000000000567 5.0093737467309824e-05
+549.5000000000567 5.0097371603276706e-05
+549.6000000000568 5.0112315249663245e-05
+549.7000000000568 5.012726056527298e-05
+549.8000000000568 5.0142207550147894e-05
+549.9000000000568 5.015715620438908e-05
+550.0000000000568 5.017210652797329e-05
+550.1000000000569 5.0176690583707815e-05
+550.2000000000569 5.018127477934155e-05
+550.3000000000569 5.018585911490593e-05
+550.4000000000569 5.0190443590491805e-05
+550.500000000057 5.0195028206071176e-05
+550.600000000057 5.0199612961794364e-05
+550.700000000057 5.020419785769279e-05
+550.800000000057 5.020878289379805e-05
+550.900000000057 5.0213368070141635e-05
+551.0000000000571 5.021795338681448e-05
+551.1000000000571 5.022243746156168e-05
+551.2000000000571 5.022692169573954e-05
+551.3000000000571 5.023140608944678e-05
+551.4000000000572 5.0235890642782286e-05
+551.5000000000572 5.024037535572605e-05
+551.6000000000572 5.0244860228376875e-05
+551.7000000000572 5.024934526083368e-05
+551.8000000000573 5.0253830453135954e-05
+551.9000000000573 5.0258315805382596e-05
+552.0000000000573 5.026280131755189e-05
+552.1000000000573 5.026398311299942e-05
+552.2000000000573 5.026516470684061e-05
+552.3000000000574 5.026634609918697e-05
+552.4000000000574 5.026752729015017e-05
+552.5000000000574 5.0268708279723006e-05
+552.6000000000574 5.0269889068017025e-05
+552.7000000000575 5.027106965508445e-05
+552.8000000000575 5.027225004103696e-05
+552.9000000000575 5.027343022586724e-05
+553.0000000000575 5.027461020980854e-05
+553.1000000000575 5.028038430065593e-05
+553.2000000000576 5.0286158729356074e-05
+553.3000000000576 5.029193349594589e-05
+553.4000000000576 5.0297708600521755e-05
+553.5000000000576 5.030348404318015e-05
+553.6000000000577 5.0309259823898517e-05
+553.7000000000577 5.03150359427734e-05
+553.8000000000577 5.0320812399901304e-05
+553.9000000000577 5.0326589195259746e-05
+554.0000000000578 5.033236632888512e-05
+554.1000000000578 5.0336852715166795e-05
+554.2000000000578 5.0341339216715e-05
+554.3000000000578 5.034582583362291e-05
+554.4000000000578 5.0350312565924136e-05
+554.5000000000579 5.0354799413777965e-05
+554.6000000000579 5.037064134584357e-05
+554.7000000000579 5.038648541694464e-05
+554.8000000000579 5.040233162729594e-05
+554.900000000058 5.041817997699322e-05
+555.000000000058 5.043403046606553e-05
+555.100000000058 5.043764318432672e-05
+555.200000000058 5.0441255916223306e-05
+555.300000000058 5.044486866190852e-05
+555.4000000000581 5.044848142147598e-05
+555.5000000000581 5.04520941948407e-05
+555.6000000000581 5.0455706982155914e-05
+555.7000000000581 5.045931978351535e-05
+555.8000000000582 5.0462932598834006e-05
+555.9000000000582 5.0466545428324834e-05
+556.0000000000582 5.047015827189611e-05
+556.1000000000582 5.0462271045466635e-05
+556.2000000000583 5.045438224890517e-05
+556.3000000000583 5.04464918823244e-05
+556.4000000000583 5.043859994577744e-05
+556.5000000000583 5.043070643938359e-05
+556.6000000000583 5.043418321946358e-05
+556.7000000000584 5.043765999766994e-05
+556.8000000000584 5.04411367740373e-05
+556.9000000000584 5.044461354854078e-05
+557.0000000000584 5.044809032133504e-05
+557.1000000000585 5.045283850518441e-05
+557.2000000000585 5.045758684916255e-05
+557.3000000000585 5.0462335353304675e-05
+557.4000000000585 5.04670840177058e-05
+557.5000000000585 5.04718328424012e-05
+557.6000000000586 5.047658182742628e-05
+557.7000000000586 5.048133097281636e-05
+557.8000000000586 5.0486080278726176e-05
+557.9000000000586 5.0490829745071865e-05
+558.0000000000587 5.049557937200755e-05
+558.1000000000587 5.0499311321393394e-05
+558.2000000000587 5.050304326565403e-05
+558.3000000000587 5.0506775205000446e-05
+558.4000000000588 5.051050713928553e-05
+558.5000000000588 5.0514239068720344e-05
+558.6000000000588 5.051797099333677e-05
+558.7000000000588 5.05217029131072e-05
+558.8000000000588 5.052543482812326e-05
+558.9000000000589 5.052916673841703e-05
+559.0000000000589 5.0532898644079896e-05
+559.1000000000589 5.053604280055793e-05
+559.2000000000589 5.053918692035072e-05
+559.300000000059 5.0542331003494916e-05
+559.400000000059 5.054547505014682e-05
+559.500000000059 5.0548619060216986e-05
+559.600000000059 5.054036466564641e-05
+559.700000000059 5.053210881692182e-05
+559.8000000000591 5.0523851514063664e-05
+559.9000000000591 5.051559275721218e-05
+560.0000000000591 5.050733254639773e-05
+560.1000000000591 5.0515536819409935e-05
+560.2000000000592 5.0523742008473643e-05
+560.3000000000592 5.0531948113803804e-05
+560.4000000000592 5.054015513549591e-05
+560.5000000000592 5.0548363073585585e-05
+560.6000000000593 5.055657192828799e-05
+560.7000000000593 5.056478169963879e-05
+560.8000000000593 5.057299238779345e-05
+560.9000000000593 5.058120399284749e-05
+561.0000000000593 5.058941651489267e-05
+561.1000000000594 5.059089892572592e-05
+561.2000000000594 5.0592381094090495e-05
+561.3000000000594 5.0593863019916214e-05
+561.4000000000594 5.059534470337233e-05
+561.5000000000595 5.0596826144441805e-05
+561.6000000000595 5.058688560353718e-05
+561.7000000000595 5.05769441517412e-05
+561.8000000000595 5.056700178946704e-05
+561.9000000000595 5.055705851676873e-05
+562.0000000000596 5.0547114334008246e-05
+562.1000000000596 5.055156556102542e-05
+562.2000000000596 5.055601688951305e-05
+562.3000000000596 5.056046831968267e-05
+562.4000000000597 5.056491985144652e-05
+562.5000000000597 5.056937148495637e-05
+562.6000000000597 5.057382322024423e-05
+562.7000000000597 5.0578275057342194e-05
+562.8000000000598 5.058272699628226e-05
+562.9000000000598 5.058717903709654e-05
+563.0000000000598 5.059163117987748e-05
+563.1000000000598 5.059691729826425e-05
+563.2000000000598 5.0602203664686814e-05
+563.3000000000599 5.060749027912217e-05
+563.4000000000599 5.0612777141667136e-05
+563.5000000000599 5.06180642523587e-05
+563.6000000000599 5.0623351611233815e-05
+563.70000000006 5.062863921838944e-05
+563.80000000006 5.0633927073862585e-05
+563.90000000006 5.063921517769028e-05
+564.00000000006 5.064450352990144e-05
+564.10000000006 5.0636161712920704e-05
+564.2000000000601 5.0627818411938664e-05
+564.3000000000601 5.061947362700709e-05
+564.4000000000601 5.061112735829799e-05
+564.5000000000601 5.060277960587018e-05
+564.6000000000602 5.060587966383396e-05
+564.7000000000602 5.060897964107145e-05
+564.8000000000602 5.061207953755836e-05
+564.9000000000602 5.0615179353330326e-05
+565.0000000000603 5.061827908848531e-05
+565.1000000000603 5.062512015309487e-05
+565.2000000000603 5.063196182515184e-05
+565.3000000000603 5.063880410466808e-05
+565.4000000000603 5.064564699171543e-05
+565.5000000000604 5.065249048642576e-05
+565.6000000000604 5.065933458893114e-05
+565.7000000000604 5.066617929924341e-05
+565.8000000000604 5.067302461749461e-05
+565.9000000000605 5.067987054375675e-05
+566.0000000000605 5.0686717078100175e-05
+566.1000000000605 5.069066622594297e-05
+566.2000000000605 5.069461534787842e-05
+566.3000000000605 5.069856444381578e-05
+566.4000000000606 5.070251351384472e-05
+566.5000000000606 5.070646255799473e-05
+566.6000000000606 5.071041157641556e-05
+566.7000000000606 5.071436056901655e-05
+566.8000000000607 5.07183095358874e-05
+566.9000000000607 5.0722258477117795e-05
+567.0000000000607 5.072620739267823e-05
+567.1000000000607 5.073164888934772e-05
+567.2000000000608 5.073709065336786e-05
+567.3000000000608 5.0742532684774935e-05
+567.4000000000608 5.074797498366532e-05
+567.5000000000608 5.075341755007537e-05
+567.6000000000608 5.075886038398126e-05
+567.7000000000609 5.0764303485539634e-05
+567.8000000000609 5.076974685472669e-05
+567.9000000000609 5.077519049163906e-05
+568.0000000000609 5.078063439630502e-05
+568.100000000061 5.077281936125576e-05
+568.200000000061 5.076500265534681e-05
+568.300000000061 5.0757184278580604e-05
+568.400000000061 5.0749364231019916e-05
+568.500000000061 5.074154251272739e-05
+568.6000000000611 5.0733719123765964e-05
+568.7000000000611 5.07258940641382e-05
+568.8000000000611 5.071806733396714e-05
+568.9000000000611 5.071023893325556e-05
+569.0000000000612 5.070240886207509e-05
+569.1000000000612 5.070881397122196e-05
+569.2000000000612 5.071521952543075e-05
+569.3000000000612 5.072162552475003e-05
+569.4000000000613 5.0728031969228384e-05
+569.5000000000613 5.073443885891434e-05
+569.6000000000613 5.074084619397705e-05
+569.7000000000613 5.074725397434459e-05
+569.8000000000613 5.0753662200125965e-05
+569.9000000000614 5.0760070871430105e-05
+570.0000000000614 5.076647998825069e-05
+570.1000000000614 5.0781543489413996e-05
+570.2000000000614 5.0796608577401214e-05
+570.3000000000615 5.0811675252146006e-05
+570.4000000000615 5.082674351376287e-05
+570.5000000000615 5.0841813362298916e-05
+570.6000000000615 5.0845368293012785e-05
+570.7000000000616 5.084892320027734e-05
+570.8000000000616 5.0852478084187324e-05
+570.9000000000616 5.085603294477739e-05
+571.0000000000616 5.085958778208335e-05
+571.1000000000616 5.086530800984137e-05
+571.2000000000617 5.087102851799481e-05
+571.3000000000617 5.087674930639696e-05
+571.4000000000617 5.0882470375202986e-05
+571.5000000000617 5.088819172450756e-05
+571.6000000000618 5.0893913354224414e-05
+571.7000000000618 5.0899635264508744e-05
+571.8000000000618 5.090535745533469e-05
+571.9000000000618 5.091107992679707e-05
+572.0000000000618 5.091680267886947e-05
+572.1000000000619 5.092158640862337e-05
+572.2000000000619 5.0926370247768594e-05
+572.3000000000619 5.093115419639564e-05
+572.4000000000619 5.093593825447431e-05
+572.500000000062 5.094072242209526e-05
+572.600000000062 5.094550669928865e-05
+572.700000000062 5.09502910860848e-05
+572.800000000062 5.0955075582574354e-05
+572.900000000062 5.0959860188727225e-05
+573.0000000000621 5.096464490464224e-05
+573.1000000000621 5.0982527774315496e-05
+573.2000000000621 5.100041396258233e-05
+573.3000000000621 5.101830346995012e-05
+573.4000000000622 5.103619629662396e-05
+573.5000000000622 5.1054092443043606e-05
+573.6000000000622 5.1060439773933336e-05
+573.7000000000622 5.1066787552970316e-05
+573.8000000000623 5.107313578020275e-05
+573.9000000000623 5.1079484455799814e-05
+574.0000000000623 5.1085833579690174e-05
+574.1000000000623 5.109462652932976e-05
+574.2000000000623 5.1103420541409424e-05
+574.3000000000624 5.111221561598601e-05
+574.4000000000624 5.1121011753237544e-05
+574.5000000000624 5.112980895322091e-05
+574.6000000000624 5.113860721617476e-05
+574.7000000000625 5.114740654209546e-05
+574.8000000000625 5.115620693122185e-05
+574.9000000000625 5.1165008383671506e-05
+575.0000000000625 5.1173810899506376e-05
+575.1000000000626 5.1190449989808595e-05
+575.2000000000626 5.120709152639913e-05
+575.3000000000626 5.122373550957073e-05
+575.4000000000626 5.124038193937349e-05
+575.5000000000626 5.125703081591109e-05
+575.6000000000627 5.126209748463932e-05
+575.7000000000627 5.126716431035542e-05
+575.8000000000627 5.1272231293151684e-05
+575.9000000000627 5.127729843299915e-05
+576.0000000000628 5.1282365729998e-05
+576.1000000000628 5.1299848274632955e-05
+576.2000000000628 5.1317333812344544e-05
+576.3000000000628 5.133482234349289e-05
+576.4000000000628 5.135231386825607e-05
+576.5000000000629 5.136980838704773e-05
+576.6000000000629 5.137570867458928e-05
+576.7000000000629 5.138160929268326e-05
+576.8000000000629 5.1387510241433124e-05
+576.900000000063 5.139341152088158e-05
+577.000000000063 5.139931313101819e-05
+577.100000000063 5.141694454803286e-05
+577.200000000063 5.1434579035673775e-05
+577.300000000063 5.145221659419105e-05
+577.4000000000631 5.146985722389551e-05
+577.5000000000631 5.148750092502998e-05
+577.6000000000631 5.14935369793372e-05
+577.7000000000631 5.14995733834965e-05
+577.8000000000632 5.150561013754964e-05
+577.9000000000632 5.1511647241599206e-05
+578.0000000000632 5.151768469569181e-05
+578.1000000000632 5.153140079119576e-05
+578.2000000000633 5.154511752929949e-05
+578.3000000000633 5.1558834909746485e-05
+578.4000000000633 5.157255293240182e-05
+578.5000000000633 5.1586271597183915e-05
+578.6000000000633 5.1588371901166236e-05
+578.7000000000634 5.159047190101413e-05
+578.8000000000634 5.159257159670528e-05
+578.9000000000634 5.1594670988278206e-05
+579.0000000000634 5.159677007589632e-05
+579.1000000000635 5.160386201907617e-05
+579.2000000000635 5.161095154988568e-05
+579.3000000000635 5.161803866831014e-05
+579.4000000000635 5.1625123374334845e-05
+579.5000000000636 5.1632205667755494e-05
+579.6000000000636 5.16276707746605e-05
+579.7000000000636 5.162313550961379e-05
+579.8000000000636 5.1618599872820606e-05
+579.9000000000636 5.1614063864485976e-05
+580.0000000000637 5.1609527484881824e-05
+580.1000000000637 5.1614509812886864e-05
+580.2000000000637 5.161949228169204e-05
+580.3000000000637 5.1624474891329405e-05
+580.4000000000638 5.162945764183104e-05
+580.5000000000638 5.1634440533236464e-05
+580.6000000000638 5.165104098369536e-05
+580.7000000000638 5.166764381733064e-05
+580.8000000000638 5.1684249034179165e-05
+580.9000000000639 5.170085663446003e-05
+581.0000000000639 5.1717466618264955e-05
+581.1000000000639 5.1724893473583484e-05
+581.2000000000639 5.1732320977567623e-05
+581.300000000064 5.1739749130217786e-05
+581.400000000064 5.1747177931595196e-05
+581.500000000064 5.1754607381890334e-05
+581.600000000064 5.177366939964537e-05
+581.700000000064 5.1792735405984015e-05
+581.8000000000641 5.181180540149674e-05
+581.9000000000641 5.1830879386652225e-05
+582.0000000000641 5.184995736197102e-05
+582.1000000000641 5.185486123266674e-05
+582.2000000000642 5.185976515796556e-05
+582.3000000000642 5.186466913777183e-05
+582.4000000000642 5.1869573172233675e-05
+582.5000000000642 5.187447726138484e-05
+582.6000000000643 5.18910266086773e-05
+582.7000000000643 5.190757821237479e-05
+582.8000000000643 5.19241320724489e-05
+582.9000000000643 5.1940688189114806e-05
+583.0000000000643 5.195724656233724e-05
+583.1000000000644 5.196312534653187e-05
+583.2000000000644 5.196900444551288e-05
+583.3000000000644 5.1974883859381965e-05
+583.4000000000644 5.198076358824115e-05
+583.5000000000645 5.198664363200934e-05
+583.6000000000645 5.1992451171345014e-05
+583.7000000000645 5.199821219147358e-05
+583.8000000000645 5.20039508957309e-05
+583.9000000000646 5.2009689703783516e-05
+584.0000000000646 5.2015449251082084e-05
+584.1000000000646 5.2018177111406164e-05
+584.2000000000646 5.202096110471278e-05
+584.3000000000646 5.202381649489473e-05
+584.4000000000647 5.2026756754389655e-05
+584.5000000000647 5.202979356425747e-05
+584.6000000000647 5.204460553400406e-05
+584.7000000000647 5.2059534879644785e-05
+584.8000000000648 5.2074587274403366e-05
+584.9000000000648 5.208976665458096e-05
+585.0000000000648 5.2105075216572835e-05
+585.1000000000648 5.210833267254438e-05
+585.2000000000648 5.211171657852173e-05
+585.3000000000649 5.211522381071176e-05
+585.4000000000649 5.211884950027231e-05
+585.5000000000649 5.212258703241301e-05
+585.6000000000649 5.2126428047346126e-05
+585.700000000065 5.213036243650698e-05
+585.800000000065 5.2134378343513466e-05
+585.900000000065 5.213846216347081e-05
+586.000000000065 5.214259854263421e-05
+586.100000000065 5.214542456444666e-05
+586.2000000000651 5.214826706084326e-05
+586.3000000000651 5.215110542694012e-05
+586.4000000000651 5.215391730836615e-05
+586.5000000000651 5.215667860094006e-05
+586.6000000000652 5.215936344932961e-05
+586.7000000000652 5.216204517845322e-05
+586.8000000000652 5.216472413213666e-05
+586.9000000000652 5.2167400707213054e-05
+587.0000000000653 5.217007535328508e-05
+587.1000000000653 5.216526401007617e-05
+587.2000000000653 5.216044945049862e-05
+587.3000000000653 5.2155632283017974e-05
+587.4000000000653 5.215081316859992e-05
+587.5000000000654 5.2145992820859185e-05
+587.6000000000654 5.212947639262952e-05
+587.7000000000654 5.211295289079474e-05
+587.8000000000654 5.20964230295406e-05
+587.9000000000655 5.207988746931683e-05
+588.0000000000655 5.206334681679257e-05
+588.1000000000655 5.2035656795874095e-05
+588.2000000000655 5.200795912022333e-05
+588.3000000000656 5.1980254233970844e-05
+588.4000000000656 5.19525425277826e-05
+588.5000000000656 5.192482433870314e-05
+588.6000000000656 5.190895493095862e-05
+588.7000000000656 5.189317620828731e-05
+588.8000000000657 5.187743996274266e-05
+588.9000000000657 5.186170157149621e-05
+589.0000000000657 5.184591999092095e-05
+589.1000000000657 5.185467193071572e-05
+589.2000000000658 5.186331633707767e-05
+589.3000000000658 5.1871822675141164e-05
+589.4000000000658 5.188016391712478e-05
+589.5000000000658 5.1888316545293004e-05
+589.6000000000658 5.188453045162849e-05
+589.7000000000659 5.1880514392752234e-05
+589.8000000000659 5.187625627241301e-05
+589.9000000000659 5.187174747277983e-05
+590.0000000000659 5.1866982852688675e-05
+590.100000000066 5.189695676502848e-05
+590.200000000066 5.1926683533257485e-05
+590.300000000066 5.19561679371205e-05
+590.400000000066 5.198541824957796e-05
+590.500000000066 5.201444624722867e-05
+590.6000000000661 5.2043267218037285e-05
+590.7000000000661 5.207190293511903e-05
+590.8000000000661 5.2100376618279145e-05
+590.9000000000661 5.212871508292999e-05
+591.0000000000662 5.215694874925823e-05
+591.1000000000662 5.2152422724379005e-05
+591.2000000000662 5.2147856691259904e-05
+591.3000000000662 5.214329193373778e-05
+591.4000000000663 5.213877326630228e-05
+591.5000000000663 5.2134349032843297e-05
+591.6000000000663 5.211831421243839e-05
+591.7000000000663 5.210227604406525e-05
+591.8000000000663 5.2086234180825545e-05
+591.9000000000664 5.2070188223618604e-05
+592.0000000000664 5.2054137720989574e-05
+592.1000000000664 5.205967484258528e-05
+592.2000000000664 5.206521271062793e-05
+592.3000000000665 5.207075071799291e-05
+592.4000000000665 5.207628820428715e-05
+592.5000000000665 5.2081824456334324e-05
+592.6000000000665 5.2122674316454135e-05
+592.7000000000666 5.216353320701907e-05
+592.8000000000666 5.220440041675723e-05
+592.9000000000666 5.224527528503788e-05
+593.0000000000666 5.228615720218642e-05
+593.1000000000666 5.230211047605144e-05
+593.2000000000667 5.231806387570119e-05
+593.3000000000667 5.233401694803611e-05
+593.4000000000667 5.234996929264851e-05
+593.5000000000667 5.236592056151284e-05
+593.6000000000668 5.234637846054216e-05
+593.7000000000668 5.232673501884776e-05
+593.8000000000668 5.230703887065402e-05
+593.9000000000668 5.2287335026007705e-05
+594.0000000000668 5.2267664876596846e-05
+594.1000000000669 5.2226915817785226e-05
+594.2000000000669 5.2186264754984075e-05
+594.3000000000669 5.214574209425863e-05
+594.4000000000669 5.210537460636343e-05
+594.500000000067 5.2065185440639e-05
+594.600000000067 5.209596281397375e-05
+594.700000000067 5.212697553072628e-05
+594.800000000067 5.21582362274338e-05
+594.900000000067 5.218975407774152e-05
+595.0000000000671 5.22215347820991e-05
+595.1000000000671 5.2262648196355066e-05
+595.2000000000671 5.230402500607856e-05
+595.3000000000671 5.2345660558425634e-05
+595.4000000000672 5.238754667843249e-05
+595.5000000000672 5.242967165510247e-05
+595.6000000000672 5.244840014269342e-05
+595.7000000000672 5.2467324006562185e-05
+595.8000000000673 5.2486419726054055e-05
+595.9000000000673 5.250566017930465e-05
+596.0000000000673 5.252501463651895e-05
+596.1000000000673 5.2536585043714835e-05
+596.2000000000673 5.254819498609476e-05
+596.3000000000674 5.255980287049026e-05
+596.4000000000674 5.257136349591468e-05
+596.5000000000674 5.258282805023867e-05
+596.6000000000674 5.258231190181489e-05
+596.7000000000675 5.258178969250478e-05
+596.8000000000675 5.258126176829533e-05
+596.9000000000675 5.2580728528516676e-05
+597.0000000000675 5.2580190425905386e-05
+597.1000000000676 5.2589263752422356e-05
+597.2000000000676 5.259833756676584e-05
+597.3000000000676 5.2607412482616436e-05
+597.4000000000676 5.2616489167273466e-05
+597.5000000000676 5.2625568341768964e-05
+597.6000000000677 5.2646503265039855e-05
+597.7000000000677 5.266744198398705e-05
+597.8000000000677 5.268838521927873e-05
+597.9000000000677 5.270933363938393e-05
+598.0000000000678 5.2730287860210886e-05
+598.1000000000678 5.273636266398432e-05
+598.2000000000678 5.2742439426039194e-05
+598.3000000000678 5.274851860184801e-05
+598.4000000000678 5.2754600593588666e-05
+598.5000000000679 5.276068574999214e-05
+598.6000000000679 5.27669221149492e-05
+598.7000000000679 5.2773257202769246e-05
+598.8000000000679 5.277964209347335e-05
+598.900000000068 5.2786031432722465e-05
+599.000000000068 5.2792383434092025e-05
+599.100000000068 5.281021782817635e-05
+599.200000000068 5.282794456720282e-05
+599.300000000068 5.2845532487253814e-05
+599.4000000000681 5.286295397675052e-05
+599.5000000000681 5.288018498286796e-05
+599.6000000000681 5.2885318499603616e-05
+599.7000000000681 5.289022052558365e-05
+599.8000000000682 5.2894878609393714e-05
+599.9000000000682 5.289928383830921e-05
+600.0000000000682 5.2903430839753276e-05
+600.1000000000682 5.291882396896299e-05
+600.2000000000683 5.2933960170732246e-05
+600.3000000000683 5.294884453731627e-05
+600.4000000000683 5.2963485714339294e-05
+600.5000000000683 5.297789590551012e-05
+600.6000000000683 5.2980198575752986e-05
+600.7000000000684 5.2982307427423574e-05
+600.8000000000684 5.298424637009817e-05
+600.9000000000684 5.298604291947169e-05
+601.0000000000684 5.298772819743219e-05
+601.1000000000685 5.299108005146028e-05
+601.2000000000685 5.299439384993069e-05
+601.3000000000685 5.2997711536356494e-05
+601.4000000000685 5.300107866855148e-05
+601.5000000000686 5.3004544420155546e-05
+601.6000000000686 5.30081615835745e-05
+601.7000000000686 5.3011781459683196e-05
+601.8000000000686 5.3015403699542186e-05
+601.9000000000686 5.30190279002217e-05
+602.0000000000687 5.302265360522718e-05
+602.1000000000687 5.3041974232910235e-05
+602.2000000000687 5.306129929395276e-05
+602.3000000000687 5.308062817028326e-05
+602.4000000000688 5.3099960189002284e-05
+602.5000000000688 5.3119294622211106e-05
+602.6000000000688 5.3126721053724316e-05
+602.7000000000688 5.31341493800247e-05
+602.8000000000688 5.314157887404739e-05
+602.9000000000689 5.314900886217697e-05
+603.0000000000689 5.315643872428762e-05
+603.1000000000689 5.316424882798942e-05
+603.2000000000689 5.3172057813836053e-05
+603.300000000069 5.317986522243023e-05
+603.400000000069 5.318767064795012e-05
+603.500000000069 5.3195473738199644e-05
+603.600000000069 5.32151286599548e-05
+603.700000000069 5.323473622104171e-05
+603.8000000000691 5.325432097223198e-05
+603.9000000000691 5.327390571809799e-05
+604.0000000000691 5.329351151371448e-05
+604.1000000000691 5.329958466997178e-05
+604.2000000000692 5.330571190575723e-05
+604.3000000000692 5.331190895414381e-05
+604.4000000000692 5.331818977139943e-05
+604.5000000000692 5.33245665357408e-05
+604.6000000000693 5.334299389054874e-05
+604.7000000000693 5.336153916458298e-05
+604.8000000000693 5.3380209277427284e-05
+604.9000000000693 5.339900937098775e-05
+605.0000000000693 5.3417942806557936e-05
+605.1000000000694 5.3423861687115134e-05
+605.2000000000694 5.34299117018007e-05
+605.3000000000694 5.343609075502463e-05
+605.4000000000694 5.3442394961335367e-05
+605.5000000000695 5.344881864454954e-05
+605.6000000000695 5.3467313028337126e-05
+605.7000000000695 5.34859100861922e-05
+605.8000000000695 5.3504597924769445e-05
+605.9000000000696 5.35233627882038e-05
+606.0000000000696 5.354218905423346e-05
+606.1000000000696 5.355256696821443e-05
+606.2000000000696 5.356296744537043e-05
+606.3000000000696 5.3573369244695336e-05
+606.4000000000697 5.358374926034447e-05
+606.5000000000697 5.3594082519699755e-05
+606.6000000000697 5.361632080575464e-05
+606.7000000000697 5.3638565129186805e-05
+606.8000000000698 5.366081549098803e-05
+606.9000000000698 5.368307189233796e-05
+607.0000000000698 5.3705334334469216e-05
+607.1000000000698 5.3713388187579566e-05
+607.2000000000698 5.372144278061376e-05
+607.3000000000699 5.372949811364462e-05
+607.4000000000699 5.373755418668243e-05
+607.5000000000699 5.374561099993376e-05
+607.6000000000699 5.376566714001501e-05
+607.70000000007 5.378572761781546e-05
+607.80000000007 5.380579243386131e-05
+607.90000000007 5.382586158880422e-05
+608.00000000007 5.384593508309862e-05
+608.10000000007 5.3852794377707737e-05
+608.2000000000701 5.385965411891239e-05
+608.3000000000701 5.386651430688633e-05
+608.4000000000701 5.387337494155251e-05
+608.5000000000701 5.3880236023093016e-05
+608.6000000000702 5.389911251187115e-05
+608.7000000000702 5.3917992507481365e-05
+608.8000000000702 5.393687601035354e-05
+608.9000000000702 5.39557630207294e-05
+609.0000000000703 5.397465353896823e-05
+609.1000000000703 5.39823407374245e-05
+609.2000000000703 5.399002852765971e-05
+609.3000000000703 5.399771690954627e-05
+609.4000000000703 5.400540588327064e-05
+609.5000000000704 5.401309544883927e-05
+609.6000000000704 5.403281696168426e-05
+609.7000000000704 5.405254249222309e-05
+609.8000000000704 5.4072272040868856e-05
+609.9000000000705 5.409200560809743e-05
+610.0000000000705 5.411174319438479e-05
+610.1000000000705 5.4131466299921894e-05
+610.2000000000705 5.415119348428983e-05
+610.3000000000706 5.4170924747957224e-05
+610.4000000000706 5.4190660091518346e-05
+610.5000000000706 5.421039951537052e-05
+610.6000000000706 5.4218094554672585e-05
+610.7000000000706 5.422579025503148e-05
+610.8000000000707 5.423348661658196e-05
+610.9000000000707 5.424118363926994e-05
+611.0000000000707 5.4248881323238645e-05
+611.1000000000707 5.426850088176016e-05
+611.2000000000708 5.42881244081085e-05
+611.3000000000708 5.43077519028941e-05
+611.4000000000708 5.432738336653834e-05
+611.5000000000708 5.434701879945416e-05
+611.6000000000708 5.435459280979369e-05
+611.7000000000709 5.436216742752221e-05
+611.8000000000709 5.4369742652826904e-05
+611.9000000000709 5.437731848576907e-05
+612.0000000000709 5.4384894926288945e-05
+612.100000000071 5.439948940370646e-05
+612.200000000071 5.44140846908202e-05
+612.300000000071 5.442868078742441e-05
+612.400000000071 5.4443277693439485e-05
+612.500000000071 5.445787540865123e-05
+612.6000000000711 5.446039845653416e-05
+612.7000000000711 5.446292119459283e-05
+612.8000000000711 5.446544362280927e-05
+612.9000000000711 5.4467965741228603e-05
+613.0000000000712 5.447048754997036e-05
+613.1000000000712 5.448898981690955e-05
+613.2000000000712 5.4507495194371794e-05
+613.3000000000712 5.452600368252012e-05
+613.4000000000713 5.454451528164379e-05
+613.5000000000713 5.4563029991779614e-05
+613.6000000000713 5.458154781327993e-05
+613.7000000000713 5.460006874630781e-05
+613.8000000000713 5.4618592791026225e-05
+613.9000000000714 5.463711994766136e-05
+614.0000000000714 5.465565021643064e-05
+614.1000000000714 5.466219605399697e-05
+614.2000000000714 5.4668742258990104e-05
+614.3000000000715 5.467528883132824e-05
+614.4000000000715 5.468183577111896e-05
+614.5000000000715 5.468838307841536e-05
+614.6000000000715 5.470703140164216e-05
+614.7000000000716 5.472568298984073e-05
+614.8000000000716 5.4744337843190804e-05
+614.9000000000716 5.476299596206172e-05
+615.0000000000716 5.478165734668689e-05
+615.1000000000716 5.478700830198404e-05
+615.2000000000717 5.4792359368532904e-05
+615.3000000000717 5.4797710546300946e-05
+615.4000000000717 5.480306183544513e-05
+615.5000000000717 5.480841323594173e-05
+615.6000000000718 5.4825878286967816e-05
+615.7000000000718 5.48433458147479e-05
+615.8000000000718 5.486081581934063e-05
+615.9000000000718 5.487828830086768e-05
+616.0000000000719 5.489576325950586e-05
+616.1000000000719 5.490158699433798e-05
+616.2000000000719 5.490741086383173e-05
+616.3000000000719 5.491323486808206e-05
+616.4000000000719 5.491905900705736e-05
+616.500000000072 5.492488328073465e-05
+616.600000000072 5.494283367330509e-05
+616.700000000072 5.496078677213116e-05
+616.800000000072 5.497874257747734e-05
+616.900000000072 5.4996701089418216e-05
+617.0000000000721 5.501466230801938e-05
+617.1000000000721 5.502017063033537e-05
+617.2000000000721 5.50256791041068e-05
+617.3000000000721 5.503118772943197e-05
+617.4000000000722 5.5036696506219256e-05
+617.5000000000722 5.5042205434639134e-05
+617.6000000000722 5.505985293011568e-05
+617.7000000000722 5.507750300691976e-05
+617.8000000000723 5.5095155665076654e-05
+617.9000000000723 5.51128109047382e-05
+618.0000000000723 5.513046872611053e-05
+618.1000000000723 5.513547715933567e-05
+618.2000000000724 5.514048556129594e-05
+618.3000000000724 5.514549393195647e-05
+618.4000000000724 5.5150502271345784e-05
+618.5000000000724 5.515551057942899e-05
+618.6000000000724 5.516051885636152e-05
+618.7000000000725 5.516552710204504e-05
+618.8000000000725 5.517053531657168e-05
+618.9000000000725 5.517554349996994e-05
+619.0000000000725 5.518055165221436e-05
+619.1000000000726 5.519833703025064e-05
+619.2000000000726 5.52161250617994e-05
+619.3000000000726 5.523391574702711e-05
+619.4000000000726 5.5251709086036704e-05
+619.5000000000726 5.526950507898579e-05
+619.6000000000727 5.527514197860099e-05
+619.7000000000727 5.5280779051907206e-05
+619.8000000000727 5.528641629887702e-05
+619.9000000000727 5.5292053719609875e-05
+620.0000000000728 5.529769131408541e-05
+620.1000000000728 5.531306766006657e-05
+620.2000000000728 5.532844519555473e-05
+620.3000000000728 5.53438239203945e-05
+620.4000000000729 5.535920383443045e-05
+620.5000000000729 5.5374584937625384e-05
+620.6000000000729 5.537779628561567e-05
+620.7000000000729 5.538100741099357e-05
+620.8000000000729 5.538421831386192e-05
+620.900000000073 5.5387428994196696e-05
+621.000000000073 5.539063945204067e-05
+621.100000000073 5.539848694289138e-05
+621.200000000073 5.540633502238257e-05
+621.300000000073 5.5414183690633845e-05
+621.4000000000731 5.5422032947637774e-05
+621.5000000000731 5.542988279358652e-05
+621.6000000000731 5.544991734553939e-05
+621.7000000000731 5.5469955937479125e-05
+621.8000000000732 5.5489998569801774e-05
+621.9000000000732 5.5510045242966975e-05
+622.0000000000732 5.553009595729807e-05
+622.1000000000732 5.553760694782773e-05
+622.2000000000733 5.554511853782284e-05
+622.3000000000733 5.5552630727289e-05
+622.4000000000733 5.556014351629548e-05
+622.5000000000733 5.556765690504797e-05
+622.6000000000734 5.558737180908227e-05
+622.7000000000734 5.560709061237208e-05
+622.8000000000734 5.5626813315396536e-05
+622.9000000000734 5.564653991857109e-05
+623.0000000000734 5.5666270422363876e-05
+623.1000000000735 5.5670736242427966e-05
+623.2000000000735 5.5675201932188125e-05
+623.3000000000735 5.567966749167537e-05
+623.4000000000735 5.568413292085699e-05
+623.5000000000736 5.568859821976391e-05
+623.6000000000736 5.569298538596911e-05
+623.7000000000736 5.569732226115456e-05
+623.8000000000736 5.570163477429177e-05
+623.9000000000736 5.570594694102265e-05
+624.0000000000737 5.5710280862432656e-05
+624.1000000000737 5.57286424907535e-05
+624.2000000000737 5.574706747061509e-05
+624.3000000000737 5.576557221393947e-05
+624.4000000000738 5.5784171230274954e-05
+624.5000000000738 5.580287712362194e-05
+624.6000000000738 5.5809477372370956e-05
+624.7000000000738 5.581620251045337e-05
+624.8000000000739 5.5823058557599956e-05
+624.9000000000739 5.583004966758932e-05
+625.0000000000739 5.583717812732614e-05
+625.1000000000739 5.5843646549923294e-05
+625.2000000000739 5.585025110091932e-05
+625.300000000074 5.585698845404391e-05
+625.400000000074 5.586385341168166e-05
+625.500000000074 5.587083890380927e-05
+625.600000000074 5.5890176499921464e-05
+625.700000000074 5.590961802290268e-05
+625.8000000000741 5.592915083563504e-05
+625.9000000000741 5.594876041106519e-05
+626.0000000000741 5.596843032875662e-05
+626.1000000000741 5.597588879334559e-05
+626.2000000000742 5.598336570453666e-05
+626.3000000000742 5.5990838944522364e-05
+626.4000000000742 5.5998284510184124e-05
+626.5000000000742 5.60056765119933e-05
+626.6000000000743 5.600073050022051e-05
+626.7000000000743 5.5995778676987834e-05
+626.8000000000743 5.599082141233378e-05
+626.9000000000743 5.598585913284882e-05
+627.0000000000744 5.5980892321766074e-05
+627.1000000000744 5.5877581263230006e-05
+627.2000000000744 5.577424215803629e-05
+627.3000000000744 5.5670875656421356e-05
+627.4000000000744 5.556748246017243e-05
+627.5000000000745 5.546406332192353e-05
+627.6000000000745 5.529925496536843e-05
+627.7000000000745 5.513440223163409e-05
+627.8000000000745 5.4969505882311724e-05
+627.9000000000746 5.480456661411364e-05
+628.0000000000746 5.463958506045842e-05
+628.1000000000746 5.471104942142786e-05
+628.2000000000746 5.4782539469456226e-05
+628.3000000000746 5.4854055688989655e-05
+628.4000000000747 5.492559851117624e-05
+628.5000000000747 5.4997168313663864e-05
+628.6000000000747 5.510579612284909e-05
+628.7000000000747 5.5214565091011314e-05
+628.8000000000748 5.532342451958584e-05
+628.9000000000748 5.543232707580813e-05
+629.0000000000748 5.5541228828832804e-05
+629.1000000000748 5.5545326709763306e-05
+629.2000000000749 5.554930817967604e-05
+629.3000000000749 5.5553140569634764e-05
+629.4000000000749 5.555679497880831e-05
+629.5000000000749 5.5560246275942914e-05
+629.6000000000749 5.557577723060647e-05
+629.700000000075 5.559106597748244e-05
+629.800000000075 5.560609929372017e-05
+629.900000000075 5.562086766743759e-05
+630.000000000075 5.563536530312291e-05
+630.100000000075 5.568816591181277e-05
+630.2000000000751 5.57407006398523e-05
+630.3000000000751 5.579297431705584e-05
+630.4000000000751 5.584499553442553e-05
+630.5000000000751 5.5896776661444814e-05
+630.6000000000752 5.593602128877548e-05
+630.7000000000752 5.5975064226589466e-05
+630.8000000000752 5.601393034768523e-05
+630.9000000000752 5.605264840620692e-05
+631.0000000000753 5.609125104992849e-05
+631.1000000000753 5.611997511950808e-05
+631.2000000000753 5.614866249486637e-05
+631.3000000000753 5.6177357581721965e-05
+631.4000000000754 5.620610869855696e-05
+631.5000000000754 5.623496808631107e-05
+631.6000000000754 5.62639919206149e-05
+631.7000000000754 5.62930225142956e-05
+631.8000000000754 5.632205950046533e-05
+631.9000000000755 5.6351102454514283e-05
+632.0000000000755 5.638015089357641e-05
+632.1000000000755 5.640971677488549e-05
+632.2000000000755 5.6439287621670546e-05
+632.3000000000756 5.646886277626261e-05
+632.4000000000756 5.649844152230159e-05
+632.5000000000756 5.652802308463802e-05
+632.6000000000756 5.654527897931175e-05
+632.7000000000756 5.656253853196423e-05
+632.8000000000757 5.6579800969258436e-05
+632.9000000000757 5.659706557426224e-05
+633.0000000000757 5.661433168647407e-05
+633.1000000000757 5.663177757670764e-05
+633.2000000000758 5.664922383314665e-05
+633.3000000000758 5.666666996530393e-05
+633.4000000000758 5.668411553941219e-05
+633.5000000000758 5.670156017883639e-05
+633.6000000000759 5.671892413718042e-05
+633.7000000000759 5.6736235453747306e-05
+633.8000000000759 5.675352030246507e-05
+633.9000000000759 5.677080298963484e-05
+634.0000000000759 5.678810595151621e-05
+634.100000000076 5.679090847868623e-05
+634.200000000076 5.6793768134506796e-05
+634.300000000076 5.679670166949996e-05
+634.400000000076 5.679972393677173e-05
+634.500000000076 5.680284789175668e-05
+634.6000000000761 5.681843374050367e-05
+634.7000000000761 5.683414295077157e-05
+634.8000000000761 5.684998286549065e-05
+634.9000000000761 5.6865958932474054e-05
+635.0000000000762 5.6882074701702e-05
+635.1000000000762 5.688504958398247e-05
+635.2000000000762 5.688816369052356e-05
+635.3000000000762 5.68914147657134e-05
+635.4000000000763 5.689479864917477e-05
+635.5000000000763 5.689830927487315e-05
+635.6000000000763 5.691429522622318e-05
+635.7000000000763 5.693038845319171e-05
+635.8000000000764 5.6946576276425735e-05
+635.9000000000764 5.69628440374596e-05
+636.0000000000764 5.697917509569833e-05
+636.1000000000764 5.6985333438994335e-05
+636.2000000000764 5.699151438051004e-05
+636.3000000000765 5.6997695315739837e-05
+636.4000000000765 5.700385166373816e-05
+636.5000000000765 5.7009956866560896e-05
+636.6000000000765 5.7028350280056605e-05
+636.7000000000766 5.7046746464824146e-05
+636.8000000000766 5.7065145420946325e-05
+636.9000000000766 5.708354714857049e-05
+637.0000000000766 5.7101951647769276e-05
+637.1000000000766 5.7107164997553815e-05
+637.2000000000767 5.711237844385681e-05
+637.3000000000767 5.711759198671825e-05
+637.4000000000767 5.712280562624265e-05
+637.5000000000767 5.712801936235055e-05
+637.6000000000768 5.714561309392593e-05
+637.7000000000768 5.716320918178853e-05
+637.8000000000768 5.7180807625986424e-05
+637.9000000000768 5.719840842663197e-05
+638.0000000000769 5.721601158369955e-05
+638.1000000000769 5.7221769986495225e-05
+638.2000000000769 5.7227528575566996e-05
+638.3000000000769 5.723328735089049e-05
+638.400000000077 5.723904631257034e-05
+638.500000000077 5.724480546052714e-05
+638.600000000077 5.7262956692003445e-05
+638.700000000077 5.728111060317847e-05
+638.800000000077 5.7299267194222695e-05
+638.9000000000771 5.731742646517737e-05
+639.0000000000771 5.733558841633415e-05
+639.1000000000771 5.734345214793382e-05
+639.2000000000771 5.735131644224478e-05
+639.3000000000771 5.735918129919477e-05
+639.4000000000772 5.736704671884085e-05
+639.5000000000772 5.737491270130468e-05
+639.6000000000772 5.738277924657873e-05
+639.7000000000772 5.7390646354655424e-05
+639.8000000000773 5.739851402572119e-05
+639.9000000000773 5.740638225963916e-05
+640.0000000000773 5.741425105660642e-05
+640.1000000000773 5.743576399553227e-05
+640.2000000000774 5.745728183831715e-05
+640.3000000000774 5.747880458570792e-05
+640.4000000000774 5.750033223845142e-05
+640.5000000000774 5.752186479728506e-05
+640.6000000000774 5.753097656606323e-05
+640.7000000000775 5.754008930598363e-05
+640.8000000000775 5.754920301715559e-05
+640.9000000000775 5.755831769962368e-05
+641.0000000000775 5.756743335356664e-05
+641.1000000000776 5.758247719669203e-05
+641.2000000000776 5.759752188082795e-05
+641.3000000000776 5.761256740584784e-05
+641.4000000000776 5.762761377162507e-05
+641.5000000000776 5.764266097795858e-05
+641.6000000000777 5.764527207288411e-05
+641.7000000000777 5.7647882881462334e-05
+641.8000000000777 5.765049340387327e-05
+641.9000000000777 5.765310364003775e-05
+642.0000000000778 5.765571359000695e-05
+642.1000000000778 5.7659253192915674e-05
+642.2000000000778 5.766279252526166e-05
+642.3000000000778 5.7666331587088224e-05
+642.4000000000779 5.766987037837394e-05
+642.5000000000779 5.767340889923675e-05
+642.6000000000779 5.768939093547344e-05
+642.7000000000779 5.770537422793615e-05
+642.800000000078 5.7721358776436435e-05
+642.900000000078 5.7737344580915484e-05
+643.000000000078 5.7753331641109974e-05
+643.100000000078 5.775658960491718e-05
+643.200000000078 5.7759847362900056e-05
+643.3000000000781 5.7763104915103354e-05
+643.4000000000781 5.7766362261571884e-05
+643.5000000000781 5.7769619402285595e-05
+643.6000000000781 5.7772876337354186e-05
+643.7000000000781 5.7776133066757534e-05
+643.8000000000782 5.77793895904757e-05
+643.9000000000782 5.7782645908618396e-05
+644.0000000000782 5.7785902021237695e-05
+644.1000000000782 5.779841370404799e-05
+644.2000000000783 5.7810924894723895e-05
+644.3000000000783 5.78234355930297e-05
+644.4000000000783 5.783594579859986e-05
+644.5000000000783 5.784845551125378e-05
+644.6000000000784 5.7848510799522647e-05
+644.7000000000784 5.784856557077275e-05
+644.8000000000784 5.7848619825030276e-05
+644.9000000000784 5.784867356251596e-05
+645.0000000000784 5.784872678313034e-05
+645.1000000000785 5.785404920432544e-05
+645.2000000000785 5.785937173131097e-05
+645.3000000000785 5.786469436412653e-05
+645.4000000000785 5.787001710274673e-05
+645.5000000000786 5.78753399472663e-05
+645.6000000000786 5.786820204454585e-05
+645.7000000000786 5.7861061955714045e-05
+645.8000000000786 5.785391968086494e-05
+645.9000000000786 5.784677521989798e-05
+646.0000000000787 5.783962857278094e-05
+646.1000000000787 5.7836848461716026e-05
+646.2000000000787 5.7834065257026835e-05
+646.3000000000787 5.783127895818234e-05
+646.4000000000788 5.782848956452165e-05
+646.5000000000788 5.782569707543883e-05
+646.6000000000788 5.781042352285492e-05
+646.7000000000788 5.7795142695279764e-05
+646.8000000000789 5.777985459141035e-05
+646.9000000000789 5.776455920987881e-05
+647.0000000000789 5.774925654945587e-05
+647.1000000000789 5.774506693409901e-05
+647.200000000079 5.774087448608279e-05
+647.300000000079 5.773667920506159e-05
+647.400000000079 5.773248109049457e-05
+647.500000000079 5.772828014203611e-05
+647.600000000079 5.7724076359275434e-05
+647.7000000000791 5.771986974173674e-05
+647.8000000000791 5.7715660289074494e-05
+647.9000000000791 5.7711448000812795e-05
+648.0000000000791 5.7707232876567546e-05
+648.1000000000791 5.773652600904261e-05
+648.2000000000792 5.7765822703188635e-05
+648.3000000000792 5.779512295892701e-05
+648.4000000000792 5.782442677604864e-05
+648.5000000000792 5.785373415439976e-05
+648.6000000000793 5.787061153572678e-05
+648.7000000000793 5.788753972151409e-05
+648.8000000000793 5.790449337397146e-05
+648.9000000000793 5.792144900650782e-05
+649.0000000000794 5.793838498590236e-05
+649.1000000000794 5.794171717182103e-05
+649.2000000000794 5.794499009326433e-05
+649.3000000000794 5.794818774782071e-05
+649.4000000000794 5.7951296011328304e-05
+649.5000000000795 5.795430263842815e-05
+649.6000000000795 5.7994755300118104e-05
+649.7000000000795 5.803509414865149e-05
+649.8000000000795 5.8075310747669345e-05
+649.9000000000796 5.811539864324898e-05
+650.0000000000796 5.815535337108971e-05
+650.1000000000796 5.8188351675486826e-05
+650.2000000000796 5.822121873167575e-05
+650.3000000000796 5.825395613540904e-05
+650.4000000000797 5.8286567497885995e-05
+650.5000000000797 5.831905845132649e-05
+650.6000000000797 5.8313844752174504e-05
+650.7000000000797 5.830851715951378e-05
+650.8000000000798 5.830308838973396e-05
+650.9000000000798 5.829757310785028e-05
+651.0000000000798 5.829198792606342e-05
+651.1000000000798 5.825781717823221e-05
+651.2000000000799 5.822361366491477e-05
+651.3000000000799 5.818939984374717e-05
+651.4000000000799 5.81552000685949e-05
+651.5000000000799 5.8121040583307326e-05
+651.60000000008 5.811203023576756e-05
+651.70000000008 5.8103015596767106e-05
+651.80000000008 5.809399764068979e-05
+651.90000000008 5.808497740008328e-05
+652.00000000008 5.8075955966190514e-05
+652.1000000000801 5.813103148387128e-05
+652.2000000000801 5.818611831099831e-05
+652.3000000000801 5.8241217726713564e-05
+652.4000000000801 5.829633107423077e-05
+652.5000000000801 5.8351459760970036e-05
+652.6000000000802 5.838150573123459e-05
+652.7000000000802 5.841155913699092e-05
+652.8000000000802 5.8441619597552306e-05
+652.9000000000802 5.8471686672105424e-05
+653.0000000000803 5.850175985940579e-05
+653.1000000000803 5.8508041277912135e-05
+653.2000000000803 5.851432356520023e-05
+653.3000000000803 5.85206060384721e-05
+653.4000000000804 5.85268879551031e-05
+653.5000000000804 5.853316851281316e-05
+653.6000000000804 5.8551929334679276e-05
+653.7000000000804 5.857064178094494e-05
+653.8000000000804 5.858933229517725e-05
+653.9000000000805 5.860802539276316e-05
+654.0000000000805 5.8626743657810134e-05
+654.1000000000805 5.861617396022629e-05
+654.2000000000805 5.860566472287358e-05
+654.3000000000806 5.8595232598973885e-05
+654.4000000000806 5.858489226826413e-05
+654.5000000000806 5.8574656438718824e-05
+654.6000000000806 5.8577106042612576e-05
+654.7000000000806 5.857968076292641e-05
+654.8000000000807 5.8582387488464996e-05
+654.9000000000807 5.858523114760732e-05
+655.0000000000807 5.858821470778835e-05
+655.1000000000807 5.859266595107816e-05
+655.2000000000808 5.859725731223212e-05
+655.3000000000808 5.8601985881794554e-05
+655.4000000000808 5.86068467864584e-05
+655.5000000000808 5.8611833188369045e-05
+655.6000000000809 5.8629515025718833e-05
+655.7000000000809 5.864730501991001e-05
+655.8000000000809 5.8665190492588346e-05
+655.9000000000809 5.868315678429284e-05
+656.000000000081 5.870118725105056e-05
+656.100000000081 5.872131614389069e-05
+656.200000000081 5.874147129259406e-05
+656.300000000081 5.8761630081733535e-05
+656.400000000081 5.878176789542373e-05
+656.5000000000811 5.880185811410572e-05
+656.6000000000811 5.882187211160868e-05
+656.7000000000811 5.884188984131319e-05
+656.8000000000811 5.8861911303576896e-05
+656.9000000000811 5.8881936498757395e-05
+657.0000000000812 5.890196542739758e-05
+657.1000000000812 5.890798647868877e-05
+657.2000000000812 5.891400776997415e-05
+657.3000000000812 5.892002930143354e-05
+657.4000000000813 5.892605107298447e-05
+657.5000000000813 5.893207308468598e-05
+657.6000000000813 5.8950702415806803e-05
+657.7000000000813 5.896933456366375e-05
+657.8000000000814 5.8987969528331665e-05
+657.9000000000814 5.900660731008229e-05
+658.0000000000814 5.902524790905367e-05
+658.1000000000814 5.904089385362387e-05
+658.2000000000814 5.905654087126539e-05
+658.3000000000815 5.907218896182302e-05
+658.4000000000815 5.9087838125272586e-05
+658.5000000000815 5.910348836139319e-05
+658.6000000000815 5.911913967009499e-05
+658.7000000000816 5.913479205135398e-05
+658.8000000000816 5.9150445504949156e-05
+658.9000000000816 5.91661000308564e-05
+659.0000000000816 5.918175566369655e-05
+659.1000000000816 0.00010180726758529824
+659.2000000000817 0.00014444504473848008
+659.3000000000817 0.00018709508880491435
+659.4000000000817 0.00022975740146659145
+659.5000000000817 0.00027243198440580243
+659.6000000000818 0.00031518602882234107
+659.7000000000818 0.0003579705554648098
+659.8000000000818 0.00040078557386816264
+659.9000000000818 0.00044363109356855676
+660.0000000000819 0.0004865071240758672
+660.1000000000819 0.0004954497149266859
+660.2000000000819 0.0005043938538088045
+660.3000000000819 0.0005133395407546902
+660.400000000082 0.000522286775796295
+660.500000000082 0.0005312355589651017
+660.600000000082 0.0005403009458604835
+660.700000000082 0.0005493716943137236
+660.800000000082 0.0005584478053461252
+660.9000000000821 0.0005675292799790443
+661.0000000000821 0.0005766161192276365
+661.1000000000821 0.0005796436366105171
+661.2000000000821 0.0005826717230113186
+661.3000000000822 0.000585700378463458
+661.4000000000822 0.0005887296030003634
+661.5000000000822 0.0005917593966555747
+661.6000000000822 0.0005949163104742208
+661.7000000000822 0.0005980750832357188
+661.8000000000823 0.0006012357153362117
+661.9000000000823 0.0006043982071732042
+662.0000000000823 0.0006075625591457636
+662.1000000000823 0.0006141979417429319
+662.2000000000824 0.0006208351074040533
+662.3000000000824 0.0006274740563478613
+662.4000000000824 0.0006341147887944975
+662.5000000000824 0.0006407573049627495
+662.6000000000824 0.0006474016050721247
+662.7000000000825 0.0006540476893414415
+662.8000000000825 0.0006606955579902537
+662.9000000000825 0.0006673452112381488
+663.0000000000825 0.0006739966493038101
+663.1000000000826 0.0006795122502418375
+663.2000000000826 0.0006850301793126803
+663.3000000000826 0.0006905504364519214
+663.4000000000826 0.0006960730215958386
+663.5000000000827 0.0007015979346797628
+663.6000000000827 0.000706976065501791
+663.7000000000827 0.0007123548976420891
+663.8000000000827 0.0007177341111039102
+663.9000000000827 0.0007231134008246546
+664.0000000000828 0.0007284924776060764
+664.1000000000828 0.0007381611403832739
+664.2000000000828 0.0007478319733097907
+664.3000000000828 0.0007575047231525449
+664.4000000000829 0.000767179151786683
+664.5000000000829 0.0007768550378621884
+664.6000000000829 0.0007866990731605467
+664.7000000000829 0.0007965482240672742
+664.800000000083 0.0008064023609275816
+664.900000000083 0.0008162613765422153
+665.000000000083 0.0008261251877234454
+665.100000000083 0.0008392980887993622
+665.200000000083 0.0008524690534244217
+665.3000000000831 0.0008656380549699834
+665.4000000000831 0.0008788050985669173
+665.5000000000831 0.0008919702231735861
+665.6000000000831 0.0009051336155765517
+665.7000000000832 0.000918295352944791
+665.8000000000832 0.000931455553000498
+665.9000000000832 0.0009446143762960184
+666.0000000000832 0.0009577720284931084
+666.1000000000832 0.0009849913673062726
+666.2000000000833 0.0010122258898823805
+666.3000000000833 0.0010394759574147234
+666.4000000000833 0.0010667420078881993
+666.5000000000833 0.0010940245608536305
+666.6000000000834 0.0011210866576467828
+666.7000000000834 0.001148152833864726
+666.8000000000834 0.0011752230650842017
+666.9000000000834 0.0012022973238454127
+667.0000000000834 0.0012293755795085488
+667.1000000000835 0.0012516243659085084
+667.2000000000835 0.0012738750858569093
+667.3000000000835 0.001296127700782352
+667.4000000000835 0.0013183821688225001
+667.5000000000836 0.00134063844471916
+667.6000000000836 0.0013631852289099446
+667.7000000000836 0.0013857433886734747
+667.8000000000836 0.0014083129513069745
+667.9000000000837 0.0014308939491135247
+668.0000000000837 0.0014534864196827204
+668.1000000000837 0.0015208337207152074
+668.2000000000837 0.00158818802076224
+668.3000000000837 0.0016555493821456416
+668.4000000000838 0.001722917879718762
+668.5000000000838 0.0017902936015604927
+668.6000000000838 0.0018576741219579031
+668.7000000000838 0.001925059888810002
+668.8000000000839 0.0019924516237987476
+668.9000000000839 0.0020598500976864408
+669.0000000000839 0.0021272561187299847
+669.1000000000839 0.0022238784091076847
+669.200000000084 0.0023205442497754177
+669.300000000084 0.002417254608658732
+669.400000000084 0.0025140104729293113
+669.500000000084 0.0026108128323895775
+669.600000000084 0.0027070903393511528
+669.7000000000841 0.002803375709659993
+669.8000000000841 0.0028996699008586252
+669.9000000000841 0.0029959738153385604
+670.0000000000841 0.0030922882842910316
+670.1000000000842 0.0032731756015198293
+670.2000000000842 0.003454115723486159
+670.3000000000842 0.003635109771207246
+670.4000000000842 0.0038161587020821494
+670.5000000000842 0.003997263279517392
+670.6000000000843 0.004179307430267296
+670.7000000000843 0.0043614846756144495
+670.8000000000843 0.0045437950503795
+670.9000000000843 0.004726238273365132
+671.0000000000844 0.00490881371657956
+671.1000000000844 0.005220142592668125
+671.2000000000844 0.005531492148856654
+671.3000000000844 0.005842860485958067
+671.4000000000844 0.00615424501845317
+671.5000000000845 0.006465642422179422
+671.6000000000845 0.006777048582129423
+671.7000000000845 0.007088471869589383
+671.8000000000845 0.007399912280617305
+671.9000000000846 0.0077113698112653865
+672.0000000000846 0.008022844457723262
+672.1000000000846 0.008505860091417303
+672.2000000000846 0.008989198318886947
+672.3000000000847 0.009472859229372188
+672.4000000000847 0.009956842912115888
+672.5000000000847 0.010441149456382191
+672.6000000000847 0.010923474420993728
+672.7000000000847 0.011405918862624423
+672.8000000000848 0.011888482794977973
+672.9000000000848 0.01237116623171032
+673.0000000000848 0.012853969186633857
+673.1000000000848 0.013473705489666324
+673.2000000000849 0.014093498511461952
+673.3000000000849 0.014713348247052725
+673.4000000000849 0.015333254691441865
+673.5000000000849 0.015953217839649578
+673.600000000085 0.016573237686680033
+673.700000000085 0.017193314227555767
+673.800000000085 0.017813447457301464
+673.900000000085 0.01843363737094399
+674.000000000085 0.019053883963572903
+674.1000000000851 0.019770057618531654
+674.2000000000851 0.020486622596349015
+674.3000000000851 0.021203578953310286
+674.4000000000851 0.021920926745677898
+674.5000000000852 0.022638666029708297
+674.6000000000852 0.023351875497035306
+674.7000000000852 0.02406517591510734
+674.8000000000852 0.02477856728270943
+674.9000000000852 0.025492049598601046
+675.0000000000853 0.026205622861586897
+675.1000000000853 0.02693972712703343
+675.2000000000853 0.027673949060186765
+675.3000000000853 0.028408288664107276
+675.4000000000854 0.029142745941857374
+675.5000000000854 0.029877320896469016
+675.6000000000854 0.030612013531040184
+675.7000000000854 0.03134682384860554
+675.8000000000854 0.032081751852198734
+675.9000000000855 0.032816797544924274
+676.0000000000855 0.0335519609298727
+676.1000000000855 0.03439375396979958
+676.2000000000855 0.03523605252173272
+676.3000000000856 0.036078856691784573
+676.4000000000856 0.03692216658607783
+676.5000000000856 0.03776598231073865
+676.6000000000856 0.038602177197769094
+676.7000000000857 0.03943852598053459
+676.8000000000857 0.040275028668036526
+676.9000000000857 0.041111685269237745
+677.0000000000857 0.041948495792976756
+677.1000000000857 0.04274409712441275
+677.2000000000858 0.043539752998565315
+677.3000000000858 0.044335463406857144
+677.4000000000858 0.04513122834071401
+677.5000000000858 0.04592704779152286
+677.6000000000859 0.04673275815521764
+677.7000000000859 0.04753885814650188
+677.8000000000859 0.04834534779122533
+677.9000000000859 0.049152227115072146
+678.000000000086 0.049959496144037295
+678.100000000086 0.05082803501196696
+678.200000000086 0.051696749257087726
+678.300000000086 0.05256563889258674
+678.400000000086 0.05343470393142443
+678.5000000000861 0.054303944386849747
+678.6000000000861 0.05517336027194145
+678.7000000000861 0.056042951599777714
+678.8000000000861 0.0569127183835604
+678.9000000000862 0.05778266063630886
+679.0000000000862 0.05865277837149404
+679.1000000000862 0.05982898499089734
+679.2000000000862 0.061005291168779806
+679.3000000000862 0.06218169689484968
+679.4000000000863 0.06335820215888364
+679.5000000000863 0.06453480695073302
+679.6000000000863 0.06571151125997145
+679.7000000000863 0.06688831507652682
+679.8000000000864 0.06806521839004402
+679.9000000000864 0.06924222119038907
+680.0000000000864 0.07041932346736429
+680.1000000000864 0.07169053686661586
+680.2000000000864 0.07296243911027604
+680.3000000000865 0.07423503030137851
+680.4000000000865 0.07550831054287986
+680.5000000000865 0.07678227993780662
+680.6000000000865 0.07804054351711508
+680.7000000000866 0.07929896770635958
+680.8000000000866 0.0805575525071145
+680.9000000000866 0.08181629792138856
+681.0000000000866 0.08307520395117343
+681.1000000000867 0.08461097703449123
+681.2000000000867 0.08614706348271921
+681.3000000000867 0.08768346331782902
+681.4000000000867 0.08922017656208273
+681.5000000000867 0.09075720323726523
+681.6000000000868 0.0922945433656498
+681.7000000000868 0.0938321969690161
+681.8000000000868 0.09537016406964893
+681.9000000000868 0.09690844468953408
+682.0000000000869 0.09844703885086772
+682.1000000000869 0.10010655019151136
+682.2000000000869 0.10176630677367102
+682.3000000000869 0.10342630860581252
+682.400000000087 0.10508655569662959
+682.500000000087 0.10674704805449861
+682.600000000087 0.10843056043293549
+682.700000000087 0.1101150159874349
+682.800000000087 0.11180041488142012
+682.9000000000871 0.11348675727784567
+683.0000000000871 0.11517404334002193
+683.1000000000871 0.11698418793100239
+683.2000000000871 0.11879441509421981
+683.3000000000872 0.12060472480607982
+683.4000000000872 0.12241511704312139
+683.5000000000872 0.12422559178189177
+683.6000000000872 0.12603632052475722
+683.7000000000872 0.12784724850159812
+683.8000000000873 0.12965832176899872
+683.9000000000873 0.1314694875125527
+684.0000000000873 0.13328069435038287
+684.1000000000873 0.13513165294148813
+684.2000000000874 0.13698272360746516
+684.3000000000874 0.13883386095240044
+684.4000000000874 0.1406850221848283
+684.5000000000874 0.14253616742803754
+684.6000000000874 0.1443872659804361
+684.7000000000875 0.1462382828016378
+684.8000000000875 0.1480891867373932
+684.9000000000875 0.1499399508402994
+685.0000000000875 0.1517905526889247
+685.1000000000876 0.15378531787567573
+685.2000000000876 0.1557797716396174
+685.3000000000876 0.15777390601241184
+685.4000000000876 0.15976771887686816
+685.5000000000877 0.16176121431081858
+685.6000000000877 0.1635825590098683
+685.7000000000877 0.16539942296104404
+685.8000000000877 0.1672118360264436
+685.9000000000877 0.16901983536124054
+686.0000000000878 0.17082346569588588
+686.1000000000878 0.17139466699962044
+686.2000000000878 0.17192261313712384
+686.3000000000878 0.1724073584654362
+686.4000000000879 0.17284896377899958
+686.5000000000879 0.17324749619430552
+686.6000000000879 0.17095855255296613
+686.7000000000879 0.16856168838405533
+686.800000000088 0.16605686294457772
+686.900000000088 0.16344403571386382
+687.000000000088 0.16072316639897352
+687.100000000088 0.16035904040951118
+687.200000000088 0.1599437998046892
+687.3000000000881 0.15947744414777268
+687.4000000000881 0.15895997316173724
+687.5000000000881 0.1583913867381553
+687.6000000000881 0.16283293799523538
+687.7000000000882 0.16733312572384654
+687.8000000000882 0.17189194694501714
+687.9000000000882 0.17650939836077564
+688.0000000000882 0.18118547632443396
+688.1000000000882 0.1853917239247418
+688.2000000000883 0.1896457058349796
+688.3000000000883 0.19394742106432383
+688.4000000000883 0.19829686818933998
+688.5000000000883 0.2026940453220283
+688.6000000000884 0.2039972743814317
+688.7000000000884 0.20528728461986953
+688.8000000000884 0.20656416886545637
+688.9000000000884 0.20782801563818304
+689.0000000000884 0.20907890888676106
+689.1000000000885 0.21122458187023446
+689.2000000000885 0.2133706507173929
+689.3000000000885 0.2155171886580528
+689.4000000000885 0.2176642644844854
+689.5000000000886 0.21981194220389563
+689.6000000000886 0.22297282458126289
+689.7000000000886 0.22615400253089435
+689.8000000000886 0.22935552524823968
+689.9000000000887 0.2325774355847156
+690.0000000000887 0.2358197695098721
+690.1000000000887 0.23897683535829015
+690.2000000000887 0.24215154851229034
+690.3000000000887 0.24534391753437343
+690.4000000000888 0.24855394185115762
+690.5000000000888 0.25178161118596326
+690.6000000000888 0.25514399722377656
+690.7000000000888 0.25852611924941155
+690.8000000000889 0.2619279400607493
+690.9000000000889 0.2653494107842339
+691.0000000000889 0.2687904702531783
+691.1000000000889 0.27225415821510596
+691.200000000089 0.27573407010435763
+691.300000000089 0.27923010633066137
+691.400000000089 0.2827421524399157
+691.500000000089 0.2862700784614902
+691.600000000089 0.28974944948283093
+691.7000000000891 0.29324373820951094
+691.8000000000891 0.2967529483272566
+691.9000000000891 0.3002770835223999
+692.0000000000891 0.3038161474815148
+692.1000000000892 0.30732680251538463
+692.2000000000892 0.3108509224961683
+692.3000000000892 0.31438850801504986
+692.4000000000892 0.31793955966300685
+692.5000000000892 0.3215040780314143
+692.6000000000893 0.32494136599899764
+692.7000000000893 0.32838968869411395
+692.8000000000893 0.33184904659548464
+692.9000000000893 0.3353194401827766
+693.0000000000894 0.3388008699338838
+693.1000000000894 0.3421525227264229
+693.2000000000894 0.3455086645443427
+693.3000000000894 0.3488692962766939
+693.4000000000894 0.35223441881256906
+693.5000000000895 0.3556040330408999
+693.6000000000895 0.35874768095551895
+693.7000000000895 0.36189178280964057
+693.8000000000895 0.3650363386177905
+693.9000000000896 0.36818134839409605
+694.0000000000896 0.3713268121533748
+694.1000000000896 0.3743250187809107
+694.2000000000896 0.377324979153351
+694.3000000000897 0.38032669362078436
+694.4000000000897 0.3833301625329031
+694.5000000000897 0.3863353862400687
+694.6000000000897 0.38959215702887795
+694.7000000000897 0.39285443632106587
+694.8000000000898 0.39612222543885023
+694.9000000000898 0.39939552570279774
+695.0000000000898 0.40267433843494016
+695.1000000000898 0.4060240689372736
+695.2000000000899 0.40937630305055506
+695.3000000000899 0.4127310404882855
+695.4000000000899 0.4160882809625835
+695.5000000000899 0.4194480241853596
+695.60000000009 0.4226306181729
+695.70000000009 0.42581300879461026
+695.80000000009 0.42899519602286756
+695.90000000009 0.4321771798286515
+696.00000000009 0.4353589601851538
+696.1000000000901 0.43887683865859894
+696.2000000000901 0.44240264382104044
+696.3000000000901 0.4459363771260048
+696.4000000000901 0.44947804002606845
+696.5000000000902 0.453027633973907
+696.6000000000902 0.4566814660872438
+696.7000000000902 0.4603444908969571
+696.8000000000902 0.4640167100973333
+696.9000000000902 0.46769812538317834
+697.0000000000903 0.47138873844755563
+697.1000000000903 0.47482939681248815
+697.2000000000903 0.4782717520158401
+697.3000000000903 0.4817158042372542
+697.4000000000904 0.48516155365533753
+697.5000000000904 0.48860900044850136
+697.6000000000904 0.49185209029684396
+697.7000000000904 0.4950940746007152
+697.8000000000904 0.49833495316732807
+697.9000000000905 0.5015747258028238
+698.0000000000905 0.5048133923136849
+698.1000000000905 0.5072226169512946
+698.2000000000905 0.5096289013975435
+698.3000000000906 0.5120322447582972
+698.4000000000906 0.514432646141555
+698.5000000000906 0.5168301046533625
+698.6000000000906 0.5190060905214876
+698.7000000000907 0.5211768412594983
+698.8000000000907 0.5233423553549766
+698.9000000000907 0.5255026312942214
+699.0000000000907 0.5276576675651282
+699.1000000000907 0.5298308858538482
+699.2000000000908 0.5320038297726797
+699.3000000000908 0.5341764993150946
+699.4000000000908 0.5363488944751698
+699.5000000000908 0.5385210152460304
+699.6000000000909 0.5409214843944166
+699.7000000000909 0.5433235155638828
+699.8000000000909 0.545727108400324
+699.9000000000909 0.5481322625484429
+700.000000000091 0.5505389776531023
+700.100000000091 0.5524668392479017
+700.200000000091 0.5543950309799537
+700.300000000091 0.5563235528722349
+700.400000000091 0.5582524049459041
+700.5000000000911 0.5601815872239506
+700.6000000000911 0.5621110997287635
+700.7000000000911 0.564040942481504
+700.8000000000911 0.5659711155045625
+700.9000000000912 0.567901618820336
+701.0000000000912 0.5698324524501046
+701.1000000000912 0.5712133721102507
+701.2000000000912 0.5725945316317163
+701.3000000000912 0.5739759310288087
+701.4000000000913 0.575357570316463
+701.5000000000913 0.5767394495090982
+701.6000000000913 0.5782435351972454
+701.7000000000913 0.5797484440935169
+701.8000000000914 0.5812541763646392
+701.9000000000914 0.5827607321767168
+702.0000000000914 0.5842681116965432
+702.1000000000914 0.585120427687776
+702.2000000000914 0.5859727397982175
+702.3000000000915 0.5868250480192001
+702.4000000000915 0.587677352345265
+702.5000000000915 0.5885296527692585
+702.6000000000915 0.5896303716011057
+702.7000000000916 0.5907318049922606
+702.8000000000916 0.5918339529314985
+702.9000000000916 0.5929368154069419
+703.0000000000916 0.5940403924059137
+703.1000000000917 0.5949908905142958
+703.2000000000917 0.5959421644613947
+703.3000000000917 0.5968942142895218
+703.4000000000917 0.597847040042276
+703.5000000000917 0.5988006417608395
+703.6000000000918 0.5992530274261119
+703.7000000000918 0.5997054311909007
+703.8000000000918 0.600157853052357
+703.9000000000918 0.600610293008939
+704.0000000000919 0.6010627510563498
+704.1000000000919 0.6013572496118831
+704.2000000000919 0.6016517833179049
+704.3000000000919 0.6019463521750973
+704.400000000092 0.602240956184142
+704.500000000092 0.6025355953470303
+704.600000000092 0.6028302696651
+704.700000000092 0.6031249791377243
+704.800000000092 0.6034197237675519
+704.9000000000921 0.6037145035546109
+705.0000000000921 0.6040093185006631
+705.1000000000921 0.6040504060616523
+705.2000000000921 0.6040914895792757
+705.3000000000922 0.6041325690533242
+705.4000000000922 0.6041736444835863
+705.5000000000922 0.6042147158712836
+705.6000000000922 0.6043823289290129
+705.7000000000922 0.6045499551430259
+705.8000000000923 0.604717594511132
+705.9000000000923 0.6048852470304843
+706.0000000000923 0.6050529126996091
+706.1000000000923 0.6052844699433354
+706.2000000000924 0.6055160759969586
+706.3000000000924 0.605747730863661
+706.4000000000924 0.6059794345472823
+706.5000000000924 0.6062111870496905
+706.6000000000925 0.6064429883747248
+706.7000000000925 0.6066748385249101
+706.8000000000925 0.6069067375040863
+706.9000000000925 0.6071386853134614
+707.0000000000925 0.6073706819574186
+707.1000000000926 0.6074793220180109
+707.2000000000926 0.6075879713640799
+707.3000000000926 0.6076966299976022
+707.4000000000926 0.6078052979185815
+707.5000000000927 0.6079139751263624
+707.6000000000927 0.6080226616222641
+707.7000000000927 0.608131357406949
+707.8000000000927 0.6082400624797618
+707.9000000000927 0.6083487768420234
+708.0000000000928 0.6084575004937758
+708.1000000000928 0.6086078852980076
+708.2000000000928 0.6087582782810577
+708.3000000000928 0.6089086794430155
+708.4000000000929 0.6090590887833108
+708.5000000000929 0.6092095063000537
+708.6000000000929 0.609359931993334
+708.7000000000929 0.6095103658619214
+708.800000000093 0.6096608079059047
+708.900000000093 0.6098112581233944
+709.000000000093 0.6099617165136261
+709.100000000093 0.6099036730729314
+709.200000000093 0.609845616903145
+709.3000000000931 0.6097875480035772
+709.4000000000931 0.6097294663748575
+709.5000000000931 0.6096713720149786
+709.6000000000931 0.6096132649252284
+709.7000000000932 0.609555145104918
+709.8000000000932 0.6094970125526982
+709.9000000000932 0.6094388672698577
+710.0000000000932 0.6093807092545509
+710.1000000000932 0.6094968066472051
+710.2000000000933 0.609612898779013
+710.3000000000933 0.6097289856493049
+710.4000000000933 0.6098450672593898
+710.5000000000933 0.6099611436072799
+710.6000000000934 0.610077214693626
+710.7000000000934 0.6101932805177598
+710.8000000000934 0.610309341079673
+710.9000000000934 0.610425396378698
+711.0000000000935 0.6105414464155366
+711.1000000000935 0.6107096633771812
+711.2000000000935 0.6108778985629065
+711.3000000000935 0.6110461519738664
+711.4000000000935 0.6112144236105552
+711.5000000000936 0.6113827134741269
+711.6000000000936 0.6115510215657354
+711.7000000000936 0.6117193478858756
+711.8000000000936 0.6118876924363614
+711.9000000000937 0.6120560552176872
+712.0000000000937 0.6122244362294279
+712.1000000000937 0.6121170903773742
+712.2000000000937 0.6120097356172871
+712.3000000000937 0.6119023719489267
+712.4000000000938 0.6117949993733743
+712.5000000000938 0.6116876178918306
+712.6000000000938 0.6117075339621807
+712.7000000000938 0.6117274494176218
+712.8000000000939 0.6117473642574167
+712.9000000000939 0.6117672784814888
+713.0000000000939 0.6117871920912287
+713.1000000000939 0.6119637515841038
+713.200000000094 0.6121403339824019
+713.300000000094 0.612316939289022
+713.400000000094 0.6124935675042195
+713.500000000094 0.6126702186302334
+713.600000000094 0.6128477271520438
+713.7000000000941 0.6130257956791426
+713.8000000000941 0.6132041470408149
+713.9000000000941 0.6133825243185573
+714.0000000000941 0.613560690871166
+714.1000000000942 0.6134532948477
+714.2000000000942 0.6133452437089555
+714.3000000000942 0.6132363629788519
+714.4000000000942 0.613126498872343
+714.5000000000942 0.6130155182753794
+714.6000000000943 0.6129033087538918
+714.7000000000943 0.612789778480122
+714.8000000000943 0.6126748562467336
+714.9000000000943 0.6125584914504363
+715.0000000000944 0.6124406540736327
+715.1000000000944 0.6120854384588975
+715.2000000000944 0.6117288690851884
+715.3000000000944 0.6113709792255189
+715.4000000000945 0.6110118225815107
+715.5000000000945 0.6106514732239781
+715.6000000000945 0.610162589734605
+715.7000000000945 0.6096728206938442
+715.8000000000945 0.6091823015059225
+715.9000000000946 0.6086911875713256
+716.0000000000946 0.6081996542035703
+716.1000000000946 0.6072227601305058
+716.2000000000946 0.6062449894108349
+716.3000000000947 0.6052665766935185
+716.4000000000947 0.6042877754008374
+716.5000000000947 0.6033088575597967
+716.6000000000947 0.6009281603320036
+716.7000000000947 0.5985460321496802
+716.8000000000948 0.5961624731416196
+716.9000000000948 0.5937774834346031
+717.0000000000948 0.5913910631573284
+717.1000000000948 0.588975069444073
+717.2000000000949 0.5865590062486411
+717.3000000000949 0.5841428736039359
+717.4000000000949 0.5817266715388376
+717.5000000000949 0.5793104000874423
+717.600000000095 0.5782976944814898
+717.700000000095 0.5772849588699067
+717.800000000095 0.5762721932552017
+717.900000000095 0.575259397639187
+718.000000000095 0.5742465720221563
+718.1000000000951 0.5723634604243625
+718.2000000000951 0.5704809568564085
+718.3000000000951 0.5685990612619881
+718.4000000000951 0.566717773586158
+718.5000000000952 0.5648370937759324
+718.6000000000952 0.5635944277930753
+718.7000000000952 0.5623521543540997
+718.8000000000952 0.5611102734325522
+718.9000000000952 0.5598687849979913
+719.0000000000953 0.5586276890238262
+719.1000000000953 0.5586871520426749
+719.2000000000953 0.5587465647902478
+719.3000000000953 0.5588059272652827
+719.4000000000954 0.5588652394664766
+719.5000000000954 0.5589245013907304
+719.6000000000954 0.5592382942559575
+719.7000000000954 0.5595519599498904
+719.8000000000955 0.5598655061038597
+719.9000000000955 0.5601789397982906
+720.0000000000955 0.5604922675631828
+720.1000000000955 0.5616239133420975
+720.2000000000955 0.5627549418760527
+720.3000000000956 0.5638853581689027
+720.4000000000956 0.5650151666863231
+720.5000000000956 0.5661443713597354
+720.6000000000956 0.5691787548297783
+720.7000000000957 0.5722116163078587
+720.8000000000957 0.5752429431610508
+720.9000000000957 0.5782727230513451
+721.0000000000957 0.5813009439518781
+721.1000000000957 0.5840986712822416
+721.2000000000958 0.5868938274159655
+721.3000000000958 0.589686401534067
+721.4000000000958 0.5924763832108697
+721.5000000000958 0.5952637624214775
+721.6000000000959 0.5960229384129081
+721.7000000000959 0.5967812040618667
+721.8000000000959 0.5975385592028569
+721.9000000000959 0.5982950036742922
+722.000000000096 0.5990505373115476
+722.100000000096 0.5986970114743412
+722.200000000096 0.598343510452561
+722.300000000096 0.5979900343554762
+722.400000000096 0.5976365832918065
+722.5000000000961 0.5972831573673719
+722.6000000000961 0.5951621981691394
+722.7000000000961 0.5930418957279131
+722.8000000000961 0.5909222602437774
+722.9000000000962 0.5888033023732252
+723.0000000000962 0.5866850332161466
+723.1000000000962 0.5834661403916512
+723.2000000000962 0.5802492598880171
+723.3000000000962 0.5770344037984817
+723.4000000000963 0.5738215845227846
+723.5000000000963 0.5706108147512122
+723.6000000000963 0.5700456811817981
+723.7000000000963 0.5694803317710354
+723.8000000000964 0.5689150219712583
+723.9000000000964 0.5683499865780314
+724.0000000000964 0.5677854398281255
+724.1000000000964 0.5679595392841905
+724.2000000000965 0.5681341788934836
+724.3000000000965 0.5683095147742836
+724.4000000000965 0.5684856835809551
+724.5000000000965 0.5686628024739545
+724.6000000000965 0.5690922794330873
+724.7000000000966 0.5695228510621254
+724.8000000000966 0.5699545871396612
+724.9000000000966 0.5703875385025227
+725.0000000000966 0.5708217369719307
+725.1000000000967 0.571258818350891
+725.2000000000967 0.5716971535582832
+725.3000000000967 0.5721367169377356
+725.4000000000967 0.5725774635214067
+725.5000000000967 0.5730193289596331
+725.6000000000968 0.5739642756020306
+725.7000000000968 0.5749100521421737
+725.8000000000968 0.5758565380234905
+725.9000000000968 0.5768035924975464
+726.0000000000969 0.5777510544626996
+726.1000000000969 0.577756632511162
+726.2000000000969 0.5777624304654791
+726.3000000000969 0.5777682252438869
+726.400000000097 0.5777737743574123
+726.500000000097 0.5777788159098928
+726.600000000097 0.5776575999614909
+726.700000000097 0.5775363809062384
+726.800000000097 0.5774151587457531
+726.9000000000971 0.5772939334803532
+727.0000000000971 0.5771727051105975
+727.1000000000971 0.5759607696564568
+727.2000000000971 0.5747491614948467
+727.3000000000972 0.5735378806083721
+727.4000000000972 0.5723269269783394
+727.5000000000972 0.5711163005902735
+727.6000000000972 0.5709089156338331
+727.7000000000972 0.5707015697847766
+727.8000000000973 0.5704942630408548
+727.9000000000973 0.570286995401118
+728.0000000000973 0.5700797668680534
+728.1000000000973 0.5720694532923247
+728.2000000000974 0.574059031095682
+728.3000000000974 0.5760485002416235
+728.4000000000974 0.5780378606936383
+728.5000000000974 0.5800271124084779
+728.6000000000975 0.5797605591928704
+728.7000000000975 0.5794935084239325
+728.8000000000975 0.5792262233548098
+728.9000000000975 0.5789589473157707
+729.0000000000975 0.5786919037606144
+729.1000000000976 0.5790959780128195
+729.2000000000976 0.57950069910799
+729.3000000000976 0.5799062338279933
+729.4000000000976 0.5803127299331834
+729.5000000000977 0.5807203160995955
+729.6000000000977 0.5816302912120859
+729.7000000000977 0.5825416151150307
+729.8000000000977 0.5834543622374962
+729.9000000000977 0.5843685878201158
+730.0000000000978 0.585284327765031
+730.1000000000978 0.5848796474691831
+730.2000000000978 0.5844764030663205
+730.3000000000978 0.5840745622240252
+730.4000000000979 0.5836740731023236
+730.5000000000979 0.5832748644195042
+730.6000000000979 0.5832527093540245
+730.7000000000979 0.5832315914701537
+730.800000000098 0.583211391357872
+730.900000000098 0.5831919694587047
+731.000000000098 0.583173166072695
+731.100000000098 0.5836281055735045
+731.200000000098 0.5840833934044667
+731.3000000000981 0.5845388095128975
+731.4000000000981 0.5849941129330244
+731.5000000000981 0.585449041712094
+731.6000000000981 0.586404883457862
+731.7000000000982 0.587361032882648
+731.8000000000982 0.5883174762750819
+731.9000000000982 0.5892742004333293
+732.0000000000982 0.5902311926670955
+732.1000000000982 0.5916669119466303
+732.2000000000983 0.5931028994357295
+732.3000000000983 0.5945391439976829
+732.4000000000983 0.5959756349964567
+732.5000000000983 0.597412362297331
+732.6000000000984 0.5980961799157543
+732.7000000000984 0.5987800575239957
+732.8000000000984 0.599463994920917
+732.9000000000984 0.6001479919061171
+733.0000000000985 0.6008320482781093
+733.1000000000985 0.6009750999166605
+733.2000000000985 0.601118101383767
+733.3000000000985 0.6012610526368574
+733.4000000000985 0.601403953637413
+733.5000000000986 0.601546804346117
+733.6000000000986 0.6020676599708069
+733.7000000000986 0.6025892078170467
+733.8000000000986 0.603111186051893
+733.9000000000987 0.6036333528161032
+734.0000000000987 0.6041554863142699
+734.1000000000987 0.6042477453579749
+734.2000000000987 0.6043393803518122
+734.3000000000987 0.6044302318361873
+734.4000000000988 0.6045201611645051
+734.5000000000988 0.6046090505220677
+734.6000000000988 0.6044451604933465
+734.7000000000988 0.604280021180007
+734.8000000000989 0.6041135587054487
+734.9000000000989 0.6039457189393523
+735.0000000000989 0.603776467467329
+735.1000000000989 0.6041930062331902
+735.200000000099 0.6046082403185551
+735.300000000099 0.6050221901664404
+735.400000000099 0.6054348959897758
+735.500000000099 0.6058464178363032
+735.600000000099 0.6060045440091228
+735.7000000000991 0.6061614649111196
+735.8000000000991 0.6063173119354097
+735.9000000000991 0.6064722369685175
+736.0000000000991 0.6066264124114708
+736.1000000000992 0.6067762861793398
+736.2000000000992 0.6069258005882825
+736.3000000000992 0.6070751897447595
+736.4000000000992 0.6072247083633154
+736.5000000000992 0.6073746317931527
+736.6000000000993 0.607778708377645
+736.7000000000993 0.6081828898571042
+736.8000000000993 0.6085871762242713
+736.9000000000993 0.6089915674712304
+737.0000000000994 0.6093960635915142
+737.1000000000994 0.609935208406662
+737.2000000000994 0.6104745594608343
+737.3000000000994 0.6110141167701796
+737.4000000000995 0.611553880350187
+737.5000000000995 0.6120938502162188
+737.6000000000995 0.6125068711279161
+737.7000000000995 0.6129200324308519
+737.8000000000995 0.6133333341346986
+737.9000000000996 0.6137467762497862
+738.0000000000996 0.6141603587862933
+738.1000000000996 0.6144224837186575
+738.2000000000996 0.6146845915145132
+738.3000000000997 0.6149466821740129
+738.4000000000997 0.6152087556966481
+738.5000000000997 0.615470812082038
+738.6000000000997 0.6158604643568953
+738.7000000000997 0.61625020810521
+738.8000000000998 0.6166400433149919
+738.9000000000998 0.6170299699755714
+739.0000000000998 0.6174199880766148
+739.1000000000998 0.6174818354475506
+739.2000000000999 0.6175436851723707
+739.3000000000999 0.6176055372509004
+739.4000000000999 0.6176673916829659
+739.5000000000999 0.6177292484698462
+739.6000000001 0.6179190146730805
+739.7000000001 0.6181088088458092
+739.8000000001 0.6182986309898122
+739.9000000001 0.6184884811068704
+740.0000000001 0.618678359199273
+740.1000000001001 0.6187151199962911
+740.2000000001001 0.6187518440509963
+740.3000000001001 0.6187885313641882
+740.4000000001001 0.6188251819373304
+740.5000000001002 0.6188617957712234
+740.6000000001002 0.6188983728679929
+740.7000000001002 0.6189349132277774
+740.8000000001002 0.6189714168533658
+740.9000000001002 0.6190078837448962
+741.0000000001003 0.6190443139046647
+741.1000000001003 0.6192508772352856
+741.2000000001003 0.6194574436048953
+741.3000000001003 0.6196640130139396
+741.4000000001004 0.619870585460877
+741.5000000001004 0.62007716094562
+741.6000000001004 0.6204117650071843
+741.7000000001004 0.6207464573810484
+741.8000000001005 0.6210812380693667
+741.9000000001005 0.6214161070736288
+742.0000000001005 0.6217510643928728
+742.1000000001005 0.6216278761047274
+742.2000000001005 0.6215046925999225
+742.3000000001006 0.6213815138801783
+742.4000000001006 0.6212583399458862
+742.5000000001006 0.6211351707974376
+742.6000000001006 0.6210120064358875
+742.7000000001007 0.6208888468622897
+742.8000000001007 0.6207656920770347
+742.9000000001007 0.6206425420805133
+743.0000000001007 0.620519396874518
+743.1000000001007 0.6204727921744158
+743.2000000001008 0.6204261218958687
+743.3000000001008 0.6203793860425235
+743.4000000001008 0.620332584620014
+743.5000000001008 0.6202857176325203
+743.6000000001009 0.6201110588120812
+743.7000000001009 0.6199364063841311
+743.8000000001009 0.619761760349208
+743.9000000001009 0.6195871207085109
+744.000000000101 0.6194124874634488
+744.100000000101 0.6194465777240379
+744.200000000101 0.619480667725139
+744.300000000101 0.6195147574679164
+744.400000000101 0.61954884695089
+744.5000000001011 0.6195829361752239
+744.6000000001011 0.6196170251414213
+744.7000000001011 0.6196511138486631
+744.8000000001011 0.6196852022974525
+744.9000000001012 0.6197192904876325
+745.0000000001012 0.619753378420321
+745.1000000001012 0.6197417832788853
+745.2000000001012 0.619730187147022
+745.3000000001012 0.6197185900247912
+745.4000000001013 0.6197069919129147
+745.5000000001013 0.6196953928121135
+745.6000000001013 0.6196837927217868
+745.7000000001013 0.6196721916433168
+745.8000000001014 0.6196605895767642
+745.9000000001014 0.6196489865215269
+746.0000000001014 0.6196373824791687
+746.1000000001014 0.6198037017811242
+746.2000000001015 0.6199700094606805
+746.3000000001015 0.620136305518233
+746.4000000001015 0.6203025899535167
+746.5000000001015 0.6204688627675901
+746.6000000001015 0.6206351239588646
+746.7000000001016 0.6208013735290615
+746.8000000001016 0.6209676114772552
+746.9000000001016 0.6211338378038442
+747.0000000001016 0.6213000525091232
+747.1000000001017 0.6213629589476223
+747.2000000001017 0.6214258314298068
+747.3000000001017 0.6214886699511438
+747.4000000001017 0.621551474507762
+747.5000000001017 0.6216142450949984
+747.6000000001018 0.621549090949458
+747.7000000001018 0.621483929642681
+747.8000000001018 0.6214187611747422
+747.9000000001018 0.6213535855457143
+748.0000000001019 0.6212884027557305
+748.1000000001019 0.6212809592564595
+748.2000000001019 0.621273514699709
+748.3000000001019 0.621266069086857
+748.400000000102 0.6212586224172937
+748.500000000102 0.6212511746910718
+748.600000000102 0.6212437259095681
+748.700000000102 0.621236276072836
+748.800000000102 0.62122882518159
+748.9000000001021 0.6212213732352205
+749.0000000001021 0.6212139202344626
+749.1000000001021 0.6212262387006746
+749.2000000001021 0.6212385563896795
+749.3000000001022 0.6212508733020986
+749.4000000001022 0.6212631894378905
+749.5000000001022 0.6212755047970142
+749.6000000001022 0.6212878193807524
+749.7000000001022 0.62130013318774
+749.8000000001023 0.6213124462199221
+749.9000000001023 0.6213247584765953
+750.0000000001023 0.6213370699582971
+750.1000000001023 0.6212677798354628
+750.2000000001024 0.6211984898668851
+750.3000000001024 0.6211292000522066
+750.4000000001024 0.6210599103917319
+750.5000000001024 0.6209906208872199
+750.6000000001025 0.6210490931290157
+750.7000000001025 0.6211075370129696
+750.8000000001025 0.6211659525399524
+750.9000000001025 0.6212243397101744
+751.0000000001025 0.6212826985251265
+751.1000000001026 0.6213016588075357
+751.2000000001026 0.6213206176817527
+751.3000000001026 0.6213395751477104
+751.4000000001026 0.621358531206005
+751.5000000001027 0.6213774858572321
+751.6000000001027 0.6213964391006642
+751.7000000001027 0.6214153909375584
+751.8000000001027 0.6214343413671872
+751.9000000001028 0.6214532903908082
+752.0000000001028 0.6214722380077626
+752.1000000001028 0.6215580385221599
+752.2000000001028 0.6216438359434957
+752.3000000001028 0.6217296302714399
+752.4000000001029 0.621815421505662
+752.5000000001029 0.6219012096464932
+752.6000000001029 0.621986994693604
+752.7000000001029 0.6220727766473255
+752.800000000103 0.6221585555079906
+752.900000000103 0.6222443312746077
+753.000000000103 0.6223301039474977
+753.100000000103 0.622405069235457
+753.200000000103 0.6224800094276838
+753.3000000001031 0.622554924522185
+753.4000000001031 0.6226298145176297
+753.5000000001031 0.6227046794125553
+753.6000000001031 0.6226508163185686
+753.7000000001032 0.6225964047284382
+753.8000000001032 0.6225417268176796
+753.9000000001032 0.6224870437740452
+754.0000000001032 0.6224325958069475
+754.1000000001033 0.6224672857375604
+754.2000000001033 0.6225026298379468
+754.3000000001033 0.6225388057971536
+754.4000000001033 0.6225759704520728
+754.5000000001033 0.6226142597881907
+754.6000000001034 0.6226537889593969
+754.7000000001034 0.622694652217423
+754.8000000001034 0.6227369229466954
+754.9000000001034 0.6227806536581783
+755.0000000001035 0.6228258759827432
+755.1000000001035 0.6228073490649252
+755.2000000001035 0.6227903131560987
+755.3000000001035 0.6227747367513108
+755.4000000001035 0.6227605674583365
+755.5000000001036 0.6227477320009628
+755.6000000001036 0.6227361361958433
+755.7000000001036 0.6227256650171236
+755.8000000001036 0.6227161825603882
+755.9000000001037 0.6227075320446515
+756.0000000001037 0.6226995358122772
+756.1000000001037 0.6227127637068096
+756.2000000001037 0.6227262287614477
+756.3000000001038 0.6227396906991532
+756.4000000001038 0.6227528883379749
+756.5000000001038 0.6227655395912517
+756.6000000001038 0.6229052218259513
+756.7000000001038 0.6230449078784058
+756.8000000001039 0.6231845977551034
+756.9000000001039 0.6233242914631539
+757.0000000001039 0.623463989007464
+757.1000000001039 0.6234346842754285
+757.200000000104 0.6234053776087699
+757.300000000104 0.6233760690140866
+757.400000000104 0.6233467584979004
+757.500000000104 0.6233174460673132
+757.600000000104 0.6232881317556153
+757.7000000001041 0.6232588155220823
+757.8000000001041 0.6232294973538681
+757.9000000001041 0.6232001772382703
+758.0000000001041 0.6231708551609353
+758.1000000001042 0.622673826467315
+758.2000000001042 0.6221767731063929
+758.3000000001042 0.6216796950690328
+758.4000000001042 0.621182592345633
+758.5000000001043 0.620685464916016
+758.6000000001043 0.6149474020033942
+758.7000000001043 0.6092095916546287
+758.8000000001043 0.6034717455440638
+758.9000000001043 0.5977336058022521
+759.0000000001044 0.5919949440179852
+759.1000000001044 0.5689512605991548
+759.2000000001044 0.5459093243791375
+759.3000000001044 0.5228690596870301
+759.4000000001045 0.49983043387758885
+759.5000000001045 0.4767934534397568
+759.6000000001045 0.4431491666038778
+759.7000000001045 0.40950792466017155
+759.8000000001045 0.37586990052605845
+759.9000000001046 0.3422352943345033
+760.0000000001046 0.3086043278205367
+760.1000000001046 0.29067851943031103
+760.2000000001046 0.2727564523225212
+760.3000000001047 0.25483826799044823
+760.4000000001047 0.23692411220259268
+760.5000000001047 0.219014132043442
+760.6000000001047 0.22090010022531548
+760.7000000001048 0.22278515315262756
+760.8000000001048 0.22466932960708816
+760.9000000001048 0.2265526776185966
+761.0000000001048 0.22843525481159535
+761.1000000001048 0.2465593585010852
+761.2000000001049 0.2646837169456176
+761.3000000001049 0.2828084183471335
+761.4000000001049 0.30093358896372396
+761.5000000001049 0.31905939615053863
+761.600000000105 0.3380794285199462
+761.700000000105 0.3570999207275948
+761.800000000105 0.3761208726886681
+761.900000000105 0.39514228431828263
+762.000000000105 0.41416415548633556
+762.1000000001051 0.411465042746995
+762.2000000001051 0.40876617565661105
+762.3000000001051 0.4060675542138298
+762.4000000001051 0.4033691784179657
+762.5000000001052 0.4006710482524789
+762.6000000001052 0.3904449762951113
+762.7000000001052 0.3802198399473448
+762.8000000001052 0.3699956392042519
+762.9000000001053 0.35977237406093343
+763.0000000001053 0.34955004453524874
+763.1000000001053 0.349695552686673
+763.2000000001053 0.3498410725537928
+763.3000000001053 0.3499866041361408
+763.4000000001054 0.35013214743126775
+763.5000000001054 0.35027770244990675
+763.6000000001054 0.35603820865843333
+763.7000000001054 0.36179930212039607
+763.8000000001055 0.3675609827698455
+763.9000000001055 0.37332325053816523
+764.0000000001055 0.37908610536055914
+764.1000000001055 0.3859514760628919
+764.2000000001055 0.392815879148044
+764.3000000001056 0.39967931463710793
+764.4000000001056 0.4065417825498367
+764.5000000001056 0.41340328291000356
+764.6000000001056 0.4215396621670534
+764.7000000001057 0.42967489466516096
+764.8000000001057 0.4378089804283416
+764.9000000001057 0.4459419194812499
+765.0000000001057 0.45407371184640216
+765.1000000001058 0.46139786797356214
+765.2000000001058 0.46872372086053293
+765.3000000001058 0.4760512704487784
+765.4000000001058 0.4833805166790631
+765.5000000001058 0.4907114594905425
+765.6000000001059 0.4965124409149086
+765.7000000001059 0.5023147613788758
+765.8000000001059 0.5081184208354669
+765.9000000001059 0.5139234192389951
+766.000000000106 0.5197297565408192
+766.100000000106 0.5246097963899391
+766.200000000106 0.5294879381836108
+766.300000000106 0.5343641820208703
+766.400000000106 0.539238528000748
+766.5000000001061 0.544110976221913
+766.6000000001061 0.5492366297210475
+766.7000000001061 0.5543602881646619
+766.8000000001061 0.5594819516557817
+766.9000000001062 0.5646016202980852
+767.0000000001062 0.569719294191608
+767.1000000001062 0.5732403236118017
+767.2000000001062 0.5767623108348365
+767.3000000001063 0.5802852558579169
+767.4000000001063 0.5838091586788868
+767.5000000001063 0.5873340192939663
+767.6000000001063 0.5893291127392724
+767.7000000001063 0.591324738245656
+767.8000000001064 0.5933208958137295
+767.9000000001064 0.5953175854407933
+768.0000000001064 0.59731480712524
+768.1000000001064 0.5984761098757763
+768.2000000001065 0.5996369260257295
+768.3000000001065 0.6007972556004432
+768.4000000001065 0.6019570986252577
+768.5000000001065 0.6031164551244536
+768.6000000001065 0.6038920500714801
+768.7000000001066 0.6046667742259997
+768.8000000001066 0.6054408997058136
+768.9000000001066 0.6062146796993501
+769.0000000001066 0.606988348335814
+769.1000000001067 0.6076641086078016
+769.2000000001067 0.6083402856867021
+769.3000000001067 0.6090170553267744
+769.4000000001067 0.609694573604635
+769.5000000001068 0.6103729768083167
+769.6000000001068 0.6113069082445142
+769.7000000001068 0.612241851862286
+769.8000000001068 0.6131778939600496
+769.9000000001068 0.6141151001070343
+770.0000000001069 0.6150535149822598
+770.1000000001069 0.6156595784887573
+770.2000000001069 0.6162670732466652
+770.3000000001069 0.6168759779324294
+770.400000000107 0.6174862497917096
+770.500000000107 0.6180978245339535
+770.600000000107 0.618329139626485
+770.700000000107 0.6185616239137118
+770.800000000107 0.6187951290336653
+770.9000000001071 0.6190294862781365
+771.0000000001071 0.6192645065547147
+771.1000000001071 0.6193936926504642
+771.2000000001071 0.6195231203916326
+771.3000000001072 0.6196525393098614
+771.4000000001072 0.619781678584691
+771.5000000001072 0.6199102470260516
+771.6000000001072 0.6199107207347059
+771.7000000001073 0.6199111136265412
+771.8000000001073 0.6199114342089354
+771.9000000001073 0.6199116903574924
+772.0000000001073 0.6199118893193467
+772.1000000001073 0.619890482833255
+772.2000000001074 0.6198690286521715
+772.3000000001074 0.6198475321372803
+772.4000000001074 0.6198259980194455
+772.5000000001074 0.6198044304000099
+772.6000000001075 0.619782858298092
+772.7000000001075 0.6197613107282933
+772.8000000001075 0.6197397917823702
+772.9000000001075 0.6197183061811545
+773.0000000001075 0.6196968592724904
+773.1000000001076 0.6197156773120512
+773.2000000001076 0.6197345017719617
+773.3000000001076 0.6197533398943673
+773.4000000001076 0.6197721995524745
+773.5000000001077 0.6197910892478434
+773.6000000001077 0.6196838773617618
+773.7000000001077 0.619577229871013
+773.8000000001077 0.6194708557187494
+773.9000000001078 0.6193644841944626
+774.0000000001078 0.6192578649212045
+774.1000000001078 0.6193929203330173
+774.2000000001078 0.6195273015211407
+774.3000000001078 0.6196608179661847
+774.4000000001079 0.6197932991407329
+774.5000000001079 0.6199245945349268
+774.6000000001079 0.6200545736760873
+774.7000000001079 0.6201831968220457
+774.800000000108 0.6203103944736292
+774.900000000108 0.6204361185119261
+775.000000000108 0.6205603422193344
+775.100000000108 0.6205247027377851
+775.200000000108 0.6204875691796956
+775.3000000001081 0.6204489802720802
+775.4000000001081 0.6204089961648506
+775.5000000001081 0.6203676984235115
+775.6000000001081 0.6203251900194623
+775.7000000001082 0.6202815600000812
+775.8000000001082 0.6202369437428096
+775.9000000001082 0.6201914973784094
+776.0000000001082 0.6201453977827103
+776.1000000001083 0.6201840814893419
+776.2000000001083 0.6202225261781078
+776.3000000001083 0.6202609709044469
+776.4000000001083 0.6202996755766471
+776.5000000001083 0.6203389209634301
+776.6000000001084 0.6203790087004245
+776.7000000001084 0.6204190946069051
+776.8000000001084 0.6204591786826726
+776.9000000001084 0.6204992609275282
+777.0000000001085 0.6205393413419128
+777.1000000001085 0.620563952631071
+777.2000000001085 0.6205885615780646
+777.3000000001085 0.6206131681848326
+777.4000000001085 0.6206377724506829
+777.5000000001086 0.6206623743762395
+777.6000000001086 0.6206869739614678
+777.7000000001086 0.6207115712069919
+777.8000000001086 0.6207361661127777
+777.9000000001087 0.6207607586787914
+778.0000000001087 0.6207853489050442
+778.1000000001087 0.6208522655488168
+778.2000000001087 0.6209191826461087
+778.3000000001088 0.6209861001959932
+778.4000000001088 0.6210530181988592
+778.5000000001088 0.6211199366557544
+778.6000000001088 0.6211868555650932
+778.7000000001088 0.6212537749279239
+778.8000000001089 0.6213206947439781
+778.9000000001089 0.6213876150129866
+779.0000000001089 0.6214545357353208
+779.1000000001089 0.6215037445042207
+779.200000000109 0.6215529194334286
+779.300000000109 0.6216020605212672
+779.400000000109 0.6216511677680335
+779.500000000109 0.6217002411725708
+779.600000000109 0.6216220295512209
+779.7000000001091 0.621543816109215
+779.8000000001091 0.6214656008468938
+779.9000000001091 0.6213873837645965
+780.0000000001091 0.6213091648628644
+780.1000000001092 0.621415895410741
+780.2000000001092 0.6215226189321601
+780.3000000001092 0.6216293354288152
+780.4000000001092 0.6217360448991092
+780.5000000001093 0.6218427473440775
+780.6000000001093 0.6219494427634406
+780.7000000001093 0.6220561311569183
+780.8000000001093 0.6221628125248884
+780.9000000001093 0.6222694868670715
+781.0000000001094 0.6223761541829756
+781.1000000001094 0.6222884482343414
+781.2000000001094 0.6222007401708773
+781.3000000001094 0.6221130299936181
+781.4000000001095 0.6220253177029403
+781.5000000001095 0.6219376032992204
+781.6000000001095 0.6218498867834927
+781.7000000001095 0.6217621681561339
+781.8000000001095 0.6216744474181778
+781.9000000001096 0.6215867245693422
+782.0000000001096 0.6214989996114498
+782.1000000001096 0.621530538926246
+782.2000000001096 0.6215620763176555
+782.3000000001097 0.6215936117869083
+782.4000000001097 0.6216251453339183
+782.5000000001097 0.6216566769592584
+782.6000000001097 0.621688206661527
+782.7000000001098 0.6217197344426129
+782.8000000001098 0.6217512603017716
+782.9000000001098 0.6217827842395762
+783.0000000001098 0.6218143062564851
+783.1000000001098 0.6217415363698415
+783.2000000001099 0.6216687671087215
+783.3000000001099 0.621595998472799
+783.4000000001099 0.6215232304630627
+783.5000000001099 0.621450463079186
+783.60000000011 0.6213776963234735
+783.70000000011 0.6213049301949402
+783.80000000011 0.6212321646945749
+783.90000000011 0.6211593998233663
+784.00000000011 0.6210866355817652
+784.1000000001101 0.6211238146196413
+784.2000000001101 0.6211609925970631
+784.3000000001101 0.6211981695125801
+784.4000000001101 0.6212353453673725
+784.5000000001102 0.6212725201606468
+784.6000000001102 0.6213096938942413
+784.7000000001102 0.6213468665660471
+784.8000000001102 0.6213840381779029
+784.9000000001103 0.6214212087290157
+785.0000000001103 0.621458378219967
+785.1000000001103 0.6215494325583956
+785.2000000001103 0.6216404843252926
+785.3000000001103 0.6217315335223202
+785.4000000001104 0.6218225801485094
+785.5000000001104 0.6219136242042065
+785.6000000001104 0.6220046656891002
+785.7000000001104 0.6220957046035382
+785.8000000001105 0.6221867409465506
+785.9000000001105 0.6222777747191438
+786.0000000001105 0.6223688059199906
+786.1000000001105 0.622135965032942
+786.2000000001105 0.6219031628910153
+786.3000000001106 0.6216703994975804
+786.4000000001106 0.6214376748560089
+786.5000000001106 0.6212049889704694
+786.6000000001106 0.6210996163542962
+786.7000000001107 0.620994239313336
+786.8000000001107 0.6208888578479863
+786.9000000001107 0.6207834719579863
+787.0000000001107 0.6206780816451088
+787.1000000001108 0.6206260233267529
+787.2000000001108 0.6205739309360232
+787.3000000001108 0.6205218044762842
+787.4000000001108 0.6204696439489289
+787.5000000001108 0.6204174493561477
+787.6000000001109 0.6204925012124473
+787.7000000001109 0.6205675497970752
+787.8000000001109 0.6206425951091579
+787.9000000001109 0.6207176371491392
+788.000000000111 0.6207926759167062
+788.100000000111 0.6207798199336381
+788.200000000111 0.6207669154424971
+788.300000000111 0.6207539624438793
+788.400000000111 0.6207409609383836
+788.5000000001111 0.6207279109264671
+788.6000000001111 0.6205873293917851
+788.7000000001111 0.6204466523767981
+788.8000000001111 0.6203058798839632
+788.9000000001112 0.6201650119144215
+789.0000000001112 0.6200240484697809
+789.1000000001112 0.6197113162597305
+789.2000000001112 0.6193986322417285
+789.3000000001113 0.6190859964161622
+789.4000000001113 0.6187734087821021
+789.5000000001113 0.6184608693402195
+789.6000000001113 0.6184033897948564
+789.7000000001113 0.6183459110345532
+789.8000000001114 0.6182884330594971
+789.9000000001114 0.618230955869874
+790.0000000001114 0.6181734794673227
+790.1000000001114 0.6182361357137925
+790.2000000001115 0.6182987900832148
+790.3000000001115 0.6183614425747191
+790.4000000001115 0.6184240931894137
+790.5000000001115 0.6184867419270883
+790.6000000001115 0.6185493887875319
+790.7000000001116 0.6186120337698757
+790.8000000001116 0.6186746768758875
+790.9000000001116 0.6187373181046973
+791.0000000001116 0.6187999574561334
+791.1000000001117 0.6188956693930183
+791.2000000001117 0.6189912485717783
+791.3000000001117 0.6190866949915655
+791.4000000001117 0.619182008650873
+791.5000000001118 0.6192771895492297
+791.6000000001118 0.6191174568410539
+791.7000000001118 0.6189577228384758
+791.8000000001118 0.618797987543424
+791.9000000001118 0.6186382509558505
+792.0000000001119 0.6184785130770106
+792.1000000001119 0.6183062181690572
+792.2000000001119 0.6181339407541864
+792.3000000001119 0.6179616808334848
+792.400000000112 0.6177894384080382
+792.500000000112 0.6176172134798745
+792.600000000112 0.6176994127250813
+792.700000000112 0.6177815923904609
+792.800000000112 0.6178637524739783
+792.9000000001121 0.617945892976227
+793.0000000001121 0.6180280138980837
+793.1000000001121 0.6183619326854064
+793.2000000001121 0.6186957922312268
+793.3000000001122 0.6190295925346122
+793.4000000001122 0.6193633335946285
+793.5000000001122 0.6196970154116574
+793.6000000001122 0.6200306379841096
+793.7000000001123 0.6203642013123671
+793.8000000001123 0.6206977053954983
+793.9000000001123 0.6210311502319146
+794.0000000001123 0.6213645358215083
+794.1000000001123 0.6212605558821074
+794.2000000001124 0.6211565751149124
+794.3000000001124 0.6210525935204378
+794.4000000001124 0.6209486110998549
+794.5000000001124 0.6208446278535347
+794.6000000001125 0.6206137029553356
+794.7000000001125 0.6203828197632605
+794.8000000001125 0.6201519782779341
+794.9000000001125 0.6199211785012926
+795.0000000001125 0.6196904204332269
+795.1000000001126 0.6193908537217591
+795.2000000001126 0.6190913244877713
+795.3000000001126 0.6187918327314029
+795.4000000001126 0.6184923784527947
+795.5000000001127 0.6181929616523121
+795.6000000001127 0.6175131840667644
+795.7000000001127 0.6168335003059789
+795.8000000001127 0.6161539103703824
+795.9000000001128 0.6154744142610569
+796.0000000001128 0.614795011979661
+796.1000000001128 0.6146279168341793
+796.2000000001128 0.6144607501957763
+796.3000000001128 0.6142935120655375
+796.4000000001129 0.614126202443239
+796.5000000001129 0.6139588213308267
+796.6000000001129 0.6145525816673074
+796.7000000001129 0.6151464844411052
+796.800000000113 0.6157405296517
+796.900000000113 0.6163347172998805
+797.000000000113 0.6169290473828081
+797.100000000113 0.617214426043038
+797.200000000113 0.6174996893820301
+797.3000000001131 0.617784837405077
+797.4000000001131 0.6180698701161605
+797.5000000001131 0.618354787520943
+797.6000000001131 0.618385944857052
+797.7000000001132 0.6184170653890868
+797.8000000001132 0.6184481491192128
+797.9000000001132 0.6184791960495956
+798.0000000001132 0.6185102061815807
+798.1000000001133 0.6183947531252987
+798.2000000001133 0.6182793003685513
+798.3000000001133 0.6181638479130642
+798.4000000001133 0.6180483957579422
+798.5000000001133 0.61793294390491
+798.6000000001134 0.6178174923543818
+798.7000000001134 0.6177020411074264
+798.8000000001134 0.6175865901631503
+798.9000000001134 0.6174711395239304
+799.0000000001135 0.6173556891901941
+799.1000000001135 0.6172526336096185
+799.2000000001135 0.6171495686526114
+799.3000000001135 0.6170464943193125
+799.4000000001136 0.616943410610516
+799.5000000001136 0.616840317526075
+799.6000000001136 0.6164844539136015
+799.7000000001136 0.6161286654443566
+799.8000000001136 0.6157729521298891
+799.9000000001137 0.6154173139830543
+800.0000000001137 0.6150617510155757
+800.1000000001137 0.614860403315613
+800.2000000001137 0.6146590117238457
+800.3000000001138 0.6144575762428635
+800.4000000001138 0.6142560968739528
+800.5000000001138 0.6140545736206446
+800.6000000001138 0.6141057248893413
+800.7000000001138 0.61415687437637
+800.8000000001139 0.6142080220809311
+800.9000000001139 0.6142591680035304
+801.0000000001139 0.6143103121438855
+801.1000000001139 0.6142418252556121
+801.200000000114 0.6141733358780453
+801.300000000114 0.6141048440114348
+801.400000000114 0.6140363496566827
+801.500000000114 0.6139678528148356
+801.600000000114 0.6140256702243708
+801.7000000001141 0.6140834569564759
+801.8000000001141 0.6141412130115541
+801.9000000001141 0.6141989383867429
+802.0000000001141 0.6142566330815596
+802.1000000001142 0.6141110914825771
+802.2000000001142 0.6139655462509804
+802.3000000001142 0.6138199973866384
+802.4000000001142 0.6136744448913757
+802.5000000001143 0.6135288887650612
+802.6000000001143 0.613383329008867
+802.7000000001143 0.6132377656239649
+802.8000000001143 0.6130921986102232
+802.9000000001143 0.6129466279688134
+803.0000000001144 0.6128010537008577
+803.1000000001144 0.6126125482692759
+803.2000000001144 0.6124239256754639
+803.3000000001144 0.6122351859273604
+803.4000000001145 0.6120463290335529
+803.5000000001145 0.6118573550018379
+803.6000000001145 0.6115426903935
+803.7000000001145 0.6112280378854533
+803.8000000001146 0.6109133974784554
+803.9000000001146 0.6105987691732644
+804.0000000001146 0.6102841529717885
+804.1000000001146 0.6098442226124634
+804.2000000001146 0.6094042911339338
+804.3000000001147 0.6089643585377632
+804.4000000001147 0.6085244248255146
+804.5000000001147 0.6080844899996843
+804.6000000001147 0.6078941000786741
+804.7000000001148 0.60770334770317
+804.8000000001148 0.6075122328721804
+804.9000000001148 0.6073207555872918
+805.0000000001148 0.6071289158488116
+805.1000000001148 0.6069428765832778
+805.2000000001149 0.6067564709584924
+805.3000000001149 0.6065696989650003
+805.4000000001149 0.6063825605914211
+805.5000000001149 0.606195055827376
+805.600000000115 0.6057594302939243
+805.700000000115 0.6053237946963104
+805.800000000115 0.6048881490373318
+805.900000000115 0.6044524933185059
+806.000000000115 0.6040168275402912
+806.1000000001151 0.6032160647869691
+806.2000000001151 0.6024153224067283
+806.3000000001151 0.6016146004024591
+806.4000000001151 0.6008138987770473
+806.5000000001152 0.6000132175321093
+806.6000000001152 0.5992125566698951
+806.7000000001152 0.5984119161939214
+806.8000000001152 0.5976112961064337
+806.9000000001153 0.5968106964096777
+807.0000000001153 0.5960101171057607
+807.1000000001153 0.5950899101420427
+807.2000000001153 0.5941696828993824
+807.3000000001153 0.5932494353797119
+807.4000000001154 0.5923291675880974
+807.5000000001154 0.5914088795264713
+807.6000000001154 0.5904885711992682
+807.7000000001154 0.5895682426096708
+807.8000000001155 0.5886478937602382
+807.9000000001155 0.5877275246553969
+808.0000000001155 0.5868071352979835
+808.1000000001155 0.5855900611411684
+808.2000000001156 0.5843733996883332
+808.3000000001156 0.583157150964124
+808.4000000001156 0.5819413149944183
+808.5000000001156 0.5807258918038554
+808.6000000001156 0.5795108814170767
+808.7000000001157 0.5782962838605582
+808.8000000001157 0.5770820991589308
+808.9000000001157 0.5758683273374363
+809.0000000001157 0.5746549684206949
+809.1000000001158 0.5734353519193097
+809.2000000001158 0.5722162033745136
+809.3000000001158 0.5709975227795299
+809.4000000001158 0.5697793101281851
+809.5000000001158 0.5685615654150377
+809.6000000001159 0.5674606908259321
+809.7000000001159 0.5663598325276037
+809.8000000001159 0.5652589905242273
+809.9000000001159 0.5641581648193748
+810.000000000116 0.5630573554168264
+810.100000000116 0.5616218198979146
+810.200000000116 0.5601862357525154
+810.300000000116 0.5587506029851467
+810.400000000116 0.5573149216009182
+810.5000000001161 0.5558791916034895
+810.6000000001161 0.5542159490350672
+810.7000000001161 0.5525538359778898
+810.8000000001161 0.5508928524973776
+810.9000000001162 0.5492329986577672
+811.0000000001162 0.5475742745224073
+811.1000000001162 0.5456595725721476
+811.2000000001162 0.543746784367242
+811.3000000001163 0.5418359099717189
+811.4000000001163 0.5399269494501772
+811.5000000001163 0.5380199028684757
+811.6000000001163 0.5362253778344405
+811.7000000001163 0.5344321180679134
+811.8000000001164 0.5326401236131884
+811.9000000001164 0.5308493945145542
+812.0000000001164 0.5290599308162561
+812.1000000001164 0.5272401138907601
+812.2000000001165 0.5254208988993819
+812.3000000001165 0.5236022859094783
+812.4000000001165 0.5217842749867231
+812.5000000001165 0.5199668661975898
+812.6000000001166 0.5173997388792514
+812.7000000001166 0.5148381644222906
+812.8000000001166 0.5122821433499412
+812.9000000001166 0.5097316761843235
+813.0000000001166 0.5071867634463637
+813.1000000001167 0.5036338394805513
+813.2000000001167 0.5000933454777298
+813.3000000001167 0.49656528060025557
+813.4000000001167 0.4930496440109802
+813.5000000001168 0.48954643487432176
+813.6000000001168 0.4869854081130149
+813.7000000001168 0.4844294046227846
+813.8000000001168 0.4818784240706974
+813.9000000001168 0.4793324661243306
+814.0000000001169 0.476791530451467
+814.1000000001169 0.47445274537095794
+814.2000000001169 0.4721164809877759
+814.3000000001169 0.4697827374653475
+814.400000000117 0.46745151496657067
+814.500000000117 0.46512281365403735
+814.600000000117 0.4621032312034388
+814.700000000117 0.4590922466863825
+814.800000000117 0.45608986063861007
+814.9000000001171 0.45309607359328613
+815.0000000001171 0.4501108860858478
+815.1000000001171 0.4469429691674331
+815.2000000001171 0.44378499969061114
+815.3000000001172 0.440636978043082
+815.4000000001172 0.437498904610998
+815.5000000001172 0.4343707797830292
+815.6000000001172 0.43134719762869617
+815.7000000001173 0.42833265557543015
+815.8000000001173 0.4253271539753213
+815.9000000001173 0.4223306931808908
+816.0000000001173 0.4193432735451475
+816.1000000001173 0.4164259706731762
+816.2000000001174 0.41351489070072966
+816.3000000001174 0.41061003384453304
+816.4000000001174 0.4077114003212735
+816.5000000001174 0.40481899035111024
+816.6000000001175 0.4037255463551522
+816.7000000001175 0.4026174050413799
+816.8000000001175 0.40149456592520233
+816.9000000001175 0.4003570285230225
+817.0000000001176 0.39920479234827305
+817.1000000001176 0.3966089381705775
+817.2000000001176 0.3940130788984502
+817.3000000001176 0.391417214539656
+817.4000000001176 0.3888213451015193
+817.5000000001177 0.38622547058870704
+817.6000000001177 0.38211526368365706
+817.7000000001177 0.37802554554869666
+817.8000000001177 0.3739563162526807
+817.9000000001178 0.36990757586218165
+818.0000000001178 0.36587932445162286
+818.1000000001178 0.3646607417657345
+818.2000000001178 0.36342737272324227
+818.3000000001178 0.36217921713276807
+818.4000000001179 0.36091627480344357
+818.5000000001179 0.3596385455438054
+818.6000000001179 0.35810996458628946
+818.7000000001179 0.35656976042219435
+818.800000000118 0.3550179329033488
+818.900000000118 0.35345448188205236
+819.000000000118 0.351879407207309
+819.100000000118 0.3491216709353155
+819.200000000118 0.3463625113850608
+819.3000000001181 0.34360192843421966
+819.4000000001181 0.3408399219596835
+819.5000000001181 0.33807649183864386
+819.6000000001181 0.33523875995717434
+819.7000000001182 0.3324008380625474
+819.8000000001182 0.32956272615612253
+819.9000000001182 0.3267244242388812
+820.0000000001182 0.32388593231616425
+820.1000000001183 0.3228751260115273
+820.2000000001183 0.32183643149823876
+820.3000000001183 0.3207698510452407
+820.4000000001183 0.3196753869211891
+820.5000000001183 0.3185530413939998
+820.6000000001184 0.3170013797821101
+820.7000000001184 0.3154288476382683
+820.8000000001184 0.31383544666482743
+820.9000000001184 0.3122211785648865
+821.0000000001185 0.3105860450387741
+821.1000000001185 0.30768101669505193
+821.2000000001185 0.3047780391801337
+821.3000000001185 0.30187711281033125
+821.4000000001186 0.29897823790197003
+821.5000000001186 0.29608141477041094
+821.6000000001186 0.2926366896302887
+821.7000000001186 0.2892044149659505
+821.8000000001186 0.28578459254690325
+821.9000000001187 0.2823772241420908
+822.0000000001187 0.2789823115168073
+822.1000000001187 0.27376288598496634
+822.2000000001187 0.2685921362994189
+822.3000000001188 0.2634700646014101
+822.4000000001188 0.25839667303278635
+822.5000000001188 0.2533719637321939
+822.6000000001188 0.24767914701182225
+822.7000000001188 0.24205086621532146
+822.8000000001189 0.2364871241758769
+822.9000000001189 0.2309879237257356
+823.0000000001189 0.2255532677067427
+823.1000000001189 0.22418242808425265
+823.200000000119 0.2227840902205257
+823.300000000119 0.22135825593636962
+823.400000000119 0.21990492705216738
+823.500000000119 0.21842410539194068
+823.600000000119 0.21833964021023228
+823.7000000001191 0.2181928798823347
+823.8000000001191 0.21798382851851308
+823.9000000001191 0.21771249022902944
+824.0000000001191 0.21737886912132298
+824.1000000001192 0.2158232235268859
+824.2000000001192 0.2142462110426776
+824.3000000001192 0.21264783083790043
+824.4000000001192 0.21102808208256055
+824.5000000001193 0.2093869639443722
+824.6000000001193 0.2070719379770837
+824.7000000001193 0.20475151954763612
+824.8000000001193 0.20242570845327643
+824.9000000001193 0.20009450449126964
+825.0000000001194 0.19775790745751795
+825.1000000001194 0.19497969628732512
+825.2000000001194 0.19220680075212632
+825.3000000001194 0.1894392210778667
+825.4000000001195 0.18667695749065982
+825.5000000001195 0.18392001021597282
+825.6000000001195 0.18116837947985084
+825.7000000001195 0.17842206550829243
+825.8000000001196 0.1756810685266759
+825.9000000001196 0.17294538876093243
+826.0000000001196 0.17021502643828756
+826.1000000001196 0.16813630631708332
+826.2000000001196 0.16604486806477764
+826.3000000001197 0.16394071160011794
+826.4000000001197 0.16182383684192767
+826.5000000001197 0.15969424370844582
+826.6000000001197 0.15728945493176916
+826.7000000001198 0.15488041873079564
+826.8000000001198 0.152467135083875
+826.9000000001198 0.15004960396971587
+827.0000000001198 0.14762782536526456
+827.1000000001198 0.14465727221187513
+827.2000000001199 0.14170912246635206
+827.3000000001199 0.13878337615753045
+827.4000000001199 0.13588003331364593
+827.5000000001199 0.13299909396402387
+827.60000000012 0.13041947060483158
+827.70000000012 0.12785291541250274
+827.80000000012 0.12529942840661262
+827.90000000012 0.12275900960621887
+828.00000000012 0.12023165903192154
+828.1000000001201 0.11838709325849825
+828.2000000001201 0.11653454453774763
+828.3000000001201 0.1146740134630788
+828.4000000001201 0.11280550062822887
+828.5000000001202 0.11092900662637004
+828.6000000001202 0.10883456183670259
+828.7000000001202 0.10674021813711926
+828.8000000001202 0.10464597553649864
+828.9000000001203 0.102551834043596
+829.0000000001203 0.10045779366744079
+829.1000000001203 0.09840549027614408
+829.2000000001203 0.09634963732315906
+829.3000000001203 0.09429023511587639
+829.4000000001204 0.09222728396204544
+829.5000000001204 0.0901607841693814
+829.6000000001204 0.08820345611673956
+829.7000000001204 0.0862370857053097
+829.8000000001205 0.08426167368419614
+829.9000000001205 0.0822772208027041
+830.0000000001205 0.08028372781030492
+830.1000000001205 0.07862813886467386
+830.2000000001206 0.07697122285700958
+830.3000000001206 0.07531297992894882
+830.4000000001206 0.07365341022206638
+830.5000000001206 0.07199251387824734
+830.6000000001206 0.07043400117913046
+830.7000000001207 0.06886917064807371
+830.8000000001207 0.06729802286840504
+830.9000000001207 0.06572055842364195
+831.0000000001207 0.06413677789703162
+831.1000000001208 0.06240500981720983
+831.2000000001208 0.06067396640789021
+831.3000000001208 0.058943647687442466
+831.4000000001208 0.05721405367421585
+831.5000000001208 0.055485184386204964
+831.6000000001209 0.0536334346085927
+831.7000000001209 0.051790303388753324
+831.8000000001209 0.04995579069548765
+831.9000000001209 0.048129896497477835
+832.000000000121 0.046312620763920204
+832.100000000121 0.04499502021335953
+832.200000000121 0.04367286319182285
+832.300000000121 0.0423461505214737
+832.400000000121 0.0410148830246514
+832.5000000001211 0.03967906152361348
+832.6000000001211 0.038362784066651265
+832.7000000001211 0.037040185766688716
+832.8000000001211 0.035711267754926904
+832.9000000001212 0.03437603116254459
+833.0000000001212 0.03303447712079261
+833.1000000001212 0.031913842960015044
+833.2000000001212 0.030794213207208702
+833.3000000001213 0.029675587763627914
+833.4000000001213 0.028557966530676725
+833.5000000001213 0.02744134940963494
+833.6000000001213 0.026342198359627197
+833.7000000001213 0.025242692464935018
+833.8000000001214 0.024142817972924616
+833.9000000001214 0.023042563893003062
+834.0000000001214 0.021941921814338336
+834.1000000001214 0.021173734640147834
+834.2000000001215 0.020402927885839393
+834.3000000001215 0.019629498759118274
+834.4000000001215 0.018853446000533104
+834.5000000001215 0.018074769760379646
+834.6000000001216 0.01727569152484243
+834.7000000001216 0.01647566197131637
+834.8000000001216 0.015674684287554197
+834.9000000001216 0.014872762606969403
+835.0000000001216 0.014069901871527265
+835.1000000001217 0.013510534418426963
+835.2000000001217 0.012951661349692077
+835.3000000001217 0.012393287157778295
+835.4000000001217 0.011835416643550636
+835.5000000001218 0.01127805482017327
+835.6000000001218 0.010725619768517944
+835.7000000001218 0.010173248614591148
+835.8000000001218 0.00962094687240172
+835.9000000001218 0.009068719816011928
+836.0000000001219 0.008516572390213563
+836.1000000001219 0.00816128936249894
+836.2000000001219 0.007805750134589465
+836.3000000001219 0.007449958188740324
+836.400000000122 0.007093916662719276
+836.500000000122 0.006737628290886273
+836.600000000122 0.0063810958713910165
+836.700000000122 0.006024309557871607
+836.800000000122 0.005667269186327061
+836.9000000001221 0.005309974617552837
+837.0000000001221 0.004952425735529122
+837.1000000001221 0.004733067013037848
+837.2000000001221 0.004513664926497048
+837.3000000001222 0.004294219417848301
+837.4000000001222 0.004074730440749092
+837.5000000001222 0.0038551979594204965
+837.6000000001222 0.0036348777081162942
+837.7000000001223 0.0034146038251536576
+837.8000000001223 0.0031943763166454365
+837.9000000001223 0.002974195191488676
+838.0000000001223 0.002754060462629036
+838.1000000001223 0.0026482138922088345
+838.2000000001224 0.0025422939739494273
+838.3000000001224 0.002436300726049618
+838.4000000001224 0.0023302341693480803
+838.5000000001224 0.002224094327852287
+838.6000000001225 0.0021174487437816986
+838.7000000001225 0.002010773907988478
+838.8000000001225 0.0019040698759580372
+838.9000000001225 0.0017973366978470246
+839.0000000001226 0.001690574417969301
+839.1000000001226 0.0016119490175357729
+839.2000000001226 0.0015333345848809765
+839.3000000001226 0.0014547311403455615
+839.4000000001226 0.0013761386987953526
+839.5000000001227 0.001297557269237302
+839.6000000001227 0.001219235627289375
+839.7000000001227 0.0011408928010563783
+839.8000000001227 0.0010625287774506129
+839.9000000001228 0.0009841435444496519
+840.0000000001228 0.0009057370915398275
+840.1000000001228 0.0008630512133577089
+840.2000000001228 0.0008203898784617089
+840.3000000001228 0.0007777530716491769
+840.4000000001229 0.0007351407789661344
+840.5000000001229 0.0006925529879151926
+840.6000000001229 0.0006499896876766317
+840.7000000001229 0.0006074509039256159
+840.800000000123 0.0005649366320268446
+840.900000000123 0.0005224468673486064
+841.000000000123 0.00047998160528473014
+841.100000000123 0.00045919925774483267
+841.200000000123 0.0004384115441590724
+841.3000000001231 0.0004176184664504245
+841.4000000001231 0.0003968200265430483
+841.5000000001231 0.0003760162263609943
+841.6000000001231 0.00035520706781457033
+841.7000000001232 0.0003343925528569713
+841.8000000001232 0.00031357268342273244
+841.9000000001232 0.00029274746144509497
+842.0000000001232 0.00027191688886571256
+842.1000000001233 0.0002592962896909187
+842.2000000001233 0.0002466730764802515
+842.3000000001233 0.00023404725067804777
+842.4000000001233 0.00022141881372874945
+842.5000000001234 0.0002087877670738651
+842.6000000001234 0.00019611417037782573
+842.7000000001234 0.00018344312817167102
+842.8000000001234 0.00017077464032913062
+842.9000000001234 0.00015810870672457994
+843.0000000001235 0.00014544532723498866
+843.1000000001235 0.00013465699067234004
+843.2000000001235 0.00012387472845000206
+843.3000000001235 0.00011309853956246179
+843.4000000001236 0.00010232842300407605
+843.5000000001236 9.15643777699237e-05
+843.6000000001236 8.083913791293378e-05
+843.7000000001236 7.011114477167363e-05
+843.8000000001236 5.938050960856255e-05
+843.9000000001237 4.864730155956276e-05
+844.0000000001237 3.791155121849219e-05
+844.1000000001237 3.411646395488301e-05
+844.2000000001237 3.0322314581440347e-05
+844.3000000001238 2.6529094183903982e-05
+844.4000000001238 2.2736783679403022e-05
+844.5000000001238 1.8945355092992952e-05
+844.6000000001238 1.5157859345623731e-05
+844.7000000001239 1.1369624294201284e-05
+844.8000000001239 7.580603398431418e-06
+844.9000000001239 3.79074628067952e-06
+845.0000000001239 0.0
+845.1000000001239 0.0
+845.200000000124 0.0
+845.300000000124 0.0
+845.400000000124 0.0
+845.500000000124 0.0
+845.600000000124 0.0
+845.7000000001241 0.0
+845.8000000001241 0.0
+845.9000000001241 0.0
+846.0000000001241 0.0
+846.1000000001242 0.0
+846.2000000001242 0.0
+846.3000000001242 0.0
+846.4000000001242 0.0
+846.5000000001243 0.0
+846.6000000001243 0.0
+846.7000000001243 0.0
+846.8000000001243 0.0
+846.9000000001244 0.0
+847.0000000001244 0.0
+847.1000000001244 0.0
+847.2000000001244 0.0
+847.3000000001244 0.0
+847.4000000001245 0.0
+847.5000000001245 0.0
+847.6000000001245 0.0
+847.7000000001245 0.0
+847.8000000001246 0.0
+847.9000000001246 0.0
+848.0000000001246 0.0
+848.1000000001246 0.0
+848.2000000001246 0.0
+848.3000000001247 0.0
+848.4000000001247 0.0
+848.5000000001247 0.0
+848.6000000001247 0.0
+848.7000000001248 0.0
+848.8000000001248 0.0
+848.9000000001248 0.0
+849.0000000001248 0.0
+849.1000000001249 0.0
+849.2000000001249 0.0
+849.3000000001249 0.0
+849.4000000001249 0.0
+849.5000000001249 0.0
+849.600000000125 0.0
+849.700000000125 0.0
+849.800000000125 0.0
+849.900000000125 0.0
+850.000000000125 7.89006727482606e-15
+850.1000000001251 6.308751579137325e-06
+850.2000000001251 1.2616442958967297e-05
+850.3000000001251 1.892298535482299e-05
+850.4000000001251 2.52282942351072e-05
+850.5000000001252 3.1532291443894126e-05
+850.6000000001252 3.783490731430887e-05
+850.7000000001252 4.4136082777857674e-05
+850.8000000001252 5.043577147772849e-05
+850.9000000001253 5.673394187652632e-05
+851.0000000001253 6.303057935543221e-05
+851.1000000001253 6.301065203530591e-05
+851.2000000001253 6.299067953217271e-05
+851.3000000001254 6.297071047138195e-05
+851.4000000001254 6.295079764222828e-05
+851.5000000001254 6.293099799200748e-05
+851.6000000001254 6.293700365107576e-05
+851.7000000001254 6.294300657860498e-05
+851.8000000001255 6.29490067759507e-05
+851.9000000001255 6.295500424448353e-05
+852.0000000001255 6.29609989855071e-05
+852.1000000001255 6.29534227426951e-05
+852.2000000001256 6.294584673002053e-05
+852.3000000001256 6.293827094891627e-05
+852.4000000001256 6.293069540076423e-05
+852.5000000001256 6.292312008704207e-05
+852.6000000001256 6.292834573301245e-05
+852.7000000001257 6.293356853179067e-05
+852.8000000001257 6.293878848306546e-05
+852.9000000001257 6.294400558625273e-05
+853.0000000001257 6.294921984087911e-05
+853.1000000001258 6.294355287135927e-05
+853.2000000001258 6.293788571397678e-05
+853.3000000001258 6.293221836815277e-05
+853.4000000001258 6.292655083317208e-05
+853.5000000001259 6.292088310843069e-05
+853.6000000001259 6.290225617140667e-05
+853.7000000001259 6.288352130532051e-05
+853.8000000001259 6.286473555603282e-05
+853.9000000001259 6.28459516871102e-05
+854.000000000126 6.282721818539312e-05
+854.100000000126 6.281876479746319e-05
+854.200000000126 6.281044407172722e-05
+854.300000000126 6.280229178487892e-05
+854.400000000126 6.279433948306064e-05
+854.5000000001261 6.278661448486659e-05
+854.6000000001261 6.279191285594585e-05
+854.7000000001261 6.279747757164814e-05
+854.8000000001261 6.28033234600516e-05
+854.9000000001262 6.28094611419783e-05
+855.0000000001262 6.281589702951116e-05
+855.1000000001262 6.280923261726838e-05
+855.2000000001262 6.280286904733637e-05
+855.3000000001263 6.279679990444e-05
+855.4000000001263 6.279101456487264e-05
+855.5000000001263 6.278549819796699e-05
+855.6000000001263 6.278023176496619e-05
+855.7000000001264 6.277519202354365e-05
+855.8000000001264 6.277035153151888e-05
+855.9000000001264 6.276567864556876e-05
+856.0000000001264 6.276113752253891e-05
+856.1000000001264 6.275929299199258e-05
+856.2000000001265 6.275749566995614e-05
+856.3000000001265 6.275569712074254e-05
+856.4000000001265 6.275384470601003e-05
+856.5000000001265 6.27518815852125e-05
+856.6000000001266 6.274974671706206e-05
+856.7000000001266 6.274761107458053e-05
+856.8000000001266 6.274547465829967e-05
+856.9000000001266 6.27433374688124e-05
+857.0000000001266 6.274119950676762e-05
+857.1000000001267 6.273519863106011e-05
+857.2000000001267 6.272919733674246e-05
+857.3000000001267 6.272319562447569e-05
+857.4000000001267 6.271719349484722e-05
+857.5000000001268 6.271119094858372e-05
+857.6000000001268 6.271793294593785e-05
+857.7000000001268 6.272467208554715e-05
+857.8000000001268 6.273140836576009e-05
+857.9000000001269 6.273814178500468e-05
+858.0000000001269 6.274487234171164e-05
+858.1000000001269 6.274196793964948e-05
+858.2000000001269 6.273906266787973e-05
+858.3000000001269 6.27361565250877e-05
+858.400000000127 6.27332495098429e-05
+858.500000000127 6.27303416208612e-05
+858.600000000127 6.27276037094715e-05
+858.700000000127 6.272497473392684e-05
+858.800000000127 6.272239787138044e-05
+858.9000000001271 6.271982051921478e-05
+859.0000000001271 6.27171942933545e-05
+859.1000000001271 6.271352983238514e-05
+859.2000000001271 6.270973249228082e-05
+859.3000000001272 6.270576654746623e-05
+859.4000000001272 6.270160048982722e-05
+859.5000000001272 6.269720702783312e-05
+859.6000000001272 6.269256308800322e-05
+859.7000000001273 6.268764980781437e-05
+859.8000000001273 6.268245253815874e-05
+859.9000000001273 6.267696084180905e-05
+860.0000000001273 6.267116849217062e-05
+860.1000000001274 6.266374980377677e-05
+860.2000000001274 6.26560307606321e-05
+860.3000000001274 6.264801777523747e-05
+860.4000000001274 6.263972146185728e-05
+860.5000000001274 6.26311566332676e-05
+860.6000000001275 6.262234229798963e-05
+860.7000000001275 6.261330165321016e-05
+860.8000000001275 6.260406208776558e-05
+860.9000000001275 6.259465517598755e-05
+861.0000000001276 6.258511667415517e-05
+861.1000000001276 6.257643679886159e-05
+861.2000000001276 6.256770909236657e-05
+861.3000000001276 6.255898183643417e-05
+861.4000000001276 6.255030748484816e-05
+861.5000000001277 6.25417426609824e-05
+861.6000000001277 6.253334815269282e-05
+861.7000000001277 6.252495359150377e-05
+861.8000000001277 6.251655897884304e-05
+861.9000000001278 6.250816431589001e-05
+862.0000000001278 6.249976960405218e-05
+862.1000000001278 6.25045076114406e-05
+862.2000000001278 6.250924222153206e-05
+862.3000000001279 6.251397343556274e-05
+862.4000000001279 6.251870125485015e-05
+862.5000000001279 6.252342568071028e-05
+862.6000000001279 6.25154660952961e-05
+862.700000000128 6.250750634629649e-05
+862.800000000128 6.249954643304668e-05
+862.900000000128 6.249158635500494e-05
+863.000000000128 6.248362611161761e-05
+863.100000000128 6.247218700299665e-05
+863.2000000001281 6.246074860517157e-05
+863.3000000001281 6.244931091761727e-05
+863.4000000001281 6.243787393954317e-05
+863.5000000001281 6.242643767048087e-05
+863.6000000001281 6.241483206098075e-05
+863.7000000001282 6.240311792018085e-05
+863.8000000001282 6.239135182814594e-05
+863.9000000001282 6.237958613916858e-05
+864.0000000001282 6.23678689854266e-05
+864.1000000001283 6.235972281914275e-05
+864.2000000001283 6.23517077111174e-05
+864.3000000001283 6.234385917838681e-05
+864.4000000001283 6.23362085389793e-05
+864.5000000001284 6.232878291460017e-05
+864.6000000001284 6.232160523667642e-05
+864.7000000001284 6.231469424645187e-05
+864.8000000001284 6.230806449513623e-05
+864.9000000001284 6.230172634900862e-05
+865.0000000001285 6.229568599213124e-05
+865.1000000001285 6.228754983986672e-05
+865.2000000001285 6.227971184500383e-05
+865.3000000001285 6.227216562415956e-05
+865.4000000001286 6.226490062080478e-05
+865.5000000001286 6.225790210827775e-05
+865.6000000001286 6.225115118872182e-05
+865.7000000001286 6.224462479768971e-05
+865.8000000001286 6.223829570925353e-05
+865.9000000001287 6.223213253426417e-05
+866.0000000001287 6.222609972287626e-05
+866.1000000001287 6.221896544342324e-05
+866.2000000001287 6.221187799045721e-05
+866.3000000001288 6.220478934158397e-05
+866.4000000001288 6.219764732512155e-05
+866.5000000001288 6.21903956226528e-05
+866.6000000001288 6.218297377218823e-05
+866.7000000001289 6.217555123146105e-05
+866.8000000001289 6.216812800107123e-05
+866.9000000001289 6.2160704081679e-05
+867.0000000001289 6.215327947400827e-05
+867.100000000129 6.214874708400381e-05
+867.200000000129 6.214421342687969e-05
+867.300000000129 6.213967850320552e-05
+867.400000000129 6.213514231341325e-05
+867.500000000129 6.213060485805634e-05
+867.6000000001291 6.21260661402997e-05
+867.7000000001291 6.212152615599561e-05
+867.8000000001291 6.211698490364425e-05
+867.9000000001291 6.211244238176062e-05
+868.0000000001291 6.210789858880636e-05
+868.1000000001292 6.210014294271796e-05
+868.2000000001292 6.209238645248843e-05
+868.3000000001292 6.208462911688548e-05
+868.4000000001292 6.207687093469256e-05
+868.5000000001293 6.206911190457883e-05
+868.6000000001293 6.206169010775111e-05
+868.7000000001293 6.205448468377489e-05
+868.8000000001293 6.204738315981603e-05
+868.9000000001294 6.204028144592127e-05
+869.0000000001294 6.203308382888389e-05
+869.1000000001294 6.202665238520577e-05
+869.2000000001294 6.201995851267581e-05
+869.3000000001294 6.201293158651372e-05
+869.4000000001295 6.200550933865346e-05
+869.5000000001295 6.199763785535318e-05
+869.6000000001295 6.200184545974596e-05
+869.7000000001295 6.20055174396127e-05
+869.8000000001296 6.200862458433447e-05
+869.9000000001296 6.201114600640315e-05
+870.0000000001296 6.201306914523379e-05
+870.1000000001296 6.200182440623648e-05
+870.2000000001296 6.198998580538964e-05
+870.3000000001297 6.197756612897763e-05
+870.4000000001297 6.196458647932423e-05
+870.5000000001297 6.195107626605978e-05
+870.6000000001297 6.193707319922588e-05
+870.7000000001298 6.192262326911128e-05
+870.8000000001298 6.1907780745568e-05
+870.9000000001298 6.189260816466718e-05
+871.0000000001298 6.187717631768551e-05
+871.1000000001299 6.185987638747417e-05
+871.2000000001299 6.184248463993073e-05
+871.3000000001299 6.182509656695978e-05
+871.4000000001299 6.180781586323292e-05
+871.50000000013 6.179075441652495e-05
+871.60000000013 6.177403484778924e-05
+871.70000000013 6.17573194394855e-05
+871.80000000013 6.174060734266116e-05
+871.90000000013 6.172389777175599e-05
+872.0000000001301 6.170719000458967e-05
+872.1000000001301 6.168960224726077e-05
+872.2000000001301 6.167201504091848e-05
+872.3000000001301 6.165442785353213e-05
+872.4000000001301 6.163684021617369e-05
+872.5000000001302 6.16192517230016e-05
+872.6000000001302 6.160165948934877e-05
+872.7000000001302 6.15840641495035e-05
+872.8000000001302 6.1566466333792e-05
+872.9000000001303 6.15488666721849e-05
+873.0000000001303 6.153126579385046e-05
+873.1000000001303 6.15152218347361e-05
+873.2000000001303 6.149917706053895e-05
+873.3000000001304 6.148313209901161e-05
+873.4000000001304 6.146708757743262e-05
+873.5000000001304 6.145104412247913e-05
+873.6000000001304 6.143475109272318e-05
+873.7000000001304 6.141829900000951e-05
+873.8000000001305 6.140177209111404e-05
+873.9000000001305 6.13852483504166e-05
+874.0000000001305 6.13687995066345e-05
+874.1000000001305 6.13503783955469e-05
+874.2000000001306 6.133215808298991e-05
+874.3000000001306 6.131419155122622e-05
+874.4000000001306 6.129652555226022e-05
+874.5000000001306 6.127920061758494e-05
+874.6000000001306 6.126225106713365e-05
+874.7000000001307 6.124570152473563e-05
+874.8000000001307 6.122957288992679e-05
+874.9000000001307 6.121387981626997e-05
+875.0000000001307 6.119863071915206e-05
+875.1000000001308 6.118556335096899e-05
+875.2000000001308 6.117293734601574e-05
+875.3000000001308 6.116074248731522e-05
+875.4000000001308 6.114896234626415e-05
+875.5000000001309 6.1137574287954e-05
+875.6000000001309 6.112654947598878e-05
+875.7000000001309 6.111585636349571e-05
+875.8000000001309 6.110545474752264e-05
+875.900000000131 6.109529829744322e-05
+876.000000000131 6.108533455916239e-05
+876.100000000131 6.107592925336002e-05
+876.200000000131 6.106659297801875e-05
+876.300000000131 6.105725493248579e-05
+876.4000000001311 6.104783820711881e-05
+876.5000000001311 6.103825978895053e-05
+876.6000000001311 6.102843056742868e-05
+876.7000000001311 6.101860034555767e-05
+876.8000000001311 6.100876912337271e-05
+876.9000000001312 6.099893690084525e-05
+877.0000000001312 6.098910367794303e-05
+877.1000000001312 6.097648139798165e-05
+877.2000000001312 6.0963858871429406e-05
+877.3000000001313 6.095123609837975e-05
+877.4000000001313 6.093861307886265e-05
+877.5000000001313 6.0925989812971546e-05
+877.6000000001313 6.0913366300736296e-05
+877.7000000001314 6.090074254218666e-05
+877.8000000001314 6.088811853735254e-05
+877.9000000001314 6.087549428632728e-05
+878.0000000001314 6.0862869789079026e-05
+878.1000000001314 6.085166317650432e-05
+878.2000000001315 6.0840455757721744e-05
+878.3000000001315 6.082924753279019e-05
+878.4000000001315 6.081803850164167e-05
+878.5000000001315 6.080682866439827e-05
+878.6000000001316 6.0795449661730366e-05
+878.7000000001316 6.0783961704666075e-05
+878.8000000001316 6.077242081457311e-05
+878.9000000001316 6.076087882647173e-05
+879.0000000001316 6.074938339257506e-05
+879.1000000001317 6.0737281905229715e-05
+879.2000000001317 6.0725309704865376e-05
+879.3000000001317 6.0713501915223e-05
+879.4000000001317 6.0701889492737116e-05
+879.5000000001318 6.0690499231302406e-05
+879.6000000001318 6.067935627582025e-05
+879.7000000001318 6.066847821190229e-05
+879.8000000001318 6.0657878538479154e-05
+879.9000000001319 6.064756667222572e-05
+880.0000000001319 6.063754795156339e-05
+880.1000000001319 6.062795291413553e-05
+880.2000000001319 6.061864943936951e-05
+880.300000000132 6.0609630654747265e-05
+880.400000000132 6.060088562332117e-05
+880.500000000132 6.0592399346793087e-05
+880.600000000132 6.058415276861861e-05
+880.700000000132 6.057612277640319e-05
+880.8000000001321 6.056828220456811e-05
+880.9000000001321 6.056059983706828e-05
+881.0000000001321 6.0553040409699486e-05
+881.1000000001321 6.054525890269893e-05
+881.2000000001321 6.0537517752849776e-05
+881.3000000001322 6.052976956713445e-05
+881.4000000001322 6.052196291640365e-05
+881.5000000001322 6.051404233827577e-05
+881.6000000001322 6.049368526376777e-05
+881.7000000001323 6.047332433687392e-05
+881.8000000001323 6.045296079470575e-05
+881.9000000001323 6.043259587260244e-05
+882.0000000001323 6.0412230804352725e-05
+882.1000000001324 6.0416408304051985e-05
+882.2000000001324 6.0420581212038886e-05
+882.3000000001324 6.042475075656516e-05
+882.4000000001324 6.042891816623354e-05
+882.5000000001324 6.0433084669727036e-05
+882.6000000001325 6.042501231417445e-05
+882.7000000001325 6.041694454114812e-05
+882.8000000001325 6.040887990195489e-05
+882.9000000001325 6.040081701047693e-05
+883.0000000001326 6.039275454280631e-05
+883.1000000001326 6.038394480110756e-05
+883.2000000001326 6.037513288924414e-05
+883.3000000001326 6.03663176702953e-05
+883.4000000001326 6.035749806922284e-05
+883.5000000001327 6.034867307338618e-05
+883.6000000001327 6.033975700311017e-05
+883.7000000001327 6.0330779268091346e-05
+883.8000000001327 6.032176723346554e-05
+883.9000000001328 6.0312746221261095e-05
+884.0000000001328 6.03037395119401e-05
+884.1000000001328 6.0294274202225076e-05
+884.2000000001328 6.0284863794629257e-05
+884.3000000001329 6.027552545411993e-05
+884.4000000001329 6.026627431096804e-05
+884.5000000001329 6.0257123462737195e-05
+884.6000000001329 6.024808397582436e-05
+884.700000000133 6.02391683254529e-05
+884.800000000133 6.023038453117441e-05
+884.900000000133 6.022173864771444e-05
+885.000000000133 6.021323476697892e-05
+885.100000000133 6.019353449265615e-05
+885.2000000001331 6.0173981270273304e-05
+885.3000000001331 6.0154573232791564e-05
+885.4000000001331 6.013530655944932e-05
+885.5000000001331 6.0116175479717425e-05
+885.6000000001332 6.009716979747019e-05
+885.7000000001332 6.007827388407772e-05
+885.8000000001332 6.0059474955285024e-05
+885.9000000001332 6.004075810871488e-05
+886.0000000001332 6.002210632693154e-05
+886.1000000001333 6.0012924033362434e-05
+886.2000000001333 6.000376420532553e-05
+886.3000000001333 5.999460350150513e-05
+886.4000000001333 5.998541646443393e-05
+886.5000000001334 5.9976175521982965e-05
+886.6000000001334 5.997902947315354e-05
+886.7000000001334 5.998188207533387e-05
+886.8000000001334 5.9984732717546624e-05
+886.9000000001334 5.9987580788576215e-05
+887.0000000001335 5.999042567733064e-05
+887.1000000001335 5.998192894556594e-05
+887.2000000001335 5.99734309710296e-05
+887.3000000001335 5.99649311430812e-05
+887.4000000001336 5.99564288513697e-05
+887.5000000001336 5.994792348581709e-05
+887.6000000001336 5.9927256343480816e-05
+887.7000000001336 5.990658836404644e-05
+887.8000000001337 5.98859189410233e-05
+887.9000000001337 5.9865247468855876e-05
+888.0000000001337 5.984457334293697e-05
+888.1000000001337 5.983586398360902e-05
+888.2000000001337 5.982714735306175e-05
+888.3000000001338 5.981842284490921e-05
+888.4000000001338 5.980968985332854e-05
+888.5000000001338 5.980094777296679e-05
+888.6000000001338 5.981704687605719e-05
+888.7000000001339 5.983349860816939e-05
+888.8000000001339 5.9850114065519885e-05
+888.9000000001339 5.986671827084748e-05
+889.0000000001339 5.9883150189083943e-05
+889.100000000134 5.9859449754514776e-05
+889.200000000134 5.9835309474682404e-05
+889.300000000134 5.981061138327163e-05
+889.400000000134 5.9785251817096104e-05
+889.500000000134 5.975914139127765e-05
+889.6000000001341 5.9744323498915965e-05
+889.7000000001341 5.9728608938842514e-05
+889.8000000001341 5.9711949438946264e-05
+889.9000000001341 5.969431081258907e-05
+890.0000000001342 5.967567294214587e-05
+890.1000000001342 5.964826757795479e-05
+890.2000000001342 5.961986876368843e-05
+890.3000000001342 5.959049885004526e-05
+890.4000000001342 5.9560194149730336e-05
+890.5000000001343 5.952900490074068e-05
+890.6000000001343 5.952116380485462e-05
+890.7000000001343 5.951256503520809e-05
+890.8000000001343 5.950329874565627e-05
+890.9000000001344 5.949346908300141e-05
+891.0000000001344 5.948319417223265e-05
+891.1000000001344 5.9448571335087995e-05
+891.2000000001344 5.941379933700645e-05
+891.3000000001344 5.937903814894409e-05
+891.4000000001345 5.9344461386114806e-05
+891.5000000001345 5.93102562730191e-05
+891.6000000001345 5.9276621166135875e-05
+891.7000000001345 5.9242991306906156e-05
+891.8000000001346 5.9209367304835644e-05
+891.9000000001346 5.9175749768055355e-05
+892.0000000001346 5.914213930342029e-05
+892.1000000001346 5.908892787024988e-05
+892.2000000001347 5.903574615654494e-05
+892.3000000001347 5.898259475629303e-05
+892.4000000001347 5.892947426149786e-05
+892.5000000001347 5.887638526180709e-05
+892.6000000001347 5.8775387572825456e-05
+892.7000000001348 5.8674469929475474e-05
+892.8000000001348 5.8573632891911536e-05
+892.9000000001348 5.8472877016251124e-05
+893.0000000001348 5.837220285482277e-05
+893.1000000001349 5.8312868905242116e-05
+893.2000000001349 5.82535704774413e-05
+893.3000000001349 5.819430814713775e-05
+893.4000000001349 5.813508248769943e-05
+893.500000000135 5.807589407039551e-05
+893.600000000135 5.80637622992097e-05
+893.700000000135 5.8051169837992815e-05
+893.800000000135 5.80383531757506e-05
+893.900000000135 5.802553106093539e-05
+894.0000000001351 5.8012904512532825e-05
+894.1000000001351 5.791222064234965e-05
+894.2000000001351 5.7812165753186826e-05
+894.3000000001351 5.7712884565406206e-05
+894.4000000001352 5.761450336382542e-05
+894.5000000001352 5.7517130156464286e-05
+894.6000000001352 5.734958359997569e-05
+894.7000000001352 5.7183269359199656e-05
+894.8000000001352 5.7018238136715806e-05
+894.9000000001353 5.6854522821063225e-05
+895.0000000001353 5.669213874088773e-05
+895.1000000001353 5.648886028862081e-05
+895.2000000001353 5.628688377508579e-05
+895.3000000001354 5.608617068814513e-05
+895.4000000001354 5.588666605871261e-05
+895.5000000001354 5.568829875884194e-05
+895.6000000001354 5.555021411042586e-05
+895.7000000001354 5.541306116724804e-05
+895.8000000001355 5.5276725377071496e-05
+895.9000000001355 5.5141076590870696e-05
+896.0000000001355 5.5005969261843996e-05
+896.1000000001355 5.4809999177355346e-05
+896.2000000001356 5.461425736855993e-05
+896.3000000001356 5.441855331757589e-05
+896.4000000001356 5.4222682839554625e-05
+896.5000000001356 5.402642838541096e-05
+896.6000000001357 5.3947894308929825e-05
+896.7000000001357 5.3869379042241484e-05
+896.8000000001357 5.379088203653012e-05
+896.9000000001357 5.371240274632542e-05
+897.0000000001357 5.363394063007492e-05
+897.1000000001358 5.375451360275073e-05
+897.2000000001358 5.387503738525273e-05
+897.3000000001358 5.399551140243888e-05
+897.4000000001358 5.411593507454462e-05
+897.5000000001359 5.4236307816943085e-05
+897.6000000001359 5.430937267746787e-05
+897.7000000001359 5.438240222803741e-05
+897.8000000001359 5.445539588856692e-05
+897.900000000136 5.452835307586394e-05
+898.000000000136 5.460127320267052e-05
+898.100000000136 5.414438321940515e-05
+898.200000000136 5.3687620345593493e-05
+898.300000000136 5.323098429128648e-05
+898.4000000001361 5.277447478534494e-05
+898.5000000001361 5.23180915746038e-05
+898.6000000001361 5.170906451331427e-05
+898.7000000001361 5.110055768192512e-05
+898.8000000001362 5.049237620628945e-05
+898.9000000001362 4.988434747476909e-05
+899.0000000001362 4.9276320308411245e-05
+899.1000000001362 4.9539186977088836e-05
+899.2000000001362 4.9801537850646765e-05
+899.3000000001363 5.006325283756535e-05
+899.4000000001363 5.032422305146094e-05
+899.5000000001363 5.058435116995372e-05
+899.6000000001363 5.096130181064459e-05
+899.7000000001364 5.133719215403358e-05
+899.8000000001364 5.171195372857825e-05
+899.9000000001364 5.208553070437871e-05
+900.0000000001364 5.245788040102097e-05
+900.1000000001364 5.230956361707271e-05
+900.2000000001365 5.216034059103048e-05
+900.3000000001365 5.201024035360808e-05
+900.4000000001365 5.185930567101654e-05
+900.5000000001365 5.170759283984188e-05
+900.6000000001366 5.173116347724008e-05
+900.7000000001366 5.175394141811965e-05
+900.8000000001366 5.177601701946104e-05
+900.9000000001366 5.179749465282339e-05
+901.0000000001367 5.181849272750372e-05
+901.1000000001367 5.192370425894779e-05
+901.2000000001367 5.202864196162688e-05
+901.3000000001367 5.2133466511401426e-05
+901.4000000001367 5.223835385776091e-05
+901.5000000001368 5.234349536441761e-05
+901.6000000001368 5.2297279004387665e-05
+901.7000000001368 5.225109158910192e-05
+901.8000000001368 5.220493238355232e-05
+901.9000000001369 5.2158800708402906e-05
+902.0000000001369 5.21126959390309e-05
+902.1000000001369 5.2016468568226176e-05
+902.2000000001369 5.192032011794671e-05
+902.300000000137 5.182425010183265e-05
+902.400000000137 5.1728258089119985e-05
+902.500000000137 5.163234370505681e-05
+902.600000000137 5.175734202935186e-05
+902.700000000137 5.188218974302601e-05
+902.8000000001371 5.2006886525035846e-05
+902.9000000001371 5.213143199829558e-05
+903.0000000001371 5.2255825729280674e-05
+903.1000000001371 5.263683017474096e-05
+903.2000000001372 5.301744783698262e-05
+903.3000000001372 5.339767806062834e-05
+903.4000000001372 5.3777520118121895e-05
+903.5000000001372 5.415697320723141e-05
+903.6000000001372 5.439709040445651e-05
+903.7000000001373 5.463685824805459e-05
+903.8000000001373 5.487632608086504e-05
+903.9000000001373 5.5115540498247955e-05
+904.0000000001373 5.535454526513529e-05
+904.1000000001374 5.5280992039674e-05
+904.2000000001374 5.520760721724116e-05
+904.3000000001374 5.513442295945968e-05
+904.4000000001374 5.506146762360772e-05
+904.5000000001374 5.4988765786963744e-05
+904.6000000001375 5.4904827827380736e-05
+904.7000000001375 5.482118597882294e-05
+904.8000000001375 5.473785165169075e-05
+904.9000000001375 5.465483246373823e-05
+905.0000000001376 5.4572132268662906e-05
+905.1000000001376 5.4546719406092345e-05
+905.2000000001376 5.452156990421595e-05
+905.3000000001376 5.449667729608832e-05
+905.4000000001377 5.447203141859928e-05
+905.5000000001377 5.4447618420110486e-05
+905.6000000001377 5.436613295761044e-05
+905.7000000001377 5.4284895263789464e-05
+905.8000000001377 5.420388082797167e-05
+905.9000000001378 5.4123061650894205e-05
+906.0000000001378 5.404240627053375e-05
+906.1000000001378 5.3743686166133526e-05
+906.2000000001378 5.3445255026709136e-05
+906.3000000001379 5.3147071153277644e-05
+906.4000000001379 5.284909022030259e-05
+906.5000000001379 5.255126537367398e-05
+906.6000000001379 5.2230734164667875e-05
+906.700000000138 5.1910474503347593e-05
+906.800000000138 5.159048637389462e-05
+906.900000000138 5.1270769760476384e-05
+907.000000000138 5.095132464774598e-05
+907.100000000138 5.082550481384241e-05
+907.2000000001381 5.069977960603984e-05
+907.3000000001381 5.057414902222124e-05
+907.4000000001381 5.044861306050563e-05
+907.5000000001381 5.0323171718930056e-05
+907.6000000001382 5.0265951428068194e-05
+907.7000000001382 5.020876302506137e-05
+907.8000000001382 5.015160650844481e-05
+907.9000000001382 5.009448187657419e-05
+908.0000000001382 5.003738912831702e-05
+908.1000000001383 5.005771243836226e-05
+908.2000000001383 5.007799281020006e-05
+908.3000000001383 5.0098230249674904e-05
+908.4000000001383 5.0118424762509484e-05
+908.5000000001384 5.013857635439063e-05
+908.6000000001384 5.013601764158696e-05
+908.7000000001384 5.013339474754759e-05
+908.8000000001384 5.013073038816146e-05
+908.9000000001384 5.012804559375241e-05
+909.0000000001385 5.012535970937008e-05
+909.1000000001385 5.0167979945330376e-05
+909.2000000001385 5.021058665446659e-05
+909.3000000001385 5.0253194310174973e-05
+909.4000000001386 5.02958157470306e-05
+909.5000000001386 5.0338462153531934e-05
+909.6000000001386 5.035865650260695e-05
+909.7000000001386 5.0378915285762266e-05
+909.8000000001387 5.039924455758696e-05
+909.9000000001387 5.0419648690261825e-05
+910.0000000001387 5.044013037000056e-05
+910.1000000001387 5.033756871940161e-05
+910.2000000001387 5.023520224360615e-05
+910.3000000001388 5.01330276864171e-05
+910.4000000001388 5.0031040135051745e-05
+910.5000000001388 4.992923303754818e-05
+910.6000000001388 5.00513916067565e-05
+910.7000000001389 5.017350444020734e-05
+910.8000000001389 5.029556122370197e-05
+910.9000000001389 5.041754984370581e-05
+911.0000000001389 5.053945636669326e-05
+911.100000000139 5.0583083371742236e-05
+911.200000000139 5.0626666263187836e-05
+911.300000000139 5.0670185530185576e-05
+911.400000000139 5.071361989306088e-05
+911.500000000139 5.075694629553377e-05
+911.6000000001391 5.0610794936608786e-05
+911.7000000001391 5.046475629148298e-05
+911.8000000001391 5.0318830370604926e-05
+911.9000000001391 5.017301718459509e-05
+912.0000000001392 5.0027316744559726e-05
+912.1000000001392 5.014907694904201e-05
+912.2000000001392 5.027070396896748e-05
+912.3000000001392 5.0392197786814245e-05
+912.4000000001392 5.0513558384944906e-05
+912.5000000001393 5.0634785744450004e-05
+912.6000000001393 5.033457722143573e-05
+912.7000000001393 5.003461896850245e-05
+912.8000000001393 4.973491101957635e-05
+912.9000000001394 4.9435453408414496e-05
+913.0000000001394 4.9136246168782636e-05
+913.1000000001394 4.8802602385512265e-05
+913.2000000001394 4.84692592009507e-05
+913.3000000001394 4.8136216637643054e-05
+913.4000000001395 4.7803474718191924e-05
+913.5000000001395 4.747103346668113e-05
+913.6000000001395 4.7712745928852675e-05
+913.7000000001395 4.795424115322645e-05
+913.8000000001396 4.819549791996701e-05
+913.9000000001396 4.843649619654119e-05
+914.0000000001396 4.8677217179754705e-05
+914.1000000001396 4.903696093987255e-05
+914.2000000001397 4.939624854984836e-05
+914.3000000001397 4.975506468040265e-05
+914.4000000001397 5.011339527767568e-05
+914.5000000001397 5.0471227623102426e-05
+914.6000000001397 5.033453433542135e-05
+914.7000000001398 5.019784948949782e-05
+914.8000000001398 5.0061168778863024e-05
+914.9000000001398 4.992448957744213e-05
+915.0000000001398 4.9787810915751665e-05
+915.1000000001399 4.922429427194912e-05
+915.2000000001399 4.866124637766819e-05
+915.3000000001399 4.80986740330478e-05
+915.4000000001399 4.753658544477228e-05
+915.50000000014 4.6974990137285334e-05
+915.60000000014 4.710175868889949e-05
+915.70000000014 4.722827875210563e-05
+915.80000000014 4.735455889401599e-05
+915.90000000014 4.7480609423682525e-05
+916.0000000001401 4.760644241481932e-05
+916.1000000001401 4.8124333305441605e-05
+916.2000000001401 4.8641600145147754e-05
+916.3000000001401 4.915826042206947e-05
+916.4000000001402 4.967433410195601e-05
+916.5000000001402 5.018984371425315e-05
+916.6000000001402 5.0194506960279245e-05
+916.7000000001402 5.019912935038367e-05
+916.8000000001402 5.0203710883859096e-05
+916.9000000001403 5.0208251560197814e-05
+917.0000000001403 5.0212751377762594e-05
+917.1000000001403 4.982611080840021e-05
+917.2000000001403 4.943988440356146e-05
+917.3000000001404 4.9054072252992274e-05
+917.4000000001404 4.866867444619285e-05
+917.5000000001404 4.8283691073049614e-05
+917.6000000001404 4.8115029914643905e-05
+917.7000000001404 4.7946532633688184e-05
+917.8000000001405 4.7778200043795414e-05
+917.9000000001405 4.761003299561045e-05
+918.0000000001405 4.7442032377314524e-05
+918.1000000001405 4.7707009330077186e-05
+918.2000000001406 4.7971672837378225e-05
+918.3000000001406 4.8236023970313395e-05
+918.4000000001406 4.8500063872225996e-05
+918.5000000001406 4.8763793760276034e-05
+918.6000000001407 4.903801889432023e-05
+918.7000000001407 4.9311964697905925e-05
+918.8000000001407 4.9585608450560084e-05
+918.9000000001407 4.985892858520208e-05
+919.0000000001407 5.01319047347898e-05
+919.1000000001408 5.0188617284015625e-05
+919.2000000001408 5.024517668626703e-05
+919.3000000001408 5.030156737839008e-05
+919.4000000001408 5.035777541938947e-05
+919.5000000001409 5.0413788499781784e-05
+919.6000000001409 5.038419692356329e-05
+919.7000000001409 5.035449293021515e-05
+919.8000000001409 5.0324671312288515e-05
+919.900000000141 5.029472856392065e-05
+920.000000000141 5.026466287660819e-05
+920.100000000141 5.0385778279165174e-05
+920.200000000141 5.050660327703064e-05
+920.300000000141 5.062714002975755e-05
+920.4000000001411 5.074739243332558e-05
+920.5000000001411 5.086736613982109e-05
+920.6000000001411 5.082786665818576e-05
+920.7000000001411 5.078828663306229e-05
+920.8000000001412 5.074863786766213e-05
+920.9000000001412 5.070893383300808e-05
+921.0000000001412 5.0669189661299726e-05
+921.1000000001412 5.050544902661807e-05
+921.2000000001412 5.034188479003693e-05
+921.3000000001413 5.017851693694312e-05
+921.4000000001413 5.001536687565859e-05
+921.5000000001413 4.9852457410877624e-05
+921.6000000001413 4.9805783126949385e-05
+921.7000000001414 4.975913217823231e-05
+921.8000000001414 4.971250559515739e-05
+921.9000000001414 4.9665904252918637e-05
+922.0000000001414 4.961932887202788e-05
+922.1000000001414 4.970098795991751e-05
+922.2000000001415 4.978249694871115e-05
+922.3000000001415 4.986385616461256e-05
+922.4000000001415 4.994506578317664e-05
+922.5000000001415 5.002612582732988e-05
+922.6000000001416 4.998140834229898e-05
+922.7000000001416 4.993671982011732e-05
+922.8000000001416 4.989205852903286e-05
+922.9000000001416 4.98474227939714e-05
+923.0000000001417 4.9802810996372944e-05
+923.1000000001417 4.972791063671989e-05
+923.2000000001417 4.965307111670352e-05
+923.3000000001417 4.957829097993217e-05
+923.4000000001417 4.950356882889387e-05
+923.5000000001418 4.9428903324697705e-05
+923.6000000001418 4.933376413900516e-05
+923.7000000001418 4.923887861272776e-05
+923.8000000001418 4.914415541816647e-05
+923.9000000001419 4.904951056222377e-05
+924.0000000001419 4.8954867321388286e-05
+924.1000000001419 4.8871482093201324e-05
+924.2000000001419 4.8787948549428774e-05
+924.300000000142 4.870421121108214e-05
+924.400000000142 4.862022156948548e-05
+924.500000000142 4.853593803143551e-05
+924.600000000142 4.849264494452488e-05
+924.700000000142 4.844894137972879e-05
+924.8000000001421 4.840480796162205e-05
+924.9000000001421 4.836023194500274e-05
+925.0000000001421 4.831520718763198e-05
+925.1000000001421 4.8340420581759e-05
+925.2000000001422 4.836508480598731e-05
+925.3000000001422 4.838921141307112e-05
+925.4000000001422 4.841281855672782e-05
+925.5000000001422 4.84359310080465e-05
+925.6000000001422 4.8438074948111166e-05
+925.7000000001423 4.8439819854513734e-05
+925.8000000001423 4.8441207687484987e-05
+925.9000000001423 4.84422868973037e-05
+926.0000000001423 4.844311242485241e-05
+926.1000000001424 4.842184364707984e-05
+926.2000000001424 4.8400484957123224e-05
+926.3000000001424 4.837911074995626e-05
+926.4000000001424 4.8357801769206295e-05
+926.5000000001424 4.83366450953025e-05
+926.6000000001425 4.8346234492609975e-05
+926.7000000001425 4.835575125627846e-05
+926.8000000001425 4.836519527771662e-05
+926.9000000001425 4.837456634942834e-05
+927.0000000001426 4.838386416403869e-05
+927.1000000001426 4.80893717926184e-05
+927.2000000001426 4.7795325170898914e-05
+927.3000000001426 4.7501723471741274e-05
+927.4000000001427 4.7208565787092415e-05
+927.5000000001427 4.691585113053298e-05
+927.6000000001427 4.6522772629496975e-05
+927.7000000001427 4.613031453950683e-05
+927.8000000001427 4.5738476359920444e-05
+927.9000000001428 4.53472576419891e-05
+928.0000000001428 4.4956657987787114e-05
+928.1000000001428 4.485595931328784e-05
+928.2000000001428 4.475538525022358e-05
+928.3000000001429 4.465493579649283e-05
+928.4000000001429 4.4554610995022427e-05
+928.5000000001429 4.4454410933098074e-05
+928.6000000001429 4.43046771250078e-05
+928.700000000143 4.415534706075563e-05
+928.800000000143 4.400631877436824e-05
+928.900000000143 4.3857498978187725e-05
+929.000000000143 4.3708802935507364e-05
+929.100000000143 4.3473427407455065e-05
+929.2000000001431 4.32381625564041e-05
+929.3000000001431 4.3002950287503445e-05
+929.4000000001431 4.276774099541177e-05
+929.5000000001431 4.253249336758957e-05
+929.6000000001432 4.211887054166407e-05
+929.7000000001432 4.170546814287873e-05
+929.8000000001432 4.129227573729803e-05
+929.9000000001432 4.087929063984984e-05
+930.0000000001432 4.046651756898806e-05
+930.1000000001433 4.009392585250681e-05
+930.2000000001433 3.972149125986846e-05
+930.3000000001433 3.934923735370697e-05
+930.4000000001433 3.897719380336783e-05
+930.5000000001434 3.860539607708399e-05
+930.6000000001434 3.8243700345605375e-05
+930.7000000001434 3.7882316925944954e-05
+930.8000000001434 3.752129551201328e-05
+930.9000000001435 3.716069046989022e-05
+931.0000000001435 3.6800560543265416e-05
+931.1000000001435 3.639927228947097e-05
+931.2000000001435 3.599872604003622e-05
+931.3000000001435 3.559899169091641e-05
+931.4000000001436 3.520014201080503e-05
+931.5000000001436 3.4802252323800475e-05
+931.6000000001436 3.4084940633931796e-05
+931.7000000001436 3.3369115797861566e-05
+931.8000000001437 3.265477727167855e-05
+931.9000000001437 3.194192439666685e-05
+932.0000000001437 3.123055640803229e-05
+932.1000000001437 3.0945491528109775e-05
+932.2000000001437 3.066099170500813e-05
+932.3000000001438 3.0377056696129187e-05
+932.4000000001438 3.009368618938644e-05
+932.5000000001438 2.9810879806887857e-05
+932.6000000001438 2.9836028190040285e-05
+932.7000000001439 2.9861071917336145e-05
+932.8000000001439 2.9886011096643703e-05
+932.9000000001439 2.9910845835640728e-05
+933.0000000001439 2.9935576241121467e-05
+933.100000000144 2.972082295635342e-05
+933.200000000144 2.9506495255188996e-05
+933.300000000144 2.9292592715337467e-05
+933.400000000144 2.9079114914895034e-05
+933.500000000144 2.8866061430748954e-05
+933.6000000001441 2.8159289793404147e-05
+933.7000000001441 2.745397226880578e-05
+933.8000000001441 2.675014969196571e-05
+933.9000000001441 2.604785634694827e-05
+934.0000000001442 2.5347120348200203e-05
+934.1000000001442 2.5072618051091276e-05
+934.2000000001442 2.479877169346122e-05
+934.3000000001442 2.4525599071862148e-05
+934.4000000001442 2.4253114558271218e-05
+934.5000000001443 2.39813292472287e-05
+934.6000000001443 2.4724794319688613e-05
+934.7000000001443 2.546671550836012e-05
+934.8000000001443 2.6207118401959036e-05
+934.9000000001444 2.6946026875800877e-05
+935.0000000001444 2.768346270882629e-05
+935.1000000001444 2.7890247275510908e-05
+935.2000000001444 2.8096794110150494e-05
+935.3000000001445 2.8303104001464524e-05
+935.4000000001445 2.8509174700977928e-05
+935.5000000001445 2.8715000816239144e-05
+935.6000000001445 2.8455613908799103e-05
+935.7000000001445 2.819682765698863e-05
+935.8000000001446 2.793861852399266e-05
+935.9000000001446 2.768096086446836e-05
+936.0000000001446 2.742382705200403e-05
+936.1000000001446 2.7498080563646998e-05
+936.2000000001447 2.757217164857348e-05
+936.3000000001447 2.764606771243685e-05
+936.4000000001447 2.7719732971224192e-05
+936.5000000001447 2.7793128413774995e-05
+936.6000000001447 2.7617569596021035e-05
+936.7000000001448 2.7442318990709135e-05
+936.8000000001448 2.7267376743332943e-05
+936.9000000001448 2.709274299204009e-05
+937.0000000001448 2.6918417869179687e-05
+937.1000000001449 2.7174029588699866e-05
+937.2000000001449 2.742905293645398e-05
+937.3000000001449 2.768348856065146e-05
+937.4000000001449 2.793733712000163e-05
+937.500000000145 2.8190599283268578e-05
+937.600000000145 2.8270118974163284e-05
+937.700000000145 2.834942046843628e-05
+937.800000000145 2.8428504212597424e-05
+937.900000000145 2.8507370656558713e-05
+938.0000000001451 2.8586020253407045e-05
+938.1000000001451 2.868278974456028e-05
+938.2000000001451 2.8779306146154963e-05
+938.3000000001451 2.887556994489993e-05
+938.4000000001452 2.8971581631446945e-05
+938.5000000001452 2.9067341702345037e-05
+938.6000000001452 2.9820726720670263e-05
+938.7000000001452 3.057217741977841e-05
+938.8000000001452 3.1321817261126924e-05
+938.9000000001453 3.206977259025588e-05
+939.0000000001453 3.281617130060918e-05
+939.1000000001453 3.3595176742137005e-05
+939.2000000001453 3.437271811835449e-05
+939.3000000001454 3.5148921706262755e-05
+939.4000000001454 3.5923910419388846e-05
+939.5000000001454 3.669780245873504e-05
+939.6000000001454 3.654308470422277e-05
+939.7000000001455 3.63894105840056e-05
+939.8000000001455 3.623681288476956e-05
+939.9000000001455 3.6085311601174975e-05
+940.0000000001455 3.5934914194503124e-05
+940.1000000001455 3.546999160054962e-05
+940.2000000001456 3.50066373750681e-05
+940.3000000001456 3.454480073924497e-05
+940.4000000001456 3.4084420505182786e-05
+940.5000000001456 3.3625425841462926e-05
+940.6000000001457 3.357448472489428e-05
+940.7000000001457 3.352418428913777e-05
+940.8000000001457 3.3474448993167426e-05
+940.9000000001457 3.342519246751879e-05
+941.0000000001457 3.337631759116985e-05
+941.1000000001458 3.359960813481827e-05
+941.2000000001458 3.3822675942668234e-05
+941.3000000001458 3.404539192929632e-05
+941.4000000001458 3.4267612010664114e-05
+941.5000000001459 3.448917674649386e-05
+941.6000000001459 3.44113703255256e-05
+941.7000000001459 3.4333638110118996e-05
+941.8000000001459 3.425597975120155e-05
+941.900000000146 3.417839490318396e-05
+942.000000000146 3.410088322208582e-05
+942.100000000146 3.3425974119536234e-05
+942.200000000146 3.275211103100207e-05
+942.300000000146 3.207929369349015e-05
+942.4000000001461 3.140752187194813e-05
+942.5000000001461 3.07367953597793e-05
+942.6000000001461 3.023265299318722e-05
+942.7000000001461 2.972928659478745e-05
+942.8000000001462 2.9226695992148887e-05
+942.9000000001462 2.872488103316405e-05
+943.0000000001462 2.8223841588650993e-05
+943.1000000001462 2.857432255966966e-05
+943.2000000001462 2.8924199663877316e-05
+943.3000000001463 2.9273472422226446e-05
+943.4000000001463 2.9622140341467745e-05
+943.5000000001463 2.997020291214075e-05
+943.6000000001463 2.963470489227323e-05
+943.7000000001464 2.9299580426160113e-05
+943.8000000001464 2.8964900043601595e-05
+943.9000000001464 2.863072642480691e-05
+944.0000000001464 2.829711469118662e-05
+944.1000000001465 2.799940336707435e-05
+944.2000000001465 2.7702268341970846e-05
+944.3000000001465 2.7405744536490606e-05
+944.4000000001465 2.710986064405645e-05
+944.5000000001465 2.6814639389228108e-05
+944.6000000001466 2.749755784490043e-05
+944.7000000001466 2.8179713604248367e-05
+944.8000000001466 2.88611458573735e-05
+944.9000000001466 2.9541890376521234e-05
+945.0000000001467 3.0221978932283974e-05
+945.1000000001467 3.0321126829249844e-05
+945.2000000001467 3.0420469247819855e-05
+945.3000000001467 3.052000242613089e-05
+945.4000000001467 3.0619717295041234e-05
+945.5000000001468 3.071959939302942e-05
+945.6000000001468 3.030015154074665e-05
+945.7000000001468 2.9881467555189858e-05
+945.8000000001468 2.9463503490621204e-05
+945.9000000001469 2.904621242328692e-05
+946.0000000001469 2.8629544796958814e-05
+946.1000000001469 2.8763964730373623e-05
+946.2000000001469 2.8898233765462557e-05
+946.300000000147 2.9032295803480532e-05
+946.400000000147 2.916608881663725e-05
+946.500000000147 2.929954474337144e-05
+946.600000000147 2.9678000753961485e-05
+946.700000000147 3.0055919360680497e-05
+946.8000000001471 3.0433299823031065e-05
+946.9000000001471 3.0810141358413335e-05
+947.0000000001471 3.118644313931507e-05
+947.1000000001471 3.1114471841038464e-05
+947.2000000001472 3.104255539066832e-05
+947.3000000001472 3.097069349716093e-05
+947.4000000001472 3.089888584101621e-05
+947.5000000001472 3.082713207308538e-05
+947.6000000001472 3.0276322885309787e-05
+947.7000000001473 2.9726232299319683e-05
+947.8000000001473 2.9176861481912302e-05
+947.9000000001473 2.8628211591893147e-05
+948.0000000001473 2.8080283779818558e-05
+948.1000000001474 2.8286107071482526e-05
+948.2000000001474 2.849159366025763e-05
+948.3000000001474 2.8696743961658687e-05
+948.4000000001474 2.8901558438768643e-05
+948.5000000001475 2.910603760472994e-05
+948.6000000001475 2.9852693970775723e-05
+948.7000000001475 3.0598250277232736e-05
+948.8000000001475 3.134269356673355e-05
+948.9000000001475 3.2086010561315654e-05
+949.0000000001476 3.282818778250406e-05
+949.1000000001476 3.239922649637505e-05
+949.2000000001476 3.197075172177382e-05
+949.3000000001476 3.1542756123692735e-05
+949.4000000001477 3.111523385720892e-05
+949.5000000001477 3.0688180496668544e-05
+949.6000000001477 3.008753285647823e-05
+949.7000000001477 2.9487583967271614e-05
+949.8000000001477 2.888833505731269e-05
+949.9000000001478 2.828978855158964e-05
+950.0000000001478 2.7691947975104427e-05
+950.1000000001478 2.8094846358831508e-05
+950.2000000001478 2.849710390973488e-05
+950.3000000001479 2.8898718629572076e-05
+950.4000000001479 2.9299689571108722e-05
+950.5000000001479 2.9700016904456452e-05
+950.6000000001479 3.0429021650436072e-05
+950.700000000148 3.115693797593949e-05
+950.800000000148 3.188376740581278e-05
+950.900000000148 3.260951315997674e-05
+951.000000000148 3.333418027106148e-05
+951.100000000148 3.320059121491232e-05
+951.2000000001481 3.306715084831985e-05
+951.3000000001481 3.2933871593260494e-05
+951.4000000001481 3.280076678275953e-05
+951.5000000001481 3.2667850636727334e-05
+951.6000000001482 3.184064000006011e-05
+951.7000000001482 3.1014716565256084e-05
+951.8000000001482 3.0190081633680187e-05
+951.9000000001482 2.9366736472511624e-05
+952.0000000001482 2.8544682316303443e-05
+952.1000000001483 2.8318723654842744e-05
+952.2000000001483 2.8093075733910808e-05
+952.3000000001483 2.786773906774763e-05
+952.4000000001483 2.7642714161433604e-05
+952.5000000001484 2.7418001512622046e-05
+952.6000000001484 2.7833926681368677e-05
+952.7000000001484 2.8249146449537745e-05
+952.8000000001484 2.866366104792681e-05
+952.9000000001485 2.9077470717122808e-05
+953.0000000001485 2.9490575705102867e-05
+953.1000000001485 2.974269437445188e-05
+953.2000000001485 2.9994386027559132e-05
+953.3000000001485 3.0245650951589563e-05
+953.4000000001486 3.049648942099862e-05
+953.5000000001486 3.0746901695585054e-05
+953.6000000001486 3.079590431728784e-05
+953.7000000001486 3.084484227914229e-05
+953.8000000001487 3.0893687011040854e-05
+953.9000000001487 3.094241182982944e-05
+954.0000000001487 3.099099195514524e-05
+954.1000000001487 3.087110376347637e-05
+954.2000000001487 3.075128568703871e-05
+954.3000000001488 3.0631520322461466e-05
+954.4000000001488 3.051179258786987e-05
+954.5000000001488 3.0392089681818947e-05
+954.6000000001488 3.0416059999779184e-05
+954.7000000001489 3.043980950450266e-05
+954.8000000001489 3.0463330747244787e-05
+954.9000000001489 3.048661829268247e-05
+955.0000000001489 3.0509668726008344e-05
+955.100000000149 3.0373272835909083e-05
+955.200000000149 3.0236902435816246e-05
+955.300000000149 3.0100562657183723e-05
+955.400000000149 2.9964260567181472e-05
+955.500000000149 2.9828005122617597e-05
+955.6000000001491 2.968389265512869e-05
+955.7000000001491 2.95398662542837e-05
+955.8000000001491 2.9395940411287612e-05
+955.9000000001491 2.9252131367708453e-05
+956.0000000001492 2.91084570665045e-05
+956.1000000001492 2.912040699461465e-05
+956.2000000001492 2.9132255931388544e-05
+956.3000000001492 2.914402652225642e-05
+956.4000000001492 2.91557434453453e-05
+956.5000000001493 2.916743341438359e-05
+956.6000000001493 2.9218344432475824e-05
+956.7000000001493 2.9269101629235776e-05
+956.8000000001493 2.931970466196142e-05
+956.9000000001494 2.937015318585972e-05
+957.0000000001494 2.9420446855395066e-05
+957.1000000001494 2.987728954074161e-05
+957.2000000001494 3.0333226848639038e-05
+957.3000000001495 3.078825799728451e-05
+957.4000000001495 3.12423821865341e-05
+957.5000000001495 3.169559859694998e-05
+957.6000000001495 3.171273883471003e-05
+957.7000000001495 3.172978124486725e-05
+957.8000000001496 3.174672643456795e-05
+957.9000000001496 3.1763575012268236e-05
+958.0000000001496 3.178032758687687e-05
+958.1000000001496 3.152937388056085e-05
+958.2000000001497 3.1278783140182756e-05
+958.3000000001497 3.1028556279487224e-05
+958.4000000001497 3.077869419172866e-05
+958.5000000001497 3.052919775010026e-05
+958.6000000001497 3.0303219260495476e-05
+958.7000000001498 3.007759400482988e-05
+958.8000000001498 2.985230768286947e-05
+958.9000000001498 2.9627347418079784e-05
+959.0000000001498 2.9402701717631e-05
+959.1000000001499 2.9230387425150195e-05
+959.2000000001499 2.9058298260784443e-05
+959.3000000001499 2.888642630838156e-05
+959.4000000001499 2.8714764824263e-05
+959.50000000015 2.8543308208619146e-05
+959.60000000015 2.8761439964760744e-05
+959.70000000015 2.897904999346217e-05
+959.80000000015 2.9196133698553384e-05
+959.90000000015 2.9412687335674984e-05
+960.0000000001501 2.9628708046845982e-05
+960.1000000001501 2.9834042115443124e-05
+960.2000000001501 3.0038818080467575e-05
+960.3000000001501 3.0243036116425712e-05
+960.4000000001502 3.0446697416673555e-05
+960.5000000001502 3.064980422511455e-05
+960.6000000001502 3.077676242122236e-05
+960.7000000001502 3.090333467768122e-05
+960.8000000001502 3.102952667244299e-05
+960.9000000001503 3.115534527184255e-05
+961.0000000001503 3.1280798551532366e-05
+961.1000000001503 3.140996627596656e-05
+961.2000000001503 3.153882002681616e-05
+961.3000000001504 3.166737148620862e-05
+961.4000000001504 3.179563363400948e-05
+961.5000000001504 3.192362076764776e-05
+961.6000000001504 3.173689809998011e-05
+961.7000000001505 3.155045144113883e-05
+961.8000000001505 3.1364280805735604e-05
+961.9000000001505 3.1178386181600585e-05
+962.0000000001505 3.099276753008785e-05
+962.1000000001505 3.067048938261498e-05
+962.2000000001506 3.034879673550691e-05
+962.3000000001506 3.0027689503724765e-05
+962.4000000001506 2.9707167586692528e-05
+962.5000000001506 2.9387230871278423e-05
+962.6000000001507 2.9601642888124897e-05
+962.7000000001507 2.981554360578607e-05
+962.8000000001507 3.002893335004675e-05
+962.9000000001507 3.024181249188852e-05
+963.0000000001507 3.04541814487528e-05
+963.1000000001508 3.066822737004159e-05
+963.2000000001508 3.088179458152868e-05
+963.3000000001508 3.109488354388811e-05
+963.4000000001508 3.130749476808612e-05
+963.5000000001509 3.151962881552522e-05
+963.6000000001509 3.140836451093303e-05
+963.7000000001509 3.129727504816905e-05
+963.8000000001509 3.118634580737392e-05
+963.900000000151 3.107556339105562e-05
+964.000000000151 3.0964915605203015e-05
+964.100000000151 3.093794260008389e-05
+964.200000000151 3.091091729369956e-05
+964.300000000151 3.088383056892648e-05
+964.4000000001511 3.08566743499125e-05
+964.5000000001511 3.0829441598225644e-05
+964.6000000001511 3.091107039894829e-05
+964.7000000001511 3.09923682963344e-05
+964.8000000001512 3.107333107598662e-05
+964.9000000001512 3.1153955538701744e-05
+965.0000000001512 3.123423951442974e-05
+965.1000000001512 3.1380412584253276e-05
+965.2000000001512 3.152610821635677e-05
+965.3000000001513 3.1671326905460305e-05
+965.4000000001513 3.181607025287623e-05
+965.5000000001513 3.196034098941852e-05
+965.6000000001513 3.1795309884751726e-05
+965.7000000001514 3.163050716657989e-05
+965.8000000001514 3.146594110224923e-05
+965.9000000001514 3.130162082430587e-05
+966.0000000001514 3.113755630385605e-05
+966.1000000001515 3.085626326808452e-05
+966.2000000001515 3.0575450305279235e-05
+966.3000000001515 3.02951299996388e-05
+966.4000000001515 3.0015315469966397e-05
+966.5000000001515 2.97360203272977e-05
+966.6000000001516 2.9833916031902493e-05
+966.7000000001516 2.9931544440146736e-05
+966.8000000001516 3.002890470742909e-05
+966.9000000001516 3.0125996010350236e-05
+967.0000000001517 3.0222817548385096e-05
+967.1000000001517 3.0671122111263096e-05
+967.2000000001517 3.1118385104429156e-05
+967.3000000001517 3.1564605600548595e-05
+967.4000000001517 3.200978267131405e-05
+967.5000000001518 3.245391538884778e-05
+967.6000000001518 3.2580550263466435e-05
+967.7000000001518 3.270682454325908e-05
+967.8000000001518 3.2832737630273736e-05
+967.9000000001519 3.29582889534895e-05
+968.0000000001519 3.3083477968582134e-05
+968.1000000001519 3.291041545770806e-05
+968.2000000001519 3.2737671730509814e-05
+968.300000000152 3.2565246574979385e-05
+968.400000000152 3.239313981785775e-05
+968.500000000152 3.2221351324456955e-05
+968.600000000152 3.227234621515783e-05
+968.700000000152 3.232314306570713e-05
+968.8000000001521 3.2373728599867976e-05
+968.9000000001521 3.242409054918223e-05
+969.0000000001521 3.2474217662339664e-05
+969.1000000001521 3.252743189243497e-05
+969.2000000001522 3.258040249096651e-05
+969.3000000001522 3.2633121233535916e-05
+969.4000000001522 3.268558094583903e-05
+969.5000000001522 3.273777551240378e-05
+969.6000000001522 3.263169649105952e-05
+969.7000000001523 3.2525703243755876e-05
+969.8000000001523 3.241979196759154e-05
+969.9000000001523 3.231396000366082e-05
+970.0000000001523 3.220820581933221e-05
+970.1000000001524 3.214514118495591e-05
+970.2000000001524 3.208205246761297e-05
+970.3000000001524 3.20189410982028e-05
+970.4000000001524 3.195580957435164e-05
+970.5000000001525 3.189266145005922e-05
+970.6000000001525 3.1938178156999087e-05
+970.7000000001525 3.1983440758783334e-05
+970.8000000001525 3.202845615769861e-05
+970.9000000001525 3.2073232311814394e-05
+971.0000000001526 3.211777824097645e-05
+971.1000000001526 3.200979466163271e-05
+971.2000000001526 3.1901968988146074e-05
+971.3000000001526 3.179431355111247e-05
+971.4000000001527 3.1686841516223845e-05
+971.5000000001527 3.1579566867908154e-05
+971.6000000001527 3.151276902695496e-05
+971.7000000001527 3.144604216757039e-05
+971.8000000001527 3.1379386484804486e-05
+971.9000000001528 3.1312802203682775e-05
+972.0000000001528 3.124628957923331e-05
+972.1000000001528 3.119203727814966e-05
+972.2000000001528 3.1137825339707904e-05
+972.3000000001529 3.108365411078855e-05
+972.4000000001529 3.102952396738684e-05
+972.5000000001529 3.097543531406809e-05
+972.6000000001529 3.0855147394080626e-05
+972.700000000153 3.0735073042121e-05
+972.800000000153 3.0615211708236104e-05
+972.900000000153 3.049556281953096e-05
+973.000000000153 3.037612578081979e-05
+973.100000000153 3.028578639002972e-05
+973.2000000001531 3.0195572372524276e-05
+973.3000000001531 3.0105483102793457e-05
+973.4000000001531 3.0015517932625732e-05
+973.5000000001531 2.992567619172313e-05
+973.6000000001532 2.9868657708832373e-05
+973.7000000001532 2.9811682800793702e-05
+973.8000000001532 2.975475168198089e-05
+973.9000000001532 2.96978645955544e-05
+974.0000000001532 2.964102181281457e-05
+974.1000000001533 2.9546622081321302e-05
+974.2000000001533 2.945235651158311e-05
+974.3000000001533 2.935822549442851e-05
+974.4000000001533 2.9264229446036724e-05
+974.5000000001534 2.9170368807407947e-05
+974.6000000001534 2.907664284282555e-05
+974.7000000001534 2.8983050826496078e-05
+974.8000000001534 2.888959320671001e-05
+974.9000000001535 2.8796270397255297e-05
+975.0000000001535 2.8703082778167567e-05
+975.1000000001535 2.8690696002154474e-05
+975.2000000001535 2.8678241903891092e-05
+975.3000000001535 2.8665720730774565e-05
+975.4000000001536 2.865313270055563e-05
+975.5000000001536 2.8640478001352967e-05
+975.6000000001536 2.8576740653022785e-05
+975.7000000001536 2.8513074805059123e-05
+975.8000000001537 2.8449479754304854e-05
+975.9000000001537 2.8385954832711517e-05
+976.0000000001537 2.8322499407102282e-05
+976.1000000001537 2.834822996542518e-05
+976.2000000001538 2.8373792756035768e-05
+976.3000000001538 2.8399187247771694e-05
+976.4000000001538 2.8424412936538663e-05
+976.5000000001538 2.8449469345837072e-05
+976.6000000001538 2.858762418210943e-05
+976.7000000001539 2.8725305546754324e-05
+976.8000000001539 2.8862513021743308e-05
+976.9000000001539 2.8999246211478636e-05
+977.0000000001539 2.9135504743057766e-05
+977.100000000154 2.9180254124783267e-05
+977.200000000154 2.9224787199291524e-05
+977.300000000154 2.9269103624836065e-05
+977.400000000154 2.931320308812054e-05
+977.500000000154 2.935708530419199e-05
+977.6000000001541 2.9257875949008787e-05
+977.7000000001541 2.9158811358840568e-05
+977.8000000001541 2.9059892411008813e-05
+977.9000000001541 2.8961120001565064e-05
+978.0000000001542 2.8862495044841348e-05
+978.1000000001542 2.8794027558960396e-05
+978.2000000001542 2.8725634849946657e-05
+978.3000000001542 2.8657317853480817e-05
+978.4000000001543 2.8589077525613577e-05
+978.5000000001543 2.8520914842478683e-05
+978.6000000001543 2.8477359100473687e-05
+978.7000000001543 2.8433815310178068e-05
+978.8000000001543 2.8390283568003274e-05
+978.9000000001544 2.8346763940926756e-05
+979.0000000001544 2.8303256466589095e-05
+979.1000000001544 2.82386324077049e-05
+979.2000000001544 2.8174083324689896e-05
+979.3000000001545 2.8109609152196588e-05
+979.4000000001545 2.8045209796766917e-05
+979.5000000001545 2.798088513741816e-05
+979.6000000001545 2.7983159646159685e-05
+979.7000000001545 2.7985317049902768e-05
+979.8000000001546 2.7987357564423184e-05
+979.9000000001546 2.7989281348551823e-05
+980.0000000001546 2.7991088504124673e-05
+980.1000000001546 2.7995596868882158e-05
+980.2000000001547 2.7999987489242934e-05
+980.3000000001547 2.8004260252186895e-05
+980.4000000001547 2.8008414987633453e-05
+980.5000000001547 2.8012451468634523e-05
+980.6000000001548 2.8123736998976097e-05
+980.7000000001548 2.823461631270156e-05
+980.8000000001548 2.8345088671756363e-05
+980.9000000001548 2.845515335627897e-05
+981.0000000001548 2.856480966485929e-05
+981.1000000001549 2.85753354229864e-05
+981.2000000001549 2.8585728985927695e-05
+981.3000000001549 2.8595989765165067e-05
+981.4000000001549 2.860611720055054e-05
+981.500000000155 2.8616110760110714e-05
+981.600000000155 2.854944329488251e-05
+981.700000000155 2.8482838933631544e-05
+981.800000000155 2.8416298122538592e-05
+981.900000000155 2.834982127517746e-05
+982.0000000001551 2.8283408772988457e-05
+982.1000000001551 2.8200737116670325e-05
+982.2000000001551 2.8118185684627644e-05
+982.3000000001551 2.8035754732153952e-05
+982.4000000001552 2.7953444483264334e-05
+982.5000000001552 2.787125513105921e-05
+982.6000000001552 2.7824011528927745e-05
+982.7000000001552 2.7776787726485413e-05
+982.8000000001553 2.7729583900424866e-05
+982.9000000001553 2.7682400254330422e-05
+983.0000000001553 2.763523701878238e-05
+983.1000000001553 2.7675773494935716e-05
+983.2000000001553 2.7716077449638415e-05
+983.3000000001554 2.77561492145136e-05
+983.4000000001554 2.779598915108325e-05
+983.5000000001554 2.783559765104456e-05
+983.6000000001554 2.7846455486323576e-05
+983.7000000001555 2.7857212185812677e-05
+983.8000000001555 2.7867842065538662e-05
+983.9000000001555 2.7878321246584923e-05
+984.0000000001555 2.788862765950213e-05
+984.1000000001555 2.7822230221861834e-05
+984.2000000001556 2.7755841056212167e-05
+984.3000000001556 2.7689444209583046e-05
+984.4000000001556 2.7623025713556392e-05
+984.5000000001556 2.7556573561878752e-05
+984.6000000001557 2.748443983258525e-05
+984.7000000001557 2.741227383411869e-05
+984.8000000001557 2.734006991102142e-05
+984.9000000001557 2.7267824363164386e-05
+985.0000000001558 2.7195535421125543e-05
+985.1000000001558 2.718854237624473e-05
+985.2000000001558 2.7181316705366416e-05
+985.3000000001558 2.7173861331705885e-05
+985.4000000001558 2.7166181059115492e-05
+985.5000000001559 2.715828256933595e-05
+985.6000000001559 2.716684235971123e-05
+985.7000000001559 2.7175148842546554e-05
+985.8000000001559 2.7183214446248276e-05
+985.900000000156 2.7191053416880254e-05
+986.000000000156 2.7198681819701084e-05
+986.100000000156 2.7166712601031254e-05
+986.200000000156 2.713469427228094e-05
+986.300000000156 2.7102648358883836e-05
+986.4000000001561 2.7070598076550473e-05
+986.5000000001561 2.7038568320805243e-05
+986.6000000001561 2.6984706916829325e-05
+986.7000000001561 2.6930890175387444e-05
+986.8000000001562 2.6877117698810798e-05
+986.9000000001562 2.682338911969801e-05
+987.0000000001562 2.6769704100611512e-05
+987.1000000001562 2.6717410765246783e-05
+987.2000000001563 2.6665153019171135e-05
+987.3000000001563 2.661293062132031e-05
+987.4000000001563 2.6560743359473094e-05
+987.5000000001563 2.6508591049935016e-05
+987.6000000001563 2.647801241851717e-05
+987.7000000001564 2.6447398950071684e-05
+987.8000000001564 2.6416750474278227e-05
+987.9000000001564 2.6386066794717955e-05
+988.0000000001564 2.6355347689215324e-05
+988.1000000001565 2.6336611045767146e-05
+988.2000000001565 2.631780494738773e-05
+988.3000000001565 2.629892908701267e-05
+988.4000000001565 2.6279983131766152e-05
+988.5000000001565 2.626096672305828e-05
+988.6000000001566 2.622063387384858e-05
+988.7000000001566 2.6180275124937243e-05
+988.8000000001566 2.6139902880303757e-05
+988.9000000001566 2.6099528618550217e-05
+989.0000000001567 2.605916289921659e-05
+989.1000000001567 2.600989213095547e-05
+989.2000000001567 2.5960675676933243e-05
+989.3000000001567 2.591152133579406e-05
+989.4000000001568 2.5862436004002864e-05
+989.5000000001568 2.5813425683772474e-05
+989.6000000001568 2.5759278950358335e-05
+989.7000000001568 2.5705231318536698e-05
+989.8000000001568 2.5651285270731905e-05
+989.9000000001569 2.559744238044019e-05
+990.0000000001569 2.5543703321536325e-05
+990.1000000001569 2.550712664890985e-05
+990.2000000001569 2.5470597745327744e-05
+990.300000000157 2.543411477021692e-05
+990.400000000157 2.5397675012987743e-05
+990.500000000157 2.5361274899394162e-05
+990.600000000157 2.5330040652132962e-05
+990.700000000157 2.529882097942517e-05
+990.8000000001571 2.526761019689198e-05
+990.9000000001571 2.523640179926439e-05
+991.0000000001571 2.5205188465894034e-05
+991.1000000001571 2.516690023035868e-05
+991.2000000001572 2.512861332809579e-05
+991.3000000001572 2.5090318021689097e-05
+991.4000000001572 2.5052003791293227e-05
+991.5000000001572 2.5013659341128925e-05
+991.6000000001573 2.4980323217216753e-05
+991.7000000001573 2.494696345066078e-05
+991.8000000001573 2.4913580036858886e-05
+991.9000000001573 2.488017297131281e-05
+992.0000000001573 2.4846742249375894e-05
+992.1000000001574 2.4800955561579434e-05
+992.2000000001574 2.4755187168041885e-05
+992.3000000001574 2.4709437067836862e-05
+992.4000000001574 2.4663705260114917e-05
+992.5000000001575 2.461799174394939e-05
+992.6000000001575 2.4572296518439215e-05
+992.7000000001575 2.4526619582734143e-05
+992.8000000001575 2.4480960935932615e-05
+992.9000000001575 2.443532057715837e-05
+993.0000000001576 2.438969850549717e-05
+993.1000000001576 2.43523902087566e-05
+993.2000000001576 2.4315069593566146e-05
+993.3000000001576 2.427773666277145e-05
+993.4000000001577 2.4240391419243404e-05
+993.5000000001577 2.4203033865885602e-05
+993.6000000001577 2.4170516937703232e-05
+993.7000000001577 2.4137949540377915e-05
+993.8000000001578 2.410534269829504e-05
+993.9000000001578 2.4072706568174706e-05
+994.0000000001578 2.4040050444272234e-05
+994.1000000001578 2.4001282898797764e-05
+994.2000000001578 2.396253579165664e-05
+994.3000000001579 2.392381583207949e-05
+994.4000000001579 2.388512888270521e-05
+994.5000000001579 2.3846479966031595e-05
+994.6000000001579 2.3807872288019384e-05
+994.700000000158 2.376930956594619e-05
+994.800000000158 2.3730794670202307e-05
+994.900000000158 2.3692329631037038e-05
+995.000000000158 2.365391564519128e-05
+995.100000000158 2.361454357942678e-05
+995.2000000001581 2.357522588727727e-05
+995.3000000001581 2.353596129817188e-05
+995.4000000001581 2.3496747735181884e-05
+995.5000000001581 2.3457582321745917e-05
+995.6000000001582 2.341846332347621e-05
+995.7000000001582 2.3379385585239093e-05
+995.8000000001582 2.3340343224610527e-05
+995.9000000001582 2.330132963838993e-05
+996.0000000001583 2.326233750894088e-05
+996.1000000001583 2.3221664009968246e-05
+996.2000000001583 2.3181003369367008e-05
+996.3000000001583 2.3140346164740084e-05
+996.4000000001583 2.3099682287680618e-05
+996.5000000001584 2.305900095026767e-05
+996.6000000001584 2.301828879020857e-05
+996.7000000001584 2.2977577667147387e-05
+996.8000000001584 2.2936867912245625e-05
+996.9000000001585 2.2896159831223583e-05
+997.0000000001585 2.28554537043363e-05
+997.1000000001585 2.2817769657524933e-05
+997.2000000001585 2.27800751793625e-05
+997.3000000001585 2.274237047385068e-05
+997.4000000001586 2.2704655720593974e-05
+997.5000000001586 2.266693107501537e-05
+997.6000000001586 2.2629197602599458e-05
+997.7000000001586 2.2591456361807147e-05
+997.8000000001587 2.2553707495851088e-05
+997.9000000001587 2.2515951169826896e-05
+998.0000000001587 2.247818757049514e-05
+998.1000000001587 2.2439662797002385e-05
+998.2000000001588 2.2401136368846402e-05
+998.3000000001588 2.2362608537187387e-05
+998.4000000001588 2.232407957408803e-05
+998.5000000001588 2.2285549772269993e-05
+998.6000000001588 2.224704977733593e-05
+998.7000000001589 2.22085664151892e-05
+998.8000000001589 2.2170089155807577e-05
+998.9000000001589 2.213160826264993e-05
+999.0000000001589 2.2093114786431492e-05
+999.100000000159 2.2051578036323467e-05
+999.200000000159 2.201002390570226e-05
+999.300000000159 2.1968445782573633e-05
+999.400000000159 2.1926837820371636e-05
+999.500000000159 2.1885194931097276e-05
+999.6000000001591 2.1843512778549068e-05
+999.7000000001591 2.1801790259871935e-05
+999.8000000001591 2.1760025238330362e-05
+999.9000000001591 2.1718216347201013e-05
+1000.0000000001592 2.167636298264158e-05
+1000.1000000001592 2.164394019008421e-05
+1000.2000000001592 2.1611443197949532e-05
+1000.3000000001592 2.1578873576151408e-05
+1000.4000000001593 2.1546233632270587e-05
+1000.5000000001593 2.151352640606368e-05
+1000.6000000001593 2.1472095814584037e-05
+1000.7000000001593 2.143063492695522e-05
+1000.8000000001593 2.1389148640074273e-05
+1000.9000000001594 2.1347642531407695e-05
+1001.0000000001594 2.1306122852097208e-05
+1001.1000000001594 2.1259383062486713e-05
+1001.2000000001594 2.1212663267023823e-05
+1001.3000000001595 2.1165971695652636e-05
+1001.4000000001595 2.1119317215352116e-05
+1001.5000000001595 2.1072709322387818e-05
+1001.6000000001595 2.1026158134716854e-05
+1001.7000000001595 2.0979634865786634e-05
+1001.8000000001596 2.0933139519233922e-05
+1001.9000000001596 2.0886672098760516e-05
+1002.0000000001596 2.084023260806261e-05
+1002.1000000001596 2.0804204298314352e-05
+1002.2000000001597 2.0768165288415298e-05
+1002.3000000001597 2.0732115581785876e-05
+1002.4000000001597 2.0696055181846668e-05
+1002.5000000001597 2.0659984092117542e-05
+1002.6000000001598 2.0632250384066296e-05
+1002.7000000001598 2.0604473401794126e-05
+1002.8000000001598 2.057665315555149e-05
+1002.9000000001598 2.054878965558895e-05
+1003.0000000001598 2.0520882912140287e-05
+1003.1000000001599 2.0482437354565454e-05
+1003.2000000001599 2.044399019263308e-05
+1003.3000000001599 2.0405541426386237e-05
+1003.4000000001599 2.036709105591036e-05
+1003.50000000016 2.0328639081290813e-05
+1003.60000000016 2.029021316255429e-05
+1003.70000000016 2.025180328270735e-05
+1003.80000000016 2.0213400178344304e-05
+1003.90000000016 2.017499533312146e-05
+1004.0000000001601 2.013658097130353e-05
+1004.1000000001601 2.0099621500786255e-05
+1004.2000000001601 2.006263630141817e-05
+1004.3000000001601 2.0025619774780873e-05
+1004.4000000001602 1.9988567035974533e-05
+1004.5000000001602 1.9951473907483635e-05
+1004.6000000001602 1.991433773475912e-05
+1004.7000000001602 1.9877155438918362e-05
+1004.8000000001603 1.983992465217684e-05
+1004.9000000001603 1.9802643711571352e-05
+1005.0000000001603 1.976531165253785e-05
+1005.1000000001603 1.9724648078481264e-05
+1005.2000000001603 1.9683946466394483e-05
+1005.3000000001604 1.9643207930390403e-05
+1005.4000000001604 1.9602434256021695e-05
+1005.5000000001604 1.9561627893262697e-05
+1005.6000000001604 1.952079033712059e-05
+1005.7000000001605 1.947992592994326e-05
+1005.8000000001605 1.9439039613076736e-05
+1005.9000000001605 1.9398136920090865e-05
+1006.0000000001605 1.9357223970176953e-05
+1006.1000000001605 1.9320153251995222e-05
+1006.2000000001606 1.928307355761705e-05
+1006.3000000001606 1.9245992725317467e-05
+1006.4000000001606 1.9208919159230187e-05
+1006.5000000001606 1.91718618233584e-05
+1006.6000000001607 1.9138693538058125e-05
+1006.7000000001607 1.9105511147783602e-05
+1006.8000000001607 1.9072314377086585e-05
+1006.9000000001607 1.903910297159765e-05
+1007.0000000001608 1.9005876697946995e-05
+1007.1000000001608 1.8964849100053638e-05
+1007.2000000001608 1.8923836692577707e-05
+1007.3000000001608 1.8882839304583386e-05
+1007.4000000001608 1.8841856785728626e-05
+1007.5000000001609 1.880088900602343e-05
+1007.6000000001609 1.876372190701056e-05
+1007.7000000001609 1.872655278360456e-05
+1007.8000000001609 1.868938151756734e-05
+1007.900000000161 1.865220797277107e-05
+1008.000000000161 1.8615031995162454e-05
+1008.100000000161 1.857114853109476e-05
+1008.200000000161 1.8527290695792915e-05
+1008.300000000161 1.8483458276399623e-05
+1008.4000000001611 1.843965104341262e-05
+1008.5000000001611 1.8395868750749696e-05
+1008.6000000001611 1.835206107990294e-05
+1008.7000000001611 1.8308248033844336e-05
+1008.8000000001612 1.8264446710857415e-05
+1008.9000000001612 1.82206728425465e-05
+1009.0000000001612 1.8176940808450442e-05
+1009.1000000001612 1.8136732668693694e-05
+1009.2000000001613 1.8096578075959653e-05
+1009.3000000001613 1.8056487478917463e-05
+1009.4000000001613 1.8016470039897587e-05
+1009.5000000001613 1.797653364839444e-05
+1009.6000000001613 1.794394747957339e-05
+1009.7000000001614 1.791142259233866e-05
+1009.8000000001614 1.787896289705132e-05
+1009.9000000001614 1.7846571037529198e-05
+1010.0000000001614 1.7814248402358052e-05
+1010.1000000001615 1.778541862207117e-05
+1010.2000000001615 1.775664313012079e-05
+1010.3000000001615 1.7727919664226502e-05
+1010.4000000001615 1.7699244748754007e-05
+1010.5000000001615 1.7670613704612874e-05
+1010.6000000001616 1.7638463105141244e-05
+1010.7000000001616 1.7606359772693e-05
+1010.8000000001616 1.757429524764181e-05
+1010.9000000001616 1.7542259969073476e-05
+1011.0000000001617 1.7510243285433073e-05
+1011.1000000001617 1.7473839334096204e-05
+1011.2000000001617 1.7437450300764212e-05
+1011.3000000001617 1.740106232952899e-05
+1011.4000000001618 1.7364660531447706e-05
+1011.5000000001618 1.7328228996822153e-05
+1011.6000000001618 1.7288263138857686e-05
+1011.7000000001618 1.7248311540985722e-05
+1011.8000000001618 1.7208374454635802e-05
+1011.9000000001619 1.7168452111490497e-05
+1012.0000000001619 1.7128544723842025e-05
+1012.1000000001619 1.709343337129422e-05
+1012.2000000001619 1.7058317139421175e-05
+1012.300000000162 1.7023196182782624e-05
+1012.400000000162 1.698807063749643e-05
+1012.500000000162 1.695294062131727e-05
+1012.600000000162 1.6921221222225986e-05
+1012.700000000162 1.6889484759372228e-05
+1012.8000000001621 1.6857731337513526e-05
+1012.9000000001621 1.6825961077645404e-05
+1013.0000000001621 1.679417411686715e-05
+1013.1000000001621 1.6758815429626777e-05
+1013.2000000001622 1.672345524882123e-05
+1013.3000000001622 1.6688093760357226e-05
+1013.4000000001622 1.6652731165458378e-05
+1013.5000000001622 1.661736768039797e-05
+1013.6000000001623 1.6582026144928668e-05
+1013.7000000001623 1.6546696713748282e-05
+1013.8000000001623 1.6511371526399176e-05
+1013.9000000001623 1.6476043325716474e-05
+1014.0000000001623 1.6440705452058577e-05
+1014.1000000001624 1.6404938184921218e-05
+1014.2000000001624 1.636915453301936e-05
+1014.3000000001624 1.63333495968778e-05
+1014.4000000001624 1.629751905192311e-05
+1014.5000000001625 1.6261659142713158e-05
+1014.6000000001625 1.622576667711478e-05
+1014.7000000001625 1.6189840868134145e-05
+1014.8000000001625 1.615388016263418e-05
+1014.9000000001625 1.6117883581129156e-05
+1015.0000000001626 1.608185071169583e-05
+1015.1000000001626 1.6048380095050245e-05
+1015.2000000001626 1.6014865892130173e-05
+1015.3000000001626 1.5981309337184037e-05
+1015.4000000001627 1.5947712208077326e-05
+1015.5000000001627 1.591407682038264e-05
+1015.6000000001627 1.588040602160566e-05
+1015.7000000001627 1.5846702281525746e-05
+1015.8000000001628 1.5812969234316965e-05
+1015.9000000001628 1.577921101464216e-05
+1016.0000000001628 1.5745432251970476e-05
+1016.1000000001628 1.5710421748537797e-05
+1016.2000000001628 1.5675406780174108e-05
+1016.3000000001629 1.5640393426409207e-05
+1016.4000000001629 1.5605388236711386e-05
+1016.5000000001629 1.5570398224611478e-05
+1016.6000000001629 1.5535430861865706e-05
+1016.700000000163 1.5500464875037276e-05
+1016.800000000163 1.546550026421919e-05
+1016.900000000163 1.5430537029504443e-05
+1017.000000000163 1.5395575170969227e-05
+1017.100000000163 1.5360058192551318e-05
+1017.2000000001631 1.5324545050990894e-05
+1017.3000000001631 1.5289035746721645e-05
+1017.4000000001631 1.5253530280193067e-05
+1017.5000000001631 1.5218028651822977e-05
+1017.6000000001632 1.5182530862076474e-05
+1017.7000000001632 1.514703691135566e-05
+1017.8000000001632 1.5111546800109845e-05
+1017.9000000001632 1.5076060528788176e-05
+1018.0000000001633 1.5040578097812206e-05
+1018.1000000001633 1.5007358567481195e-05
+1018.2000000001633 1.497413579295707e-05
+1018.3000000001633 1.4940909774575678e-05
+1018.4000000001633 1.490768051267291e-05
+1018.5000000001634 1.4874448007579716e-05
+1018.6000000001634 1.4838220079750442e-05
+1018.7000000001634 1.480200231222075e-05
+1018.8000000001634 1.4765794707313669e-05
+1018.9000000001635 1.472959726732126e-05
+1019.0000000001635 1.4693409994524741e-05
+1019.1000000001635 1.466006395095935e-05
+1019.2000000001635 1.462671855331755e-05
+1019.3000000001635 1.4593373801675986e-05
+1019.4000000001636 1.4560029696096093e-05
+1019.5000000001636 1.4526686236644091e-05
+1019.6000000001636 1.4496268417000403e-05
+1019.7000000001636 1.4465837785617964e-05
+1019.8000000001637 1.443539434293881e-05
+1019.9000000001637 1.4404938089434959e-05
+1020.0000000001637 1.4374469025542815e-05
+1020.1000000001637 1.4340498525962986e-05
+1020.2000000001638 1.4306531426215013e-05
+1020.3000000001638 1.4272567726468872e-05
+1020.4000000001638 1.4238607426923977e-05
+1020.5000000001638 1.4204650527720704e-05
+1020.6000000001638 1.4170697029043643e-05
+1020.7000000001639 1.4136746931062597e-05
+1020.8000000001639 1.4102800233947383e-05
+1020.9000000001639 1.4068856937882343e-05
+1021.0000000001639 1.4034917043024947e-05
+1021.100000000164 1.4002391089413296e-05
+1021.200000000164 1.3969861844274821e-05
+1021.300000000164 1.393732930781255e-05
+1021.400000000164 1.3904793480171724e-05
+1021.500000000164 1.3872254361555277e-05
+1021.6000000001641 1.3839711952122894e-05
+1021.7000000001641 1.380716625206302e-05
+1021.8000000001641 1.377461726153543e-05
+1021.9000000001641 1.3742064980728502e-05
+1022.0000000001642 1.3709509409815827e-05
+1022.1000000001642 1.3676675344402764e-05
+1022.2000000001642 1.3643842747615396e-05
+1022.3000000001642 1.3611011619544926e-05
+1022.4000000001643 1.3578181960197865e-05
+1022.5000000001643 1.354535376964668e-05
+1022.6000000001643 1.3509802748145545e-05
+1022.7000000001643 1.3474266431517421e-05
+1022.8000000001643 1.343874481894649e-05
+1022.9000000001644 1.3403237909575062e-05
+1023.0000000001644 1.3367745702592661e-05
+1023.1000000001644 1.3335651908630743e-05
+1023.2000000001644 1.3303559615732258e-05
+1023.3000000001645 1.3271468823955796e-05
+1023.4000000001645 1.3239379533359811e-05
+1023.5000000001645 1.3207291743970903e-05
+1023.6000000001645 1.3172564441082944e-05
+1023.7000000001646 1.3137863008735699e-05
+1023.8000000001646 1.3103181415379365e-05
+1023.9000000001646 1.306851413126643e-05
+1024.0000000001646 1.303385612254119e-05
+1024.1000000001645 1.3005351155403302e-05
+1024.2000000001647 1.2976816940067922e-05
+1024.3000000001648 1.294824986978485e-05
+1024.4000000001647 1.2919646804353791e-05
+1024.5000000001646 1.2891005065398612e-05
+1024.6000000001648 1.2862322962514586e-05
+1024.700000000165 1.2833598534064083e-05
+1024.8000000001648 1.2804830280728567e-05
+1024.9000000001647 1.2776017160522841e-05
+1025.0000000001648 1.2747158583900659e-05
+1025.100000000165 1.270304729811134e-05
+1025.200000000165 1.2658911978552009e-05
+1025.3000000001648 1.2614753472212951e-05
+1025.400000000165 1.2570573053674822e-05
+1025.500000000165 1.2526372417435913e-05
+1025.600000000165 1.2482152639334803e-05
+1025.700000000165 1.2437916608687544e-05
+1025.800000000165 1.2393667581408258e-05
+1025.9000000001652 1.2349409172808403e-05
+1026.000000000165 1.2305145350412075e-05
+1026.100000000165 1.226143209353789e-05
+1026.2000000001651 1.2217718456290007e-05
+1026.3000000001653 1.2174009420246508e-05
+1026.4000000001652 1.2130310291431181e-05
+1026.500000000165 1.2086626693206866e-05
+1026.6000000001652 1.2042965554127176e-05
+1026.7000000001653 1.1999310139420239e-05
+1026.8000000001653 1.1955660267937404e-05
+1026.9000000001652 1.1912015773009906e-05
+1027.0000000001653 1.1868376502280718e-05
+1027.1000000001654 1.1827038475550363e-05
+1027.2000000001653 1.17856989545596e-05
+1027.3000000001653 1.1744357829862662e-05
+1027.4000000001654 1.1703015005338219e-05
+1027.5000000001655 1.1661670397980184e-05
+1027.6000000001654 1.1620323457986055e-05
+1027.7000000001653 1.1578973643309712e-05
+1027.8000000001655 1.1537620884156486e-05
+1027.9000000001656 1.149626510017096e-05
+1028.0000000001655 1.1454906200596763e-05
+1028.1000000001654 1.1412462028985617e-05
+1028.2000000001656 1.1370027587088548e-05
+1028.3000000001657 1.1327602752573615e-05
+1028.4000000001656 1.1285187393584871e-05
+1028.5000000001655 1.1242781369003091e-05
+1028.6000000001657 1.1200353979089915e-05
+1028.7000000001658 1.1157917553987693e-05
+1028.8000000001657 1.1115482588455125e-05
+1028.9000000001656 1.1073058688354016e-05
+1029.0000000001658 1.1030654584619633e-05
+1029.100000000166 1.0991084843048052e-05
+1029.2000000001658 1.0951539254889392e-05
+1029.3000000001657 1.0912024035557681e-05
+1029.4000000001658 1.08725445877174e-05
+1029.500000000166 1.083310551443928e-05
+1029.600000000166 1.0795886337905752e-05
+1029.7000000001658 1.0758697018860035e-05
+1029.800000000166 1.0721539673095264e-05
+1029.900000000166 1.0684415640740794e-05
+1030.000000000166 1.064732549919993e-05
+1030.100000000166 1.060770518688713e-05
+1030.200000000166 1.0568136627406872e-05
+1030.3000000001662 1.0528618152653547e-05
+1030.400000000166 1.0489147385343034e-05
+1030.500000000166 1.0449721252640941e-05
+1030.6000000001661 1.0410336860016649e-05
+1030.7000000001663 1.0370990060195044e-05
+1030.8000000001662 1.0331675651706323e-05
+1030.900000000166 1.0292387824945492e-05
+1031.0000000001662 1.0253120175101322e-05
+1031.1000000001663 1.0215382600845023e-05
+1031.2000000001663 1.0177655179445633e-05
+1031.3000000001662 1.0139929798255024e-05
+1031.4000000001663 1.0102197796085194e-05
+1031.5000000001664 1.0064449975743212e-05
+1031.6000000001663 1.0026675788186041e-05
+1031.7000000001663 9.988902951504616e-06
+1031.8000000001664 9.951131617174386e-06
+1031.9000000001665 9.913361924496083e-06
+1032.0000000001664 9.875594000821469e-06
+1032.1000000001663 9.839109631130254e-06
+1032.2000000001665 9.802617565804554e-06
+1032.3000000001666 9.766117896461407e-06
+1032.4000000001665 9.729610703569752e-06
+1032.5000000001664 9.693096056605595e-06
+1032.6000000001666 9.656574412906426e-06
+1032.7000000001667 9.62004622293322e-06
+1032.8000000001666 9.5835115444066e-06
+1032.9000000001665 9.54697044381071e-06
+1033.0000000001667 9.510422996137707e-06
+1033.1000000001668 9.474047545418402e-06
+1033.2000000001667 9.43767552776858e-06
+1033.3000000001666 9.401307043428262e-06
+1033.4000000001668 9.364942200501674e-06
+1033.500000000167 9.328581114675175e-06
+1033.6000000001668 9.292236578475989e-06
+1033.7000000001667 9.255903009712846e-06
+1033.8000000001668 9.21957597338811e-06
+1033.900000000167 9.183251402057195e-06
+1034.000000000167 9.146925589914999e-06
+1034.1000000001668 9.111924812961315e-06
+1034.200000000167 9.076911569043042e-06
+1034.300000000167 9.04188319593569e-06
+1034.400000000167 9.006837367939033e-06
+1034.500000000167 8.971772090120871e-06
+1034.600000000167 8.936685692698866e-06
+1034.7000000001672 8.90157784119429e-06
+1034.800000000167 8.866447784513009e-06
+1034.900000000167 8.831295092775804e-06
+1035.0000000001671 8.796119651288308e-06
+1035.1000000001673 8.762673255286509e-06
+1035.2000000001672 8.72920220799659e-06
+1035.300000000167 8.695707291378136e-06
+1035.4000000001672 8.662189578873717e-06
+1035.5000000001673 8.628650429556704e-06
+1035.6000000001673 8.595091482379047e-06
+1035.7000000001672 8.561514162013026e-06
+1035.8000000001673 8.527920512277715e-06
+1035.9000000001674 8.494312832938978e-06
+1036.0000000001673 8.460693674049323e-06
+1036.1000000001673 8.426636331242126e-06
+1036.2000000001674 8.392582407619868e-06
+1036.3000000001675 8.358535169339446e-06
+1036.4000000001674 8.324498109497093e-06
+1036.5000000001673 8.290474942446306e-06
+1036.6000000001675 8.256469598113772e-06
+1036.7000000001676 8.22247072801763e-06
+1036.8000000001675 8.188478331756105e-06
+1036.9000000001674 8.154492408952812e-06
+1037.0000000001676 8.12051295923409e-06
+1037.1000000001677 8.088249296658591e-06
+1037.2000000001676 8.05598386799721e-06
+1037.3000000001675 8.023716673394244e-06
+1037.4000000001677 7.991447712985741e-06
+1037.5000000001678 7.959176986932706e-06
+1037.6000000001677 7.92690449536311e-06
+1037.7000000001676 7.894630238437683e-06
+1037.8000000001678 7.862354216300643e-06
+1037.900000000168 7.83007642908018e-06
+1038.0000000001678 7.79779687694707e-06
+1038.1000000001677 7.766726758887035e-06
+1038.2000000001678 7.735656570479537e-06
+1038.300000000168 7.704586311803257e-06
+1038.400000000168 7.673515982912954e-06
+1038.5000000001678 7.64244558389508e-06
+1038.600000000168 7.611375114812257e-06
+1038.700000000168 7.580304575735184e-06
+1038.800000000168 7.549233966750171e-06
+1038.900000000168 7.518163287912065e-06
+1039.000000000168 7.4870925392981395e-06
+1039.1000000001682 7.455407741350623e-06
+1039.200000000168 7.423728032838796e-06
+1039.300000000168 7.3920534133066024e-06
+1039.4000000001681 7.360383882328686e-06
+1039.5000000001683 7.3287194394644465e-06
+1039.6000000001682 7.29706008426577e-06
+1039.700000000168 7.265405816307041e-06
+1039.8000000001682 7.233756635132537e-06
+1039.9000000001683 7.202112540309255e-06
+1040.0000000001683 7.170473531407509e-06
+1040.1000000001682 7.140872680526062e-06
+1040.2000000001683 7.111271474045463e-06
+1040.3000000001684 7.081669912177433e-06
+1040.4000000001683 7.052067995126284e-06
+1040.5000000001683 7.022465723088919e-06
+1040.6000000001684 6.9928630962840275e-06
+1040.7000000001685 6.963260114901399e-06
+1040.8000000001684 6.933656779159726e-06
+1040.9000000001683 6.904053089255895e-06
+1041.0000000001685 6.874449045400496e-06
+1041.1000000001686 6.84447705438998e-06
+1041.2000000001685 6.814507914685866e-06
+1041.3000000001684 6.784541626219082e-06
+1041.4000000001686 6.754578188920553e-06
+1041.5000000001687 6.724617602721323e-06
+1041.6000000001686 6.694659867559362e-06
+1041.7000000001685 6.6647049833585904e-06
+1041.8000000001687 6.634752950049901e-06
+1041.9000000001688 6.604803767571142e-06
+1042.0000000001687 6.574857435848805e-06
+1042.1000000001686 6.54630773957147e-06
+1042.2000000001688 6.5177609045133055e-06
+1042.300000000169 6.489216930615188e-06
+1042.4000000001688 6.460675817838123e-06
+1042.5000000001687 6.4321375661294375e-06
+1042.6000000001688 6.403602175429833e-06
+1042.700000000169 6.375069645686825e-06
+1042.800000000169 6.346539976854468e-06
+1042.9000000001688 6.318013168886547e-06
+1043.000000000169 6.2894892217176515e-06
+1043.100000000169 6.26121481509314e-06
+1043.200000000169 6.2329410368971284e-06
+1043.300000000169 6.204667887204614e-06
+1043.400000000169 6.176395366103444e-06
+1043.5000000001692 6.1481234736688074e-06
+1043.600000000169 6.1198605526926185e-06
+1043.700000000169 6.0916035218820465e-06
+1043.8000000001691 6.063349558587441e-06
+1043.9000000001693 6.035096094049185e-06
+1044.0000000001692 6.00684080862376e-06
+1044.100000000169 5.979544261123495e-06
+1044.2000000001692 5.952245984447164e-06
+1044.3000000001693 5.924944373697422e-06
+1044.4000000001693 5.897638053162153e-06
+1044.5000000001692 5.870325871706573e-06
+1044.6000000001693 5.841830300079793e-06
+1044.7000000001694 5.813338380271004e-06
+1044.8000000001693 5.784849530640745e-06
+1044.9000000001693 5.756363383467613e-06
+1045.0000000001694 5.727879780036815e-06
+1045.1000000001695 5.701098217887233e-06
+1045.2000000001694 5.674303230685805e-06
+1045.3000000001693 5.6474952495835165e-06
+1045.4000000001695 5.620674895762086e-06
+1045.5000000001696 5.593842975819996e-06
+1045.6000000001695 5.567000017289526e-06
+1045.7000000001694 5.540147353727976e-06
+1045.8000000001696 5.513286475765588e-06
+1045.9000000001697 5.48641902677372e-06
+1046.0000000001696 5.459546798449186e-06
+1046.1000000001695 5.434008536195175e-06
+1046.2000000001697 5.408470111294342e-06
+1046.3000000001698 5.382933733910775e-06
+1046.4000000001697 5.35740174738316e-06
+1046.5000000001696 5.331876624120963e-06
+1046.6000000001698 5.30636139981464e-06
+1046.70000000017 5.280848681256859e-06
+1046.8000000001698 5.255338386558877e-06
+1046.9000000001697 5.229830440554095e-06
+1047.0000000001698 5.204324774652991e-06
+1047.10000000017 5.179246669074374e-06
+1047.20000000017 5.1541733577480905e-06
+1047.3000000001698 5.129104790572611e-06
+1047.40000000017 5.104040923482075e-06
+1047.50000000017 5.078981718356134e-06
+1047.60000000017 5.0539269342436995e-06
+1047.70000000017 5.0288763348730455e-06
+1047.80000000017 5.003829890146433e-06
+1047.9000000001702 4.978787565569529e-06
+1048.00000000017 4.953749322368656e-06
+1048.10000000017 4.929238905329861e-06
+1048.2000000001701 4.904727204417159e-06
+1048.3000000001703 4.880214169377377e-06
+1048.4000000001702 4.855699746150632e-06
+1048.50000000017 4.831183877013528e-06
+1048.6000000001702 4.8056908608502134e-06
+1048.7000000001703 4.780202583692228e-06
+1048.8000000001703 4.754721352531563e-06
+1048.9000000001702 4.729249272452854e-06
+1049.0000000001703 4.70378825082646e-06
+1049.1000000001704 4.680428889436764e-06
+1049.2000000001703 4.657076556519202e-06
+1049.3000000001703 4.633732599555235e-06
+1049.4000000001704 4.610398187219861e-06
+1049.5000000001705 4.587074313196212e-06
+1049.6000000001704 4.563761799988364e-06
+1049.7000000001703 4.540460784275665e-06
+1049.8000000001705 4.517171613881108e-06
+1049.9000000001706 4.493894470813385e-06
+1050.0000000001705 4.470629375301944e-06
+1050.1000000001704 4.448024812746186e-06
+1050.2000000001706 4.425432389138791e-06
+1050.3000000001707 4.402851667944141e-06
+1050.4000000001706 4.380282066687064e-06
+1050.5000000001705 4.357722860844504e-06
+1050.6000000001707 4.335173187738708e-06
+1050.7000000001708 4.3126322964873415e-06
+1050.8000000001707 4.290099127906557e-06
+1050.9000000001706 4.267572499148526e-06
+1051.0000000001708 4.245051107491332e-06
+1051.100000000171 4.222586772828746e-06
+1051.2000000001708 4.2001241612810105e-06
+1051.3000000001707 4.177661633059851e-06
+1051.4000000001708 4.1551974434912425e-06
+1051.500000000171 4.132729746804492e-06
+1051.600000000171 4.110256599913572e-06
+1051.7000000001708 4.087783670535623e-06
+1051.800000000171 4.0653109587342505e-06
+1051.900000000171 4.0428384645857905e-06
+1052.000000000171 4.020366188150896e-06
+1052.100000000171 3.9985665319825455e-06
+1052.200000000171 3.9767747506903e-06
+1052.3000000001712 3.954990844701989e-06
+1052.400000000171 3.933214814433038e-06
+1052.500000000171 3.911446660316387e-06
+1052.6000000001711 3.890472336762628e-06
+1052.7000000001713 3.869497415485206e-06
+1052.8000000001712 3.848521896530224e-06
+1052.900000000171 3.827545779963769e-06
+1053.0000000001712 3.8065690658447447e-06
+1053.1000000001713 3.7861040738408664e-06
+1053.2000000001713 3.765640530837368e-06
+1053.3000000001712 3.7451784368902446e-06
+1053.4000000001713 3.724717792055459e-06
+1053.5000000001714 3.7042585963929017e-06
+1053.6000000001713 3.6838008499547177e-06
+1053.7000000001713 3.6633445527968217e-06
+1053.8000000001714 3.642889704978887e-06
+1053.9000000001715 3.622436306560573e-06
+1054.0000000001714 3.6019843575867566e-06
+1054.1000000001713 3.5816770866763423e-06
+1054.2000000001715 3.561377291019802e-06
+1054.3000000001716 3.54108497120296e-06
+1054.4000000001715 3.5208001278187276e-06
+1054.5000000001714 3.5005227614534897e-06
+1054.6000000001716 3.4809568073294034e-06
+1054.7000000001717 3.461390417787727e-06
+1054.8000000001716 3.4418235931500495e-06
+1054.9000000001715 3.4222563337449826e-06
+1055.0000000001717 3.402688639884473e-06
+1055.1000000001718 3.3837657113066203e-06
+1055.2000000001717 3.3648429843555828e-06
+1055.3000000001716 3.3459204592348642e-06
+1055.4000000001718 3.3269981361444264e-06
+1055.500000000172 3.308076015283144e-06
+1055.6000000001718 3.2884889494173357e-06
+1055.7000000001717 3.2689097390467994e-06
+1055.8000000001718 3.249338384254261e-06
+1055.900000000172 3.2297748851155186e-06
+1056.000000000172 3.210219241711648e-06
+1056.1000000001718 3.1919000963152646e-06
+1056.200000000172 3.1735824899435904e-06
+1056.300000000172 3.155266422561168e-06
+1056.400000000172 3.136951894129283e-06
+1056.500000000172 3.118638904611369e-06
+1056.600000000172 3.099699857328704e-06
+1056.7000000001722 3.0807697618145684e-06
+1056.800000000172 3.0618486170981357e-06
+1056.900000000172 3.0429364222085487e-06
+1057.0000000001721 3.024033176183805e-06
+1057.1000000001723 3.0066096098382036e-06
+1057.2000000001722 2.989185619956158e-06
+1057.300000000172 2.9717612065898426e-06
+1057.4000000001722 2.9543363697852922e-06
+1057.5000000001723 2.9369111095999502e-06
+1057.6000000001723 2.918893838359683e-06
+1057.7000000001722 2.9008832060983578e-06
+1057.8000000001723 2.882879213118629e-06
+1057.9000000001724 2.8648818597382488e-06
+1058.0000000001723 2.8468911462648347e-06
+1058.1000000001723 2.8300352096331234e-06
+1058.2000000001724 2.8131805691070414e-06
+1058.3000000001725 2.796327224692185e-06
+1058.4000000001724 2.77947517638244e-06
+1058.5000000001723 2.7626244241832434e-06
+1058.6000000001725 2.745774968088457e-06
+1058.7000000001726 2.7289268081035024e-06
+1058.8000000001725 2.712079944228019e-06
+1058.9000000001724 2.695234376458752e-06
+1059.0000000001726 2.6783901047968024e-06
+1059.1000000001727 2.6624219453175247e-06
+1059.2000000001726 2.646461000849021e-06
+1059.3000000001725 2.630507270825536e-06
+1059.4000000001727 2.6145607546730334e-06
+1059.5000000001728 2.598621451823932e-06
+1059.6000000001727 2.583213872135444e-06
+1059.7000000001726 2.567807248111668e-06
+1059.8000000001728 2.552401579766738e-06
+1059.900000000173 2.536996867106879e-06
+1060.0000000001728 2.521593110149082e-06
+1060.1000000001727 2.5062803407174554e-06
+1060.2000000001728 2.490967423869912e-06
+1060.300000000173 2.4756543596598463e-06
+1060.400000000173 2.4603411481380267e-06
+1060.5000000001728 2.445027789351751e-06
+1060.600000000173 2.4292209403567585e-06
+1060.700000000173 2.4134201629436008e-06
+1060.800000000173 2.397625457254531e-06
+1060.900000000173 2.381836823429168e-06
+1061.000000000173 2.366054261611215e-06
+1061.1000000001732 2.3512295935846833e-06
+1061.200000000173 2.3364075598789993e-06
+1061.300000000173 2.3215881602291395e-06
+1061.4000000001731 2.3067713943724877e-06
+1061.5000000001733 2.2919572620416774e-06
+1061.6000000001732 2.277145762971788e-06
+1061.700000000173 2.2623368969002045e-06
+1061.8000000001732 2.247530663561925e-06
+1061.9000000001733 2.232727062692024e-06
+1062.0000000001733 2.2179260940277954e-06
+1062.1000000001732 2.2043977622100986e-06
+1062.2000000001733 2.190873190992188e-06
+1062.3000000001734 2.177352381306963e-06
+1062.4000000001733 2.163835334085049e-06
+1062.5000000001733 2.1503220502578065e-06
+1062.6000000001734 2.1372473725394646e-06
+1062.7000000001735 2.1241711391308805e-06
+1062.8000000001734 2.111093350011551e-06
+1062.9000000001733 2.098014005165351e-06
+1063.0000000001735 2.0849331045735505e-06
+1063.1000000001736 2.071628054977874e-06
+1063.2000000001735 2.0583242891922898e-06
+1063.3000000001734 2.0450218071562093e-06
+1063.4000000001736 2.0317206088154473e-06
+1063.5000000001737 2.018420694108748e-06
+1063.6000000001736 2.0047141032514096e-06
+1063.7000000001735 1.991014206839892e-06
+1063.8000000001737 1.97732100402763e-06
+1063.9000000001738 1.963634493976482e-06
+1064.0000000001737 1.949954675849112e-06
+1064.1000000001736 1.9379406545249262e-06
+1064.2000000001738 1.9259292958485023e-06
+1064.300000000174 1.913920599461915e-06
+1064.4000000001738 1.9019145650112854e-06
+1064.5000000001737 1.8899111921387195e-06
+1064.6000000001738 1.8779104804922798e-06
+1064.700000000174 1.8659124297122246e-06
+1064.800000000174 1.8539170394447453e-06
+1064.9000000001738 1.8419243093359624e-06
+1065.000000000174 1.8299342390287306e-06
+1065.100000000174 1.8182763117596102e-06
+1065.200000000174 1.8066167575975639e-06
+1065.300000000174 1.7949555764856834e-06
+1065.400000000174 1.7832927683651616e-06
+1065.5000000001742 1.7716283331754068e-06
+1065.600000000174 1.75996227086139e-06
+1065.700000000174 1.7482945813624752e-06
+1065.8000000001741 1.7366252646198907e-06
+1065.9000000001743 1.7249543205749311e-06
+1066.0000000001742 1.7132817491728101e-06
+1066.100000000174 1.702827418006113e-06
+1066.2000000001742 1.6923736945373594e-06
+1066.3000000001744 1.6819205787811014e-06
+1066.4000000001743 1.6714680707501013e-06
+1066.5000000001742 1.6610161704570698e-06
+1066.6000000001743 1.6505648779147188e-06
+1066.7000000001744 1.640114193137512e-06
+1066.8000000001744 1.6296641161364664e-06
+1066.9000000001743 1.6192146469259746e-06
+1067.0000000001744 1.6087657855170353e-06
+1067.1000000001745 1.5983250235323838e-06
+1067.2000000001744 1.5878847720762117e-06
+1067.3000000001744 1.5774450311554785e-06
+1067.4000000001745 1.5670058007820954e-06
+1067.5000000001746 1.5565670809630562e-06
+1067.6000000001745 1.5461288717086243e-06
+1067.7000000001744 1.535691173025763e-06
+1067.8000000001746 1.525253984923073e-06
+1067.9000000001747 1.5148173074107774e-06
+1068.0000000001746 1.5043811405004295e-06
+1068.1000000001745 1.4956293165009158e-06
+1068.2000000001747 1.4868743334611972e-06
+1068.3000000001748 1.4781161917064965e-06
+1068.4000000001747 1.4693548915620246e-06
+1068.5000000001746 1.4605904333514202e-06
+1068.6000000001748 1.4518228174013764e-06
+1068.700000000175 1.4430520440355693e-06
+1068.8000000001748 1.434278113579198e-06
+1068.9000000001747 1.42550102635741e-06
+1069.0000000001749 1.4167207826946167e-06
+1069.100000000175 1.4083653143736376e-06
+1069.200000000175 1.4000101033621865e-06
+1069.3000000001748 1.3916551496744839e-06
+1069.400000000175 1.3833004533262208e-06
+1069.500000000175 1.3749460143364796e-06
+1069.600000000175 1.3668695952836624e-06
+1069.700000000175 1.3587900377154362e-06
+1069.800000000175 1.3507073418047542e-06
+1069.9000000001752 1.3426215077218142e-06
+1070.000000000175 1.3345325356410338e-06
+1070.100000000175 1.326429837156015e-06
+1070.2000000001751 1.318324130422912e-06
+1070.3000000001753 1.310215415685576e-06
+1070.4000000001752 1.3021036931892415e-06
+1070.500000000175 1.2939889631804482e-06
+1070.6000000001752 1.2858712259030205e-06
+1070.7000000001754 1.277750481602182e-06
+1070.8000000001753 1.2696267305231475e-06
+1070.9000000001752 1.2614999729097822e-06
+1071.0000000001753 1.253370209010535e-06
+1071.1000000001754 1.2463527224709845e-06
+1071.2000000001754 1.2393358440669755e-06
+1071.3000000001753 1.2323195737792013e-06
+1071.4000000001754 1.2253039115857814e-06
+1071.5000000001755 1.2182888574674254e-06
+1071.6000000001754 1.2112744114022976e-06
+1071.7000000001754 1.2042605733723104e-06
+1071.8000000001755 1.1972473433555866e-06
+1071.9000000001756 1.1902347213315443e-06
+1072.0000000001755 1.18322270728094e-06
+1072.1000000001754 1.1769710440486802e-06
+1072.2000000001756 1.1707192467599023e-06
+1072.3000000001757 1.1644673154367649e-06
+1072.4000000001756 1.1582152501038592e-06
+1072.5000000001755 1.1519630507849356e-06
+1072.6000000001757 1.1459428777295545e-06
+1072.7000000001758 1.1399200368047392e-06
+1072.8000000001757 1.1338945279563061e-06
+1072.9000000001756 1.1278663511229547e-06
+1073.0000000001758 1.121835506247976e-06
+1073.100000000176 1.1157146713566842e-06
+1073.2000000001758 1.1095921199454705e-06
+1073.3000000001757 1.1034678524716211e-06
+1073.4000000001759 1.097341869391199e-06
+1073.500000000176 1.0912141711575942e-06
+1073.600000000176 1.0848653719061652e-06
+1073.7000000001758 1.0785174258359797e-06
+1073.800000000176 1.0721703328839367e-06
+1073.900000000176 1.0658240929880967e-06
+1074.000000000176 1.0594787060867802e-06
+1074.100000000176 1.0532838291373759e-06
+1074.200000000176 1.0470954728159472e-06
+1074.3000000001762 1.0409136375447613e-06
+1074.400000000176 1.034738323741693e-06
+1074.500000000176 1.0285695318292566e-06
+1074.6000000001761 1.0232373066823374e-06
+1074.7000000001763 1.0179026144760941e-06
+1074.8000000001762 1.0125654550969243e-06
+1074.900000000176 1.0072258284290965e-06
+1075.0000000001762 1.0018837343606236e-06
+1075.1000000001764 9.96870843511694e-07
+1075.2000000001763 9.918517107726649e-07
+1075.3000000001762 9.868263371868982e-07
+1075.4000000001763 9.817947237956236e-07
+1075.5000000001764 9.767568716403705e-07
+1075.6000000001764 9.713204083448754e-07
+1075.7000000001763 9.658822595309502e-07
+1075.8000000001764 9.604424255268816e-07
+1075.9000000001765 9.550009066599385e-07
+1076.0000000001764 9.495577032550741e-07
+1076.1000000001764 9.439306438564749e-07
+1076.2000000001765 9.383040754860902e-07
+1076.3000000001766 9.326779981280981e-07
+1076.4000000001765 9.27052411771513e-07
+1076.5000000001764 9.214273163985538e-07
+1076.6000000001766 9.152482401255467e-07
+1076.7000000001767 9.090764650401675e-07
+1076.8000000001766 9.029119902351531e-07
+1076.9000000001765 8.967548148060798e-07
+1077.0000000001767 8.906049378489002e-07
+1077.1000000001768 8.851989343465127e-07
+1077.2000000001767 8.797988162562713e-07
+1077.3000000001766 8.744045836433173e-07
+1077.4000000001768 8.690162365764052e-07
+1077.500000000177 8.636337751239751e-07
+1077.6000000001768 8.591290575345461e-07
+1077.7000000001767 8.546203708924068e-07
+1077.8000000001769 8.501077151810349e-07
+1077.900000000177 8.455910903857177e-07
+1078.000000000177 8.41070496488218e-07
+1078.1000000001768 8.360315419501992e-07
+1078.200000000177 8.309856569227899e-07
+1078.300000000177 8.259328410866284e-07
+1078.400000000177 8.208730941215319e-07
+1078.500000000177 8.158064157076186e-07
+1078.600000000177 8.104065404620656e-07
+1078.7000000001772 8.050049210802531e-07
+1078.800000000177 7.996011806023284e-07
+1078.900000000177 7.941949785485722e-07
+1079.0000000001771 7.88786010014767e-07
+1079.1000000001773 7.838365272285397e-07
+1079.2000000001772 7.788870144598543e-07
+1079.300000000177 7.739372663003811e-07
+1079.4000000001772 7.689871088235599e-07
+1079.5000000001774 7.64036398755094e-07
+1079.6000000001773 7.584722082553832e-07
+1079.7000000001772 7.529152430777765e-07
+1079.8000000001773 7.473654595727227e-07
+1079.9000000001774 7.418228404504348e-07
+1080.0000000001774 7.362873938726261e-07
+1080.1000000001773 7.309318020842635e-07
+1080.2000000001774 7.255811131041975e-07
+1080.3000000001775 7.202354061279109e-07
+1080.4000000001774 7.148947822999644e-07
+1080.5000000001774 7.095593638453474e-07
+1080.6000000001775 7.048021866710709e-07
+1080.7000000001776 7.000425502214331e-07
+1080.8000000001775 6.952806340953307e-07
+1080.9000000001774 6.905166361850854e-07
+1081.0000000001776 6.857507718972196e-07
+1081.1000000001777 6.815676725509749e-07
+1081.2000000001776 6.773846925399073e-07
+1081.3000000001775 6.732020948446554e-07
+1081.4000000001777 6.690201578161424e-07
+1081.5000000001778 6.648391745005756e-07
+1081.6000000001777 6.610619387468986e-07
+1081.7000000001776 6.572799893690922e-07
+1081.8000000001778 6.534933034263063e-07
+1081.900000000178 6.497018591511927e-07
+1082.0000000001778 6.459056359353704e-07
+1082.1000000001777 6.419496651004743e-07
+1082.2000000001779 6.379908822091254e-07
+1082.300000000178 6.340292702077996e-07
+1082.400000000178 6.300648131441546e-07
+1082.5000000001778 6.260974961463545e-07
+1082.600000000178 6.213734906082884e-07
+1082.700000000178 6.16656850339627e-07
+1082.800000000178 6.119475799872584e-07
+1082.900000000178 6.072456846839824e-07
+1083.000000000178 6.025511700265084e-07
+1083.1000000001782 5.971966478506213e-07
+1083.200000000178 5.918503082013195e-07
+1083.300000000178 5.865121589118187e-07
+1083.4000000001781 5.811822081533868e-07
+1083.5000000001783 5.758604644118636e-07
+1083.6000000001782 5.71360227040527e-07
+1083.700000000178 5.668539062272072e-07
+1083.8000000001782 5.623417797007536e-07
+1083.9000000001784 5.578240985515187e-07
+1084.0000000001783 5.533010879438615e-07
+1084.1000000001782 5.501309447185599e-07
+1084.2000000001783 5.469577297246616e-07
+1084.3000000001784 5.437816007404957e-07
+1084.4000000001784 5.406026939944047e-07
+1084.5000000001783 5.3742112467454e-07
+1084.6000000001784 5.338046694246592e-07
+1084.7000000001785 5.301913390486177e-07
+1084.8000000001784 5.265811678027915e-07
+1084.9000000001784 5.229741702640265e-07
+1085.0000000001785 5.19370341950111e-07
+1085.1000000001786 5.146747928146843e-07
+1085.2000000001785 5.099892302597261e-07
+1085.3000000001784 5.053135881562512e-07
+1085.4000000001786 5.006477843295816e-07
+1085.5000000001787 4.959917213529253e-07
+1085.6000000001786 4.907442533651292e-07
+1085.7000000001785 4.855164456773332e-07
+1085.8000000001787 4.803081636486821e-07
+1085.9000000001788 4.75119261408217e-07
+1086.0000000001787 4.69949582686952e-07
+1086.1000000001786 4.663518484974441e-07
+1086.2000000001788 4.6275709846900643e-07
+1086.300000000179 4.5916515098409626e-07
+1086.4000000001788 4.5557581467054756e-07
+1086.5000000001787 4.5198888899380925e-07
+1086.6000000001789 4.4951522202509674e-07
+1086.700000000179 4.4702753853459634e-07
+1086.800000000179 4.4452583863766823e-07
+1086.9000000001788 4.420101224511739e-07
+1087.000000000179 4.3948039009047916e-07
+1087.100000000179 4.368188503451244e-07
+1087.200000000179 4.341450474159745e-07
+1087.300000000179 4.314589838647043e-07
+1087.400000000179 4.287606622518424e-07
+1087.5000000001792 4.260500851363497e-07
+1087.600000000179 4.2281402745461593e-07
+1087.700000000179 4.19574202463832e-07
+1087.8000000001791 4.1633061099516123e-07
+1087.9000000001793 4.1308325388144455e-07
+1088.0000000001792 4.09832131952876e-07
+1088.100000000179 4.0610534895176406e-07
+1088.2000000001792 4.0238291034257607e-07
+1088.3000000001794 3.98664815897144e-07
+1088.4000000001793 3.9495106538687105e-07
+1088.5000000001792 3.9124165858311255e-07
+1088.6000000001793 3.8730110613892084e-07
+1088.7000000001794 3.833691108458161e-07
+1088.8000000001794 3.7944567223997195e-07
+1088.9000000001793 3.7553078985672187e-07
+1089.0000000001794 3.7162446323373777e-07
+1089.1000000001795 3.6795830443987205e-07
+1089.2000000001794 3.6429635468620697e-07
+1089.3000000001794 3.606386139777959e-07
+1089.4000000001795 3.569850823200331e-07
+1089.5000000001796 3.533357597173004e-07
+1089.6000000001795 3.4976212831837816e-07
+1089.7000000001794 3.4619130428324106e-07
+1089.8000000001796 3.4262328761930564e-07
+1089.9000000001797 3.390580783336236e-07
+1090.0000000001796 3.3549567643498794e-07
+1090.1000000001795 3.3252218391550407e-07
+1090.2000000001797 3.295525948020588e-07
+1090.3000000001798 3.265869081152459e-07
+1090.4000000001797 3.2362512287580214e-07
+1090.5000000001796 3.2066723810791466e-07
+1090.6000000001798 3.1843132264030143e-07
+1090.70000000018 3.161868481412839e-07
+1090.8000000001798 3.139338170264988e-07
+1090.9000000001797 3.116722317115634e-07
+1091.0000000001799 3.094020946114971e-07
+1091.10000000018 3.0698003013319743e-07
+1091.20000000018 3.0455211102268115e-07
+1091.3000000001798 3.021183364124084e-07
+1091.40000000018 2.996787054345402e-07
+1091.50000000018 2.972332172185072e-07
+1091.60000000018 2.937674393638268e-07
+1091.70000000018 2.903147488074478e-07
+1091.80000000018 2.86875147642446e-07
+1091.9000000001802 2.834486379630974e-07
+1092.00000000018 2.800352218627692e-07
+1092.10000000018 2.7665439588735287e-07
+1092.2000000001801 2.732864584030351e-07
+1092.3000000001803 2.699314062739311e-07
+1092.4000000001802 2.665892363631157e-07
+1092.50000000018 2.632599455387185e-07
+1092.6000000001802 2.6080838748736687e-07
+1092.7000000001804 2.58351635033699e-07
+1092.8000000001803 2.558896895405537e-07
+1092.9000000001802 2.534225523694825e-07
+1093.0000000001803 2.509502248834351e-07
+1093.1000000001804 2.4874192701592215e-07
+1093.2000000001804 2.465225666551014e-07
+1093.3000000001803 2.442921448380694e-07
+1093.4000000001804 2.420506626021774e-07
+1093.5000000001805 2.3979812098289944e-07
+1093.6000000001804 2.3705025084581187e-07
+1093.7000000001804 2.3430254996308192e-07
+1093.8000000001805 2.3155501833441633e-07
+1093.9000000001806 2.2880765596026398e-07
+1094.0000000001805 2.2606046284013742e-07
+1094.1000000001804 2.2359785334771757e-07
+1094.2000000001806 2.2114270499675094e-07
+1094.3000000001807 2.1869501823862895e-07
+1094.4000000001806 2.1625479352468198e-07
+1094.5000000001805 2.1382203130777832e-07
+1094.6000000001807 2.117897439320537e-07
+1094.7000000001808 2.0975737714984215e-07
+1094.8000000001807 2.0772493096999293e-07
+1094.9000000001806 2.056924054017896e-07
+1095.0000000001808 2.036598004539645e-07
+1095.100000000181 2.015649992546871e-07
+1095.2000000001808 1.9947138161817066e-07
+1095.3000000001807 1.9737894730659298e-07
+1095.4000000001809 1.9528769608278622e-07
+1095.500000000181 1.9319762770849627e-07
+1095.600000000181 1.9095093126031333e-07
+1095.7000000001808 1.8870880062848647e-07
+1095.800000000181 1.864712347421419e-07
+1095.900000000181 1.842382325309308e-07
+1096.000000000181 1.820097929257157e-07
+1096.100000000181 1.8028571386506773e-07
+1096.200000000181 1.7855493067989928e-07
+1096.3000000001812 1.7681744343125301e-07
+1096.400000000181 1.7507325218042136e-07
+1096.500000000181 1.7332235698868416e-07
+1096.6000000001811 1.715295145410334e-07
+1096.7000000001813 1.6973080759076685e-07
+1096.8000000001812 1.6792623619239255e-07
+1096.900000000181 1.6611580040134916e-07
+1097.0000000001812 1.6429950027040552e-07
+1097.1000000001814 1.6194358084075672e-07
+1097.2000000001813 1.595953254218338e-07
+1097.3000000001812 1.5725473347584005e-07
+1097.4000000001813 1.5492180446495935e-07
+1097.5000000001814 1.5259653785169363e-07
+1097.6000000001814 1.503720619551358e-07
+1097.7000000001813 1.481527259934648e-07
+1097.8000000001814 1.4593852960902405e-07
+1097.9000000001815 1.4372947244415697e-07
+1098.0000000001814 1.4152555414307116e-07
+1098.1000000001814 1.401112115967981e-07
+1098.2000000001815 1.3869815464804677e-07
+1098.3000000001816 1.372863830886157e-07
+1098.4000000001815 1.3587589671032086e-07
+1098.5000000001814 1.5171784097603962e-07
+1098.6000000001816 1.615702232721661e-07
+1098.7000000001817 1.6537896964062437e-07
+1098.8000000001816 1.6338587586193406e-07
+1098.9000000001815 1.5624305512174176e-07
+1099.0000000001817 0.0
+1099.1000000001818 0.0
+1099.2000000001817 0.0
+1099.3000000001816 0.0
+1099.4000000001818 0.0
+1099.500000000182 0.0
+1099.6000000001818 0.0
+1099.7000000001817 0.0
+1099.8000000001819 0.0
+1099.900000000182 0.0
+1100.000000000182 0.0
+1100.1000000001818 0.0
+1100.200000000182 0.0
+1100.300000000182 0.0
+1100.400000000182 0.0
+1100.500000000182 0.0
+1100.600000000182 0.0
+1100.7000000001822 0.0
+1100.800000000182 -0.0
+1100.900000000182 -0.0
+1101.0000000001821 -0.0
+1101.1000000001823 -0.0
+1101.2000000001822 -0.0
+1101.300000000182 -0.0
+1101.4000000001822 -0.0
+1101.5000000001824 0.0
+1101.6000000001823 0.0
+1101.7000000001822 0.0
+1101.8000000001823 0.0
+1101.9000000001824 0.0
+1102.0000000001824 0.0
+1102.1000000001823 0.0
+1102.2000000001824 0.0
+1102.3000000001825 0.0
+1102.4000000001824 0.0
+1102.5000000001824 0.0
+1102.6000000001825 0.0
+1102.7000000001826 0.0
+1102.8000000001825 0.0
+1102.9000000001824 0.0
+1103.0000000001826 0.0
+1103.1000000001827 0.0
+1103.2000000001826 0.0
+1103.3000000001825 0.0
+1103.4000000001827 0.0
+1103.5000000001828 0.0
+1103.6000000001827 0.0
+1103.7000000001826 0.0
+1103.8000000001828 0.0
+1103.900000000183 0.0
+1104.0000000001828 0.0
+1104.1000000001827 0.0
+1104.2000000001829 0.0
+1104.300000000183 0.0
+1104.400000000183 0.0
+1104.5000000001828 0.0
+1104.600000000183 0.0
+1104.700000000183 0.0
+1104.800000000183 0.0
+1104.900000000183 0.0
+1105.000000000183 0.0
+1105.1000000001832 0.0
+1105.200000000183 0.0
+1105.300000000183 0.0
+1105.4000000001831 0.0
+1105.5000000001833 0.0
+1105.6000000001832 0.0
+1105.700000000183 0.0
+1105.8000000001832 0.0
+1105.9000000001834 0.0
+1106.0000000001833 0.0
+1106.1000000001832 0.0
+1106.2000000001833 0.0
+1106.3000000001834 0.0
+1106.4000000001834 0.0
+1106.5000000001833 0.0
+1106.6000000001834 0.0
+1106.7000000001835 0.0
+1106.8000000001834 0.0
+1106.9000000001834 0.0
+1107.0000000001835 0.0
+1107.1000000001836 0.0
+1107.2000000001835 0.0
+1107.3000000001834 0.0
+1107.4000000001836 0.0
+1107.5000000001837 0.0
+1107.6000000001836 0.0
+1107.7000000001835 0.0
+1107.8000000001837 0.0
+1107.9000000001838 0.0
+1108.0000000001837 0.0
+1108.1000000001836 0.0
+1108.2000000001838 0.0
+1108.300000000184 0.0
+1108.4000000001838 0.0
+1108.5000000001837 0.0
+1108.6000000001839 0.0
+1108.700000000184 0.0
+1108.800000000184 0.0
+1108.9000000001838 0.0
+1109.000000000184 0.0
+1109.100000000184 0.0
+1109.200000000184 0.0
+1109.300000000184 0.0
+1109.400000000184 0.0
+1109.5000000001842 0.0
+1109.600000000184 0.0
+1109.700000000184 0.0
+1109.8000000001841 0.0
+1109.9000000001843 0.0
+1110.0000000001842 0.0
+1110.100000000184 0.0
+1110.2000000001842 0.0
+1110.3000000001844 0.0
+1110.4000000001843 0.0
+1110.5000000001842 0.0
+1110.6000000001843 0.0
+1110.7000000001844 0.0
+1110.8000000001844 0.0
+1110.9000000001843 0.0
+1111.0000000001844 0.0
+1111.1000000001845 0.0
+1111.2000000001844 0.0
+1111.3000000001844 0.0
+1111.4000000001845 0.0
+1111.5000000001846 0.0
+1111.6000000001845 0.0
+1111.7000000001844 0.0
+1111.8000000001846 0.0
+1111.9000000001847 0.0
+1112.0000000001846 0.0
+1112.1000000001845 0.0
+1112.2000000001847 0.0
+1112.3000000001848 0.0
+1112.4000000001847 0.0
+1112.5000000001846 0.0
+1112.6000000001848 0.0
+1112.700000000185 0.0
+1112.8000000001848 0.0
+1112.9000000001847 0.0
+1113.0000000001849 0.0
+1113.100000000185 0.0
+1113.200000000185 0.0
+1113.3000000001848 0.0
+1113.400000000185 0.0
+1113.500000000185 0.0
+1113.600000000185 0.0
+1113.700000000185 0.0
+1113.800000000185 0.0
+1113.9000000001852 0.0
+1114.000000000185 0.0
+1114.100000000185 0.0
+1114.2000000001851 0.0
+1114.3000000001853 0.0
+1114.4000000001852 0.0
+1114.500000000185 0.0
+1114.6000000001852 0.0
+1114.7000000001854 0.0
+1114.8000000001853 0.0
+1114.9000000001852 0.0
+1115.0000000001853 0.0
+1115.1000000001854 0.0
+1115.2000000001854 0.0
+1115.3000000001853 0.0
+1115.4000000001854 0.0
+1115.5000000001855 0.0
+1115.6000000001854 0.0
+1115.7000000001854 0.0
+1115.8000000001855 0.0
+1115.9000000001856 0.0
+1116.0000000001855 0.0
+1116.1000000001854 0.0
+1116.2000000001856 0.0
+1116.3000000001857 0.0
+1116.4000000001856 0.0
+1116.5000000001855 0.0
+1116.6000000001857 0.0
+1116.7000000001858 0.0
+1116.8000000001857 0.0
+1116.9000000001856 0.0
+1117.0000000001858 0.0
+1117.100000000186 0.0
+1117.2000000001858 0.0
+1117.3000000001857 0.0
+1117.4000000001859 0.0
+1117.500000000186 0.0
+1117.600000000186 0.0
+1117.7000000001858 0.0
+1117.800000000186 0.0
+1117.900000000186 0.0
+1118.000000000186 0.0
+1118.100000000186 0.0
+1118.200000000186 0.0
+1118.3000000001862 0.0
+1118.400000000186 0.0
+1118.500000000186 0.0
+1118.6000000001861 0.0
+1118.7000000001863 0.0
+1118.8000000001862 0.0
+1118.900000000186 0.0
+1119.0000000001862 0.0
+1119.1000000001864 0.0
+1119.2000000001863 0.0
+1119.3000000001862 0.0
+1119.4000000001863 0.0
+1119.5000000001864 0.0
+1119.6000000001864 0.0
+1119.7000000001863 0.0
+1119.8000000001864 0.0
+1119.9000000001865 0.0
+1120.0000000001864 0.0
+1120.1000000001864 0.0
+1120.2000000001865 0.0
+1120.3000000001866 0.0
+1120.4000000001865 0.0
+1120.5000000001864 0.0
+1120.6000000001866 0.0
+1120.7000000001867 0.0
+1120.8000000001866 0.0
+1120.9000000001865 0.0
+1121.0000000001867 0.0
+1121.1000000001868 0.0
+1121.2000000001867 0.0
+1121.3000000001866 0.0
+1121.4000000001868 0.0
+1121.500000000187 0.0
+1121.6000000001868 0.0
+1121.7000000001867 0.0
+1121.8000000001869 0.0
+1121.900000000187 0.0
+1122.000000000187 0.0
+1122.1000000001868 0.0
+1122.200000000187 0.0
+1122.300000000187 0.0
+1122.400000000187 0.0
+1122.500000000187 0.0
+1122.600000000187 0.0
+1122.7000000001872 0.0
+1122.800000000187 0.0
+1122.900000000187 0.0
+1123.0000000001871 0.0
+1123.1000000001873 0.0
+1123.2000000001872 0.0
+1123.300000000187 0.0
+1123.4000000001872 0.0
+1123.5000000001874 0.0
+1123.6000000001873 0.0
+1123.7000000001872 0.0
+1123.8000000001873 0.0
+1123.9000000001874 0.0
+1124.0000000001874 0.0
+1124.1000000001873 0.0
+1124.2000000001874 0.0
+1124.3000000001875 0.0
+1124.4000000001874 0.0
+1124.5000000001874 0.0
+1124.6000000001875 0.0
+1124.7000000001876 0.0
+1124.8000000001875 0.0
+1124.9000000001874 0.0
+1125.0000000001876 0.0
+1125.1000000001877 0.0
+1125.2000000001876 0.0
+1125.3000000001875 0.0
+1125.4000000001877 0.0
+1125.5000000001878 0.0
+1125.6000000001877 0.0
+1125.7000000001876 0.0
+1125.8000000001878 0.0
+1125.900000000188 0.0
+1126.0000000001878 0.0
+1126.1000000001877 0.0
+1126.2000000001879 0.0
+1126.300000000188 0.0
+1126.400000000188 0.0
+1126.5000000001878 0.0
+1126.600000000188 0.0
+1126.700000000188 0.0
+1126.800000000188 0.0
+1126.900000000188 0.0
+1127.000000000188 0.0
+1127.1000000001882 0.0
+1127.200000000188 0.0
+1127.300000000188 0.0
+1127.4000000001881 0.0
+1127.5000000001883 0.0
+1127.6000000001882 0.0
+1127.700000000188 0.0
+1127.8000000001882 0.0
+1127.9000000001884 0.0
+1128.0000000001883 0.0
+1128.1000000001882 0.0
+1128.2000000001883 0.0
+1128.3000000001884 0.0
+1128.4000000001884 0.0
+1128.5000000001883 0.0
+1128.6000000001884 0.0
+1128.7000000001885 0.0
+1128.8000000001884 0.0
+1128.9000000001884 0.0
+1129.0000000001885 0.0
+1129.1000000001886 0.0
+1129.2000000001885 0.0
+1129.3000000001884 0.0
+1129.4000000001886 0.0
+1129.5000000001887 0.0
+1129.6000000001886 0.0
+1129.7000000001885 0.0
+1129.8000000001887 0.0
+1129.9000000001888 0.0
+1130.0000000001887 0.0
+1130.1000000001886 0.0
+1130.2000000001888 0.0
+1130.300000000189 0.0
+1130.4000000001888 0.0
+1130.5000000001887 0.0
+1130.6000000001889 0.0
+1130.700000000189 0.0
+1130.800000000189 0.0
+1130.9000000001888 0.0
+1131.000000000189 0.0
+1131.100000000189 0.0
+1131.200000000189 0.0
+1131.300000000189 0.0
+1131.400000000189 0.0
+1131.5000000001892 0.0
+1131.600000000189 0.0
+1131.700000000189 0.0
+1131.8000000001891 0.0
+1131.9000000001893 0.0
+1132.0000000001892 0.0
+1132.100000000189 0.0
+1132.2000000001892 0.0
+1132.3000000001894 0.0
+1132.4000000001893 0.0
+1132.5000000001892 0.0
+1132.6000000001893 0.0
+1132.7000000001894 0.0
+1132.8000000001894 0.0
+1132.9000000001893 0.0
+1133.0000000001894 0.0
+1133.1000000001895 0.0
+1133.2000000001894 0.0
+1133.3000000001894 0.0
+1133.4000000001895 0.0
+1133.5000000001896 0.0
+1133.6000000001895 0.0
+1133.7000000001894 0.0
+1133.8000000001896 0.0
+1133.9000000001897 0.0
+1134.0000000001896 0.0
+1134.1000000001895 0.0
+1134.2000000001897 0.0
+1134.3000000001898 0.0
+1134.4000000001897 0.0
+1134.5000000001896 0.0
+1134.6000000001898 0.0
+1134.70000000019 0.0
+1134.8000000001898 0.0
+1134.9000000001897 0.0
+1135.0000000001899 0.0
+1135.10000000019 0.0
+1135.20000000019 0.0
+1135.3000000001898 0.0
+1135.40000000019 0.0
+1135.50000000019 0.0
+1135.60000000019 0.0
+1135.70000000019 0.0
+1135.80000000019 0.0
+1135.9000000001902 0.0
+1136.00000000019 0.0
+1136.10000000019 0.0
+1136.2000000001901 0.0
+1136.3000000001903 0.0
+1136.4000000001902 0.0
+1136.50000000019 0.0
+1136.6000000001902 0.0
+1136.7000000001904 0.0
+1136.8000000001903 0.0
+1136.9000000001902 0.0
+1137.0000000001903 0.0
+1137.1000000001904 0.0
+1137.2000000001904 0.0
+1137.3000000001903 0.0
+1137.4000000001904 0.0
+1137.5000000001905 0.0
+1137.6000000001904 0.0
+1137.7000000001904 0.0
+1137.8000000001905 0.0
+1137.9000000001906 0.0
+1138.0000000001905 0.0
+1138.1000000001904 0.0
+1138.2000000001906 0.0
+1138.3000000001907 0.0
+1138.4000000001906 0.0
+1138.5000000001905 0.0
+1138.6000000001907 0.0
+1138.7000000001908 0.0
+1138.8000000001907 0.0
+1138.9000000001906 0.0
+1139.0000000001908 0.0
+1139.100000000191 0.0
+1139.2000000001908 0.0
+1139.3000000001907 0.0
+1139.4000000001909 0.0
+1139.500000000191 0.0
+1139.600000000191 0.0
+1139.7000000001908 0.0
+1139.800000000191 0.0
+1139.900000000191 0.0
+1140.000000000191 0.0
+1140.100000000191 0.0
+1140.200000000191 0.0
+1140.3000000001912 0.0
+1140.400000000191 0.0
+1140.500000000191 0.0
+1140.6000000001911 0.0
+1140.7000000001913 0.0
+1140.8000000001912 0.0
+1140.900000000191 0.0
+1141.0000000001912 0.0
+1141.1000000001914 0.0
+1141.2000000001913 0.0
+1141.3000000001912 0.0
+1141.4000000001913 0.0
+1141.5000000001914 0.0
+1141.6000000001914 0.0
+1141.7000000001913 0.0
+1141.8000000001914 0.0
+1141.9000000001915 0.0
+1142.0000000001914 0.0
+1142.1000000001914 0.0
+1142.2000000001915 0.0
+1142.3000000001916 0.0
+1142.4000000001915 0.0
+1142.5000000001914 0.0
+1142.6000000001916 0.0
+1142.7000000001917 0.0
+1142.8000000001916 0.0
+1142.9000000001915 0.0
+1143.0000000001917 0.0
+1143.1000000001918 0.0
+1143.2000000001917 0.0
+1143.3000000001916 0.0
+1143.4000000001918 0.0
+1143.500000000192 0.0
+1143.6000000001918 0.0
+1143.7000000001917 0.0
+1143.8000000001919 0.0
+1143.900000000192 0.0
+1144.000000000192 0.0
+1144.1000000001918 0.0
+1144.200000000192 0.0
+1144.300000000192 0.0
+1144.400000000192 0.0
+1144.500000000192 0.0
+1144.600000000192 0.0
+1144.7000000001922 0.0
+1144.800000000192 0.0
+1144.900000000192 0.0
+1145.0000000001921 0.0
+1145.1000000001923 0.0
+1145.2000000001922 0.0
+1145.300000000192 0.0
+1145.4000000001922 0.0
+1145.5000000001924 0.0
+1145.6000000001923 0.0
+1145.7000000001922 0.0
+1145.8000000001923 0.0
+1145.9000000001924 0.0
+1146.0000000001924 0.0
+1146.1000000001923 0.0
+1146.2000000001924 0.0
+1146.3000000001925 0.0
+1146.4000000001924 0.0
+1146.5000000001924 0.0
+1146.6000000001925 0.0
+1146.7000000001926 0.0
+1146.8000000001925 0.0
+1146.9000000001924 0.0
+1147.0000000001926 0.0
+1147.1000000001927 0.0
+1147.2000000001926 0.0
+1147.3000000001925 0.0
+1147.4000000001927 0.0
+1147.5000000001928 0.0
+1147.6000000001927 0.0
+1147.7000000001926 0.0
+1147.8000000001928 0.0
+1147.900000000193 0.0
+1148.0000000001928 0.0
+1148.1000000001927 0.0
+1148.2000000001929 0.0
+1148.300000000193 0.0
+1148.400000000193 0.0
+1148.5000000001928 0.0
+1148.600000000193 0.0
+1148.700000000193 0.0
+1148.800000000193 0.0
+1148.900000000193 0.0
+1149.000000000193 0.0
+1149.1000000001932 0.0
+1149.200000000193 0.0
+1149.300000000193 0.0
+1149.4000000001931 0.0
+1149.5000000001933 0.0
+1149.6000000001932 0.0
+1149.700000000193 0.0
+1149.8000000001932 0.0
+1149.9000000001934 0.0
+1150.0000000001933 0.0
diff --git a/filt_func/rubin/r.dat b/filt_func/rubin/r.dat
new file mode 100755
index 00000000..4bb64fa6
--- /dev/null
+++ b/filt_func/rubin/r.dat
@@ -0,0 +1,8508 @@
+# LSST Throughputs files created from syseng_throughputs repo
+# Version 1.9
+# sha1 fcc05772f99427e4a45cd1b9da1628dded9a06d5
+# Aerosols added to atmosphere
+# Wavelen_cutoff_BLUE 533.70
+# Wavelen_cutoff_RED 705.70
+# Wavelength(nm) Throughput(0-1)
+300.0 0.0
+300.1 0.0
+300.20000000000005 0.0
+300.30000000000007 0.0
+300.4000000000001 0.0
+300.5000000000001 0.0
+300.60000000000014 0.0
+300.70000000000016 0.0
+300.8000000000002 0.0
+300.9000000000002 0.0
+301.0000000000002 0.0
+301.10000000000025 0.0
+301.2000000000003 0.0
+301.3000000000003 0.0
+301.4000000000003 0.0
+301.50000000000034 0.0
+301.60000000000036 0.0
+301.7000000000004 0.0
+301.8000000000004 0.0
+301.90000000000043 0.0
+302.00000000000045 0.0
+302.1000000000005 0.0
+302.2000000000005 0.0
+302.3000000000005 0.0
+302.40000000000055 0.0
+302.50000000000057 0.0
+302.6000000000006 0.0
+302.7000000000006 0.0
+302.80000000000064 0.0
+302.90000000000066 0.0
+303.0000000000007 0.0
+303.1000000000007 0.0
+303.2000000000007 0.0
+303.30000000000075 0.0
+303.4000000000008 0.0
+303.5000000000008 0.0
+303.6000000000008 0.0
+303.70000000000084 0.0
+303.80000000000086 0.0
+303.9000000000009 0.0
+304.0000000000009 0.0
+304.10000000000093 0.0
+304.20000000000095 0.0
+304.300000000001 0.0
+304.400000000001 0.0
+304.500000000001 0.0
+304.60000000000105 0.0
+304.70000000000107 0.0
+304.8000000000011 0.0
+304.9000000000011 0.0
+305.00000000000114 0.0
+305.10000000000116 0.0
+305.2000000000012 0.0
+305.3000000000012 0.0
+305.4000000000012 0.0
+305.50000000000125 0.0
+305.6000000000013 0.0
+305.7000000000013 0.0
+305.8000000000013 0.0
+305.90000000000134 0.0
+306.00000000000136 0.0
+306.1000000000014 0.0
+306.2000000000014 0.0
+306.30000000000143 0.0
+306.40000000000146 0.0
+306.5000000000015 0.0
+306.6000000000015 0.0
+306.7000000000015 0.0
+306.80000000000155 0.0
+306.90000000000157 0.0
+307.0000000000016 0.0
+307.1000000000016 0.0
+307.20000000000164 0.0
+307.30000000000166 0.0
+307.4000000000017 0.0
+307.5000000000017 0.0
+307.6000000000017 0.0
+307.70000000000175 0.0
+307.8000000000018 0.0
+307.9000000000018 0.0
+308.0000000000018 0.0
+308.10000000000184 0.0
+308.20000000000186 0.0
+308.3000000000019 0.0
+308.4000000000019 0.0
+308.50000000000193 0.0
+308.60000000000196 0.0
+308.700000000002 0.0
+308.800000000002 0.0
+308.900000000002 0.0
+309.00000000000205 0.0
+309.10000000000207 0.0
+309.2000000000021 0.0
+309.3000000000021 0.0
+309.40000000000214 0.0
+309.50000000000216 0.0
+309.6000000000022 0.0
+309.7000000000022 0.0
+309.8000000000022 0.0
+309.90000000000225 0.0
+310.0000000000023 0.0
+310.1000000000023 0.0
+310.2000000000023 0.0
+310.30000000000234 0.0
+310.40000000000236 0.0
+310.5000000000024 0.0
+310.6000000000024 0.0
+310.70000000000243 0.0
+310.80000000000246 0.0
+310.9000000000025 0.0
+311.0000000000025 0.0
+311.1000000000025 0.0
+311.20000000000255 0.0
+311.30000000000257 0.0
+311.4000000000026 0.0
+311.5000000000026 0.0
+311.60000000000264 0.0
+311.70000000000266 0.0
+311.8000000000027 0.0
+311.9000000000027 0.0
+312.00000000000273 0.0
+312.10000000000275 0.0
+312.2000000000028 0.0
+312.3000000000028 0.0
+312.4000000000028 0.0
+312.50000000000284 0.0
+312.60000000000286 0.0
+312.7000000000029 0.0
+312.8000000000029 0.0
+312.90000000000293 0.0
+313.00000000000296 0.0
+313.100000000003 0.0
+313.200000000003 0.0
+313.300000000003 0.0
+313.40000000000305 0.0
+313.50000000000307 0.0
+313.6000000000031 0.0
+313.7000000000031 0.0
+313.80000000000314 0.0
+313.90000000000316 0.0
+314.0000000000032 0.0
+314.1000000000032 0.0
+314.20000000000323 0.0
+314.30000000000325 0.0
+314.4000000000033 0.0
+314.5000000000033 0.0
+314.6000000000033 0.0
+314.70000000000334 0.0
+314.80000000000337 0.0
+314.9000000000034 0.0
+315.0000000000034 0.0
+315.10000000000343 0.0
+315.20000000000346 0.0
+315.3000000000035 0.0
+315.4000000000035 0.0
+315.5000000000035 0.0
+315.60000000000355 0.0
+315.70000000000357 0.0
+315.8000000000036 0.0
+315.9000000000036 0.0
+316.00000000000364 0.0
+316.10000000000366 0.0
+316.2000000000037 0.0
+316.3000000000037 0.0
+316.40000000000373 0.0
+316.50000000000375 0.0
+316.6000000000038 0.0
+316.7000000000038 0.0
+316.8000000000038 0.0
+316.90000000000384 0.0
+317.00000000000387 0.0
+317.1000000000039 0.0
+317.2000000000039 0.0
+317.30000000000393 0.0
+317.40000000000396 0.0
+317.500000000004 0.0
+317.600000000004 0.0
+317.700000000004 0.0
+317.80000000000405 0.0
+317.90000000000407 0.0
+318.0000000000041 0.0
+318.1000000000041 0.0
+318.20000000000414 0.0
+318.30000000000416 0.0
+318.4000000000042 0.0
+318.5000000000042 0.0
+318.60000000000423 0.0
+318.70000000000425 0.0
+318.8000000000043 0.0
+318.9000000000043 0.0
+319.0000000000043 0.0
+319.10000000000434 0.0
+319.20000000000437 0.0
+319.3000000000044 0.0
+319.4000000000044 0.0
+319.50000000000443 0.0
+319.60000000000446 0.0
+319.7000000000045 0.0
+319.8000000000045 0.0
+319.9000000000045 0.0
+320.00000000000455 3.6498081031658184e-22
+320.10000000000457 9.549816670519344e-12
+320.2000000000046 2.2518269870131015e-11
+320.3000000000046 3.9495868103259604e-11
+320.40000000000464 6.11186407285401e-11
+320.50000000000466 8.80683824228844e-11
+320.6000000000047 1.2127066451213182e-10
+320.7000000000047 1.6142711086418307e-10
+320.80000000000473 2.0939130434632836e-10
+320.90000000000475 2.6606733544526306e-10
+321.0000000000048 3.3240990774737337e-10
+321.1000000000048 4.1933566147190904e-10
+321.2000000000048 5.202102205453675e-10
+321.30000000000484 6.360593709219001e-10
+321.40000000000487 7.679040777204412e-10
+321.5000000000049 9.167597784049748e-10
+321.6000000000049 1.0764151908181252e-09
+321.70000000000493 1.252672047745125e-09
+321.80000000000496 1.446152799815966e-09
+321.900000000005 1.6574510732583284e-09
+322.000000000005 1.8871316797687525e-09
+322.100000000005 2.1644187938792025e-09
+322.20000000000505 2.466615603324212e-09
+322.30000000000507 2.7946057552576704e-09
+322.4000000000051 3.1492478550604637e-09
+322.5000000000051 3.5313752289467343e-09
+322.60000000000514 3.975024569915827e-09
+322.70000000000516 4.455236902579491e-09
+322.8000000000052 4.973548234188339e-09
+322.9000000000052 5.531496413241687e-09
+323.00000000000523 6.130619938441599e-09
+323.10000000000525 6.997515525444697e-09
+323.2000000000053 7.945270428257222e-09
+323.3000000000053 8.977815421250124e-09
+323.4000000000053 1.0099096226950366e-08
+323.50000000000534 1.1313069560760698e-08
+323.60000000000537 1.2545643943819824e-08
+323.7000000000054 1.3863199971907298e-08
+323.8000000000054 1.5268281760550084e-08
+323.90000000000543 1.6763389391132354e-08
+324.00000000000546 1.8350976851152954e-08
+324.1000000000055 2.0454210367918078e-08
+324.2000000000055 2.2705959492301867e-08
+324.3000000000055 2.5110369698029704e-08
+324.40000000000555 2.767149282716509e-08
+324.50000000000557 3.0393287245922776e-08
+324.6000000000056 3.326373281092291e-08
+324.7000000000056 3.629948369026967e-08
+324.80000000000564 3.950394801734591e-08
+324.90000000000566 4.288043168590327e-08
+325.0000000000057 4.643213891904275e-08
+325.1000000000057 5.082645113115269e-08
+325.20000000000573 5.549441121326149e-08
+325.30000000000575 6.044474523634607e-08
+325.4000000000058 6.568620793633013e-08
+325.5000000000058 7.122758218582771e-08
+325.6000000000058 7.740613463032793e-08
+325.70000000000584 8.395247375094706e-08
+325.80000000000587 9.087911741110932e-08
+325.9000000000059 9.819871399475665e-08
+326.0000000000059 1.0592404175034315e-07
+326.10000000000593 1.133842048029825e-07
+326.20000000000596 1.2122601908833327e-07
+326.300000000006 1.2946239736050078e-07
+326.400000000006 1.3810651405087377e-07
+326.500000000006 1.471718105750208e-07
+326.60000000000605 1.559104490474497e-07
+326.70000000000607 1.650101934196621e-07
+326.8000000000061 1.744799837004373e-07
+326.9000000000061 1.8432885794235493e-07
+327.00000000000614 1.945659527858569e-07
+327.10000000000616 2.0774135288323486e-07
+327.2000000000062 2.215026766633592e-07
+327.3000000000062 2.3586289662388436e-07
+327.40000000000623 2.5083498570062733e-07
+327.50000000000625 2.6643191607973206e-07
+327.6000000000063 2.829201706991756e-07
+327.7000000000063 3.0009069932772343e-07
+327.8000000000063 3.179584714054177e-07
+327.90000000000634 3.3653851571660674e-07
+328.00000000000637 3.55845919871807e-07
+328.1000000000064 3.7495913388209836e-07
+328.2000000000064 3.9481291553982094e-07
+328.30000000000643 4.1542578510306656e-07
+328.40000000000646 4.368165080408306e-07
+328.5000000000065 4.590040963549925e-07
+328.6000000000065 4.830642042183431e-07
+328.7000000000065 5.080543173620196e-07
+328.80000000000655 5.339987018152504e-07
+328.90000000000657 5.609219975665082e-07
+329.0000000000066 5.888492201649989e-07
+329.1000000000066 6.177725883576714e-07
+329.20000000000664 6.477160551822111e-07
+329.30000000000666 6.787028601892138e-07
+329.4000000000067 7.107565315717664e-07
+329.5000000000067 7.43900885426433e-07
+329.60000000000673 7.755585060551094e-07
+329.70000000000675 8.081366969611215e-07
+329.8000000000068 8.416507293216234e-07
+329.9000000000068 8.761159509809249e-07
+330.0000000000068 9.11547782125866e-07
+330.10000000000684 9.399581885618818e-07
+330.20000000000687 9.687375893681942e-07
+330.3000000000069 9.978774114192291e-07
+330.4000000000069 1.0273687380076324e-06
+330.50000000000693 1.0572023046408883e-06
+330.60000000000696 1.0887502023657023e-06
+330.700000000007 1.120703084907026e-06
+330.800000000007 1.1530522187870813e-06
+330.900000000007 1.1857884602906795e-06
+331.00000000000705 1.2189022479492729e-06
+331.10000000000707 1.2433298748574146e-06
+331.2000000000071 1.267930497485271e-06
+331.3000000000071 1.2926973143900031e-06
+331.40000000000714 1.3176232322234334e-06
+331.50000000000716 1.342700858516899e-06
+331.6000000000072 1.3707770907142527e-06
+331.7000000000072 1.3990831900297096e-06
+331.80000000000723 1.4276118613329661e-06
+331.90000000000725 1.4563555201933026e-06
+332.0000000000073 1.4853062887671143e-06
+332.1000000000073 1.5166717534061203e-06
+332.2000000000073 1.5481536567684326e-06
+332.30000000000734 1.5797355352625196e-06
+332.40000000000737 1.6114004067365669e-06
+332.5000000000074 1.6431307642729002e-06
+332.6000000000074 1.671541242634977e-06
+332.70000000000744 1.699872158093428e-06
+332.80000000000746 1.7281053136534416e-06
+332.9000000000075 1.7562221172418547e-06
+333.0000000000075 1.784203579154398e-06
+333.1000000000075 1.8008000668908917e-06
+333.20000000000755 1.8170599284739952e-06
+333.30000000000757 1.8329695069769608e-06
+333.4000000000076 1.8485150066821757e-06
+333.5000000000076 1.863682493561138e-06
+333.60000000000764 1.8807273758267028e-06
+333.70000000000766 1.89739951750834e-06
+333.8000000000077 1.913686437877318e-06
+333.9000000000077 1.929575305152519e-06
+334.00000000000773 1.94505291842079e-06
+334.10000000000775 1.963979660633032e-06
+334.2000000000078 1.982700769422312e-06
+334.3000000000078 2.0012066998940804e-06
+334.4000000000078 2.019487498718555e-06
+334.50000000000784 2.037532787017627e-06
+334.60000000000787 2.056148153136995e-06
+334.7000000000079 2.0745151634100997e-06
+334.8000000000079 2.092621719400538e-06
+334.90000000000794 2.110455213971881e-06
+335.00000000000796 2.1280025146355235e-06
+335.100000000008 2.1392214242616184e-06
+335.200000000008 2.150094549877625e-06
+335.300000000008 2.1606102736854017e-06
+335.40000000000805 2.1707564938962143e-06
+335.5000000000081 2.180520616655328e-06
+335.6000000000081 2.187343346525294e-06
+335.7000000000081 2.193746458022679e-06
+335.80000000000814 2.1997173142777173e-06
+335.90000000000816 2.20524282239216e-06
+336.0000000000082 2.2103094327785492e-06
+336.1000000000082 2.2251072871163823e-06
+336.20000000000823 2.2397271206242307e-06
+336.30000000000825 2.254159761679471e-06
+336.4000000000083 2.268395593048972e-06
+336.5000000000083 2.2824245455542017e-06
+336.6000000000083 2.296235902347227e-06
+336.70000000000834 2.30983603274203e-06
+336.80000000000837 2.3232189553254384e-06
+336.9000000000084 2.3363786309735347e-06
+337.0000000000084 2.349308962589393e-06
+337.10000000000844 2.357581218481805e-06
+337.20000000000846 2.3656216562434344e-06
+337.3000000000085 2.373425370853183e-06
+337.4000000000085 2.380987408306964e-06
+337.5000000000085 2.3883027653678984e-06
+337.60000000000855 2.4000068730755436e-06
+337.7000000000086 2.4114772539153602e-06
+337.8000000000086 2.4227072603957725e-06
+337.9000000000086 2.43369016511515e-06
+338.00000000000864 2.4444191602427947e-06
+338.10000000000866 2.4608725610091665e-06
+338.2000000000087 2.4772573581230833e-06
+338.3000000000087 2.493570169060403e-06
+338.40000000000873 2.509807571127275e-06
+338.50000000000875 2.525966101247673e-06
+338.6000000000088 2.539163583607857e-06
+338.7000000000088 2.552253991046106e-06
+338.8000000000088 2.5652329777439445e-06
+338.90000000000884 2.578096224840143e-06
+339.00000000000887 2.5908394428398556e-06
+339.1000000000089 2.6045173772890598e-06
+339.2000000000089 2.6180657280634196e-06
+339.30000000000894 2.6314800794300145e-06
+339.40000000000896 2.6447560513852856e-06
+339.500000000009 2.657889302036482e-06
+339.600000000009 2.6688726238843463e-06
+339.700000000009 2.679688736670923e-06
+339.80000000000905 2.690333906632853e-06
+339.9000000000091 2.7008044653983605e-06
+340.0000000000091 2.7110968119619556e-06
+340.1000000000091 2.7240510306889096e-06
+340.20000000000914 2.737010674527145e-06
+340.30000000000916 2.749975433736076e-06
+340.4000000000092 2.7629450938459393e-06
+340.5000000000092 2.7759195378513545e-06
+340.60000000000923 2.79098223331932e-06
+340.70000000000925 2.806065819450572e-06
+340.8000000000093 2.8211704474555333e-06
+340.9000000000093 2.836296369905123e-06
+341.0000000000093 2.8514439432435946e-06
+341.10000000000935 2.8700939244281246e-06
+341.20000000000937 2.8887916665893188e-06
+341.3000000000094 2.907537805023096e-06
+341.4000000000094 2.92633309300265e-06
+341.50000000000944 2.9451784049962194e-06
+341.60000000000946 2.964074862196465e-06
+341.7000000000095 2.9830179382387935e-06
+341.8000000000095 3.002007083615392e-06
+341.9000000000095 3.0210417413919154e-06
+342.00000000000955 3.0401213471756123e-06
+342.1000000000096 3.0542578811606967e-06
+342.2000000000096 3.0683814078887228e-06
+342.3000000000096 3.0824910366159545e-06
+342.40000000000964 3.096585868772832e-06
+342.50000000000966 3.1106649979238043e-06
+342.6000000000097 3.1224491812594288e-06
+342.7000000000097 3.134200344194299e-06
+342.80000000000973 3.1459176475243206e-06
+342.90000000000975 3.157600246373859e-06
+343.0000000000098 3.1692472902339385e-06
+343.1000000000098 3.174448263178547e-06
+343.2000000000098 3.179599466058565e-06
+343.30000000000985 3.1847003765675e-06
+343.40000000000987 3.189750470104515e-06
+343.5000000000099 3.1947492197883022e-06
+343.6000000000099 3.1997046692687262e-06
+343.70000000000994 3.2046134416118366e-06
+343.80000000000996 3.2094722225899446e-06
+343.90000000001 3.2142778941688284e-06
+344.00000000001 3.219027536557042e-06
+344.10000000001 3.221940635304511e-06
+344.20000000001005 3.2247956180969366e-06
+344.3000000000101 3.227590294643811e-06
+344.4000000000101 3.230322684466406e-06
+344.5000000000101 3.2329910180888936e-06
+344.60000000001014 3.2379325732162097e-06
+344.70000000001016 3.2428073568997494e-06
+344.8000000000102 3.247613991797248e-06
+344.9000000000102 3.2523513129653816e-06
+345.00000000001023 3.2570183695740985e-06
+345.10000000001025 3.2646258408501604e-06
+345.2000000000103 3.272166697148455e-06
+345.3000000000103 3.279640439207408e-06
+345.4000000000103 3.287046788344294e-06
+345.50000000001035 3.294385688823415e-06
+345.60000000001037 3.3004794089393467e-06
+345.7000000000104 3.3065036305584563e-06
+345.8000000000104 3.3124590597089017e-06
+345.90000000001044 3.318346632753319e-06
+346.00000000001046 3.324167518041646e-06
+346.1000000000105 3.33069055752841e-06
+346.2000000000105 3.3371846203137623e-06
+346.3000000000105 3.3436519379825916e-06
+346.40000000001055 3.3500949846870207e-06
+346.5000000000106 3.3565164790371535e-06
+346.6000000000106 3.3629192475347235e-06
+346.7000000000106 3.369294091209925e-06
+346.80000000001064 3.3756407777135375e-06
+346.90000000001066 3.3819590739890457e-06
+347.0000000000107 3.3882487462460296e-06
+347.1000000000107 3.4002326642093056e-06
+347.20000000001073 3.412203879852968e-06
+347.30000000001075 3.4241619883354783e-06
+347.4000000000108 3.436106582813028e-06
+347.5000000000108 3.448037254447838e-06
+347.6000000000108 3.4599537348480274e-06
+347.70000000001085 3.471855364033983e-06
+347.80000000001087 3.48374162001695e-06
+347.9000000000109 3.4956119773425416e-06
+348.0000000000109 3.507465907076755e-06
+348.10000000001094 3.5126964728813473e-06
+348.20000000001096 3.517903180975542e-06
+348.300000000011 3.523085793410295e-06
+348.400000000011 3.5282440713698496e-06
+348.500000000011 3.5333777751134654e-06
+348.60000000001105 3.5397374565648597e-06
+348.7000000000111 3.5460832449828225e-06
+348.8000000000111 3.5524101032676556e-06
+348.9000000000111 3.5587133163305812e-06
+349.00000000001114 3.564988494435095e-06
+349.10000000001116 3.5721401038609602e-06
+349.2000000000112 3.579258300926295e-06
+349.3000000000112 3.5863396664072805e-06
+349.40000000001123 3.5933811171024137e-06
+349.50000000001125 3.6003799095636747e-06
+349.6000000000113 3.6073336437988418e-06
+349.7000000000113 3.6142404726587857e-06
+349.8000000000113 3.6210987560610873e-06
+349.90000000001135 3.627907212514215e-06
+350.00000000001137 3.6346649226983233e-06
+350.1000000000114 3.6478558493589244e-06
+350.2000000000114 3.6610568023337443e-06
+350.30000000001144 3.6742681598630164e-06
+350.40000000001146 3.687490681380043e-06
+350.5000000000115 3.7007255142531866e-06
+350.6000000000115 3.7152544399583265e-06
+350.7000000000115 3.72980721003928e-06
+350.80000000001155 3.744386121607923e-06
+350.9000000000116 3.758993886093613e-06
+351.0000000000116 3.7736336367711708e-06
+351.1000000000116 3.784418702063205e-06
+351.20000000001164 3.7952222217844573e-06
+351.30000000001166 3.806048581492474e-06
+351.4000000000117 3.816902599962763e-06
+351.5000000000117 3.827789534952395e-06
+351.60000000001173 3.840031678811593e-06
+351.70000000001176 3.852303629069027e-06
+351.8000000000118 3.864605382000093e-06
+351.9000000000118 3.876936937198089e-06
+352.0000000000118 3.88929829758298e-06
+352.10000000001185 3.900921356009182e-06
+352.20000000001187 3.912569595803306e-06
+352.3000000000119 3.9242430172359e-06
+352.4000000000119 3.935941624204252e-06
+352.50000000001194 3.9476654242319035e-06
+352.60000000001196 3.958068736017771e-06
+352.700000000012 3.968491802231958e-06
+352.800000000012 3.978934739354754e-06
+352.900000000012 3.989397660822294e-06
+353.00000000001205 3.999880676956764e-06
+353.1000000000121 4.01536859871316e-06
+353.2000000000121 4.0309038879342266e-06
+353.3000000000121 4.04648672553042e-06
+353.40000000001214 4.062117289593228e-06
+353.50000000001216 4.077795755353828e-06
+353.6000000000122 4.092134891761254e-06
+353.7000000000122 4.106509976616842e-06
+353.80000000001223 4.120922912966014e-06
+353.90000000001226 4.135375491598927e-06
+354.0000000000123 4.149869388761565e-06
+354.1000000000123 4.199525210139731e-06
+354.2000000000123 4.249400666455581e-06
+354.30000000001235 4.2994976925730895e-06
+354.40000000001237 4.349818137322077e-06
+354.5000000000124 4.400363755626995e-06
+354.6000000000124 4.451136200646911e-06
+354.70000000001244 4.502136759661536e-06
+354.80000000001246 4.553366773074319e-06
+354.9000000000125 4.6048274468569815e-06
+355.0000000000125 4.656519843869896e-06
+355.1000000000125 4.708398794588153e-06
+355.20000000001255 4.760508780291461e-06
+355.3000000000126 4.8128503689835176e-06
+355.4000000000126 4.865423949680241e-06
+355.5000000000126 4.918229723112383e-06
+355.60000000001264 4.971267692368325e-06
+355.70000000001266 5.024538225003989e-06
+355.8000000000127 5.078041088386744e-06
+355.9000000000127 5.13177584117128e-06
+356.00000000001273 5.1857418240222645e-06
+356.10000000001276 5.233775286503479e-06
+356.2000000000128 5.282033793485773e-06
+356.3000000000128 5.3305160672407395e-06
+356.4000000000128 5.379220584396043e-06
+356.50000000001285 5.42814556721119e-06
+356.60000000001287 5.479108067672137e-06
+356.7000000000129 5.530328314461858e-06
+356.8000000000129 5.58180716385982e-06
+356.90000000001294 5.633545473882311e-06
+357.00000000001296 5.685544104332999e-06
+357.100000000013 5.732685705749582e-06
+357.200000000013 5.780004297162324e-06
+357.30000000001303 5.82750027325675e-06
+357.40000000001305 5.8751740292261695e-06
+357.5000000000131 5.923025960689439e-06
+357.6000000000131 5.971056463721612e-06
+357.7000000000131 6.019265934864594e-06
+357.80000000001314 6.067654771116778e-06
+357.90000000001316 6.1162233699222295e-06
+358.0000000000132 6.1649721291992224e-06
+358.1000000000132 6.185212221529748e-06
+358.20000000001323 6.205502066047936e-06
+358.30000000001326 6.225841746105446e-06
+358.4000000000133 6.2462313451284035e-06
+358.5000000000133 6.266670946650266e-06
+358.6000000000133 6.28509234054716e-06
+358.70000000001335 6.303547763793161e-06
+358.80000000001337 6.322039994233037e-06
+358.9000000000134 6.340571636330162e-06
+359.0000000000134 6.359145118232897e-06
+359.10000000001344 6.382316231248012e-06
+359.20000000001346 6.405559479652769e-06
+359.3000000000135 6.4288768419895485e-06
+359.4000000000135 6.452270113854886e-06
+359.50000000001353 6.47574090419218e-06
+359.60000000001355 6.499290096685705e-06
+359.7000000000136 6.522919102135541e-06
+359.8000000000136 6.546629123180799e-06
+359.9000000000136 6.570421150385559e-06
+360.00000000001364 6.59429595822675e-06
+360.10000000001367 6.5112389920881e-06
+360.2000000000137 6.427885397838128e-06
+360.3000000000137 6.3442338310122555e-06
+360.40000000001373 6.260282737012143e-06
+360.50000000001376 6.176030365782908e-06
+360.6000000000138 6.093452146885954e-06
+360.7000000000138 6.010512423787371e-06
+360.8000000000138 5.927208616953932e-06
+360.90000000001385 5.8435380190897635e-06
+361.00000000001387 5.7594978099491915e-06
+361.1000000000139 5.677930042464993e-06
+361.2000000000139 5.59590334274723e-06
+361.30000000001394 5.513414105409758e-06
+361.40000000001396 5.430458667506746e-06
+361.500000000014 5.347033324219489e-06
+361.600000000014 5.263134344994271e-06
+361.70000000001403 5.178767415361478e-06
+361.80000000001405 5.093931065178559e-06
+361.9000000000141 5.008623822516222e-06
+362.0000000000141 4.922844214142014e-06
+362.1000000000141 4.897358415026921e-06
+362.20000000001414 4.8717452832929086e-06
+362.30000000001417 4.84600442317584e-06
+362.4000000000142 4.8201354359505655e-06
+362.5000000000142 4.794137920090896e-06
+362.60000000001423 4.769541641897186e-06
+362.70000000001426 4.744798735157135e-06
+362.8000000000143 4.7199088326522494e-06
+362.9000000000143 4.694871570657704e-06
+363.0000000000143 4.669686588862014e-06
+363.10000000001435 4.645138139213271e-06
+363.20000000001437 4.6204340099890396e-06
+363.3000000000144 4.595573792310489e-06
+363.4000000000144 4.570557079980382e-06
+363.50000000001444 4.545383469359688e-06
+363.60000000001446 4.5186114894509865e-06
+363.7000000000145 4.491699515110332e-06
+363.8000000000145 4.4646472590542084e-06
+363.90000000001453 4.437454427568482e-06
+364.00000000001455 4.410120720581599e-06
+364.1000000000146 4.435810904864298e-06
+364.2000000000146 4.461577142604741e-06
+364.3000000000146 4.487419609816061e-06
+364.40000000001464 4.5133384789688105e-06
+364.50000000001467 4.539333918896885e-06
+364.6000000000147 4.565406470309685e-06
+364.7000000000147 4.591556165712593e-06
+364.80000000001473 4.617783039980571e-06
+364.90000000001476 4.644087130363778e-06
+365.0000000000148 4.67046847664257e-06
+365.1000000000148 4.699299436541428e-06
+365.2000000000148 4.728234482398261e-06
+365.30000000001485 4.757273777899903e-06
+365.40000000001487 4.7864174897901605e-06
+365.5000000000149 4.815665788023012e-06
+365.6000000000149 4.846548775219137e-06
+365.70000000001494 4.8775540724521715e-06
+365.80000000001496 4.908682072252996e-06
+365.900000000015 4.9399331643455254e-06
+366.000000000015 4.971307735564283e-06
+366.10000000001503 4.954417146194352e-06
+366.20000000001505 4.937434938009723e-06
+366.3000000000151 4.920360945240039e-06
+366.4000000000151 4.903194996341072e-06
+366.5000000000151 4.885936914049161e-06
+366.60000000001514 4.867059276585181e-06
+366.70000000001517 4.848102518750231e-06
+366.8000000000152 4.82906645193436e-06
+366.9000000000152 4.809950897600129e-06
+367.00000000001523 4.790755687150733e-06
+367.10000000001526 4.776140585462516e-06
+367.2000000000153 4.761406977351787e-06
+367.3000000000153 4.746554460780269e-06
+367.4000000000153 4.731582642205202e-06
+367.50000000001535 4.716491136397036e-06
+367.60000000001537 4.701279566309462e-06
+367.7000000000154 4.685947030242785e-06
+367.8000000000154 4.670493016132233e-06
+367.90000000001544 4.654917012304701e-06
+368.00000000001546 4.639218507517357e-06
+368.1000000000155 4.668297502765464e-06
+368.2000000000155 4.697456822636455e-06
+368.30000000001553 4.7266965008460246e-06
+368.40000000001555 4.756016568832654e-06
+368.5000000000156 4.785417055749474e-06
+368.6000000000156 4.81640783684986e-06
+368.7000000000156 4.8475054530563226e-06
+368.80000000001564 4.8787060476277785e-06
+368.90000000001567 4.910005985575314e-06
+369.0000000000157 4.9414018632941656e-06
+369.1000000000157 4.970242713331997e-06
+369.20000000001573 4.999144077192011e-06
+369.30000000001576 5.0281032263861266e-06
+369.4000000000158 5.057117708630466e-06
+369.5000000000158 5.0861853572449414e-06
+369.6000000000158 5.116887495947692e-06
+369.70000000001585 5.147655847482453e-06
+369.80000000001587 5.178489004437157e-06
+369.9000000000159 5.2093858672575015e-06
+370.0000000000159 5.2403456541119645e-06
+370.10000000001594 5.341558035507047e-06
+370.20000000001596 5.443088990953356e-06
+370.300000000016 5.544938302871819e-06
+370.400000000016 5.647106150938304e-06
+370.50000000001603 5.749593145625897e-06
+370.60000000001605 5.850601212171631e-06
+370.7000000000161 5.9518702320888005e-06
+370.8000000000161 6.053401977661048e-06
+370.9000000000161 6.155198787952619e-06
+371.00000000001614 6.257263604030019e-06
+371.10000000001617 6.366964793341765e-06
+371.2000000000162 6.47718730940673e-06
+371.3000000000162 6.587937270602032e-06
+371.40000000001623 6.699221568272267e-06
+371.50000000001626 6.811047908040678e-06
+371.6000000000163 6.921305082895955e-06
+371.7000000000163 7.032029850445611e-06
+371.8000000000163 7.1432235326593e-06
+371.90000000001635 7.254887462117314e-06
+372.00000000001637 7.367022982192409e-06
+372.1000000000164 7.3615691607169345e-06
+372.2000000000164 7.356044911679477e-06
+372.30000000001644 7.350450162676577e-06
+372.40000000001646 7.344784840477645e-06
+372.5000000000165 7.339048870997809e-06
+372.6000000000165 7.3310084002585184e-06
+372.70000000001653 7.322903818476118e-06
+372.80000000001655 7.3147349007713755e-06
+372.9000000000166 7.30650143703015e-06
+373.0000000000166 7.298203231752872e-06
+373.1000000000166 7.291022476271614e-06
+373.20000000001664 7.283774433544688e-06
+373.30000000001667 7.276458934070234e-06
+373.4000000000167 7.269075822644469e-06
+373.5000000000167 7.261624958319664e-06
+373.60000000001673 7.251885712289784e-06
+373.70000000001676 7.242071947261566e-06
+373.8000000000168 7.232190155775148e-06
+373.9000000000168 7.222246297308185e-06
+374.0000000000168 7.212245801140399e-06
+374.10000000001685 7.112041505954729e-06
+374.20000000001687 7.011515943210433e-06
+374.3000000000169 6.910671845404644e-06
+374.4000000000169 6.80951124245254e-06
+374.50000000001694 6.708035494830171e-06
+374.60000000001696 6.60425123106706e-06
+374.700000000017 6.500217762482691e-06
+374.800000000017 6.395934798552772e-06
+374.90000000001703 6.2914015383483405e-06
+375.00000000001705 6.186616703967192e-06
+375.1000000000171 6.0859746513940765e-06
+375.2000000000171 5.984924833942982e-06
+375.3000000000171 5.883464148845945e-06
+375.40000000001714 5.78158914384989e-06
+375.50000000001717 5.679296050738519e-06
+375.6000000000172 5.574904201606555e-06
+375.7000000000172 5.470149001793557e-06
+375.80000000001723 5.365026233462869e-06
+375.90000000001726 5.259531487772015e-06
+376.0000000000173 5.153660202943654e-06
+376.1000000000173 5.115609708962821e-06
+376.2000000000173 5.077349956815423e-06
+376.30000000001735 5.038876336034987e-06
+376.40000000001737 5.000184009134515e-06
+376.5000000000174 4.9612679266901355e-06
+376.6000000000174 4.9206504399457145e-06
+376.70000000001744 4.879842953030943e-06
+376.80000000001746 4.838844929717993e-06
+376.9000000000175 4.797655843717748e-06
+377.0000000000175 4.756275178272595e-06
+377.10000000001753 4.715308395132135e-06
+377.20000000001755 4.674139935779727e-06
+377.3000000000176 4.63276926520392e-06
+377.4000000000176 4.5911958561608985e-06
+377.5000000000176 4.549419188735171e-06
+377.60000000001764 4.506096051436434e-06
+377.70000000001767 4.462594845243536e-06
+377.8000000000177 4.418915071861793e-06
+377.9000000000177 4.375056235904186e-06
+378.00000000001774 4.3310178449934795e-06
+378.10000000001776 4.341851801046781e-06
+378.2000000000178 4.352707483228967e-06
+378.3000000000178 4.363584835597053e-06
+378.4000000000178 4.3744838013513385e-06
+378.50000000001785 4.385404322851609e-06
+378.60000000001787 4.395042200025488e-06
+378.7000000000179 4.4046968280858835e-06
+378.8000000000179 4.414368406654623e-06
+378.90000000001794 4.424057136921552e-06
+379.00000000001796 4.433763221665423e-06
+379.100000000018 4.4432396634136185e-06
+379.200000000018 4.452733073839051e-06
+379.30000000001803 4.462243658919126e-06
+379.40000000001805 4.471771626198789e-06
+379.5000000000181 4.481317184826064e-06
+379.6000000000181 4.492209000098159e-06
+379.7000000000181 4.503123318479728e-06
+379.80000000001814 4.514060150259054e-06
+379.90000000001817 4.525019500909173e-06
+380.0000000000182 4.5360013710540655e-06
+380.1000000000182 4.594541501683577e-06
+380.20000000001824 4.653283952080793e-06
+380.30000000001826 4.7122291414571e-06
+380.4000000000183 4.771377482274626e-06
+380.5000000000183 4.8307293799906806e-06
+380.6000000000183 4.891725044866608e-06
+380.70000000001835 4.952959255437514e-06
+380.8000000000184 5.014432608130033e-06
+380.9000000000184 5.076145689463437e-06
+381.0000000000184 5.138099075424646e-06
+381.10000000001844 5.197319207822007e-06
+381.20000000001846 5.256717101804829e-06
+381.3000000000185 5.316293033469711e-06
+381.4000000000185 5.376047265365833e-06
+381.50000000001853 5.435980045875016e-06
+381.60000000001855 5.497703345151034e-06
+381.7000000000186 5.559640976230945e-06
+381.8000000000186 5.621793333617828e-06
+381.9000000000186 5.6841608198423954e-06
+382.00000000001864 5.746743846142086e-06
+382.10000000001867 5.871712516879051e-06
+382.2000000000187 5.997074491754252e-06
+382.3000000000187 6.122830516688142e-06
+382.40000000001874 6.248981347834974e-06
+382.50000000001876 6.375527752809118e-06
+382.6000000000188 6.504367954562583e-06
+382.7000000000188 6.633677764242996e-06
+382.8000000000188 6.763458304845733e-06
+382.90000000001885 6.893710700900802e-06
+383.0000000000189 7.024436077888227e-06
+383.1000000000189 7.1550872153332145e-06
+383.2000000000189 7.2861958124053665e-06
+383.30000000001894 7.417762940596649e-06
+383.40000000001896 7.549789669795086e-06
+383.500000000019 7.682277067632179e-06
+383.600000000019 7.81523712199715e-06
+383.70000000001903 7.948667936920956e-06
+383.80000000001905 8.08256733360027e-06
+383.9000000000191 8.216933181659175e-06
+384.0000000000191 8.35176342022423e-06
+384.1000000000191 8.499979678037292e-06
+384.20000000001914 8.648694099796854e-06
+384.30000000001917 8.797904984403665e-06
+384.4000000000192 8.94761077470962e-06
+384.5000000000192 9.097810081966e-06
+384.60000000001924 9.251181658845898e-06
+384.70000000001926 9.405129550094455e-06
+384.8000000000193 9.559653001021687e-06
+384.9000000000193 9.71475148411788e-06
+385.0000000000193 9.870424723359112e-06
+385.10000000001935 1.0022134594851103e-05
+385.2000000000194 1.0174280030556506e-05
+385.3000000000194 1.0326861112890057e-05
+385.4000000000194 1.0479878275813195e-05
+385.50000000001944 1.0633332329769386e-05
+385.60000000001946 1.0790336784785491e-05
+385.7000000000195 1.094786945930824e-05
+385.8000000000195 1.1105933176859758e-05
+385.90000000001953 1.1264531286457185e-05
+386.00000000001955 1.1423667691165436e-05
+386.1000000000196 1.127352645576061e-05
+386.2000000000196 1.1122900587089882e-05
+386.3000000000196 1.0971793691500103e-05
+386.40000000001965 1.0820209507657106e-05
+386.50000000001967 1.0668151878539562e-05
+386.6000000000197 1.0515624723039366e-05
+386.7000000000197 1.0362611997574602e-05
+386.80000000001974 1.0209112778092276e-05
+386.90000000001976 1.0055126139257044e-05
+387.0000000000198 9.900651154484347e-06
+387.1000000000198 9.75337415958003e-06
+387.2000000000198 9.605360566462398e-06
+387.30000000001985 9.456608242557023e-06
+387.4000000000199 9.307115050975903e-06
+387.5000000000199 9.156878850584628e-06
+387.6000000000199 9.003322174983826e-06
+387.70000000001994 8.849107866383536e-06
+387.80000000001996 8.694234259292938e-06
+387.90000000002 8.53869968529841e-06
+388.00000000002 8.382502473033422e-06
+388.10000000002003 8.2339132323112e-06
+388.20000000002005 8.084831671078606e-06
+388.3000000000201 7.935256808873845e-06
+388.4000000000201 7.785187663842663e-06
+388.5000000000201 7.634623252796832e-06
+388.60000000002015 7.485686939400677e-06
+388.70000000002017 7.336159749308887e-06
+388.8000000000202 7.186043980007618e-06
+388.9000000000202 7.035341423089258e-06
+389.00000000002024 6.884053386806914e-06
+389.10000000002026 6.72993949565193e-06
+389.2000000000203 6.575341678832229e-06
+389.3000000000203 6.420260321881507e-06
+389.4000000000203 6.2646954199154265e-06
+389.50000000002035 6.108646602319823e-06
+389.6000000000204 5.952113157711381e-06
+389.7000000000204 5.795094058961815e-06
+389.8000000000204 5.637587988647316e-06
+389.90000000002044 5.479593364694997e-06
+390.00000000002046 5.321108366253187e-06
+390.1000000000205 5.243345048512983e-06
+390.2000000000205 5.165256216546056e-06
+390.30000000002053 5.086840199508151e-06
+390.40000000002055 5.0080951687437455e-06
+390.5000000000206 4.9290191511337764e-06
+390.6000000000206 4.848238934298335e-06
+390.7000000000206 4.767170021051032e-06
+390.80000000002065 4.68581029383255e-06
+390.90000000002067 4.604157547990567e-06
+391.0000000000207 4.522209506133809e-06
+391.1000000000207 4.438405900577223e-06
+391.20000000002074 4.354362605947762e-06
+391.30000000002076 4.270077459133002e-06
+391.4000000000208 4.18554828606987e-06
+391.5000000000208 4.10077291684785e-06
+391.6000000000208 4.015749035889961e-06
+391.70000000002085 3.9304819605877304e-06
+391.8000000000209 3.844971322675895e-06
+391.9000000000209 3.7592167449090486e-06
+392.0000000000209 3.673217841444651e-06
+392.10000000002094 3.668699598069337e-06
+392.20000000002096 3.6641503644020124e-06
+392.300000000021 3.6595700913664096e-06
+392.400000000021 3.654958725891658e-06
+392.50000000002103 3.6503162109217795e-06
+392.60000000002105 3.644619303064831e-06
+392.7000000000211 3.6388950999925017e-06
+392.8000000000211 3.6331434526316266e-06
+392.9000000000211 3.627364216023279e-06
+393.00000000002115 3.6215572493105845e-06
+393.10000000002117 3.6161754238344754e-06
+393.2000000000212 3.610763774951995e-06
+393.3000000000212 3.605322163523566e-06
+393.40000000002124 3.5998504543308186e-06
+393.50000000002126 3.594348516086673e-06
+393.6000000000213 3.58981604843456e-06
+393.7000000000213 3.585246122472917e-06
+393.8000000000213 3.5806403209606732e-06
+393.90000000002135 3.576000094980493e-06
+394.0000000000214 3.5713267645620624e-06
+394.1000000000214 3.5695730990732963e-06
+394.2000000000214 3.567809757559816e-06
+394.30000000002144 3.5660377492326154e-06
+394.40000000002146 3.564257958448036e-06
+394.5000000000215 3.562471144982758e-06
+394.6000000000215 3.560678090604493e-06
+394.70000000002153 3.55887945634838e-06
+394.80000000002156 3.5570756403635173e-06
+394.9000000000216 3.555266924565512e-06
+395.0000000000216 3.553453474955488e-06
+395.1000000000216 3.5511955940736477e-06
+395.20000000002165 3.5489339880897762e-06
+395.30000000002167 3.546668479541264e-06
+395.4000000000217 3.5443987764053e-06
+395.5000000000217 3.5421244724858257e-06
+395.60000000002174 3.5398497003881044e-06
+395.70000000002176 3.5375717553505712e-06
+395.8000000000218 3.5352882227391456e-06
+395.9000000000218 3.5329966869515313e-06
+396.0000000000218 3.530694731509639e-06
+396.10000000002185 3.5289680434769467e-06
+396.2000000000219 3.527215522529482e-06
+396.3000000000219 3.5254347011811483e-06
+396.4000000000219 3.523623109939917e-06
+396.50000000002194 3.521778277472732e-06
+396.60000000002196 3.518928142871375e-06
+396.700000000022 3.5160520902613674e-06
+396.800000000022 3.5131480695552878e-06
+396.90000000002203 3.5102142754306045e-06
+397.00000000002206 3.5072491464810866e-06
+397.1000000000221 3.503672732164686e-06
+397.2000000000221 3.500063884569537e-06
+397.3000000000221 3.496421783322221e-06
+397.40000000002215 3.4927458486127008e-06
+397.50000000002217 3.4890357399401927e-06
+397.6000000000222 3.48529135492801e-06
+397.7000000000222 3.4815126305241583e-06
+397.80000000002224 3.4776998793500883e-06
+397.90000000002226 3.4738536450374873e-06
+398.0000000000223 3.469974700855406e-06
+398.1000000000223 3.4648809227026186e-06
+398.2000000000223 3.459755952901512e-06
+398.30000000002235 3.4546012577746105e-06
+398.4000000000224 3.44941852540085e-06
+398.5000000000224 3.4442096638150337e-06
+398.6000000000224 3.4399239147014437e-06
+398.70000000002244 3.435606852894828e-06
+398.80000000002246 3.4312592135811885e-06
+398.9000000000225 3.4268818460701675e-06
+399.0000000000225 3.422475712984835e-06
+399.10000000002253 3.417320295222815e-06
+399.20000000002256 3.4121418243300095e-06
+399.3000000000226 3.4069416117304285e-06
+399.4000000000226 3.4017210775278655e-06
+399.5000000000226 3.39648174956597e-06
+399.60000000002265 3.3912252623868084e-06
+399.70000000002267 3.38594682543213e-06
+399.8000000000227 3.3806463965077073e-06
+399.9000000000227 3.3753239333691e-06
+400.00000000002274 3.3699793937228495e-06
+400.10000000002276 3.3485681305481657e-06
+400.2000000000228 3.3270985901592147e-06
+400.3000000000228 3.305570680319716e-06
+400.4000000000228 3.2839843086997645e-06
+400.50000000002285 3.262339382865886e-06
+400.6000000000229 3.2406358102762187e-06
+400.7000000000229 3.218873498285293e-06
+400.8000000000229 3.197052354148623e-06
+400.90000000002294 3.1751722850178074e-06
+401.00000000002296 3.1532331979360893e-06
+401.100000000023 3.1322419688400445e-06
+401.200000000023 3.111176868846625e-06
+401.30000000002303 3.090037756718739e-06
+401.40000000002306 3.068824491025805e-06
+401.5000000000231 3.047536930157012e-06
+401.6000000000231 3.0253508106042813e-06
+401.7000000000231 3.003102678689151e-06
+401.80000000002315 2.9807924327175584e-06
+401.90000000002317 2.958419970868308e-06
+402.0000000000232 2.9359851912331997e-06
+402.1000000000232 2.993706994111041e-06
+402.20000000002324 3.0515662121479923e-06
+402.30000000002326 3.109563055845758e-06
+402.4000000000233 3.167697735940655e-06
+402.5000000000233 3.225970463408471e-06
+402.60000000002333 3.2843814494555506e-06
+402.70000000002335 3.3429309055282665e-06
+402.8000000000234 3.40161904330377e-06
+402.9000000000234 3.460446074699793e-06
+403.0000000000234 3.5194122118650994e-06
+403.10000000002344 3.5786597517156128e-06
+403.20000000002346 3.638049712185971e-06
+403.3000000000235 3.6975823158069707e-06
+403.4000000000235 3.7572577853756147e-06
+403.50000000002353 3.817076343934093e-06
+403.60000000002356 3.877038214780379e-06
+403.7000000000236 3.937143621468421e-06
+403.8000000000236 3.997392787819945e-06
+403.9000000000236 4.057785937896197e-06
+404.00000000002365 4.11832329601524e-06
+404.10000000002367 4.105639760917392e-06
+404.2000000000237 4.09291955513149e-06
+404.3000000000237 4.0801626213046025e-06
+404.40000000002374 4.067368902033297e-06
+404.50000000002376 4.054538339851921e-06
+404.6000000000238 4.042762925554229e-06
+404.7000000000238 4.03094299165612e-06
+404.80000000002383 4.019078456620408e-06
+404.90000000002385 4.007169238845567e-06
+405.0000000000239 3.99521525660721e-06
+405.1000000000239 3.981722644588669e-06
+405.2000000000239 3.968197473521456e-06
+405.30000000002394 3.954639699876919e-06
+405.40000000002397 3.941049280074145e-06
+405.500000000024 3.927426170508368e-06
+405.600000000024 3.91377032752251e-06
+405.70000000002403 3.90008170742417e-06
+405.80000000002406 3.886360266468749e-06
+405.9000000000241 3.872605960892977e-06
+406.0000000000241 3.858818746865327e-06
+406.1000000000241 3.8478391158599955e-06
+406.20000000002415 3.8368263834928545e-06
+406.30000000002417 3.825780496523311e-06
+406.4000000000242 3.814701401667927e-06
+406.5000000000242 3.8035890455674154e-06
+406.60000000002424 3.79244337481401e-06
+406.70000000002426 3.7812643359350105e-06
+406.8000000000243 3.770051875409e-06
+406.9000000000243 3.7588059396441135e-06
+407.00000000002433 3.7475264749886207e-06
+407.10000000002435 3.7350951077216087e-06
+407.2000000000244 3.722637854612315e-06
+407.3000000000244 3.7101546860197242e-06
+407.4000000000244 3.697645572258009e-06
+407.50000000002444 3.6851104836390297e-06
+407.60000000002447 3.672549390445709e-06
+407.7000000000245 3.659962262926891e-06
+407.8000000000245 3.64734907132354e-06
+407.90000000002453 3.6347097858373377e-06
+408.00000000002456 3.6220443766755903e-06
+408.1000000000246 3.665006998381125e-06
+408.2000000000246 3.7080655762931257e-06
+408.3000000000246 3.7512202506866017e-06
+408.40000000002465 3.794471161981758e-06
+408.50000000002467 3.837818450760228e-06
+408.6000000000247 3.881262257732628e-06
+408.7000000000247 3.924802723787749e-06
+408.80000000002474 3.968439989943375e-06
+408.90000000002476 4.012174197385141e-06
+409.0000000000248 4.056005487432791e-06
+409.1000000000248 4.09933459079663e-06
+409.20000000002483 4.1427490679456966e-06
+409.30000000002485 4.186249027529424e-06
+409.4000000000249 4.229834578320875e-06
+409.5000000000249 4.2735058291633695e-06
+409.6000000000249 4.31726288903035e-06
+409.70000000002494 4.361105866971252e-06
+409.80000000002497 4.405034872141608e-06
+409.900000000025 4.449050013809724e-06
+410.000000000025 4.493151401319473e-06
+410.10000000002503 4.51319606199841e-06
+410.20000000002506 4.533277893817323e-06
+410.3000000000251 4.5533969438895454e-06
+410.4000000000251 4.573553259384986e-06
+410.5000000000251 4.593746887491666e-06
+410.60000000002515 4.615203042196708e-06
+410.70000000002517 4.63670671461086e-06
+410.8000000000252 4.658257973844136e-06
+410.9000000000252 4.679856889077582e-06
+411.00000000002524 4.701503529556179e-06
+411.10000000002526 4.7212588631637175e-06
+411.2000000000253 4.741046228023934e-06
+411.3000000000253 4.760865659215528e-06
+411.40000000002533 4.780717191838647e-06
+411.50000000002535 4.8006008610283365e-06
+411.6000000000254 4.820516701947883e-06
+411.7000000000254 4.840464749782009e-06
+411.8000000000254 4.860445039743597e-06
+411.90000000002544 4.880457607080605e-06
+412.00000000002547 4.900502487060959e-06
+412.1000000000255 4.8878539865616565e-06
+412.2000000000255 4.875173937453683e-06
+412.30000000002553 4.862462297850381e-06
+412.40000000002556 4.849719025826888e-06
+412.5000000000256 4.8369440794133e-06
+412.6000000000256 4.8241374166151055e-06
+412.7000000000256 4.811298995379134e-06
+412.80000000002565 4.798428773620823e-06
+412.90000000002567 4.785526709237519e-06
+413.0000000000257 4.77259276005442e-06
+413.1000000000257 4.7591537526022955e-06
+413.20000000002574 4.745686089771715e-06
+413.30000000002576 4.73218973837806e-06
+413.4000000000258 4.718664665223473e-06
+413.5000000000258 4.705110837083435e-06
+413.60000000002583 4.691528220706754e-06
+413.70000000002585 4.6779167828089984e-06
+413.8000000000259 4.664276490079109e-06
+413.9000000000259 4.65060730918591e-06
+414.0000000000259 4.636909206767905e-06
+414.10000000002594 4.634417588752154e-06
+414.20000000002597 4.631915818289633e-06
+414.300000000026 4.6294038809309525e-06
+414.400000000026 4.6268817622392295e-06
+414.50000000002603 4.624349447738199e-06
+414.60000000002606 4.6218069229511255e-06
+414.7000000000261 4.619254173381337e-06
+414.8000000000261 4.616691184525167e-06
+414.9000000000261 4.614117941865461e-06
+415.00000000002615 4.611534430865034e-06
+415.10000000002617 4.608548923554558e-06
+415.2000000000262 4.605554262220352e-06
+415.3000000000262 4.602550435976382e-06
+415.40000000002624 4.599537433941041e-06
+415.50000000002626 4.5965152452114365e-06
+415.6000000000263 4.59348385888266e-06
+415.7000000000263 4.5904432640285666e-06
+415.80000000002633 4.587393449733782e-06
+415.90000000002635 4.58433440506168e-06
+416.0000000000264 4.5812661190725646e-06
+416.1000000000264 4.5743699750725905e-06
+416.2000000000264 4.567456945845915e-06
+416.30000000002644 4.560527011145291e-06
+416.40000000002647 4.553580150694388e-06
+416.5000000000265 4.546616344219537e-06
+416.6000000000265 4.5396355714179795e-06
+416.70000000002653 4.532637811970571e-06
+416.80000000002656 4.52562304555435e-06
+416.9000000000266 4.518591251811035e-06
+417.0000000000266 4.511542410384674e-06
+417.1000000000266 4.504125989829573e-06
+417.20000000002665 4.496694240479109e-06
+417.30000000002667 4.4892471465599445e-06
+417.4000000000267 4.4817846922816494e-06
+417.5000000000267 4.474306861855368e-06
+417.60000000002674 4.4668136394688965e-06
+417.70000000002676 4.459305009299204e-06
+417.8000000000268 4.4517809555123846e-06
+417.9000000000268 4.4442414622759985e-06
+418.00000000002683 4.436686513777406e-06
+418.10000000002685 4.589749467892576e-06
+418.2000000000269 4.743040777354285e-06
+418.3000000000269 4.896560645764876e-06
+418.4000000000269 5.050309276818706e-06
+418.50000000002694 5.2042868743689285e-06
+418.60000000002697 5.35849364236613e-06
+418.700000000027 5.512929784892255e-06
+418.800000000027 5.667595506177384e-06
+418.90000000002703 5.8224910105386155e-06
+419.00000000002706 5.9776165024493214e-06
+419.1000000000271 6.133763368598728e-06
+419.2000000000271 6.290178961992747e-06
+419.3000000000271 6.446863571209541e-06
+419.40000000002715 6.60381748503187e-06
+419.50000000002717 6.76104099249171e-06
+419.6000000000272 6.918534382835429e-06
+419.7000000000272 7.0762979455033095e-06
+419.80000000002724 7.234331970206252e-06
+419.90000000002726 7.392636746849747e-06
+420.0000000000273 7.551212565666163e-06
+420.1000000000273 8.053930433834822e-06
+420.20000000002733 8.557429733899806e-06
+420.30000000002735 9.061711192976191e-06
+420.4000000000274 9.566775538655581e-06
+420.5000000000274 1.0072623498982005e-05
+420.6000000000274 1.0579255802463286e-05
+420.70000000002744 1.108667317811692e-05
+420.80000000002747 1.159487635535318e-05
+420.9000000000275 1.2103866064107697e-05
+421.0000000000275 1.2613643034751241e-05
+421.10000000002753 1.3123208157356335e-05
+421.20000000002756 1.3633524029909543e-05
+421.3000000000276 1.41445913110671e-05
+421.4000000000276 1.465641065980501e-05
+421.5000000000276 1.5168982735592569e-05
+421.60000000002765 1.5682308198237913e-05
+421.70000000002767 1.6196387707922118e-05
+421.8000000000277 1.671122192531035e-05
+421.9000000000277 1.7226811511377262e-05
+422.00000000002774 1.7743157127747282e-05
+422.10000000002776 1.9011884697187692e-05
+422.2000000000278 2.0282248571935838e-05
+422.3000000000278 2.155424995996822e-05
+422.40000000002783 2.2827890069827026e-05
+422.50000000002785 2.4103170110776566e-05
+422.6000000000279 2.53800912925604e-05
+422.7000000000279 2.665865482562208e-05
+422.8000000000279 2.793886192090213e-05
+422.90000000002794 2.9220713790011924e-05
+423.00000000002797 3.05042116451678e-05
+423.100000000028 3.1788974695057095e-05
+423.200000000028 3.307516386174476e-05
+423.30000000002804 3.4362780084901474e-05
+423.40000000002806 3.5651824304697025e-05
+423.5000000000281 3.694229746166921e-05
+423.6000000000281 3.8244016722875514e-05
+423.7000000000281 3.9547830903138915e-05
+423.80000000002815 4.0853742047038673e-05
+423.9000000000282 4.216175220047887e-05
+424.0000000000282 4.34718634110199e-05
+424.1000000000282 4.55690353974871e-05
+424.20000000002824 4.76692787735405e-05
+424.30000000002826 4.977259620227621e-05
+424.4000000000283 5.187899034830366e-05
+424.5000000000283 5.398846387765832e-05
+424.60000000002833 5.6101019458155916e-05
+424.70000000002835 5.8216659759118655e-05
+424.8000000000284 6.0335387451279614e-05
+424.9000000000284 6.245720520709456e-05
+425.0000000000284 6.458211570059674e-05
+425.10000000002844 6.671464498253876e-05
+425.20000000002847 6.885041820071721e-05
+425.3000000000285 7.098943834861018e-05
+425.4000000000285 7.313170842153976e-05
+425.50000000002854 7.527723141686282e-05
+425.60000000002856 7.742601033377613e-05
+425.7000000000286 7.957804817362696e-05
+425.8000000000286 8.173334793938793e-05
+425.9000000000286 8.389191263629804e-05
+426.00000000002865 8.605374527064252e-05
+426.1000000000287 8.625069573254778e-05
+426.2000000000287 8.644785424578798e-05
+426.3000000000287 8.664522095143199e-05
+426.40000000002874 8.68427959901452e-05
+426.50000000002876 8.704057950277429e-05
+426.6000000000288 8.723857163046706e-05
+426.7000000000288 8.743677251420074e-05
+426.80000000002883 8.763518229513589e-05
+426.90000000002885 8.783380111437943e-05
+427.0000000000289 8.803262911322652e-05
+427.1000000000289 8.824679132493175e-05
+427.2000000000289 8.846121661832283e-05
+427.30000000002894 8.867590521100075e-05
+427.40000000002897 8.889085732057277e-05
+427.500000000029 8.910607316488586e-05
+427.600000000029 8.92988594778496e-05
+427.70000000002904 8.94918118917407e-05
+427.80000000002906 8.96849304978845e-05
+427.9000000000291 8.987821538800338e-05
+428.0000000000291 9.007166665289392e-05
+428.1000000000291 8.821548467309455e-05
+428.20000000002915 8.635572727984425e-05
+428.3000000000292 8.449239115144689e-05
+428.4000000000292 8.262547296437963e-05
+428.5000000000292 8.075496939294651e-05
+428.60000000002924 7.886089208876366e-05
+428.70000000002926 7.696419395346858e-05
+428.8000000000293 7.506487291058072e-05
+428.9000000000293 7.316292688282386e-05
+429.00000000002933 7.125835379150999e-05
+429.10000000002935 6.934612475003262e-05
+429.2000000000294 6.743154237887807e-05
+429.3000000000294 6.551460508065914e-05
+429.4000000000294 6.35953112574561e-05
+429.50000000002944 6.16736593104536e-05
+429.60000000002947 5.973454408918234e-05
+429.7000000000295 5.779404883161371e-05
+429.8000000000295 5.5852172983987086e-05
+429.90000000002954 5.390891599262141e-05
+430.00000000002956 5.196427730356598e-05
+430.1000000000296 5.0623386563894406e-05
+430.2000000000296 4.928064314012032e-05
+430.3000000000296 4.7936045559519505e-05
+430.40000000002965 4.658959234871008e-05
+430.5000000000297 4.5241282033573066e-05
+430.6000000000297 4.3891113139007505e-05
+430.7000000000297 4.2539084189242824e-05
+430.80000000002974 4.118519370770985e-05
+430.90000000002976 3.9829440217040495e-05
+431.0000000000298 3.847182223901368e-05
+431.1000000000298 3.71050769376229e-05
+431.20000000002983 3.5736918632577875e-05
+431.30000000002985 3.4367346581202314e-05
+431.4000000000299 3.299636004072023e-05
+431.5000000000299 3.162395826801619e-05
+431.6000000000299 3.0250140519775622e-05
+431.70000000002995 2.8874906052397895e-05
+431.80000000002997 2.749825412207924e-05
+431.90000000003 2.6120183984733658e-05
+432.00000000003 2.4740694896367807e-05
+432.10000000003004 2.4248563899127028e-05
+432.20000000003006 2.3755765836986003e-05
+432.3000000000301 2.32623001990129e-05
+432.4000000000301 2.2768166474019092e-05
+432.5000000000301 2.227336415061691e-05
+432.60000000003015 2.1772422259233338e-05
+432.7000000000302 2.1271062685272697e-05
+432.8000000000302 2.0769285231510246e-05
+432.9000000000302 2.026708970066134e-05
+433.00000000003024 1.9764475895408536e-05
+433.10000000003026 1.926414724453599e-05
+433.2000000000303 1.876325593530889e-05
+433.3000000000303 1.8261801632170722e-05
+433.40000000003033 1.7759783999539426e-05
+433.50000000003035 1.725720270165568e-05
+433.6000000000304 1.6754080789562915e-05
+433.7000000000304 1.6250407716587917e-05
+433.8000000000304 1.574617447811079e-05
+433.90000000003045 1.5241373527692889e-05
+434.00000000003047 1.4735998692693606e-05
+434.1000000000305 1.4454885478725073e-05
+434.2000000000305 1.4173522537303423e-05
+434.30000000003054 1.389190660975386e-05
+434.40000000003056 1.3610035236291919e-05
+434.5000000000306 1.332790670833851e-05
+434.6000000000306 1.3048788502927634e-05
+434.7000000000306 1.2769269482553472e-05
+434.80000000003065 1.2489350095336888e-05
+434.9000000000307 1.2209031293811314e-05
+435.0000000000307 1.1928314489835234e-05
+435.1000000000307 1.164659100698636e-05
+435.20000000003074 1.1364505195788145e-05
+435.30000000003076 1.1082059629751124e-05
+435.4000000000308 1.0799257158952366e-05
+435.5000000000308 1.0516100864013794e-05
+435.60000000003083 1.0232594850159938e-05
+435.70000000003085 9.94874215860792e-06
+435.8000000000309 9.664545974650136e-06
+435.9000000000309 9.380009578193246e-06
+436.0000000000309 9.09513629412724e-06
+436.10000000003095 8.987281531349662e-06
+436.20000000003097 8.879322405527954e-06
+436.300000000031 8.77126226485439e-06
+436.400000000031 8.663104593469317e-06
+436.50000000003104 8.554852992397676e-06
+436.60000000003106 8.446510813718235e-06
+436.7000000000311 8.338065885235078e-06
+436.8000000000311 8.229518123478682e-06
+436.9000000000311 8.120867439661584e-06
+437.00000000003115 8.01211374021241e-06
+437.1000000000312 7.903642606652903e-06
+437.2000000000312 7.79504817494454e-06
+437.3000000000312 7.686330313165799e-06
+437.40000000003124 7.577488886822976e-06
+437.50000000003126 7.468523759435967e-06
+437.6000000000313 7.359435095307762e-06
+437.7000000000313 7.250223458728548e-06
+437.80000000003133 7.140888805625401e-06
+437.90000000003135 7.031431104802047e-06
+438.0000000000314 6.921850336852904e-06
+438.1000000000314 6.8039176838151244e-06
+438.2000000000314 6.685918050107775e-06
+438.30000000003145 6.567851497355438e-06
+438.40000000003147 6.449718094047287e-06
+438.5000000000315 6.331517914296855e-06
+438.6000000000315 6.214786022782205e-06
+438.70000000003154 6.0979228755455135e-06
+438.80000000003156 5.980931439526136e-06
+438.9000000000316 5.863814268002795e-06
+439.0000000000316 5.746573520140566e-06
+439.1000000000316 5.627599246309907e-06
+439.20000000003165 5.508574488878022e-06
+439.3000000000317 5.389500392821305e-06
+439.4000000000317 5.270377787031826e-06
+439.5000000000317 5.151207204649999e-06
+439.60000000003174 5.033237535906421e-06
+439.70000000003176 4.915161240933159e-06
+439.8000000000318 4.796978112145438e-06
+439.9000000000318 4.678687724179004e-06
+440.00000000003183 4.560289453508548e-06
+440.10000000003186 4.548089745036093e-06
+440.2000000000319 4.535887313318468e-06
+440.3000000000319 4.5236818808812394e-06
+440.4000000000319 4.5114730214231e-06
+440.50000000003195 4.499260161837078e-06
+440.60000000003197 4.487042584241898e-06
+440.700000000032 4.4748191740986465e-06
+440.800000000032 4.462588857758757e-06
+440.90000000003204 4.450350419292728e-06
+441.00000000003206 4.438102502624291e-06
+441.1000000000321 4.425595347661397e-06
+441.2000000000321 4.413077289157901e-06
+441.3000000000321 4.40054656583056e-06
+441.40000000003215 4.3880012852694374e-06
+441.5000000000322 4.3754394261454366e-06
+441.6000000000322 4.362858840448149e-06
+441.7000000000322 4.350265651256091e-06
+441.80000000003224 4.337659853026202e-06
+441.90000000003226 4.325041440196847e-06
+442.0000000000323 4.3124104072363465e-06
+442.1000000000323 4.361827010644143e-06
+442.20000000003233 4.411296791060952e-06
+442.30000000003236 4.460819780068143e-06
+442.4000000000324 4.510396009259236e-06
+442.5000000000324 4.560025510239539e-06
+442.6000000000324 4.608573198069115e-06
+442.70000000003245 4.657150291329715e-06
+442.80000000003247 4.7057567999196885e-06
+442.9000000000325 4.754392733745705e-06
+443.0000000000325 4.803058102716866e-06
+443.10000000003254 4.852062869506328e-06
+443.20000000003256 4.901105571809496e-06
+443.3000000000326 4.950186221897112e-06
+443.4000000000326 4.999304832061215e-06
+443.5000000000326 5.048461414589731e-06
+443.60000000003265 5.097655981766138e-06
+443.7000000000327 5.1468885458759024e-06
+443.8000000000327 5.196159119219991e-06
+443.9000000000327 5.2454677140813435e-06
+444.00000000003274 5.294814342760965e-06
+444.10000000003276 5.330940388133857e-06
+444.2000000000328 5.367088361936986e-06
+444.3000000000328 5.403258271495238e-06
+444.40000000003283 5.439450124142226e-06
+444.50000000003286 5.475663927206265e-06
+444.6000000000329 5.5118996880101435e-06
+444.7000000000329 5.548157413885335e-06
+444.8000000000329 5.584437112172257e-06
+444.90000000003295 5.6207387901911784e-06
+445.00000000003297 5.657062455293563e-06
+445.100000000033 5.6946633871195995e-06
+445.200000000033 5.7323012929943804e-06
+445.30000000003304 5.769976192655261e-06
+445.40000000003306 5.807688105838836e-06
+445.5000000000331 5.845437052295892e-06
+445.6000000000331 5.883223051784025e-06
+445.7000000000331 5.9210461240599045e-06
+445.80000000003315 5.958906288894555e-06
+445.9000000000332 5.99680356605801e-06
+446.0000000000332 6.034737975333641e-06
+446.1000000000332 6.045732054398098e-06
+446.20000000003324 6.05673686001609e-06
+446.30000000003326 6.067752396881172e-06
+446.4000000000333 6.078778669719444e-06
+446.5000000000333 6.089815683241379e-06
+446.60000000003333 6.09788159297514e-06
+446.70000000003336 6.105950361611823e-06
+446.8000000000334 6.114021989667412e-06
+446.9000000000334 6.122096477665907e-06
+447.0000000000334 6.1301738261399924e-06
+447.10000000003345 6.140094634230777e-06
+447.20000000003347 6.150022847302239e-06
+447.3000000000335 6.1599584684942564e-06
+447.4000000000335 6.169901500931604e-06
+447.50000000003354 6.17985194776334e-06
+447.60000000003356 6.188298628090144e-06
+447.7000000000336 6.196748602125509e-06
+447.8000000000336 6.205201870582203e-06
+447.90000000003363 6.213658434197231e-06
+448.00000000003365 6.222118293757494e-06
+448.1000000000337 6.426223363106855e-06
+448.2000000000337 6.630503116940447e-06
+448.3000000000337 6.834957624096316e-06
+448.40000000003374 7.039586953403612e-06
+448.50000000003376 7.24439117370679e-06
+448.6000000000338 7.4493801462468304e-06
+448.7000000000338 7.65455115537859e-06
+448.80000000003383 7.859901355738266e-06
+448.90000000003386 8.065427804706778e-06
+449.0000000000339 8.271127494874942e-06
+449.1000000000339 8.47682977226059e-06
+449.2000000000339 8.682699324431684e-06
+449.30000000003395 8.888733146355625e-06
+449.40000000003397 9.094928299412611e-06
+449.500000000034 9.301281944416625e-06
+449.600000000034 9.507792155676703e-06
+449.70000000003404 9.714456157850696e-06
+449.80000000003406 9.921271370264847e-06
+449.9000000000341 1.012823544215991e-05
+450.0000000000341 1.0335346288105955e-05
+450.10000000003413 1.0311554191189923e-05
+450.20000000003415 1.0287722801232004e-05
+450.3000000000342 1.0263852605254511e-05
+450.4000000000342 1.0239944439925176e-05
+450.5000000000342 1.0215999487390824e-05
+450.60000000003424 1.019449564932112e-05
+450.70000000003427 1.0172946470211279e-05
+450.8000000000343 1.0151354261519115e-05
+450.9000000000343 1.0129721654629474e-05
+451.00000000003433 1.0108051597187576e-05
+451.10000000003436 1.0084315724689182e-05
+451.2000000000344 1.0060556222519424e-05
+451.3000000000344 1.0036776974754284e-05
+451.4000000000344 1.0012982163558997e-05
+451.50000000003445 9.989176265095302e-06
+451.60000000003447 9.962948785216027e-06
+451.7000000000345 9.936714695050743e-06
+451.8000000000345 9.91047416342742e-06
+451.90000000003454 9.884227367432401e-06
+452.00000000003456 9.857974492224712e-06
+452.1000000000346 9.717055446028947e-06
+452.2000000000346 9.576003436199997e-06
+452.30000000003463 9.4348185875204e-06
+452.40000000003465 9.293501021831188e-06
+452.5000000000347 9.152050857286798e-06
+452.6000000000347 9.010468207658511e-06
+452.7000000000347 8.868752174394381e-06
+452.80000000003474 8.726902616894824e-06
+452.90000000003477 8.58491938956852e-06
+453.0000000000348 8.44280234250331e-06
+453.1000000000348 8.297956989782604e-06
+453.20000000003483 8.153069370707478e-06
+453.30000000003486 8.008139383850577e-06
+453.4000000000349 7.863166926578404e-06
+453.5000000000349 7.718151895750243e-06
+453.6000000000349 7.574915377525644e-06
+453.70000000003495 7.431560230935714e-06
+453.80000000003497 7.288090084058346e-06
+453.900000000035 7.144508068086484e-06
+454.000000000035 7.000816840794635e-06
+454.10000000003504 6.898496867401879e-06
+454.20000000003506 6.79611518800387e-06
+454.3000000000351 6.6936733682707455e-06
+454.4000000000351 6.591172636894943e-06
+454.50000000003513 6.488613902566717e-06
+454.60000000003515 6.385997770905567e-06
+454.7000000000352 6.283324561526077e-06
+454.8000000000352 6.180594324979632e-06
+454.9000000000352 6.07780685983e-06
+455.00000000003524 5.974961729769753e-06
+455.10000000003527 5.87110109537342e-06
+455.2000000000353 5.767216892759333e-06
+455.3000000000353 5.663308089319923e-06
+455.40000000003533 5.559373487081012e-06
+455.50000000003536 5.455411740031492e-06
+455.6000000000354 5.352710870686454e-06
+455.7000000000354 5.249929659599432e-06
+455.8000000000354 5.147066398070191e-06
+455.90000000003545 5.0441192973329624e-06
+456.00000000003547 4.941086506008608e-06
+456.1000000000355 4.907823452055994e-06
+456.2000000000355 4.8745502629321836e-06
+456.30000000003554 4.841265038761211e-06
+456.40000000003556 4.807965770204937e-06
+456.5000000000356 4.774650344058391e-06
+456.6000000000356 4.742457659945422e-06
+456.70000000003563 4.71023707549494e-06
+456.80000000003565 4.677988580358535e-06
+456.9000000000357 4.645712164185803e-06
+457.0000000000357 4.613407816630127e-06
+457.1000000000357 4.580821243952679e-06
+457.20000000003574 4.548207395133262e-06
+457.30000000003577 4.51556626071162e-06
+457.4000000000358 4.482897831225857e-06
+457.5000000000358 4.450202097223337e-06
+457.60000000003583 4.416418684604612e-06
+457.70000000003586 4.3826241763993225e-06
+457.8000000000359 4.34881857112586e-06
+457.9000000000359 4.315001867319019e-06
+458.0000000000359 4.281174063522005e-06
+458.10000000003595 4.3026650908398456e-06
+458.20000000003597 4.324163776857351e-06
+458.300000000036 4.345670122855248e-06
+458.400000000036 4.367184130120019e-06
+458.50000000003604 4.388705799933257e-06
+458.60000000003606 4.411300178151269e-06
+458.7000000000361 4.433916609836301e-06
+458.8000000000361 4.456553092041341e-06
+458.90000000003613 4.479207733995998e-06
+459.00000000003615 4.501878760909149e-06
+459.1000000000362 4.524201983928729e-06
+459.2000000000362 4.546535796460463e-06
+459.3000000000362 4.568878793586802e-06
+459.40000000003624 4.5912297021625335e-06
+459.50000000003627 4.613587384649555e-06
+459.6000000000363 4.634840320458999e-06
+459.7000000000363 4.656087748928026e-06
+459.80000000003633 4.677329091045572e-06
+459.90000000003636 4.698563912057536e-06
+460.0000000000364 4.719791924974035e-06
+460.1000000000364 4.861024349818531e-06
+460.2000000000364 5.0023573949354505e-06
+460.30000000003645 5.1437904363397155e-06
+460.40000000003647 5.285323058677002e-06
+460.5000000000365 5.42695507827168e-06
+460.6000000000365 5.567355120818424e-06
+460.70000000003654 5.707788112949293e-06
+460.80000000003656 5.848254543235268e-06
+460.9000000000366 5.9887552204421545e-06
+461.0000000000366 6.129291297748994e-06
+461.10000000003663 6.270021613145454e-06
+461.20000000003665 6.41082149818629e-06
+461.3000000000367 6.551693282810359e-06
+461.4000000000367 6.692639739100165e-06
+461.5000000000367 6.833664105879474e-06
+461.60000000003674 6.9731036130991965e-06
+461.70000000003677 7.112548423947865e-06
+461.8000000000368 7.251998468252784e-06
+461.9000000000368 7.391453664638168e-06
+462.00000000003683 7.530913919990491e-06
+462.10000000003686 7.917055176069358e-06
+462.2000000000369 8.303434564706351e-06
+462.3000000000369 8.69005191551751e-06
+462.4000000000369 9.076907030779885e-06
+462.50000000003695 9.463999683433241e-06
+462.60000000003697 9.8513300200019e-06
+462.700000000037 1.023889880953833e-05
+462.800000000037 1.062670609785029e-05
+462.90000000003704 1.101475195773015e-05
+463.00000000003706 1.1403036492907147e-05
+463.1000000000371 1.1790251462719158e-05
+463.2000000000371 1.2177619893297692e-05
+463.30000000003713 1.2565141995858366e-05
+463.40000000003715 1.2952818028371604e-05
+463.5000000000372 1.334064829937491e-05
+463.6000000000372 1.3731886592736358e-05
+463.7000000000372 1.4123449564879584e-05
+463.80000000003724 1.4515342881602647e-05
+463.90000000003727 1.4907572407349004e-05
+464.0000000000373 1.5300144139164257e-05
+464.1000000000373 1.5971697331257154e-05
+464.20000000003733 1.6643424259079304e-05
+464.30000000003736 1.7315331873606676e-05
+464.4000000000374 1.7987427267413086e-05
+464.5000000000374 1.8659717559392288e-05
+464.6000000000374 1.9336812686551707e-05
+464.70000000003745 2.0014438038158485e-05
+464.80000000003747 2.069260073494134e-05
+464.9000000000375 2.137130753513694e-05
+465.0000000000375 2.205056472161202e-05
+465.10000000003754 2.272843759413395e-05
+465.20000000003756 2.3406761045281908e-05
+465.3000000000376 2.40855391382266e-05
+465.4000000000376 2.4764775005816906e-05
+465.50000000003763 2.5444470736833264e-05
+465.60000000003765 2.612462726198212e-05
+465.7000000000377 2.6805242716921318e-05
+465.8000000000377 2.7486314798088002e-05
+465.9000000000377 2.8167839626434185e-05
+466.00000000003774 2.884981162875097e-05
+466.10000000003777 2.9172957224289282e-05
+466.2000000000378 2.9496360804945962e-05
+466.3000000000378 2.982001102176303e-05
+466.40000000003783 3.0143894975235922e-05
+466.50000000003786 3.0467998158510285e-05
+466.6000000000379 3.078500937450585e-05
+466.7000000000379 3.110211558884018e-05
+466.8000000000379 3.14193168125448e-05
+466.90000000003795 3.173661305669289e-05
+467.00000000003797 3.2054004332323666e-05
+467.100000000038 3.2378709574894956e-05
+467.200000000038 3.2703640724769236e-05
+467.30000000003804 3.302879783957719e-05
+467.40000000003806 3.335418097683191e-05
+467.5000000000381 3.3679790194172926e-05
+467.6000000000381 3.399757878491643e-05
+467.70000000003813 3.431544310263471e-05
+467.80000000003815 3.4633383151137234e-05
+467.9000000000382 3.4951398934234806e-05
+468.0000000000382 3.5269490455434163e-05
+468.1000000000382 3.4788226358640165e-05
+468.20000000003824 3.4306602504530737e-05
+468.30000000003827 3.382461879308532e-05
+468.4000000000383 3.3342275124314756e-05
+468.5000000000383 3.285957139817296e-05
+468.60000000003834 3.2368855303046194e-05
+468.70000000003836 3.1878011028168805e-05
+468.8000000000384 3.1387038564423576e-05
+468.9000000000384 3.089593790265012e-05
+469.0000000000384 3.040470903372623e-05
+469.10000000003845 2.9918949493360046e-05
+469.2000000000385 2.9432875744205013e-05
+469.3000000000385 2.894648773000084e-05
+469.4000000000385 2.8459785394521472e-05
+469.50000000003854 2.7972768681534686e-05
+469.60000000003856 2.7478948999046366e-05
+469.7000000000386 2.6985048073734704e-05
+469.8000000000386 2.6491065906917217e-05
+469.90000000003863 2.599700249987379e-05
+470.00000000003865 2.5502857853863982e-05
+470.1000000000387 2.4881119753497396e-05
+470.2000000000387 2.4258941634337873e-05
+470.3000000000387 2.3636323391775522e-05
+470.40000000003874 2.3013264921286112e-05
+470.50000000003877 2.238976611827959e-05
+470.6000000000388 2.1765826878189447e-05
+470.7000000000388 2.1141447096415967e-05
+470.80000000003884 2.051662666838144e-05
+470.90000000003886 1.989136548950129e-05
+471.0000000000389 1.9265663455158456e-05
+471.1000000000389 1.8635056580196827e-05
+471.2000000000389 1.8004320234573514e-05
+471.30000000003895 1.7373454415148384e-05
+471.400000000039 1.674245911877826e-05
+471.500000000039 1.6111334342358566e-05
+471.600000000039 1.5483726744692824e-05
+471.70000000003904 1.4855692188943371e-05
+471.80000000003906 1.4227230580415643e-05
+471.9000000000391 1.3598341824480628e-05
+472.0000000000391 1.296902582654033e-05
+472.10000000003913 1.2621619923554076e-05
+472.20000000003915 1.2274130998630254e-05
+472.3000000000392 1.1926559047920526e-05
+472.4000000000392 1.1578904067620207e-05
+472.5000000000392 1.1231166053892968e-05
+472.60000000003924 1.0885905789938385e-05
+472.70000000003927 1.0540398765329284e-05
+472.8000000000393 1.0194644917586364e-05
+472.9000000000393 9.848644184252027e-06
+473.00000000003934 9.502396502861233e-06
+473.10000000003936 9.152966067950705e-06
+473.2000000000394 8.803491062877309e-06
+473.3000000000394 8.45397149220639e-06
+473.4000000000394 8.104407360489529e-06
+473.50000000003945 7.75479867226744e-06
+473.6000000000395 7.406885771806932e-06
+473.7000000000395 7.058763953665636e-06
+473.8000000000395 6.710433190986974e-06
+473.90000000003954 6.361893456907474e-06
+474.00000000003956 6.013144724667133e-06
+474.1000000000396 5.918848026271311e-06
+474.2000000000396 5.8245299364717855e-06
+474.30000000003963 5.730190454192653e-06
+474.40000000003965 5.6358295783790005e-06
+474.5000000000397 5.5414473079538935e-06
+474.6000000000397 5.447043641847155e-06
+474.7000000000397 5.35261857900143e-06
+474.80000000003974 5.258172118344919e-06
+474.90000000003977 5.163704258805369e-06
+475.0000000000398 5.069214999310547e-06
+475.1000000000398 4.975961223960554e-06
+475.20000000003984 4.882639903984978e-06
+475.30000000003986 4.789251022342051e-06
+475.4000000000399 4.695794561977206e-06
+475.5000000000399 4.6022705058523184e-06
+475.6000000000399 4.5076219501762685e-06
+475.70000000003995 4.412950159391021e-06
+475.80000000004 4.31825513278978e-06
+475.90000000004 4.223536869665597e-06
+476.00000000004 4.128795369341371e-06
+476.10000000004004 4.109035186912896e-06
+476.20000000004006 4.089263221880805e-06
+476.3000000000401 4.069479473146353e-06
+476.4000000000401 4.0496839396007605e-06
+476.50000000004013 4.029876620140067e-06
+476.60000000004015 4.0091186100013085e-06
+476.7000000000402 3.988358535422187e-06
+476.8000000000402 3.967596396756157e-06
+476.9000000000402 3.946832194336787e-06
+477.00000000004025 3.926065928517193e-06
+477.10000000004027 3.90537827882585e-06
+477.2000000000403 3.884685942853778e-06
+477.3000000000403 3.86398892040733e-06
+477.40000000004034 3.84328721130237e-06
+477.50000000004036 3.8225808153502075e-06
+477.6000000000404 3.80276009998663e-06
+477.7000000000404 3.782924994457069e-06
+477.8000000000404 3.7630754952914197e-06
+477.90000000004045 3.7432115990005275e-06
+478.0000000000405 3.7233333021154475e-06
+478.1000000000405 3.719623229517765e-06
+478.2000000000405 3.715912555839112e-06
+478.30000000004054 3.7122012811056188e-06
+478.40000000004056 3.7084894053617667e-06
+478.5000000000406 3.704776928642826e-06
+478.6000000000406 3.701063850984052e-06
+478.70000000004063 3.697350172420674e-06
+478.80000000004065 3.6936358929970406e-06
+478.9000000000407 3.6899210127391964e-06
+479.0000000000407 3.6862055316915323e-06
+479.1000000000407 3.682725565626023e-06
+479.20000000004075 3.679245143012406e-06
+479.30000000004077 3.675764263907375e-06
+479.4000000000408 3.6722829283721417e-06
+479.5000000000408 3.668801136463355e-06
+479.60000000004084 3.6653188882331083e-06
+479.70000000004086 3.6618361837515976e-06
+479.8000000000409 3.6583530230663345e-06
+479.9000000000409 3.654869406242921e-06
+480.0000000000409 3.651385333322792e-06
+480.10000000004095 3.6330890162513485e-06
+480.200000000041 3.6147807167765594e-06
+480.300000000041 3.5964604329503356e-06
+480.400000000041 3.5781281628201803e-06
+480.50000000004104 3.559783904442134e-06
+480.60000000004106 3.540600412777171e-06
+480.7000000000411 3.521413894625403e-06
+480.8000000000411 3.5022243501574072e-06
+480.90000000004113 3.4830317795479695e-06
+481.00000000004115 3.46383618296339e-06
+481.1000000000412 3.4452261890956394e-06
+481.2000000000412 3.426605354029964e-06
+481.3000000000412 3.407973676860759e-06
+481.40000000004125 3.389331156678254e-06
+481.50000000004127 3.3706777925682986e-06
+481.6000000000413 3.3512314992577943e-06
+481.7000000000413 3.3317834374730365e-06
+481.80000000004134 3.3123336075443102e-06
+481.90000000004136 3.2928820097976023e-06
+482.0000000000414 3.273428644560274e-06
+482.1000000000414 3.2673747125200723e-06
+482.2000000000414 3.2613162789509503e-06
+482.30000000004145 3.2552533429634703e-06
+482.4000000000415 3.249185903664168e-06
+482.5000000000415 3.2431139601632725e-06
+482.6000000000415 3.23628313321847e-06
+482.70000000004154 3.229450985439312e-06
+482.80000000004156 3.2226175168615548e-06
+482.9000000000416 3.215782727516938e-06
+483.0000000000416 3.208946617437456e-06
+483.10000000004163 3.2027681853739144e-06
+483.20000000004165 3.1965852020743605e-06
+483.3000000000417 3.1903976666286037e-06
+483.4000000000417 3.184205578134264e-06
+483.5000000000417 3.1780089356810893e-06
+483.60000000004175 3.171811912445492e-06
+483.70000000004177 3.165612995206573e-06
+483.8000000000418 3.1594107847771476e-06
+483.9000000000418 3.1532039950245105e-06
+484.00000000004184 3.146991451893625e-06
+484.10000000004186 3.1605422957642264e-06
+484.2000000000419 3.174091012896707e-06
+484.3000000000419 3.1876366834724715e-06
+484.4000000000419 3.2011784765111444e-06
+484.50000000004195 3.214715652063426e-06
+484.600000000042 3.2289983186578515e-06
+484.700000000042 3.2432814609781566e-06
+484.800000000042 3.2575646210104027e-06
+484.90000000004204 3.2718474402366977e-06
+485.00000000004206 3.2861296619703174e-06
+485.1000000000421 3.2997640170847363e-06
+485.2000000000421 3.3133914637662984e-06
+485.30000000004213 3.327012068699226e-06
+485.40000000004216 3.3406260095228396e-06
+485.5000000000422 3.3542335770570732e-06
+485.6000000000422 3.3686177623869535e-06
+485.7000000000422 3.3830030020966297e-06
+485.80000000004225 3.3973898457834413e-06
+485.90000000004227 3.4117789710834532e-06
+486.0000000000423 3.4261711861644855e-06
+486.1000000000423 3.4419561595030797e-06
+486.20000000004234 3.4577465879002987e-06
+486.30000000004236 3.4735436855991583e-06
+486.4000000000424 3.4893488095544298e-06
+486.5000000000424 3.5051634621896703e-06
+486.6000000000424 3.5201732054012004e-06
+486.70000000004245 3.5351823506470935e-06
+486.8000000000425 3.5501909613008793e-06
+486.9000000000425 3.5651991019511636e-06
+487.0000000000425 3.580206838419786e-06
+487.10000000004254 3.596842643741207e-06
+487.20000000004256 3.613488766231426e-06
+487.3000000000426 3.630145277607635e-06
+487.4000000000426 3.646812250935674e-06
+487.50000000004263 3.6634897606452043e-06
+487.60000000004266 3.679326489300375e-06
+487.7000000000427 3.6951667720426603e-06
+487.8000000000427 3.7110105859782615e-06
+487.9000000000427 3.726857915325189e-06
+488.00000000004275 3.742708751552459e-06
+488.10000000004277 3.7504245469626835e-06
+488.2000000000428 3.758140749680653e-06
+488.3000000000428 3.765857372342104e-06
+488.40000000004284 3.7735744353105836e-06
+488.50000000004286 3.7812919667928842e-06
+488.6000000000429 3.7890047028381594e-06
+488.7000000000429 3.7967141200692115e-06
+488.8000000000429 3.8044218893805415e-06
+488.90000000004295 3.8121295641071725e-06
+489.000000000043 3.819838578706421e-06
+489.100000000043 3.828628228630986e-06
+489.200000000043 3.8374253977070485e-06
+489.30000000004304 3.846231159885398e-06
+489.40000000004306 3.85504646596759e-06
+489.5000000000431 3.863872142099181e-06
+489.6000000000431 3.87181367123578e-06
+489.70000000004313 3.879763607775465e-06
+489.80000000004316 3.8877225217529106e-06
+489.9000000000432 3.895690861170252e-06
+490.0000000000432 3.903668950728768e-06
+490.1000000000432 3.925821351945522e-06
+490.20000000004325 3.947994911577231e-06
+490.30000000004327 3.970189680021238e-06
+490.4000000000433 3.9924055758769464e-06
+490.5000000000433 4.014642382368068e-06
+490.60000000004334 4.035967649538512e-06
+490.70000000004336 4.057302657055806e-06
+490.8000000000434 4.07864660989515e-06
+490.9000000000434 4.099998552680718e-06
+491.0000000000434 4.121357365992555e-06
+491.10000000004345 4.143677624798709e-06
+491.2000000000435 4.166010756375635e-06
+491.3000000000435 4.188355127921391e-06
+491.4000000000435 4.21070892613671e-06
+491.50000000004354 4.2330701533403215e-06
+491.60000000004356 4.2544552036673865e-06
+491.7000000000436 4.27584152155718e-06
+491.8000000000436 4.297229106650566e-06
+491.90000000004363 4.3186179585989935e-06
+492.00000000004366 4.340008077039355e-06
+492.1000000000437 4.351630426684294e-06
+492.2000000000437 4.3632586906814694e-06
+492.3000000000437 4.374892869605156e-06
+492.40000000004375 4.3865329640242675e-06
+492.50000000004377 4.398178974512524e-06
+492.6000000000438 4.4088150456438055e-06
+492.7000000000438 4.419452132104133e-06
+492.80000000004384 4.430090233763396e-06
+492.90000000004386 4.440729350496942e-06
+493.0000000000439 4.451369482169628e-06
+493.1000000000439 4.4624887606886885e-06
+493.20000000004393 4.473609396810162e-06
+493.30000000004395 4.4847313904058035e-06
+493.400000000044 4.495854741363772e-06
+493.500000000044 4.506979449550939e-06
+493.600000000044 4.519146552990579e-06
+493.70000000004404 4.5313201412652435e-06
+493.80000000004407 4.543500215187232e-06
+493.9000000000441 4.555686775574287e-06
+494.0000000000441 4.567879823252167e-06
+494.10000000004413 4.585765772464212e-06
+494.20000000004416 4.603653113085501e-06
+494.3000000000442 4.621541844827747e-06
+494.4000000000442 4.63943196741395e-06
+494.5000000000442 4.657323480561669e-06
+494.60000000004425 4.675216383982932e-06
+494.70000000004427 4.693110677406882e-06
+494.8000000000443 4.711006360540102e-06
+494.9000000000443 4.72890343310634e-06
+495.00000000004434 4.746801894830058e-06
+495.10000000004436 4.7658104739575245e-06
+495.2000000000444 4.784828452969842e-06
+495.3000000000444 4.803855832320382e-06
+495.40000000004443 4.822892612444906e-06
+495.50000000004445 4.8419387938017884e-06
+495.6000000000445 4.859877163680667e-06
+495.7000000000445 4.877816687620509e-06
+495.8000000000445 4.895757365269923e-06
+495.90000000004454 4.913699196265753e-06
+496.00000000004457 4.9316421802758105e-06
+496.1000000000446 4.952121856427943e-06
+496.2000000000446 4.972602812426163e-06
+496.30000000004463 4.993085047931543e-06
+496.40000000004466 5.013568562623445e-06
+496.5000000000447 5.034053356157168e-06
+496.6000000000447 5.054539428206368e-06
+496.7000000000447 5.075026778432636e-06
+496.80000000004475 5.095515406516176e-06
+496.90000000004477 5.116005312112723e-06
+497.0000000000448 5.136496494903336e-06
+497.1000000000448 5.158007006762235e-06
+497.20000000004484 5.179529442614831e-06
+497.30000000004486 5.20106380405062e-06
+497.4000000000449 5.222610092684194e-06
+497.5000000000449 5.244168310104371e-06
+497.60000000004493 5.264529610705638e-06
+497.70000000004495 5.284893491347839e-06
+497.800000000045 5.305259951840471e-06
+497.900000000045 5.325628992012294e-06
+498.000000000045 5.3460006116935226e-06
+498.10000000004504 5.369139799673982e-06
+498.20000000004507 5.392282098157762e-06
+498.3000000000451 5.41542750693868e-06
+498.4000000000451 5.438576025797642e-06
+498.50000000004513 5.461727654522164e-06
+498.60000000004516 5.4848823928998745e-06
+498.7000000000452 5.508040240725217e-06
+498.8000000000452 5.531201197779457e-06
+498.9000000000452 5.554365263850609e-06
+499.00000000004525 5.577532438734113e-06
+499.10000000004527 5.601951880259953e-06
+499.2000000000453 5.626383969298597e-06
+499.3000000000453 5.650828706904472e-06
+499.40000000004534 5.675286094138642e-06
+499.50000000004536 5.699756132047659e-06
+499.6000000000454 5.7229262239544535e-06
+499.7000000000454 5.746098339241963e-06
+499.80000000004543 5.769272477590057e-06
+499.90000000004545 5.792448638657996e-06
+500.0000000000455 5.815626822139539e-06
+500.1000000000455 5.883687993140779e-06
+500.2000000000455 5.95172019264801e-06
+500.30000000004554 6.019723417526007e-06
+500.40000000004557 6.0876976646267055e-06
+500.5000000000456 6.1556429308188145e-06
+500.6000000000456 6.2249886018522136e-06
+500.70000000004563 6.294337133481344e-06
+500.80000000004566 6.363688524544177e-06
+500.9000000000457 6.433042773879267e-06
+501.0000000000457 6.502399880333788e-06
+501.1000000000457 6.572104648031203e-06
+501.20000000004575 6.641814479543368e-06
+501.30000000004577 6.7115293738684355e-06
+501.4000000000458 6.781249330013273e-06
+501.5000000000458 6.850974346952456e-06
+501.60000000004584 6.920704423710329e-06
+501.70000000004586 6.990439559278928e-06
+501.8000000000459 7.060179752650486e-06
+501.9000000000459 7.129925002834663e-06
+502.00000000004593 7.199675308875401e-06
+502.10000000004595 7.3611062274539355e-06
+502.200000000046 7.5225468228749674e-06
+502.300000000046 7.683997092559549e-06
+502.400000000046 7.845457033939503e-06
+502.50000000004604 8.006926644428498e-06
+502.60000000004607 8.16653028290442e-06
+502.7000000000461 8.326069422804363e-06
+502.8000000000461 8.48554405488747e-06
+502.90000000004613 8.644954169936456e-06
+503.00000000004616 8.804299758739331e-06
+503.1000000000462 8.965951552247973e-06
+503.2000000000462 9.127629310892569e-06
+503.3000000000462 9.289333033519213e-06
+503.40000000004625 9.451062718996817e-06
+503.50000000004627 9.612818366183161e-06
+503.6000000000463 9.772366209132613e-06
+503.7000000000463 9.93187472008067e-06
+503.80000000004634 1.0091339741035466e-05
+503.90000000004636 1.0250757168667598e-05
+504.0000000000464 1.0410122981295913e-05
+504.1000000000464 1.0712050271665825e-05
+504.20000000004643 1.1014091099699863e-05
+504.30000000004645 1.1316241283171348e-05
+504.4000000000465 1.1618496683970915e-05
+504.5000000000465 1.1920853258344513e-05
+504.6000000000465 1.2223307106971906e-05
+504.70000000004654 1.2525854525879664e-05
+504.80000000004657 1.2828492056565501e-05
+504.9000000000466 1.3131216536537858e-05
+505.0000000000466 1.3434025149785571e-05
+505.10000000004663 1.3734837688936445e-05
+505.20000000004666 1.4035635141065857e-05
+505.3000000000467 1.4336416064527572e-05
+505.4000000000467 1.4637179567470909e-05
+505.5000000000467 1.4937925358189205e-05
+505.60000000004675 1.5238653795792036e-05
+505.70000000004677 1.553936593976667e-05
+505.8000000000468 1.5840063600742854e-05
+505.9000000000468 1.6140749390800206e-05
+506.00000000004684 1.6441426773846982e-05
+506.10000000004686 1.6896704293087855e-05
+506.2000000000469 1.7352218160525407e-05
+506.3000000000469 1.780797472045698e-05
+506.40000000004693 1.826398162949053e-05
+506.50000000004695 1.8720247933897263e-05
+506.600000000047 1.9176784936103844e-05
+506.700000000047 1.9633567617142812e-05
+506.800000000047 2.0090595755789047e-05
+506.90000000004704 2.0547869126609503e-05
+507.00000000004707 2.1005387502216478e-05
+507.1000000000471 2.1457048442374208e-05
+507.2000000000471 2.1908698519045924e-05
+507.30000000004713 2.236033748902247e-05
+507.40000000004716 2.2811965116687542e-05
+507.5000000000472 2.326358117631508e-05
+507.6000000000472 2.372061653392573e-05
+507.7000000000472 2.4177845471747093e-05
+507.80000000004725 2.4635268400613618e-05
+507.90000000004727 2.5092885749539828e-05
+508.0000000000473 2.555069796305854e-05
+508.1000000000473 2.5747356894776054e-05
+508.20000000004734 2.5944020362722472e-05
+508.30000000004736 2.6140688848134428e-05
+508.4000000000474 2.633736282040175e-05
+508.5000000000474 2.6534042736076004e-05
+508.60000000004743 2.673681068999611e-05
+508.70000000004745 2.6939652128121615e-05
+508.8000000000475 2.714257883902049e-05
+508.9000000000475 2.7345602063245697e-05
+509.0000000000475 2.7548732459735006e-05
+509.10000000004754 2.7751713418802196e-05
+509.20000000004757 2.7954810237231912e-05
+509.3000000000476 2.815803161970959e-05
+509.4000000000476 2.8361385554150714e-05
+509.50000000004763 2.8564879278150035e-05
+509.60000000004766 2.876195258917494e-05
+509.7000000000477 2.895908611561195e-05
+509.8000000000477 2.9156284073819166e-05
+509.9000000000477 2.9353549747757674e-05
+510.00000000004775 2.955088545472127e-05
+510.10000000004777 2.9233180775829703e-05
+510.2000000000478 2.891537820301016e-05
+510.3000000000478 2.8597473439362588e-05
+510.40000000004784 2.8279461302394644e-05
+510.50000000004786 2.7961335778996657e-05
+510.6000000000479 2.7636787506355622e-05
+510.7000000000479 2.7312262673651773e-05
+510.80000000004793 2.698775389008692e-05
+510.90000000004795 2.6663253173308624e-05
+511.000000000048 2.63387520020607e-05
+511.100000000048 2.602055599178447e-05
+511.200000000048 2.570217880807695e-05
+511.30000000004804 2.5383610597952426e-05
+511.40000000004807 2.5064841170529094e-05
+511.5000000000481 2.4745860049472708e-05
+511.6000000000481 2.442109363409864e-05
+511.70000000004814 2.4096285788416394e-05
+511.80000000004816 2.3771436515105763e-05
+511.9000000000482 2.3446545816814765e-05
+512.0000000000482 2.312161369613722e-05
+512.1000000000482 2.2746114132605072e-05
+512.2000000000482 2.2370602064367027e-05
+512.3000000000483 2.199507749663298e-05
+512.4000000000483 2.161954043458167e-05
+512.5000000000483 2.1243990883365275e-05
+512.6000000000483 2.0873182476607804e-05
+512.7000000000484 2.0502190486452747e-05
+512.8000000000484 2.0131014909571354e-05
+512.9000000000484 1.9759655742562963e-05
+513.0000000000484 1.9388112982099206e-05
+513.1000000000485 1.901246462007035e-05
+513.2000000000485 1.863678199958842e-05
+513.3000000000485 1.8261065125432774e-05
+513.4000000000485 1.7885314002335403e-05
+513.5000000000485 1.7509528635027484e-05
+513.6000000000486 1.713370902830084e-05
+513.7000000000486 1.6757855186860806e-05
+513.8000000000486 1.6381967115472474e-05
+513.9000000000486 1.600604481883895e-05
+514.0000000000487 1.5630088301862175e-05
+514.1000000000487 1.5506803380367843e-05
+514.2000000000487 1.5383447822553666e-05
+514.3000000000487 1.5260021620783302e-05
+514.4000000000487 1.5136524767475991e-05
+514.5000000000488 1.5012957255030827e-05
+514.6000000000488 1.4885935908570435e-05
+514.7000000000488 1.475890163058694e-05
+514.8000000000488 1.4631854422330879e-05
+514.9000000000489 1.4504794284981203e-05
+515.0000000000489 1.437772121976883e-05
+515.1000000000489 1.425070961804738e-05
+515.2000000000489 1.4123683773046463e-05
+515.300000000049 1.3996643685494606e-05
+515.400000000049 1.386958935617036e-05
+515.500000000049 1.3742520785817879e-05
+515.600000000049 1.3615437975197248e-05
+515.700000000049 1.3488340925067616e-05
+515.8000000000491 1.3361229636171235e-05
+515.9000000000491 1.3234104109281653e-05
+516.0000000000491 1.3106964345205328e-05
+516.1000000000491 1.3113827125222165e-05
+516.2000000000492 1.3120691706497779e-05
+516.3000000000492 1.3127558089024928e-05
+516.4000000000492 1.3134426272827725e-05
+516.5000000000492 1.3141296257881727e-05
+516.6000000000492 1.3145183893491042e-05
+516.7000000000493 1.3149071565268755e-05
+516.8000000000493 1.3152959273165246e-05
+516.9000000000493 1.3156847017162306e-05
+517.0000000000493 1.3160734797257663e-05
+517.1000000000494 1.3164929455908666e-05
+517.2000000000494 1.316912433234312e-05
+517.3000000000494 1.317331942653008e-05
+517.4000000000494 1.3177514738470087e-05
+517.5000000000495 1.3181710268132254e-05
+517.6000000000495 1.3185906015485694e-05
+517.7000000000495 1.3190101980546826e-05
+517.8000000000495 1.3194298163253313e-05
+517.9000000000495 1.3198494563621631e-05
+518.0000000000496 1.3202691190315347e-05
+518.1000000000496 3.078020847939053e-05
+518.2000000000496 4.835994123584995e-05
+518.3000000000496 6.594188934253994e-05
+518.4000000000497 8.352605268219336e-05
+518.5000000000497 0.00010111243113785489
+518.6000000000497 0.00011870102459262907
+518.7000000000497 0.0001362918329294125
+518.8000000000497 0.00015388485603160285
+518.9000000000498 0.0001714800937825946
+519.0000000000498 0.00018907754606569557
+519.1000000000498 0.00020672371573939675
+519.2000000000498 0.00022437964505276655
+519.3000000000499 0.00024204533509773803
+519.4000000000499 0.00025972078696552347
+519.5000000000499 0.0002774060017475913
+519.6000000000499 0.0002950340793832647
+519.70000000005 0.00031266392672027986
+519.80000000005 0.00033029554364595706
+519.90000000005 0.0003479289300484976
+520.00000000005 0.0003655640858086122
+520.10000000005 0.0003695289990434164
+520.2000000000501 0.000373494378714524
+520.3000000000501 0.00037746022480447786
+520.4000000000501 0.0003814265372962874
+520.5000000000501 0.00038539331617253064
+520.6000000000502 0.00038936056141672463
+520.7000000000502 0.00039332827301196647
+520.8000000000502 0.00039729645094043376
+520.9000000000502 0.0004012650951857318
+521.0000000000502 0.00040523420572998684
+521.1000000000503 0.00040808812019777786
+521.2000000000503 0.0004109421210282709
+521.3000000000503 0.0004137962081859632
+521.4000000000503 0.00041665038163586014
+521.5000000000504 0.00041950464134349433
+521.6000000000504 0.0004223589872729265
+521.7000000000504 0.00042521341938923034
+521.8000000000504 0.00042806793765750656
+521.9000000000505 0.0004309225420428805
+522.0000000000505 0.00043377723250901187
+522.1000000000505 0.0004346989936452108
+522.2000000000505 0.0004356208544600445
+522.3000000000505 0.0004365428149490923
+522.4000000000506 0.00043746487510741783
+522.5000000000506 0.00043838703493008784
+522.6000000000506 0.0004393092944132188
+522.7000000000506 0.0004402316535524137
+522.8000000000507 0.0004411541123422299
+522.9000000000507 0.00044207667077880486
+523.0000000000507 0.00044299932885936164
+523.1000000000507 0.00044708364284885897
+523.2000000000507 0.00045116828498606583
+523.3000000000508 0.00045525325523694554
+523.4000000000508 0.00045933855356639785
+523.5000000000508 0.0004634241799409768
+523.6000000000508 0.0004675101343267295
+523.7000000000509 0.0004715964166891748
+523.8000000000509 0.000475683026994412
+523.9000000000509 0.0004797699652080013
+524.0000000000509 0.00048385723129504114
+524.100000000051 0.0004858778928138736
+524.200000000051 0.0004878987738149583
+524.300000000051 0.0004899198742909519
+524.400000000051 0.0004919411942333644
+524.500000000051 0.0004939627336337106
+524.6000000000511 0.0004959844924841032
+524.7000000000511 0.0004980064707766699
+524.8000000000511 0.0005000286685029578
+524.9000000000511 0.0005020510856557179
+525.0000000000512 0.000504073722227147
+525.1000000000512 0.000507314088479077
+525.2000000000512 0.0005105529768228375
+525.3000000000512 0.0005137903871918477
+525.4000000000513 0.0005170263195165409
+525.5000000000513 0.0005202607737299143
+525.6000000000513 0.0005236126175550062
+525.7000000000513 0.0005269645049883747
+525.8000000000513 0.0005303164359928514
+525.9000000000514 0.000533668410530041
+526.0000000000514 0.000537020428565226
+526.1000000000514 0.0005474969337404577
+526.2000000000514 0.0005579743250146894
+526.3000000000515 0.0005684526023060915
+526.4000000000515 0.0005789317655369144
+526.5000000000515 0.000589411814625423
+526.6000000000515 0.0005998927494919653
+526.7000000000515 0.0006103745700584295
+526.8000000000516 0.0006208572762431856
+526.9000000000516 0.0006313408679667981
+527.0000000000516 0.0006418253451506858
+527.1000000000516 0.0006523184152069314
+527.2000000000517 0.0006628135624595374
+527.3000000000517 0.0006733107870266629
+527.4000000000517 0.0006838100890240923
+527.5000000000517 0.0006943114685725042
+527.6000000000518 0.0007048149257877553
+527.7000000000518 0.0007153204607890401
+527.8000000000518 0.000725828073693945
+527.9000000000518 0.0007363377646209579
+528.0000000000518 0.0007468495336876979
+528.1000000000519 0.0007572618422501366
+528.2000000000519 0.0007676747792177239
+528.3000000000519 0.0007780883444989334
+528.4000000000519 0.0007885025379995561
+528.500000000052 0.0007989173596291856
+528.600000000052 0.0008093328092927774
+528.700000000052 0.00081974888689914
+528.800000000052 0.0008301655923562305
+528.900000000052 0.0008405829255710933
+529.0000000000521 0.0008510008864572496
+529.1000000000521 0.0008737808901557153
+529.2000000000521 0.0008965642385789409
+529.3000000000521 0.0009193509317504501
+529.4000000000522 0.0009421409696960708
+529.5000000000522 0.0009649343524384522
+529.6000000000522 0.0009877310800025484
+529.7000000000522 0.0010105311524134795
+529.8000000000523 0.0010333345696965312
+529.9000000000523 0.0010561413318758938
+530.0000000000523 0.001078951438976235
+530.1000000000523 0.001100099987976813
+530.2000000000523 0.0011212511173067292
+530.3000000000524 0.0011424048269153796
+530.4000000000524 0.0011635611167509366
+530.5000000000524 0.0011847199867616293
+530.6000000000524 0.0012058814368986262
+530.7000000000525 0.0012270454671104293
+530.8000000000525 0.0012482120773456007
+530.9000000000525 0.001269381267555792
+531.0000000000525 0.0012905530376498165
+531.1000000000525 0.0012384627887100188
+531.2000000000526 0.0011863703426799198
+531.3000000000526 0.0011342757000834109
+531.4000000000526 0.0010821788614426245
+531.5000000000526 0.0010300798272794688
+531.6000000000527 0.0009779785981179653
+531.7000000000527 0.0009258751744781022
+531.8000000000527 0.0008737695568830217
+531.9000000000527 0.0008216617458531861
+532.0000000000528 0.0007695517419384161
+532.1000000000528 0.0007735147142337267
+532.2000000000528 0.0007774778527447005
+532.3000000000528 0.0007814411574311372
+532.4000000000528 0.000785404628253792
+532.5000000000529 0.0007893682651734547
+532.6000000000529 0.0007933320681490588
+532.7000000000529 0.0007972960371423874
+532.8000000000529 0.0008012601721133682
+532.900000000053 0.0008052244730229044
+533.000000000053 0.0008091889399437402
+533.100000000053 0.0010260740374122602
+533.200000000053 0.0012430769989224583
+533.300000000053 0.0014601978364881278
+533.4000000000531 0.0016774365621245943
+533.5000000000531 0.001894793187847523
+533.6000000000531 0.002111788861986964
+533.7000000000531 0.0023288040406593347
+533.8000000000532 0.0025458387226164657
+533.9000000000532 0.002762892906603115
+534.0000000000532 0.0029799665913809135
+534.1000000000532 0.003202640121742743
+534.2000000000533 0.0034253536571307334
+534.3000000000533 0.0036481071995132994
+534.4000000000533 0.0038709007508477733
+534.5000000000533 0.004093734313106155
+534.6000000000533 0.004317586710902442
+534.7000000000534 0.004541580218153431
+534.8000000000534 0.004765714864046812
+534.9000000000534 0.004989990677772589
+535.0000000000534 0.005214407688459988
+535.1000000000535 0.0052859881858523345
+535.2000000000535 0.0053575760214244865
+535.3000000000535 0.005429171194757278
+535.4000000000535 0.005500773705451067
+535.5000000000535 0.005572383553087887
+535.6000000000536 0.005645279106621711
+535.7000000000536 0.005718214442280189
+535.8000000000536 0.005791189564629497
+535.9000000000536 0.005864204478256187
+536.0000000000537 0.0059372591879585145
+536.1000000000537 0.006430303335277458
+536.2000000000537 0.0069234247990267155
+536.3000000000537 0.007416623581129496
+536.4000000000538 0.00790989968351266
+536.5000000000538 0.008403253108086796
+536.6000000000538 0.008896683856782628
+536.7000000000538 0.009390191931545685
+536.8000000000538 0.009883777334292325
+536.9000000000539 0.01037744006695022
+537.0000000000539 0.010871180131455025
+537.1000000000539 0.01130544495418425
+537.2000000000539 0.01173977932408483
+537.300000000054 0.012174183243532392
+537.400000000054 0.012608656714961653
+537.500000000054 0.013043199740738923
+537.600000000054 0.013480861602090692
+537.700000000054 0.013918789711379966
+537.8000000000541 0.014356984118202527
+537.9000000000541 0.014795444872207988
+538.0000000000541 0.015234172023241493
+538.1000000000541 0.01612104965910515
+538.2000000000542 0.017008045698456025
+538.3000000000542 0.01789516014025451
+538.4000000000542 0.0187823929834452
+538.5000000000542 0.019669744227021713
+538.6000000000543 0.020557242645712258
+538.7000000000543 0.0214448812450975
+538.8000000000543 0.022332652026505435
+538.9000000000543 0.023220546139546393
+539.0000000000543 0.024108554034699872
+539.1000000000544 0.02524172699202893
+539.2000000000544 0.02637499734396259
+539.3000000000544 0.027508353344269796
+539.4000000000544 0.028641782904748444
+539.5000000000545 0.02977527379040623
+539.6000000000545 0.030908812542836117
+539.7000000000545 0.032042387550368735
+539.8000000000545 0.03317598767341307
+539.9000000000545 0.03430960243428288
+540.0000000000546 0.035443222206936145
+540.1000000000546 0.036747126079343315
+540.2000000000546 0.03805109997783539
+540.3000000000546 0.03935513676385104
+540.4000000000547 0.040659230972300384
+540.5000000000547 0.04196337902998902
+540.6000000000547 0.043257801489014515
+540.7000000000547 0.04455168770638155
+540.8000000000548 0.04584504105731977
+540.9000000000548 0.04713786767742638
+541.0000000000548 0.04843017667817491
+541.1000000000548 0.049944573546009105
+541.2000000000548 0.05145901903193861
+541.3000000000549 0.052973532585080044
+541.4000000000549 0.054488137872250375
+541.5000000000549 0.05600286303218695
+541.6000000000549 0.057517740930792316
+541.700000000055 0.059032695209961246
+541.800000000055 0.06054772570035705
+541.900000000055 0.06206283212991826
+542.000000000055 0.06357801411602619
+542.100000000055 0.06548868488792078
+542.2000000000551 0.06739969221038414
+542.3000000000551 0.06931103535061564
+542.4000000000551 0.07122271341439597
+542.5000000000551 0.0731347253364432
+542.6000000000552 0.07506405193553599
+542.7000000000552 0.07699458174959242
+542.8000000000552 0.07892631408859156
+542.9000000000552 0.08085924823851658
+543.0000000000553 0.08279338347139302
+543.1000000000553 0.08497966057151195
+543.2000000000553 0.08716594647235665
+543.3000000000553 0.08935224016542984
+543.4000000000553 0.0915385406594845
+543.5000000000554 0.09372484699170423
+543.6000000000554 0.09591102392925334
+543.7000000000554 0.09809711047536321
+543.8000000000554 0.10028314660977901
+543.9000000000555 0.10246917292411618
+544.0000000000555 0.10465523025655361
+544.1000000000555 0.10702489886209005
+544.2000000000555 0.10939472388479991
+544.3000000000555 0.11176474542091454
+544.4000000000556 0.11413500254154042
+544.5000000000556 0.11650553289709653
+544.6000000000556 0.11887637232068939
+544.7000000000556 0.12124755442687025
+544.8000000000557 0.1236191102230812
+544.9000000000557 0.12599106770970564
+545.0000000000557 0.1283634514832023
+545.1000000000557 0.13106636191007554
+545.2000000000558 0.13376987316868832
+545.3000000000558 0.1364739996613175
+545.4000000000558 0.13917875070217928
+545.5000000000558 0.1418841300653597
+545.6000000000558 0.14459013553051991
+545.7000000000559 0.14729675005028264
+545.8000000000559 0.15000395508329148
+545.9000000000559 0.1527117243967017
+546.0000000000559 0.15542002359773768
+546.100000000056 0.15862830081990428
+546.200000000056 0.16183725520728626
+546.300000000056 0.16504682511095015
+546.400000000056 0.16825693798423133
+546.500000000056 0.17146750982837722
+546.6000000000561 0.17467844463524795
+546.7000000000561 0.17788997809884868
+546.8000000000561 0.18110211025554937
+546.9000000000561 0.18431484114237046
+547.0000000000562 0.18752817079601994
+547.1000000000562 0.19130212930767646
+547.2000000000562 0.19507818440299765
+547.3000000000562 0.19885633634661476
+547.4000000000563 0.20263658540341206
+547.5000000000563 0.20641893183754476
+547.6000000000563 0.21015593665036938
+547.7000000000563 0.21389335204921864
+547.8000000000563 0.2176311780205339
+547.9000000000564 0.22136941455076792
+548.0000000000564 0.2251080616268547
+548.1000000000564 0.22873445626261155
+548.2000000000564 0.23236132625941014
+548.3000000000565 0.2359886716115806
+548.4000000000565 0.23961649231456483
+548.5000000000565 0.24324478836327199
+548.6000000000565 0.2468735597526218
+548.7000000000565 0.2505028064778407
+548.8000000000566 0.25413252853388096
+548.9000000000566 0.25776272591601057
+549.0000000000566 0.2613933986184992
+549.1000000000566 0.2643066538125173
+549.2000000000567 0.26722032917721267
+549.3000000000567 0.2701344247176632
+549.4000000000567 0.2730489404389553
+549.5000000000567 0.27596387634687225
+549.6000000000568 0.27894218486845396
+549.7000000000568 0.28192222996461336
+549.8000000000568 0.2849040119249821
+549.9000000000568 0.287887531039541
+550.0000000000568 0.2908727875978049
+550.1000000000569 0.29420650933729886
+550.2000000000569 0.29754083617652705
+550.3000000000569 0.30087576814334
+550.4000000000569 0.3042113052659569
+550.500000000057 0.30754744757189273
+550.600000000057 0.31088419508975923
+550.700000000057 0.3142215478474638
+550.800000000057 0.31755950587292314
+550.900000000057 0.32089806919406144
+551.0000000000571 0.32423723783869496
+551.1000000000571 0.32669946681072104
+551.2000000000571 0.32916213133441896
+551.3000000000571 0.3316252314336138
+551.4000000000572 0.3340887671321506
+551.5000000000572 0.33655273845309736
+551.6000000000572 0.3390171454203199
+551.7000000000572 0.3414819880577038
+551.8000000000573 0.343947266388747
+551.9000000000573 0.346412980437365
+552.0000000000573 0.3488791302266628
+552.1000000000573 0.3513366970841407
+552.2000000000573 0.3537943777003846
+552.3000000000574 0.356252172046712
+552.4000000000574 0.35871008009446315
+552.5000000000574 0.3611681018141462
+552.6000000000574 0.36362623717712667
+552.7000000000575 0.36608448615436007
+552.8000000000575 0.36854284871724763
+552.9000000000575 0.37100132483633436
+553.0000000000575 0.3734599144836641
+553.1000000000575 0.37545418845482387
+553.2000000000576 0.3774489131468448
+553.3000000000576 0.3794440885993415
+553.4000000000576 0.3814397148523855
+553.5000000000576 0.3834357919460637
+553.6000000000577 0.3854323199195666
+553.7000000000577 0.3874292988129975
+553.8000000000577 0.38942672866647515
+553.9000000000577 0.3914246095192073
+554.0000000000578 0.3934229414108717
+554.1000000000578 0.3954342340868404
+554.2000000000578 0.3974458799438915
+554.3000000000578 0.39945787899634033
+554.4000000000578 0.4014702312580422
+554.5000000000579 0.40348293674386404
+554.6000000000579 0.405587426356358
+554.7000000000579 0.4076931771849781
+554.8000000000579 0.40980018948340624
+554.900000000058 0.41190846350438554
+555.000000000058 0.4140179994998926
+555.100000000058 0.4156243373913131
+555.200000000058 0.417230901262666
+555.300000000058 0.4188376911165023
+555.4000000000581 0.4204447069548956
+555.5000000000581 0.42205194877843655
+555.6000000000581 0.4236594165897059
+555.7000000000581 0.42526711039080173
+555.8000000000582 0.42687503018232215
+555.9000000000582 0.4284831759673842
+556.0000000000582 0.4300915477462819
+556.1000000000582 0.43116629636257686
+556.2000000000583 0.4322406745517458
+556.3000000000583 0.4333146822081601
+556.4000000000583 0.4343883192256888
+556.5000000000583 0.4354615854987769
+556.6000000000583 0.4366329325395074
+556.7000000000584 0.437804436923041
+556.8000000000584 0.43897609864955184
+556.9000000000584 0.44014791771869805
+557.0000000000584 0.4413198941317599
+557.1000000000585 0.4425955076739114
+557.2000000000585 0.4438713549058567
+557.3000000000585 0.4451474358396569
+557.4000000000585 0.4464237504879051
+557.5000000000585 0.4477002988626741
+557.6000000000586 0.4489770809760413
+557.7000000000586 0.45025409684008655
+557.8000000000586 0.45153134646796156
+557.9000000000586 0.452808829870693
+558.0000000000587 0.4540865470614301
+558.1000000000587 0.45533916036477606
+558.2000000000587 0.4565919538003019
+558.3000000000587 0.4578449273695491
+558.4000000000588 0.45909808107082484
+558.5000000000588 0.4603514149056858
+558.6000000000588 0.4616049288740722
+558.7000000000588 0.462858622975382
+558.8000000000588 0.46411249721010606
+558.9000000000589 0.46536655157819545
+559.0000000000589 0.46662078607969737
+559.1000000000589 0.4670975685598286
+559.2000000000589 0.46757440641501097
+559.300000000059 0.468051299644609
+559.400000000059 0.468528248249097
+559.500000000059 0.4690052522266755
+559.600000000059 0.469376453108469
+559.700000000059 0.4697474942045459
+559.8000000000591 0.47011837547644514
+559.9000000000591 0.4704890968868217
+560.0000000000591 0.47085965839738236
+560.1000000000591 0.47150292787608
+560.2000000000592 0.47214639001920183
+560.3000000000592 0.47279004485959353
+560.4000000000592 0.47343389242899087
+560.5000000000592 0.47407793275857296
+560.6000000000593 0.4747221658812061
+560.7000000000593 0.47536659182807844
+560.8000000000593 0.47601121063150803
+560.9000000000593 0.47665602232325444
+561.0000000000593 0.4773010269348417
+561.1000000000594 0.47753811904883375
+561.2000000000594 0.4777752219479073
+561.3000000000594 0.4780123356281915
+561.4000000000594 0.4782494600880774
+561.5000000000595 0.47848659532419713
+561.6000000000595 0.47861567728545473
+561.7000000000595 0.4787446629489449
+561.8000000000595 0.4788735523065288
+561.9000000000595 0.479002345346673
+562.0000000000596 0.47913104206075446
+562.1000000000596 0.4793810017309834
+562.2000000000596 0.4796309989529609
+562.3000000000596 0.4798810337299457
+562.4000000000597 0.4801311060623581
+562.5000000000597 0.48038121595289285
+562.6000000000597 0.48063136340310825
+562.7000000000597 0.48088154841456476
+562.8000000000598 0.48113177098882176
+562.9000000000598 0.4813820311274407
+563.0000000000598 0.48163232883256757
+563.1000000000598 0.481906797023241
+563.2000000000598 0.48218131441242174
+563.3000000000599 0.4824558810031867
+563.4000000000599 0.4827304967997557
+563.5000000000599 0.4830051618057789
+563.6000000000599 0.48327987602490696
+563.70000000006 0.48355463946136423
+563.80000000006 0.48382945211880407
+563.90000000006 0.48410431400088055
+564.00000000006 0.48437922511093934
+564.10000000006 0.48413791211492624
+564.2000000000601 0.4838966381557397
+564.3000000000601 0.48365540324807643
+564.4000000000601 0.48341420740778046
+564.5000000000601 0.4831730506496133
+564.6000000000602 0.4830412183319442
+564.7000000000602 0.4829093654656173
+564.8000000000602 0.4827774920511736
+564.9000000000602 0.4826455980897259
+565.0000000000603 0.4825136835832177
+565.1000000000603 0.482811770900206
+565.2000000000603 0.4831099269510092
+565.3000000000603 0.48340815174412294
+565.4000000000603 0.48370644528861634
+565.5000000000604 0.4840048075941334
+565.6000000000604 0.48430323867032243
+565.7000000000604 0.4846017385256842
+565.8000000000604 0.48490030716987026
+565.9000000000605 0.48519894461195934
+566.0000000000605 0.4854976508607607
+566.1000000000605 0.48534690810009756
+566.2000000000605 0.48519613570981623
+566.3000000000605 0.48504533368933783
+566.4000000000606 0.48489450203980994
+566.5000000000606 0.4847436407618036
+566.6000000000606 0.4845927498570389
+566.7000000000606 0.48444182932493646
+566.8000000000607 0.48429087916664126
+566.9000000000607 0.48413989938329666
+567.0000000000607 0.4839888899751332
+567.1000000000607 0.48422496426862455
+567.2000000000608 0.4844610806201687
+567.3000000000608 0.48469723903302375
+567.4000000000608 0.4849334395110224
+567.5000000000608 0.485169682057425
+567.6000000000608 0.48540596667491714
+567.7000000000609 0.4856422933679105
+567.8000000000609 0.48587866213909187
+567.9000000000609 0.4861150729923007
+568.0000000000609 0.48635152593086506
+568.100000000061 0.4866930145514431
+568.200000000061 0.4870343589753855
+568.300000000061 0.4873755591616127
+568.400000000061 0.48771661506962466
+568.500000000061 0.4880575266589224
+568.6000000000611 0.48839829388901185
+568.7000000000611 0.48873891671881925
+568.8000000000611 0.4890793951084327
+568.9000000000611 0.48941972901678354
+569.0000000000612 0.4897599184030221
+569.1000000000612 0.4895073939082045
+569.2000000000612 0.48925479428359053
+569.3000000000612 0.48900211952136996
+569.4000000000613 0.48874936961373205
+569.5000000000613 0.48849654455286395
+569.6000000000613 0.4882436443321125
+569.7000000000613 0.4879906689425021
+569.8000000000613 0.4877376183767974
+569.9000000000614 0.4874844926277601
+570.0000000000614 0.487231291687499
+570.1000000000614 0.48780445986696463
+570.2000000000614 0.4883778975746581
+570.3000000000615 0.4889516048501192
+570.4000000000615 0.48952558173462746
+570.5000000000615 0.4900998282688168
+570.6000000000615 0.4905632316428124
+570.7000000000616 0.4910266947975983
+570.8000000000616 0.4914902177334964
+570.9000000000616 0.49195380045025056
+571.0000000000616 0.4924174429473728
+571.1000000000616 0.49250537941762945
+571.2000000000617 0.492593325924897
+571.3000000000617 0.49268128246829307
+571.4000000000617 0.4927692490498583
+571.5000000000617 0.49285722567104817
+571.6000000000618 0.49294521233156563
+571.7000000000618 0.4930332090334523
+571.8000000000618 0.4931212157769963
+571.9000000000618 0.49320923256365495
+572.0000000000618 0.4932972593935616
+572.1000000000619 0.49313431788239687
+572.2000000000619 0.4929713381078903
+572.3000000000619 0.4928083200695686
+572.4000000000619 0.49264526376579015
+572.500000000062 0.4924821691960816
+572.600000000062 0.49231903635938395
+572.700000000062 0.49215586525463884
+572.800000000062 0.49199265588137014
+572.900000000062 0.4918294082379349
+573.0000000000621 0.49166612232421325
+573.1000000000621 0.49207825982506453
+573.2000000000621 0.4924905974712214
+573.3000000000621 0.492903135314378
+573.4000000000622 0.49331587340331623
+573.5000000000622 0.49372881178909095
+573.6000000000622 0.4940301789888639
+573.7000000000622 0.4943316101916572
+573.8000000000623 0.494633105404257
+573.9000000000623 0.49493466463462177
+574.0000000000623 0.4952362878882003
+574.1000000000623 0.49526992292780175
+574.2000000000623 0.49530355050300534
+574.3000000000624 0.49533717061114296
+574.4000000000624 0.4953707832507201
+574.5000000000624 0.4954043884190681
+574.6000000000624 0.495437986115279
+574.7000000000625 0.49547157633609695
+574.8000000000625 0.4955051590806142
+574.9000000000625 0.49553873434674844
+575.0000000000625 0.49557230213200754
+575.1000000000626 0.49589007952337216
+575.2000000000626 0.49620798245104136
+575.3000000000626 0.49652601094030985
+575.4000000000626 0.49684416501412293
+575.5000000000626 0.4971624446959462
+575.6000000000627 0.4973684503609119
+575.7000000000627 0.497574488557539
+575.8000000000627 0.4977805592881649
+575.9000000000627 0.49798666255395024
+576.0000000000628 0.49819279835717767
+576.1000000000628 0.49830877119285455
+576.2000000000628 0.4984247363857437
+576.3000000000628 0.4985406939299144
+576.4000000000628 0.49865664381766656
+576.5000000000629 0.49877258604358654
+576.6000000000629 0.4987759300963485
+576.7000000000629 0.49877926496729486
+576.8000000000629 0.4987825906563883
+576.900000000063 0.4987859071630019
+577.000000000063 0.4987892144859642
+577.100000000063 0.4988610785799802
+577.200000000063 0.4989329044028451
+577.300000000063 0.4990046919392058
+577.4000000000631 0.49907644117429567
+577.5000000000631 0.49914815209268665
+577.6000000000631 0.49910728639660057
+577.7000000000631 0.4990664007916529
+577.8000000000632 0.49902549527622264
+577.9000000000632 0.4989845698492775
+578.0000000000632 0.498943624509299
+578.1000000000632 0.49906615724248704
+578.2000000000633 0.4991886907124944
+578.3000000000633 0.4993112249164513
+578.4000000000633 0.4994337598526659
+578.5000000000633 0.49955629551996283
+578.6000000000633 0.4995663169793168
+578.7000000000634 0.4995763346534637
+578.8000000000634 0.4995863485423696
+578.9000000000634 0.49959635864659013
+579.0000000000634 0.49960636496775856
+579.1000000000635 0.49945778328527446
+579.2000000000635 0.4993091185502
+579.3000000000635 0.49916037079286135
+579.4000000000635 0.4990115400435849
+579.5000000000636 0.4988626263308653
+579.6000000000636 0.49860145838005404
+579.7000000000636 0.4983403250224328
+579.8000000000636 0.4980792262646798
+579.9000000000636 0.4978181621134677
+580.0000000000637 0.4975571325762805
+580.1000000000637 0.49765523227862996
+580.2000000000637 0.49775334300439505
+580.3000000000637 0.49785146475429415
+580.4000000000638 0.4979495975290469
+580.5000000000638 0.4980477413294441
+580.6000000000638 0.49825796497416724
+580.7000000000638 0.49846824381567295
+580.8000000000638 0.4986785778612517
+580.9000000000639 0.4988889671199531
+581.0000000000639 0.4990994115997146
+581.1000000000639 0.49940384648759717
+581.2000000000639 0.4997083544829633
+581.300000000064 0.5000129355945736
+581.400000000064 0.500317589831777
+581.500000000064 0.5006223172051742
+581.600000000064 0.5010396856152171
+581.700000000064 0.5014572642008865
+581.8000000000641 0.5018750530217475
+581.9000000000641 0.5022930521361962
+582.0000000000641 0.502711261602869
+582.1000000000641 0.5025700553863124
+582.2000000000642 0.502428813998584
+582.3000000000642 0.5022875374381611
+582.4000000000642 0.5021462257058826
+582.5000000000642 0.5020048788014783
+582.6000000000643 0.5019761484631758
+582.7000000000643 0.5019473194651071
+582.8000000000643 0.5019183917823571
+582.9000000000643 0.5018893653923656
+583.0000000000643 0.5018602402701263
+583.1000000000644 0.5016909844392832
+583.2000000000644 0.5015216805008318
+583.3000000000644 0.5013523284516458
+583.4000000000644 0.501182928288599
+583.5000000000645 0.5010134800067993
+583.6000000000645 0.5008432821334207
+583.7000000000645 0.5006725858172861
+583.8000000000645 0.5005016246056369
+583.9000000000646 0.5003306144657661
+584.0000000000646 0.5001597538188143
+584.1000000000646 0.5003555630899298
+584.2000000000646 0.5005519302649886
+584.3000000000646 0.5007490028137395
+584.4000000000647 0.500946911155696
+584.5000000000647 0.5011457686316813
+584.6000000000647 0.5014581014571243
+584.7000000000647 0.5017716621747758
+584.8000000000648 0.5020865066319793
+584.9000000000648 0.5024026739975441
+585.0000000000648 0.502720186704512
+585.1000000000648 0.5027114918750588
+585.2000000000648 0.5027040118493363
+585.3000000000649 0.5026977162034805
+585.4000000000649 0.5026925576920404
+585.5000000000649 0.5026884722460262
+585.6000000000649 0.5026853789888
+585.700000000065 0.5026831802063476
+585.800000000065 0.5026817613632645
+585.900000000065 0.5026809911027801
+586.000000000065 0.5026807212502257
+586.100000000065 0.5026474768210138
+586.2000000000651 0.5026143846204388
+586.3000000000651 0.502581246021491
+586.4000000000651 0.5025478456349536
+586.5000000000651 0.5025139513164377
+586.6000000000652 0.5024793141636154
+586.7000000000652 0.5024446407359898
+586.8000000000652 0.5024099343558777
+586.9000000000652 0.5023751988544646
+587.0000000000653 0.5023404385692916
+587.1000000000653 0.5023629687751606
+587.2000000000653 0.5023854553005004
+587.3000000000653 0.5024079039938375
+587.4000000000653 0.5024303212127069
+587.5000000000654 0.5024527138254337
+587.6000000000654 0.502362380690065
+587.7000000000654 0.5022719357749293
+587.8000000000654 0.5021813859363804
+587.9000000000655 0.5020907375164853
+588.0000000000655 0.5019999963424793
+588.1000000000655 0.5021659430563229
+588.2000000000655 0.5023313550731494
+588.3000000000656 0.5024962364953337
+588.4000000000656 0.5026605909227406
+588.5000000000656 0.5028244214489829
+588.6000000000656 0.5031026293702331
+588.7000000000656 0.5033814529005811
+588.8000000000657 0.5036604262689645
+588.9000000000657 0.5039391169364806
+589.0000000000657 0.5042171256874194
+589.1000000000657 0.5038697729636031
+589.2000000000658 0.5035212302561946
+589.3000000000658 0.5031712040589338
+589.4000000000658 0.5028194358746536
+589.5000000000658 0.5024657020977144
+589.6000000000658 0.5019963220971383
+589.7000000000659 0.5015247821932993
+589.8000000000659 0.5010509713073177
+589.9000000000659 0.5005748123314336
+590.0000000000659 0.5000962619672342
+590.100000000066 0.5002264627449223
+590.200000000066 0.500354098655987
+590.300000000066 0.5004792180111545
+590.400000000066 0.5006019027011258
+590.500000000066 0.5007222682434662
+590.6000000000661 0.5008404638033653
+590.7000000000661 0.5009567007491487
+590.8000000000661 0.5010712040960648
+590.9000000000661 0.5011842331446132
+591.0000000000662 0.5012960815137595
+591.1000000000662 0.5012734414999275
+591.2000000000662 0.5012504133020731
+591.3000000000662 0.5012273937130681
+591.4000000000663 0.501204813531651
+591.5000000000663 0.5011831375574464
+591.6000000000663 0.5010498373441326
+591.7000000000663 0.5009164921152616
+591.8000000000663 0.500783098531561
+591.9000000000664 0.5006496527512844
+592.0000000000664 0.5005161504285774
+592.1000000000664 0.5004886990178505
+592.2000000000664 0.5004612376170442
+592.3000000000665 0.5004337603878248
+592.4000000000665 0.500406260983762
+592.5000000000665 0.5003787325554011
+592.6000000000665 0.5006904094838046
+592.7000000000666 0.5010020465101004
+592.8000000000666 0.5013136367620241
+592.9000000000666 0.5016251738579445
+593.0000000000666 0.5019366519095887
+593.1000000000666 0.502148901532876
+593.2000000000667 0.5023611884183549
+593.3000000000667 0.5025735082152504
+593.4000000000667 0.5027858570768093
+593.5000000000667 0.502998231657623
+593.6000000000668 0.5028696723915145
+593.7000000000668 0.5027400953079734
+593.8000000000668 0.5026099673819348
+593.9000000000668 0.5024797209799228
+594.0000000000668 0.5023497538954913
+594.1000000000669 0.502005114840583
+594.2000000000669 0.5016613444632178
+594.3000000000669 0.5013187353458152
+594.4000000000669 0.5009775452278338
+594.500000000067 0.5006379971230397
+594.600000000067 0.5009808264006099
+594.700000000067 0.5013259744692383
+594.800000000067 0.501673563506358
+594.900000000067 0.5020236824246427
+595.0000000000671 0.502376386757531
+595.1000000000671 0.5031591681371502
+595.2000000000671 0.5039450966118266
+595.3000000000671 0.5047341331725846
+595.4000000000672 0.5055262046849978
+595.5000000000672 0.5063212036243337
+595.6000000000672 0.5068907100833304
+595.7000000000672 0.5074623837720105
+595.8000000000673 0.5080360013682347
+595.9000000000673 0.5086113039685481
+596.0000000000673 0.5091879968894013
+596.1000000000673 0.5093884241937131
+596.2000000000673 0.5095892737694125
+596.3000000000674 0.5097901423936334
+596.4000000000674 0.5099905915648482
+596.5000000000674 0.5101901474403053
+596.6000000000674 0.5102734777426038
+596.7000000000675 0.5103567474839232
+596.8000000000675 0.5104399599924341
+596.9000000000675 0.510523119116557
+597.0000000000675 0.5106062292257978
+597.1000000000676 0.5104434895115049
+597.2000000000676 0.5102806679703066
+597.3000000000676 0.5101177705458922
+597.4000000000676 0.5099548036899113
+597.5000000000676 0.5097917743617973
+597.6000000000677 0.5097434502831867
+597.7000000000677 0.5096949632184827
+597.8000000000677 0.5096463200842779
+597.9000000000677 0.5095975272787483
+598.0000000000678 0.5095485906795912
+598.1000000000678 0.5096299699668405
+598.2000000000678 0.5097113734035662
+598.3000000000678 0.5097928053942498
+598.4000000000678 0.5098742698290617
+598.5000000000679 0.5099557700822769
+598.6000000000679 0.5100387371324605
+598.7000000000679 0.5101226638317159
+598.8000000000679 0.510207077410678
+598.900000000068 0.510291539485487
+599.000000000068 0.510375646087414
+599.100000000068 0.5105274658907106
+599.200000000068 0.5106782311011135
+599.300000000068 0.5108276406007507
+599.4000000000681 0.5109754276574154
+599.5000000000681 0.5111213599796436
+599.6000000000681 0.5111503534814648
+599.7000000000681 0.5111771056510835
+599.8000000000682 0.5112014964228992
+599.9000000000682 0.5112234399489515
+600.0000000000682 0.5112428846059143
+600.1000000000682 0.5110847100096383
+600.2000000000683 0.5109238769637151
+600.3000000000683 0.5107604390601043
+600.4000000000683 0.5105944840288782
+600.5000000000683 0.5104261336806083
+600.6000000000683 0.5101410340658578
+600.7000000000684 0.5098540426046297
+600.8000000000684 0.5095653926149348
+600.9000000000684 0.5092753515202919
+601.0000000000684 0.508984220746128
+601.1000000000685 0.5090948444488418
+601.2000000000685 0.5092051124101287
+601.3000000000685 0.5093154275440547
+601.4000000000685 0.5094262277522764
+601.5000000000686 0.509537985965451
+601.6000000000686 0.5096512101982574
+601.7000000000686 0.5097644712232551
+601.8000000000686 0.5098777656965489
+601.9000000000686 0.5099910897528444
+602.0000000000687 0.510104439009029
+602.1000000000687 0.5102043851093965
+602.2000000000687 0.5103043112477009
+602.3000000000687 0.5104042114592434
+602.4000000000688 0.5105040792562126
+602.5000000000688 0.5106039076264828
+602.6000000000688 0.5105892281686533
+602.7000000000688 0.5105745428564988
+602.8000000000688 0.510559844695506
+602.9000000000689 0.5105451272093038
+603.0000000000689 0.5105303844397217
+603.1000000000689 0.5106723819722282
+603.2000000000689 0.5108143884471626
+603.300000000069 0.5109563994463735
+603.400000000069 0.5110984110642193
+603.500000000069 0.5112404199083878
+603.600000000069 0.5114963665615193
+603.700000000069 0.5117519074612668
+603.8000000000691 0.512007278469054
+603.9000000000691 0.5122626987792182
+604.0000000000691 0.5125183708764453
+604.1000000000691 0.5128725885077744
+604.2000000000692 0.5132273942288352
+604.3000000000692 0.5135829405053968
+604.4000000000692 0.5139393630257011
+604.5000000000692 0.5142967806391374
+604.6000000000693 0.5147705596427785
+604.7000000000693 0.5152456817886273
+604.8000000000693 0.5157222158922136
+604.9000000000693 0.5162002137381383
+605.0000000000693 0.5166797100020324
+605.1000000000694 0.5165660034249351
+605.2000000000694 0.516453526509487
+605.3000000000694 0.5163422577475334
+605.4000000000694 0.5162321583683963
+605.5000000000695 0.5161231723591093
+605.6000000000695 0.516130666125025
+605.7000000000695 0.5161390323316358
+605.8000000000695 0.5161481552605468
+605.9000000000696 0.516157901384203
+606.0000000000696 0.5161681193584083
+606.1000000000696 0.5162338929574908
+606.2000000000696 0.516299870761995
+606.3000000000696 0.5163658479975871
+606.4000000000697 0.5164316019712945
+606.5000000000697 0.5164968920588265
+606.6000000000697 0.516676892423879
+606.7000000000697 0.5168569224996098
+606.8000000000698 0.5170369822839832
+606.9000000000698 0.517217071776771
+607.0000000000698 0.5173971909783772
+607.1000000000698 0.517619270813467
+607.2000000000698 0.5178414011106934
+607.3000000000699 0.5180635818767304
+607.4000000000699 0.5182858131176482
+607.5000000000699 0.518508094841412
+607.6000000000699 0.5188462150946456
+607.70000000007 0.5191844851211789
+607.80000000007 0.5195229049610978
+607.90000000007 0.5198614746557062
+608.00000000007 0.5202001942440608
+608.10000000007 0.5199142639281197
+608.2000000000701 0.5196282482012784
+608.3000000000701 0.5193421470564501
+608.4000000000701 0.5190559604841265
+608.5000000000701 0.518769688477297
+608.6000000000702 0.5185989348907228
+608.7000000000702 0.5184279681182867
+608.8000000000702 0.5182567880953152
+608.9000000000702 0.5180853947553166
+609.0000000000703 0.5179137880333042
+609.1000000000703 0.5181791878557093
+609.2000000000703 0.5184446479398398
+609.3000000000703 0.5187101682907728
+609.4000000000703 0.5189757489166007
+609.5000000000704 0.519241389823689
+609.6000000000704 0.5196227941572602
+609.7000000000704 0.5200043771651934
+609.8000000000704 0.5203861388942529
+609.9000000000705 0.5207680793918129
+610.0000000000705 0.5211501987049024
+610.1000000000705 0.5210316025764207
+610.2000000000705 0.5209128208412567
+610.3000000000706 0.5207938534341681
+610.4000000000706 0.5206747002911084
+610.5000000000706 0.5205553613461272
+610.6000000000706 0.5203202098220635
+610.7000000000706 0.520084976914814
+610.8000000000707 0.5198496626143662
+610.9000000000707 0.5196142669088956
+611.0000000000707 0.5193787897886895
+611.1000000000707 0.5195704262370361
+611.2000000000708 0.5197621034206507
+611.3000000000708 0.5199538213462104
+611.4000000000708 0.5201455800185835
+611.5000000000708 0.5203373794425566
+611.6000000000708 0.5204137004899476
+611.7000000000709 0.5204900284131398
+611.8000000000709 0.520566363214053
+611.9000000000709 0.5206427048934018
+612.0000000000709 0.5207190534511265
+612.100000000071 0.5214055060625635
+612.200000000071 0.5220922597918698
+612.300000000071 0.5227793146614818
+612.400000000071 0.52346667069504
+612.500000000071 0.5241543279148866
+612.6000000000711 0.5247259391290957
+612.7000000000711 0.5252975980682967
+612.8000000000711 0.525869304722975
+612.9000000000711 0.5264410590842251
+613.0000000000712 0.527012861143436
+613.1000000000712 0.5271395648463019
+613.2000000000712 0.5272662631137756
+613.3000000000712 0.5273929559384757
+613.4000000000713 0.5275196433142411
+613.5000000000713 0.5276463252324683
+613.6000000000713 0.5277730016876041
+613.7000000000713 0.5278996726722647
+613.8000000000713 0.5280263381790644
+613.9000000000714 0.528152998201228
+614.0000000000714 0.5282796527317591
+614.1000000000714 0.528100768650821
+614.2000000000714 0.5279218301219071
+614.3000000000715 0.5277428371393448
+614.4000000000715 0.52756378969929
+614.5000000000715 0.5273846877973714
+614.6000000000715 0.5273221698208835
+614.7000000000716 0.5272595180769161
+614.8000000000716 0.5271967325238087
+614.9000000000716 0.5271338131217226
+615.0000000000716 0.5270707598296915
+615.1000000000716 0.5271403226886316
+615.2000000000717 0.5272098901496619
+615.3000000000717 0.527279462212579
+615.4000000000717 0.527349038879004
+615.5000000000717 0.5274186201488184
+615.6000000000718 0.5276047780014246
+615.7000000000718 0.5277909712162789
+615.8000000000718 0.527977199796398
+615.9000000000718 0.5281634637454047
+616.0000000000719 0.5283497630674747
+616.1000000000719 0.528454127582295
+616.2000000000719 0.5285585036431898
+616.3000000000719 0.5286628912514291
+616.4000000000719 0.5287672904070638
+616.500000000072 0.5288717011102286
+616.600000000072 0.5290928951339219
+616.700000000072 0.5293141468136046
+616.800000000072 0.5295354561589687
+616.900000000072 0.5297568231778775
+617.0000000000721 0.5299782478780012
+617.1000000000721 0.5299306248379466
+617.2000000000721 0.5298829830959086
+617.3000000000721 0.5298353226520026
+617.4000000000722 0.5297876435045142
+617.5000000000722 0.529739945654253
+617.6000000000722 0.529809030031731
+617.7000000000722 0.5298780746532694
+617.8000000000723 0.5299470795049398
+617.9000000000723 0.5300160445740311
+618.0000000000723 0.5300849698487382
+618.1000000000723 0.5305659399307422
+618.2000000000724 0.5310469883440421
+618.3000000000724 0.5315281150875654
+618.4000000000724 0.5320093201608506
+618.5000000000724 0.5324906035628237
+618.6000000000724 0.53297196529425
+618.7000000000725 0.5334534053534444
+618.8000000000725 0.5339349237405631
+618.9000000000725 0.5344165204551478
+619.0000000000725 0.534898195495576
+619.1000000000726 0.5346168695057196
+619.2000000000726 0.5343352768027132
+619.3000000000726 0.5340534173227306
+619.4000000000726 0.5337712910013267
+619.5000000000726 0.5334888977745803
+619.6000000000727 0.5330889462810517
+619.7000000000727 0.5326889037905906
+619.8000000000727 0.5322887702986496
+619.9000000000727 0.5318885458019028
+620.0000000000728 0.5314882302960491
+620.1000000000728 0.5314280413734106
+620.2000000000728 0.5313677482445327
+620.3000000000728 0.531307350894506
+620.4000000000729 0.5312468493084233
+620.5000000000729 0.5311862434725135
+620.6000000000729 0.5310088281352112
+620.7000000000729 0.5308313865148143
+620.8000000000729 0.5306539186148196
+620.900000000073 0.5304764244375065
+621.000000000073 0.5302989039862711
+621.100000000073 0.5308183301594599
+621.200000000073 0.5313378878513696
+621.300000000073 0.5318575770773115
+621.4000000000731 0.5323773978513795
+621.5000000000731 0.5328973501895864
+621.6000000000731 0.5335346687057175
+621.7000000000731 0.534172347480893
+621.8000000000732 0.5348103866161322
+621.9000000000732 0.5354487862130805
+622.0000000000732 0.5360875463717466
+622.1000000000732 0.5361478392007916
+622.2000000000733 0.536208134511976
+622.3000000000733 0.536268432304959
+622.4000000000733 0.5363287325800133
+622.5000000000733 0.5363890353387286
+622.6000000000734 0.5365671121140833
+622.7000000000734 0.536745217852288
+622.8000000000734 0.536923352555394
+622.9000000000734 0.5371015162248375
+623.0000000000734 0.5372797088625565
+623.1000000000735 0.5373022138922415
+623.2000000000735 0.5373247143596482
+623.3000000000735 0.5373472102652215
+623.4000000000735 0.5373697016087895
+623.5000000000736 0.5373921883907955
+623.6000000000736 0.5374139179207246
+623.7000000000736 0.53743515893554
+623.8000000000736 0.5374561616755621
+623.9000000000736 0.5374771578820335
+624.0000000000737 0.53749836078895
+624.1000000000737 0.537829883954852
+624.2000000000737 0.5381621204171424
+624.3000000000737 0.5384952291825211
+624.4000000000738 0.5388293510641613
+624.5000000000738 0.539164608624693
+624.6000000000738 0.5393829721504152
+624.7000000000738 0.5396025796078969
+624.8000000000739 0.5398234902473307
+624.9000000000739 0.5400457453361956
+625.0000000000739 0.5402693681240984
+625.1000000000739 0.5399477509992002
+625.2000000000739 0.5396273601468424
+625.300000000074 0.5393081606416622
+625.400000000074 0.5389900995945756
+625.500000000074 0.5386731062069022
+625.600000000074 0.5384750232917386
+625.700000000074 0.5382776748617338
+625.8000000000741 0.5380809371931591
+625.9000000000741 0.5378846687404462
+626.0000000000741 0.5376887101680466
+626.1000000000741 0.5373310285703078
+626.2000000000742 0.5369734094932577
+626.3000000000742 0.5366156405355943
+626.4000000000742 0.5362574919202476
+626.5000000000742 0.5358987165561658
+626.6000000000743 0.5354218642976792
+626.7000000000743 0.5349450323923356
+626.8000000000743 0.5344682245061108
+626.9000000000743 0.5339914448330189
+627.0000000000744 0.533514698094893
+627.1000000000744 0.533558260208969
+627.2000000000744 0.5335977521509124
+627.3000000000744 0.5336331786053893
+627.4000000000744 0.533664544800011
+627.5000000000745 0.5336918565033046
+627.6000000000745 0.5331235273453854
+627.7000000000745 0.5325487045963327
+627.8000000000745 0.5319673931768256
+627.9000000000746 0.5313795974345362
+628.0000000000746 0.53078532115218
+628.1000000000746 0.5306320732384066
+628.2000000000746 0.5304768600947416
+628.3000000000746 0.5303196852110506
+628.4000000000747 0.5301605515327316
+628.5000000000747 0.5299994614628952
+628.6000000000747 0.5301927025838975
+628.7000000000747 0.5303839343701536
+628.8000000000748 0.5305726640435048
+628.9000000000748 0.5307584341942423
+629.0000000000748 0.5309408228666809
+629.1000000000748 0.5314299132959971
+629.2000000000749 0.5319179554056426
+629.3000000000749 0.5324046332775456
+629.4000000000749 0.5328896660780705
+629.5000000000749 0.5333728082247615
+629.6000000000749 0.5339720676320042
+629.700000000075 0.5345692495464064
+629.800000000075 0.5351642208229593
+629.900000000075 0.535756883633397
+630.000000000075 0.5363471756681083
+630.100000000075 0.5366991540282506
+630.2000000000751 0.5370482728967053
+630.3000000000751 0.5373945810433045
+630.4000000000751 0.5377381634003292
+630.5000000000751 0.5380791411759478
+630.6000000000752 0.5382991821519864
+630.7000000000752 0.5385170614020615
+630.8000000000752 0.5387330198550621
+630.9000000000752 0.5389473354785286
+631.0000000000753 0.5391603233422463
+631.1000000000753 0.5396008563709594
+631.2000000000753 0.5400412047954982
+631.3000000000753 0.5404817955202951
+631.4000000000754 0.5409230936263403
+631.5000000000754 0.5413656025218279
+631.6000000000754 0.5418098641174232
+631.7000000000754 0.5422543609038047
+631.8000000000754 0.5426990894051882
+631.9000000000755 0.5431440455851323
+632.0000000000755 0.5435892248403972
+632.1000000000755 0.5438483358153224
+632.2000000000755 0.5441074674597051
+632.3000000000756 0.544366613426685
+632.4000000000756 0.5446257668048501
+632.5000000000756 0.5448849201174231
+632.6000000000756 0.5450252423090316
+632.7000000000756 0.5451655838818406
+632.8000000000757 0.5453059373775185
+632.9000000000757 0.5454462958827522
+633.0000000000757 0.5455866530290719
+633.1000000000757 0.545345329576784
+633.2000000000758 0.5451037573807133
+633.3000000000758 0.5448619317167795
+633.4000000000758 0.5446198484200508
+633.5000000000758 0.5443775038866526
+633.6000000000759 0.544134133088212
+633.7000000000759 0.5438900065675919
+633.8000000000759 0.5436453761882195
+633.9000000000759 0.5434004751799648
+634.0000000000759 0.5431555181840915
+634.100000000076 0.5434713889596183
+634.200000000076 0.5437878352591327
+634.300000000076 0.5441050184228122
+634.400000000076 0.5444230819452194
+634.500000000076 0.5447421514245611
+634.6000000000761 0.5451808263210763
+634.7000000000761 0.5456208441805058
+634.8000000000761 0.5460622774177749
+634.9000000000761 0.5465051803844584
+635.0000000000762 0.5469495892942541
+635.1000000000762 0.5470288219689518
+635.2000000000762 0.547109398897637
+635.3000000000762 0.5471912987571803
+635.4000000000763 0.5472744818943697
+635.5000000000763 0.5473588903088547
+635.6000000000763 0.5475633280842955
+635.7000000000763 0.547768826491767
+635.8000000000764 0.5479752638090983
+635.9000000000764 0.5481824992229715
+636.0000000000764 0.5483903727907908
+636.1000000000764 0.5481248267494064
+636.2000000000764 0.5478594277395946
+636.3000000000765 0.5475939582066588
+636.4000000000765 0.5473281821342998
+636.5000000000765 0.547061845095583
+636.6000000000765 0.5469132848555501
+636.7000000000766 0.546764541491858
+636.8000000000766 0.5466156149579116
+636.9000000000766 0.546466505207731
+637.0000000000766 0.546317212194956
+637.1000000000766 0.5464824468709798
+637.2000000000767 0.5466477035327573
+637.3000000000767 0.5468129821812561
+637.4000000000767 0.5469782828180625
+637.5000000000767 0.5471436054430008
+637.6000000000768 0.5474275435456138
+637.7000000000768 0.5477115753037627
+637.8000000000768 0.5479957007321871
+637.9000000000768 0.5482799198462436
+638.0000000000769 0.548564232659826
+638.1000000000769 0.5485519202338857
+638.2000000000769 0.5485395960036158
+638.3000000000769 0.5485272599681235
+638.400000000077 0.5485149121277519
+638.500000000077 0.5485025524810808
+638.600000000077 0.5486089018468208
+638.700000000077 0.5487152340453997
+638.800000000077 0.5488215490689639
+638.9000000000771 0.5489278469084221
+639.0000000000771 0.5490341275571533
+639.1000000000771 0.549136380500715
+639.2000000000771 0.5492386462251239
+639.3000000000771 0.5493409247304819
+639.4000000000772 0.5494432160181284
+639.5000000000772 0.5495455200900222
+639.6000000000772 0.5496478369468847
+639.7000000000772 0.5497501665894371
+639.8000000000773 0.5498525090202584
+639.9000000000773 0.5499548642388317
+640.0000000000773 0.5500572322476852
+640.1000000000773 0.5500916040247175
+640.2000000000774 0.5501258941064715
+640.3000000000774 0.5501601024561079
+640.4000000000774 0.550194229036779
+640.5000000000774 0.5502282738115369
+640.6000000000774 0.5501434152714404
+640.7000000000775 0.5500585115266685
+640.8000000000775 0.5499735625695555
+640.9000000000775 0.5498885683918144
+641.0000000000775 0.5498035289868168
+641.1000000000776 0.5502610312156921
+641.2000000000776 0.55071870546378
+641.3000000000776 0.5511765517436197
+641.4000000000776 0.5516345700677477
+641.5000000000776 0.5520927604479845
+641.6000000000777 0.5524319358563143
+641.7000000000777 0.5527711369798661
+641.8000000000777 0.553110363815685
+641.9000000000777 0.5534496163583327
+642.0000000000778 0.5537888946033516
+642.1000000000778 0.5537917568465259
+642.2000000000778 0.5537946126684392
+642.3000000000778 0.5537974620699457
+642.4000000000779 0.5538003050512779
+642.5000000000779 0.5538031416140068
+642.6000000000779 0.5539254552476606
+642.7000000000779 0.5540477636821437
+642.800000000078 0.554170066913611
+642.900000000078 0.5542923649394638
+643.000000000078 0.554414657755154
+643.100000000078 0.554433804346497
+643.200000000078 0.5544529475937297
+643.3000000000781 0.5544720874974115
+643.4000000000781 0.5544912240581024
+643.5000000000781 0.554510357275739
+643.6000000000781 0.5545294871515044
+643.7000000000781 0.5545486136853346
+643.8000000000782 0.554567736877168
+643.9000000000782 0.5545868567281872
+644.0000000000782 0.5546059732391078
+644.1000000000782 0.5548243126693446
+644.2000000000783 0.5550426899143209
+644.3000000000783 0.5552611049692632
+644.4000000000783 0.5554795578281494
+644.5000000000783 0.555698048486732
+644.6000000000784 0.5557969220597306
+644.7000000000784 0.5558957908524177
+644.8000000000784 0.555994654862408
+644.9000000000784 0.5560935140891868
+645.0000000000784 0.5561923685292465
+645.1000000000785 0.5564495018952363
+645.2000000000785 0.556706674174751
+645.3000000000785 0.5569638853693015
+645.4000000000785 0.5572211354797735
+645.5000000000786 0.5574784245082097
+645.6000000000786 0.5576156801733239
+645.7000000000786 0.5577528639435065
+645.8000000000786 0.557889975796317
+645.9000000000786 0.5580270157074386
+646.0000000000787 0.5581639836533451
+646.1000000000787 0.5585113594350937
+646.2000000000787 0.5588586693480808
+646.3000000000787 0.5592059133271241
+646.4000000000788 0.5595530913057715
+646.5000000000788 0.5599002032180849
+646.6000000000788 0.5601263497217066
+646.7000000000788 0.5603522280509527
+646.8000000000789 0.5605778380519743
+646.9000000000789 0.5608031795702585
+647.0000000000789 0.5610282524520424
+647.1000000000789 0.5606497421162473
+647.200000000079 0.5602712533130918
+647.300000000079 0.5598927860889373
+647.400000000079 0.5595143404882613
+647.500000000079 0.5591359165574451
+647.600000000079 0.5587575143422474
+647.7000000000791 0.5583791338878071
+647.8000000000791 0.558000775240534
+647.9000000000791 0.5576224384455863
+648.0000000000791 0.5572441235489156
+648.1000000000791 0.557057591796894
+648.2000000000792 0.5568706180735451
+648.3000000000792 0.5566832022912424
+648.4000000000792 0.5564953443611065
+648.5000000000792 0.5563070441947967
+648.6000000000793 0.5559988448025064
+648.7000000000793 0.5556908586809042
+648.8000000000793 0.5553828415670015
+648.9000000000793 0.5550745677622624
+649.0000000000794 0.5547658300787128
+649.1000000000794 0.5550486237274567
+649.2000000000794 0.555330878256422
+649.3000000000794 0.5556124394632015
+649.4000000000794 0.5558931708851851
+649.5000000000795 0.5561729538455347
+649.6000000000795 0.5568122852170575
+649.7000000000795 0.5574508736865983
+649.8000000000795 0.558088636704508
+649.9000000000796 0.558725510634301
+650.0000000000796 0.559361450864728
+650.1000000000796 0.559979093650387
+650.2000000000796 0.5605958132262999
+650.3000000000796 0.5612116229340338
+650.4000000000797 0.5618265555750626
+650.5000000000797 0.5624406635165227
+650.6000000000797 0.5626912809980824
+650.7000000000797 0.5629407450871088
+650.8000000000798 0.5631891768567853
+650.9000000000798 0.5634367164759158
+651.0000000000798 0.5636835232450849
+651.1000000000798 0.5634177582906248
+651.2000000000799 0.5631516005621136
+651.3000000000799 0.5628852671905664
+651.4000000000799 0.5626189937516688
+651.5000000000799 0.5623530342158707
+651.60000000008 0.562330358501294
+651.70000000008 0.5623076212519764
+651.80000000008 0.5622848318845711
+651.90000000008 0.5622620003830837
+652.00000000008 0.5622391373038148
+652.1000000000801 0.5621817176181573
+652.2000000000801 0.5621232880560529
+652.3000000000801 0.5620638606173024
+652.4000000000801 0.5620034478674041
+652.5000000000801 0.5619420629355946
+652.6000000000802 0.5616382585448035
+652.7000000000802 0.561333915074824
+652.8000000000802 0.5610290286444982
+652.9000000000802 0.5607235948115458
+653.0000000000803 0.5604176085733694
+653.1000000000803 0.5607164942303648
+653.2000000000803 0.5610154394733192
+653.3000000000803 0.5613144377636461
+653.4000000000804 0.5616134819775292
+653.5000000000804 0.5619125644063471
+653.6000000000804 0.5623315582918652
+653.7000000000804 0.562750240470018
+653.8000000000804 0.5631688645279573
+653.9000000000805 0.5635876659425894
+654.0000000000805 0.5640068620114295
+654.1000000000805 0.5641519524421361
+654.2000000000805 0.564297536030626
+654.3000000000806 0.5644437739598324
+654.4000000000806 0.5645908086743776
+654.5000000000806 0.5647387638556406
+654.6000000000806 0.565008990960581
+654.7000000000806 0.5652804460358634
+654.8000000000807 0.5655531971660902
+654.9000000000807 0.5658272936177087
+655.0000000000807 0.5661027657921094
+655.1000000000807 0.5656196133450321
+655.2000000000808 0.5651377323119589
+655.3000000000808 0.5646570908841708
+655.4000000000808 0.5641776384524807
+655.5000000000808 0.5636993056887138
+655.6000000000809 0.5633428677144943
+655.7000000000809 0.562987150430401
+655.8000000000809 0.562632029330172
+655.9000000000809 0.5622773613808182
+656.000000000081 0.5619229850795325
+656.100000000081 0.5622712824069153
+656.200000000081 0.5626199378934627
+656.300000000081 0.5629687350796784
+656.400000000081 0.563317438095551
+656.5000000000811 0.5636657916032267
+656.6000000000811 0.5640135207422862
+656.7000000000811 0.5643613917516376
+656.8000000000811 0.5647094046643827
+656.9000000000811 0.565057559513627
+657.0000000000812 0.5654058563342936
+657.1000000000812 0.565662762002041
+657.2000000000812 0.5659197106774455
+657.3000000000812 0.566176702364669
+657.4000000000813 0.5664337370653538
+657.5000000000813 0.5666908147825023
+657.6000000000813 0.5670692078047257
+657.7000000000813 0.5674477538660031
+657.8000000000814 0.5678264529956167
+657.9000000000814 0.5682053052247459
+658.0000000000814 0.5685843105829449
+658.1000000000814 0.568515984686198
+658.2000000000814 0.5684475530253691
+658.3000000000815 0.5683790155870214
+658.4000000000815 0.5683103723589805
+658.5000000000815 0.5682416233271819
+658.6000000000815 0.5681727684788228
+658.7000000000816 0.5681038078017352
+658.8000000000816 0.5680347412818588
+658.9000000000816 0.5679655689070271
+659.0000000000816 0.5678962906637538
+659.1000000000816 0.5677524955066384
+659.2000000000817 0.5676086429206444
+659.3000000000817 0.5674647328970849
+659.4000000000817 0.5673207654279012
+659.5000000000817 0.5671767405051342
+659.6000000000818 0.5671535606052026
+659.7000000000818 0.5671302617681951
+659.8000000000818 0.5671068439493083
+659.9000000000818 0.5670833071031002
+660.0000000000819 0.5670596511840295
+660.1000000000819 0.5669226381052713
+660.2000000000819 0.5667855933030076
+660.3000000000819 0.5666485167776
+660.400000000082 0.5665114085287807
+660.500000000082 0.5663742685557536
+660.600000000082 0.5663577011384271
+660.700000000082 0.566341043549208
+660.800000000082 0.5663242957675786
+660.9000000000821 0.5663074577730194
+661.0000000000821 0.5662905295440981
+661.1000000000821 0.5666911279819199
+661.2000000000821 0.5670917946114835
+661.3000000000822 0.5674925294370823
+661.4000000000822 0.5678933324630119
+661.5000000000822 0.5682942036936675
+661.6000000000822 0.5688161420990424
+661.7000000000822 0.5693383193586798
+661.8000000000823 0.5698607355198096
+661.9000000000823 0.5703833906309265
+662.0000000000823 0.5709062847388436
+662.1000000000823 0.5709133694282974
+662.2000000000824 0.5709204414125809
+662.3000000000824 0.5709275006894489
+662.4000000000824 0.5709345472579196
+662.5000000000824 0.570941581115749
+662.6000000000824 0.5709486022613228
+662.7000000000825 0.5709556106923965
+662.8000000000825 0.5709626064073562
+662.9000000000825 0.5709695894045879
+663.0000000000825 0.5709765596824969
+663.1000000000826 0.571005657997705
+663.2000000000826 0.571034712936487
+663.3000000000826 0.5710637244979876
+663.4000000000826 0.571092692681982
+663.5000000000827 0.5711216174875169
+663.6000000000827 0.5710300614972331
+663.7000000000827 0.5709390154311824
+663.8000000000827 0.5708482130481555
+663.9000000000827 0.5707574079772915
+664.0000000000828 0.570666373701367
+664.1000000000828 0.5706296168331098
+664.2000000000828 0.570592211769931
+664.3000000000828 0.5705539912353125
+664.4000000000829 0.5705148076914468
+664.5000000000829 0.5704745333361998
+664.6000000000829 0.5705541005994801
+664.7000000000829 0.570632317088412
+664.800000000083 0.570709136751341
+664.900000000083 0.5707845314796522
+665.000000000083 0.5708584911238305
+665.100000000083 0.5709549740270305
+665.200000000083 0.57105010173143
+665.3000000000831 0.5711439178883535
+665.4000000000831 0.5712364841651193
+665.5000000000831 0.5713278802564286
+665.6000000000831 0.5714182745601053
+665.7000000000832 0.5715077576692608
+665.8000000000832 0.5715964399706945
+665.9000000000832 0.5716844516634179
+666.0000000000832 0.5717719427715582
+666.1000000000832 0.5720428679291178
+666.2000000000833 0.5723137160273599
+666.3000000000833 0.572584696721411
+666.4000000000833 0.5728560398488216
+666.5000000000833 0.5731279954801082
+666.6000000000834 0.5732793528521143
+666.7000000000834 0.5734306933692213
+666.8000000000834 0.5735820073899622
+666.9000000000834 0.5737332846806878
+667.0000000000834 0.57388451441377
+667.1000000000835 0.5735882012572769
+667.2000000000835 0.5732917688562231
+667.3000000000835 0.5729952048343924
+667.4000000000835 0.5726984962572461
+667.5000000000836 0.5724016296373172
+667.6000000000836 0.5722257995148242
+667.7000000000836 0.5720497545246692
+667.8000000000836 0.5718735080625511
+667.9000000000837 0.5716970746674973
+668.0000000000837 0.5715204700248199
+668.1000000000837 0.5717151518577083
+668.2000000000837 0.5719098700433723
+668.3000000000837 0.5721046437813861
+668.4000000000838 0.5722994934587106
+668.5000000000838 0.5724944406542741
+668.6000000000838 0.5726887288933262
+668.7000000000838 0.5728825618066976
+668.8000000000839 0.5730761944092071
+668.9000000000839 0.5732698622791433
+669.0000000000839 0.5734637815221576
+669.1000000000839 0.5736566481871916
+669.200000000084 0.5738501529224813
+669.300000000084 0.5740444532039474
+669.400000000084 0.574239686900856
+669.500000000084 0.5744359722367937
+669.600000000084 0.5745119464638757
+669.7000000000841 0.5745891498100505
+669.8000000000841 0.5746676502154714
+669.9000000000841 0.5747474963988445
+670.0000000000841 0.5748287178462935
+670.1000000000842 0.5750458097916972
+670.2000000000842 0.5752643190894791
+670.3000000000842 0.575484218389353
+670.4000000000842 0.5757054610061831
+670.5000000000842 0.5759279808814998
+670.6000000000843 0.5762735005130121
+670.7000000000843 0.5766202020917683
+670.8000000000843 0.576967961826199
+670.9000000000843 0.5773166362747034
+671.0000000000844 0.577666062284442
+671.1000000000844 0.5774028909870249
+671.2000000000844 0.5771399211032839
+671.3000000000844 0.5768769299620752
+671.4000000000844 0.576613675973979
+671.5000000000845 0.5763498986702029
+671.6000000000845 0.576085318753082
+671.7000000000845 0.5758207209333692
+671.8000000000845 0.5755561052158668
+671.9000000000846 0.5752914716047428
+672.0000000000846 0.5750268201038536
+672.1000000000846 0.5751424120505463
+672.2000000000846 0.5752579877990899
+672.3000000000847 0.5753735473392738
+672.4000000000847 0.5754890906602541
+672.5000000000847 0.5756046177517135
+672.6000000000847 0.5755986942803611
+672.7000000000847 0.5755927570631065
+672.8000000000848 0.5755868060997045
+672.9000000000848 0.5755808413873846
+673.0000000000848 0.5755748629251192
+673.1000000000848 0.5753902274426866
+673.2000000000849 0.5752055710690134
+673.3000000000849 0.5750208938069392
+673.4000000000849 0.5748361956580404
+673.5000000000849 0.5746514766245245
+673.600000000085 0.5744667367079673
+673.700000000085 0.5742819759105757
+673.800000000085 0.5740971942345554
+673.900000000085 0.5739123916821117
+674.000000000085 0.5737275682552402
+674.1000000000851 0.574037160963851
+674.2000000000851 0.5743468523008753
+674.3000000000851 0.5746566422785722
+674.4000000000851 0.5749665309085707
+674.5000000000852 0.5752765182023966
+674.6000000000852 0.5754653259172665
+674.7000000000852 0.5756541527308214
+674.8000000000852 0.5758429986432625
+674.9000000000852 0.5760318636541616
+675.0000000000853 0.5762207477632404
+675.1000000000853 0.5758471201201257
+675.2000000000853 0.5754734257922914
+675.3000000000853 0.5750996647784211
+675.4000000000854 0.5747258370771952
+675.5000000000854 0.574351942686665
+675.6000000000854 0.5739779816061406
+675.7000000000854 0.5736039538336714
+675.8000000000854 0.5732298593673076
+675.9000000000855 0.572855698206356
+676.0000000000855 0.5724814703480908
+676.1000000000855 0.5719349909807778
+676.2000000000855 0.5713880995109478
+676.3000000000856 0.5708407958485836
+676.4000000000856 0.5702930799036594
+676.5000000000856 0.5697449515860374
+676.6000000000856 0.5690766052046705
+676.7000000000857 0.5684081277336619
+676.8000000000857 0.5677395191663963
+676.9000000000857 0.567070779495632
+677.0000000000857 0.5664019087126658
+677.1000000000857 0.5654765699696989
+677.2000000000858 0.5645511641045322
+677.3000000000858 0.5636256911279741
+677.4000000000858 0.5627001510508299
+677.5000000000858 0.5617745438833874
+677.6000000000859 0.5609669430817854
+677.7000000000859 0.5601588854257269
+677.8000000000859 0.5593503708836272
+677.9000000000859 0.5585413994220745
+678.000000000086 0.5577319710107368
+678.100000000086 0.5569384468635724
+678.200000000086 0.55614475312361
+678.300000000086 0.5553508897790799
+678.400000000086 0.5545568568157807
+678.5000000000861 0.5537626542225449
+678.6000000000861 0.5529682819863821
+678.7000000000861 0.5521737400943031
+678.8000000000861 0.5513790285345233
+678.9000000000862 0.5505841472934474
+679.0000000000862 0.5497890963593105
+679.1000000000862 0.549021249952672
+679.2000000000862 0.5482533347125271
+679.3000000000862 0.5474853506457045
+679.4000000000863 0.546717297759631
+679.5000000000863 0.5459491760623264
+679.6000000000863 0.545180985559422
+679.7000000000863 0.5444127262595309
+679.8000000000864 0.5436443981688797
+679.9000000000864 0.54287600129548
+680.0000000000864 0.5421075356459011
+680.1000000000864 0.5410495007887883
+680.2000000000864 0.5399908186305009
+680.3000000000865 0.53893148907238
+680.4000000000865 0.5378715120151737
+680.5000000000865 0.5368108873601194
+680.6000000000865 0.5356370862094624
+680.7000000000866 0.5344631305227842
+680.8000000000866 0.5332890202970825
+680.9000000000866 0.5321147555322713
+681.0000000000866 0.5309403362263685
+681.1000000000867 0.5295999388847576
+681.2000000000867 0.5282592582702664
+681.3000000000867 0.5269182943626468
+681.4000000000867 0.5255770471433743
+681.5000000000867 0.524235516591046
+681.6000000000868 0.5228937026871264
+681.7000000000868 0.5215516054102185
+681.8000000000868 0.5202092247417768
+681.9000000000868 0.5188665606615414
+682.0000000000869 0.5175236131493273
+682.1000000000869 0.5156152740201622
+682.2000000000869 0.5137066470194164
+682.3000000000869 0.5117977321369619
+682.400000000087 0.5098885293637851
+682.500000000087 0.507979038689287
+682.600000000087 0.5061755771755161
+682.700000000087 0.504371025191622
+682.800000000087 0.5025653825476172
+682.9000000000871 0.5007586490512967
+683.0000000000871 0.49895082451147876
+683.1000000000871 0.49706420655403016
+683.2000000000871 0.49517749918844545
+683.3000000000872 0.4932907024395074
+683.4000000000872 0.4914038163325342
+683.5000000000872 0.4895168408928372
+683.6000000000872 0.48763043977352305
+683.7000000000872 0.48574436920294034
+683.8000000000873 0.48385840529764435
+683.9000000000873 0.48197234374355247
+684.0000000000873 0.4800859994813301
+684.1000000000873 0.4780499270462773
+684.2000000000874 0.47601306637891
+684.3000000000874 0.4739752888592768
+684.4000000000874 0.4719364840121603
+684.5000000000874 0.4698965591684002
+684.6000000000874 0.46785545840532217
+684.7000000000875 0.46581311653661317
+684.8000000000875 0.4637694857498388
+684.9000000000875 0.46172453525818574
+685.0000000000875 0.4596782509457753
+685.1000000000876 0.45721653158230513
+685.2000000000876 0.45475362478337555
+685.3000000000876 0.45228956731206377
+685.4000000000876 0.44982441106423116
+685.5000000000877 0.4473582226409926
+685.6000000000877 0.4444242140811432
+685.7000000000877 0.44149450546950963
+685.8000000000877 0.43856921981745306
+685.9000000000877 0.4356484914206301
+686.0000000000878 0.4327324653940676
+686.1000000000878 0.425871634459936
+686.2000000000878 0.41906219140451617
+686.3000000000878 0.41230432888782537
+686.4000000000879 0.40559824179999976
+686.5000000000879 0.39894412637497473
+686.6000000000879 0.3863656726792432
+686.7000000000879 0.37391606032224145
+686.800000000088 0.36159532534735717
+686.900000000088 0.34940350492425515
+687.000000000088 0.33734063727946006
+687.100000000088 0.3305370633185362
+687.200000000088 0.32379412971981725
+687.3000000000881 0.31711183120360703
+687.4000000000881 0.31049016305932886
+687.5000000000881 0.30392912112099374
+687.6000000000881 0.3069700964755925
+687.7000000000882 0.30994152414962883
+687.8000000000882 0.31284340299330776
+687.9000000000882 0.3156757314828814
+688.0000000000882 0.3184385077074416
+688.1000000000882 0.3201519301425562
+688.2000000000883 0.3218053427802191
+688.3000000000883 0.32339873826173754
+688.4000000000883 0.32493210885863644
+688.5000000000883 0.326405446465835
+688.6000000000884 0.3228467169303954
+688.7000000000884 0.3193040651791314
+688.8000000000884 0.3157776499864745
+688.9000000000884 0.3122676132975042
+689.0000000000884 0.3087740808738864
+689.1000000000885 0.3060720796532915
+689.2000000000885 0.3033702071577788
+689.3000000000885 0.3006685467649909
+689.4000000000885 0.29796716884961044
+689.5000000000886 0.295266131222914
+689.6000000000886 0.2939001120028201
+689.7000000000886 0.2925098434347644
+689.8000000000886 0.2910953450474832
+689.9000000000887 0.2896566253986101
+690.0000000000887 0.288193682299898
+690.1000000000887 0.2867757270111897
+690.2000000000887 0.28533967099012114
+690.3000000000887 0.28388548532837526
+690.4000000000888 0.28241313145515495
+690.5000000000888 0.2809225614070515
+690.6000000000888 0.2795420072325797
+690.7000000000888 0.27814079352015414
+690.8000000000889 0.2767188506060736
+690.9000000000889 0.275276100625944
+691.0000000000889 0.27381245780289815
+691.1000000000889 0.27180768227209684
+691.200000000089 0.26978608114702124
+691.300000000089 0.2677475444564325
+691.400000000089 0.26569195645037763
+691.500000000089 0.2636191960141207
+691.600000000089 0.2614711226388175
+691.7000000000891 0.25930737405037646
+691.8000000000891 0.2571279463257249
+691.9000000000891 0.254932835541795
+692.0000000000891 0.25272203777540103
+692.1000000000892 0.25069644842271266
+692.2000000000892 0.24865807648834592
+692.3000000000892 0.2466069213993579
+692.4000000000892 0.24454298258299828
+692.5000000000892 0.24246625946716532
+692.6000000000893 0.24027271479861761
+692.7000000000893 0.23806869426786667
+692.8000000000893 0.23585419741036776
+692.9000000000893 0.23362922376252715
+693.0000000000894 0.23139377285925736
+693.1000000000894 0.22848413062422565
+693.2000000000894 0.22557010105260278
+693.3000000000894 0.22265168326674922
+693.4000000000894 0.21972887638898228
+693.5000000000895 0.21680167954145238
+693.6000000000895 0.2137327902682737
+693.7000000000895 0.21066345274405948
+693.8000000000895 0.2075936669549294
+693.9000000000896 0.20452343288676472
+694.0000000000896 0.2014527505260258
+694.1000000000896 0.1985234112718199
+694.2000000000896 0.19559227890941883
+694.3000000000897 0.19265935307769452
+694.4000000000897 0.1897246334152769
+694.5000000000897 0.18678811956109267
+694.6000000000897 0.18396776441166499
+694.7000000000897 0.18114179212686232
+694.8000000000898 0.1783102013430153
+694.9000000000898 0.1754729906955538
+695.0000000000898 0.17263015882047003
+695.1000000000898 0.16984945900914108
+695.2000000000899 0.16706650811145649
+695.3000000000899 0.16428130638299465
+695.4000000000899 0.16149385407880354
+695.5000000000899 0.15870415145391242
+695.60000000009 0.15584595181325328
+695.70000000009 0.15298793213484876
+695.80000000009 0.15013009244473913
+695.90000000009 0.14727243276844743
+696.00000000009 0.14441495313259686
+696.1000000000901 0.14205841230607646
+696.2000000000901 0.1396950696157232
+696.3000000000901 0.13732492380015077
+696.4000000000901 0.1349479735976428
+696.5000000000902 0.13256421774649743
+696.6000000000902 0.13020111198864312
+696.7000000000902 0.12783011859261562
+696.8000000000902 0.1254512360866766
+696.9000000000902 0.12306446299920995
+697.0000000000903 0.12066979785759696
+697.1000000000903 0.1176207058418652
+697.2000000000903 0.11457005017165363
+697.3000000000903 0.11151783068114177
+697.4000000000904 0.10846404720425606
+697.5000000000904 0.10540869957489249
+697.6000000000904 0.10230892674461943
+697.7000000000904 0.09921016837654624
+697.8000000000904 0.09611242465030008
+697.9000000000905 0.09301569574528754
+698.0000000000905 0.08991998184196097
+698.1000000000905 0.08775610643938923
+698.2000000000905 0.08559449748129921
+698.3000000000906 0.08343515566826612
+698.4000000000906 0.08127808170130778
+698.5000000000906 0.07912327628120396
+698.6000000000906 0.07693834501648103
+698.7000000000907 0.07475745390374638
+698.8000000000907 0.07258060413049652
+698.9000000000907 0.07040779688417956
+699.0000000000907 0.068239033352737
+699.1000000000907 0.06623199680128042
+699.2000000000908 0.06422520873469614
+699.3000000000908 0.06221866915986818
+699.4000000000908 0.06021237808373268
+699.5000000000908 0.05820633551309749
+699.6000000000909 0.05622430489714791
+699.7000000000909 0.05424082677865046
+699.8000000000909 0.05225590147972831
+699.9000000000909 0.05026952932238513
+700.000000000091 0.04828171062891763
+700.100000000091 0.046547678845894544
+700.200000000091 0.04481334395138475
+700.300000000091 0.043078705925262244
+700.400000000091 0.041343764747251384
+700.5000000000911 0.0396085203972154
+700.6000000000911 0.03787297285496214
+700.7000000000911 0.03613712210021397
+700.8000000000911 0.03440096811277738
+700.9000000000912 0.032664510872452514
+701.0000000000912 0.030927750359723123
+701.1000000000912 0.0299845642656
+701.2000000000912 0.029041209151613772
+701.3000000000912 0.028097685007461567
+701.4000000000913 0.02715399182287127
+701.5000000000913 0.026210129587544116
+701.6000000000913 0.025271428691684916
+701.7000000000913 0.02433216032773004
+701.8000000000914 0.023392324378383653
+701.9000000000914 0.02245192072631419
+702.0000000000914 0.021510949254160708
+702.1000000000914 0.020493762497229655
+702.2000000000914 0.019476578280111855
+702.3000000000915 0.018459396611638357
+702.4000000000915 0.01744221750074417
+702.5000000000915 0.01642504095630298
+702.6000000000915 0.015414361346273686
+702.7000000000916 0.014402826852450312
+702.8000000000916 0.01339043748700324
+702.9000000000916 0.012377193262096207
+703.0000000000916 0.011363094190353038
+703.1000000000917 0.010851414815118776
+703.2000000000917 0.010338836162922633
+703.3000000000917 0.009825358178993044
+703.4000000000917 0.009310980808591288
+703.5000000000917 0.008795703996951327
+703.6000000000918 0.008272597764558052
+703.7000000000918 0.007749468428559931
+703.8000000000918 0.0072263159922972935
+703.9000000000918 0.006703140459125218
+704.0000000000919 0.006179941832647359
+704.1000000000919 0.005961358027511483
+704.2000000000919 0.0057427444625007835
+704.3000000000919 0.005524101136876118
+704.400000000092 0.005305428049898591
+704.500000000092 0.00508672520084062
+704.600000000092 0.004867992588967674
+704.700000000092 0.004649230213529366
+704.800000000092 0.004430438073801537
+704.9000000000921 0.004211616169039115
+705.0000000000921 0.00399276449859014
+705.1000000000921 0.0038595749442515135
+705.2000000000921 0.003726392100053352
+705.3000000000922 0.003593215966789598
+705.4000000000922 0.003460046545254065
+705.5000000000922 0.0033268838362483515
+705.6000000000922 0.0031943966840868795
+705.7000000000922 0.0030618604767081504
+705.8000000000923 0.0029292752191261142
+705.9000000000923 0.0027966409163517414
+706.0000000000923 0.0026639575734820767
+706.1000000000923 0.0026175106687693433
+706.2000000000924 0.002571040874912539
+706.3000000000924 0.002524548190092995
+706.4000000000924 0.0024780326124947526
+706.5000000000924 0.0024314941402937607
+706.6000000000925 0.0023849327716741545
+706.7000000000925 0.0023383485048148215
+706.8000000000925 0.0022917413378998404
+706.9000000000925 0.0022451112691033756
+707.0000000000925 0.0021984582964882093
+707.1000000000926 0.002017863272658068
+707.2000000000926 0.0018372457332350477
+707.3000000000926 0.001656605677809662
+707.4000000000926 0.0014759431059654749
+707.5000000000927 0.0012952580172848336
+707.6000000000927 0.0011145504113546818
+707.7000000000927 0.0009338202877595761
+707.8000000000927 0.0007530676460818478
+707.9000000000927 0.000572292485906662
+708.0000000000928 0.0003914948070153219
+708.1000000000928 0.00042451981074726814
+708.2000000000928 0.00045755873902920643
+708.3000000000928 0.0004906115916961371
+708.4000000000929 0.000523678368582536
+708.5000000000929 0.0005567590695215736
+708.6000000000929 0.0005898536943479512
+708.7000000000929 0.0006229622428950643
+708.800000000093 0.0006560847149974848
+708.900000000093 0.0006892211104875918
+709.000000000093 0.000722371429146726
+709.100000000093 0.0006993786815666805
+709.200000000093 0.0006763827452857148
+709.3000000000931 0.000653383620173148
+709.4000000000931 0.0006303813060996824
+709.5000000000931 0.000607375802933213
+709.6000000000931 0.0005843671105450099
+709.7000000000932 0.000561355228804243
+709.8000000000932 0.0005383401575795175
+709.9000000000932 0.0005153218967417866
+710.0000000000932 0.0004923004461694778
+710.1000000000932 0.0004804525979561084
+710.2000000000933 0.0004686051288490118
+710.3000000000933 0.00045675803891935784
+710.4000000000933 0.00044491132823975367
+710.5000000000933 0.00043306499688030415
+710.6000000000934 0.00042121904491303165
+710.7000000000934 0.00040937347240896447
+710.8000000000934 0.00039752827943955393
+710.9000000000934 0.0003856834660757758
+711.0000000000935 0.00037383903238426774
+711.1000000000935 0.00035648885806077664
+711.2000000000935 0.0003391293284943646
+711.3000000000935 0.00032176044232393484
+711.4000000000935 0.00030438219818796914
+711.5000000000936 0.00028699459472524144
+711.6000000000936 0.0002695976305744326
+711.7000000000936 0.0002521913043738587
+711.8000000000936 0.0002347756147623245
+711.9000000000937 0.00021735056037799747
+712.0000000000937 0.00019991613988916036
+712.1000000000937 0.00021487107232692786
+712.2000000000937 0.00022982059095178153
+712.3000000000937 0.00024476469519201356
+712.4000000000938 0.00025970338447646473
+712.5000000000938 0.00027463665823414734
+712.6000000000938 0.0002896247916043096
+712.7000000000938 0.0003046137472049374
+712.8000000000939 0.0003196035249778842
+712.9000000000939 0.00033459412486529347
+713.0000000000939 0.0003495855467930755
+713.1000000000939 0.0003464935240315832
+713.200000000094 0.000343400974773445
+713.300000000094 0.0003403078989920417
+713.400000000094 0.0003372142966592611
+713.500000000094 0.0003341201677480907
+713.600000000094 0.00033102596297225834
+713.7000000000941 0.0003279315101878961
+713.8000000000941 0.0003248366541617713
+713.9000000000941 0.00032174125605621205
+714.0000000000941 0.00031864519288286766
+714.1000000000942 0.00028672522072020827
+714.2000000000942 0.0002548173010539013
+714.3000000000942 0.00022292147185852085
+714.4000000000942 0.00019103781379490976
+714.5000000000942 0.0001591664448287402
+714.6000000000943 0.0001273075148619376
+714.7000000000943 9.546120034902012e-05
+714.8000000000943 6.362769894609845e-05
+714.9000000000943 3.180722415448489e-05
+715.0000000000944 1.0002332377227408e-14
+715.1000000000944 1.0597532744621738e-05
+715.2000000000944 2.1189732116265608e-05
+715.3000000000944 3.1776524192030814e-05
+715.4000000000945 4.235783866384601e-05
+715.5000000000945 5.293361062015836e-05
+715.6000000000945 6.349052197169203e-05
+715.7000000000945 7.403736579063355e-05
+715.8000000000945 8.457410475155401e-05
+715.9000000000946 9.510071400600176e-05
+716.0000000000946 0.00010561718294079352
+716.1000000000946 0.00013269985620878224
+716.2000000000946 0.00015967822375114233
+716.3000000000947 0.0001865523340017441
+716.4000000000947 0.00021332228409884802
+716.5000000000947 0.00023998822395735793
+716.6000000000947 0.00026592995106560586
+716.7000000000947 0.00029164182340985417
+716.8000000000948 0.0003171238558709234
+716.9000000000948 0.0003423760633336782
+717.0000000000948 0.00036739846065392517
+717.1000000000948 0.00035532718373430095
+717.2000000000949 0.00034334252164654606
+717.3000000000949 0.00033144447894465517
+717.4000000000949 0.0003196330601781057
+717.5000000000949 0.0003079082698971298
+717.600000000095 0.00029699096451384343
+717.700000000095 0.0002861099321760813
+717.800000000095 0.0002752651748332665
+717.900000000095 0.0002644566944343454
+718.000000000095 0.0002536844929339289
+718.1000000000951 0.00024933420330263887
+718.2000000000951 0.0002450064188301092
+718.3000000000951 0.00024070113690861
+718.4000000000951 0.00023641835493102797
+718.5000000000952 0.00023215807029106862
+718.6000000000952 0.00022817834228052247
+718.7000000000952 0.0002242131719821329
+718.8000000000952 0.00022026255772730148
+718.9000000000952 0.00021632649784568173
+719.0000000000953 0.00021240499065129355
+719.1000000000953 0.00019115404019678803
+719.2000000000953 0.00016990539997895093
+719.3000000000953 0.00014865907461283895
+719.4000000000954 0.0001274150687107185
+719.5000000000954 0.00010617338688174274
+719.6000000000954 8.49727157361916e-05
+719.7000000000954 6.375501877372266e-05
+719.8000000000955 4.252031928070824e-05
+719.9000000000955 2.1268639348645004e-05
+720.0000000000955 2.000291272357101e-15
+720.1000000000955 2.0993399601930833e-06
+720.2000000000955 4.208133968025878e-06
+720.3000000000956 6.326381889671051e-06
+720.4000000000956 8.45408365598999e-06
+720.5000000000956 1.059123925461764e-05
+720.6000000000956 1.2780642099484901e-05
+720.7000000000957 1.4993762846750519e-05
+720.8000000000957 1.7230600933785768e-05
+720.9000000000957 1.9491155618121447e-05
+721.0000000000957 2.177542598120985e-05
+721.1000000000957 2.1810334779712185e-05
+721.2000000000958 2.184442280384334e-05
+721.3000000000958 2.1877689716544827e-05
+721.4000000000958 2.191013520059537e-05
+721.5000000000958 2.1941758958660816e-05
+721.6000000000959 2.1898139622031072e-05
+721.7000000000959 2.185424775237037e-05
+721.8000000000959 2.1810083387933253e-05
+721.9000000000959 2.176564656726646e-05
+722.000000000096 2.172093732895049e-05
+722.100000000096 2.1631317370308412e-05
+722.200000000096 2.1541764618660934e-05
+722.300000000096 2.1452279099981635e-05
+722.400000000096 2.1362860840182364e-05
+722.5000000000961 2.1273509865029826e-05
+722.6000000000961 2.1121497949453572e-05
+722.7000000000961 2.0970030050640816e-05
+722.8000000000961 2.081910652308975e-05
+722.9000000000962 2.0668727732069504e-05
+723.0000000000962 2.051889405279524e-05
+723.1000000000962 2.0256635488111465e-05
+723.2000000000962 1.9996004245752668e-05
+723.3000000000962 1.973700065784878e-05
+723.4000000000963 1.9479625054399303e-05
+723.5000000000963 1.922387776232188e-05
+723.6000000000963 1.9058140794043924e-05
+723.7000000000963 1.8892595285967494e-05
+723.8000000000964 1.872725000137601e-05
+723.9000000000964 1.856211276590336e-05
+724.0000000000964 1.8397190496937333e-05
+724.1000000000964 1.82528433460014e-05
+724.2000000000965 1.8108389942604936e-05
+724.3000000000965 1.7963834754506448e-05
+724.4000000000965 1.781918147415541e-05
+724.5000000000965 1.7674433043395255e-05
+724.6000000000965 1.7537336140990525e-05
+724.7000000000966 1.740001396709708e-05
+724.8000000000966 1.7262467685034836e-05
+724.9000000000966 1.7124697815203967e-05
+725.0000000000966 1.698670425793437e-05
+725.1000000000967 1.6877115235969565e-05
+725.2000000000967 1.676734579289208e-05
+725.3000000000967 1.6657394295511287e-05
+725.4000000000967 1.6547258574155247e-05
+725.5000000000967 1.643693594140755e-05
+725.6000000000968 1.6340716424206312e-05
+725.7000000000968 1.6244084468956595e-05
+725.8000000000968 1.6147036002217347e-05
+725.9000000000968 1.6049566492062954e-05
+726.0000000000969 1.5951670965401912e-05
+726.1000000000969 1.582490179778926e-05
+726.2000000000969 1.569814296393124e-05
+726.3000000000969 1.5571388306304083e-05
+726.400000000097 1.5444631344617434e-05
+726.500000000097 1.531786529710118e-05
+726.600000000097 1.5187784278082402e-05
+726.700000000097 1.5057763226073053e-05
+726.800000000097 1.49278021383301e-05
+726.9000000000971 1.4797901012076073e-05
+727.0000000000971 1.466805984461589e-05
+727.1000000000971 1.4589158643393807e-05
+727.2000000000971 1.4510457041811935e-05
+727.3000000000972 1.4431955023731604e-05
+727.4000000000972 1.435365257298013e-05
+727.5000000000972 1.4275549673489267e-05
+727.6000000000972 1.4222631168293224e-05
+727.7000000000972 1.4169737279185624e-05
+727.8000000000973 1.411686800449952e-05
+727.9000000000973 1.4064023342600059e-05
+728.0000000000973 1.4011203291935862e-05
+728.1000000000973 1.4011684872200923e-05
+728.2000000000974 1.4011820260777506e-05
+728.3000000000974 1.4011609413040973e-05
+728.4000000000974 1.4011052284366739e-05
+728.5000000000974 1.4010148829967708e-05
+728.6000000000975 1.3954605298892737e-05
+728.7000000000975 1.389908819209276e-05
+728.8000000000975 1.3843603935790542e-05
+728.9000000000975 1.3788158392547964e-05
+729.0000000000975 1.3732756870750545e-05
+729.1000000000976 1.3664720672134607e-05
+729.2000000000976 1.3596598866779693e-05
+729.3000000000976 1.3528395100086647e-05
+729.4000000000976 1.3460112486908529e-05
+729.5000000000977 1.3391753622867828e-05
+729.6000000000977 1.333481116889431e-05
+729.7000000000977 1.3277663199187269e-05
+729.8000000000977 1.322031089259561e-05
+729.9000000000977 1.3162754955975692e-05
+730.0000000000978 1.3104995633691906e-05
+730.1000000000978 1.3019102815800123e-05
+730.2000000000978 1.2933337939081376e-05
+730.3000000000978 1.2847699745385481e-05
+730.4000000000979 1.2762186566875693e-05
+730.5000000000979 1.2676796340284378e-05
+730.6000000000979 1.259964617422208e-05
+730.7000000000979 1.252251396091281e-05
+730.800000000098 1.2445396742237484e-05
+730.900000000098 1.236829119547238e-05
+731.000000000098 1.2291193646716427e-05
+731.100000000098 1.2234166605928482e-05
+731.200000000098 1.2177055649976107e-05
+731.3000000000981 1.211985612304936e-05
+731.4000000000981 1.2062563038556697e-05
+731.5000000000981 1.2005171089488081e-05
+731.6000000000981 1.1957902630692664e-05
+731.7000000000982 1.1910435147741482e-05
+731.8000000000982 1.1862768317456729e-05
+731.9000000000982 1.181490183314505e-05
+732.0000000000982 1.1766835404344928e-05
+732.1000000000982 1.1728732294226358e-05
+732.2000000000983 1.1690316996345622e-05
+732.3000000000983 1.1651589246958407e-05
+732.4000000000983 1.161254879710706e-05
+732.5000000000983 1.157319541234952e-05
+732.6000000000984 1.1519023854911303e-05
+732.7000000000984 1.1464705693568435e-05
+732.8000000000984 1.1410240925256959e-05
+732.9000000000984 1.1355629547017399e-05
+733.0000000000985 1.1300871555976419e-05
+733.1000000000985 1.1252534616926136e-05
+733.2000000000985 1.1204191934514622e-05
+733.3000000000985 1.1155843523474866e-05
+733.4000000000985 1.1107489398617305e-05
+733.5000000000986 1.1059129574738919e-05
+733.6000000000986 1.101768237983137e-05
+733.7000000000986 1.097617898889284e-05
+733.8000000000986 1.0934614518300453e-05
+733.9000000000987 1.0892984533630513e-05
+734.0000000000987 1.08512850427449e-05
+734.1000000000987 1.0804498733133458e-05
+734.2000000000987 1.0757678834131863e-05
+734.3000000000987 1.0710822664821382e-05
+734.4000000000988 1.066392796263791e-05
+734.5000000000988 1.061699287537579e-05
+734.6000000000988 1.0565617278148014e-05
+734.7000000000988 1.051423854710636e-05
+734.8000000000989 1.0462855707990381e-05
+734.9000000000989 1.0411468150765537e-05
+735.0000000000989 1.0360075621186404e-05
+735.1000000000989 1.0320079638727014e-05
+735.200000000099 1.0280039038908509e-05
+735.300000000099 1.0239954502927899e-05
+735.400000000099 1.0199827038080512e-05
+735.500000000099 1.0159657971178847e-05
+735.600000000099 1.0115237768968314e-05
+735.7000000000991 1.0070815367142512e-05
+735.8000000000991 1.0026393194784434e-05
+735.9000000000991 9.981973977104448e-06
+736.0000000000991 9.937560727946984e-06
+736.1000000000992 9.892219483370817e-06
+736.2000000000992 9.8468941911497e-06
+736.3000000000992 9.801588684821928e-06
+736.4000000000992 9.756307055381363e-06
+736.5000000000992 9.71105364379108e-06
+736.6000000000993 9.669865504433534e-06
+736.7000000000993 9.628660833560507e-06
+736.8000000000993 9.587439632270377e-06
+736.9000000000993 9.546201901651193e-06
+737.0000000000994 9.504947642825026e-06
+737.1000000000994 9.477074226774832e-06
+737.2000000000994 9.449156248626942e-06
+737.3000000000994 9.42119370417858e-06
+737.4000000000995 9.393186589217e-06
+737.5000000000995 9.365134899527857e-06
+737.6000000000995 9.335100681838424e-06
+737.7000000000995 9.305035967178615e-06
+737.8000000000995 9.27494075277762e-06
+737.9000000000996 9.24481503587488e-06
+738.0000000000996 9.214658813705047e-06
+738.1000000000996 9.179519778201726e-06
+738.2000000000996 9.144382813355082e-06
+738.3000000000997 9.10924791924935e-06
+738.4000000000997 9.07411509595884e-06
+738.5000000000997 9.038984343559708e-06
+738.6000000000997 9.005721746216435e-06
+738.7000000000997 8.972446659681973e-06
+738.8000000000998 8.939159085306001e-06
+738.9000000000998 8.905859024457519e-06
+739.0000000000998 8.872546478527929e-06
+739.1000000000998 8.852186677428953e-06
+739.2000000000999 8.83182541281434e-06
+739.3000000000999 8.811462684730253e-06
+739.4000000000999 8.791098493222868e-06
+739.5000000000999 8.770732838359004e-06
+739.6000000001 8.752177390107444e-06
+739.7000000001 8.733612044389253e-06
+739.8000000001 8.715036800348657e-06
+739.9000000001 8.696451657129876e-06
+740.0000000001 8.677856613886007e-06
+740.1000000001001 8.658855818413675e-06
+740.2000000001001 8.639846846253939e-06
+740.3000000001001 8.620829697748545e-06
+740.4000000001001 8.601804373248538e-06
+740.5000000001002 8.582770873095771e-06
+740.6000000001002 8.563729197650508e-06
+740.7000000001002 8.5446793472455e-06
+740.8000000001002 8.525621322250157e-06
+740.9000000001002 8.506555122997298e-06
+741.0000000001003 8.487480749817583e-06
+741.1000000001003 8.438916282316973e-06
+741.2000000001003 8.390350849580836e-06
+741.3000000001003 8.341784451836375e-06
+741.4000000001004 8.293217089283768e-06
+741.5000000001004 8.244648762142753e-06
+741.6000000001004 8.197771127895431e-06
+741.7000000001004 8.150872479837436e-06
+741.8000000001005 8.103952817595955e-06
+741.9000000001005 8.057012140789375e-06
+742.0000000001005 8.010050449008694e-06
+742.1000000001005 7.961337430898453e-06
+742.2000000001005 7.912626838369842e-06
+742.3000000001006 7.8639186715843e-06
+742.4000000001006 7.815212930686125e-06
+742.5000000001006 7.766509615819584e-06
+742.6000000001006 7.717808727137183e-06
+742.7000000001007 7.669110264791178e-06
+742.8000000001007 7.620414228925466e-06
+742.9000000001007 7.571720619683919e-06
+743.0000000001007 7.523029437257378e-06
+743.1000000001007 7.505038320178744e-06
+743.2000000001008 7.487039980430615e-06
+743.3000000001008 7.469034418576805e-06
+743.4000000001008 7.45102163520511e-06
+743.5000000001008 7.433001630885829e-06
+743.6000000001009 7.41344743454275e-06
+743.7000000001009 7.393894073350326e-06
+743.8000000001009 7.374341547366493e-06
+743.9000000001009 7.354789856657031e-06
+744.000000000101 7.335239001287766e-06
+744.100000000101 7.315834645100862e-06
+744.200000000101 7.296429675999619e-06
+744.300000000101 7.277024094095117e-06
+744.400000000101 7.257617899467297e-06
+744.5000000001011 7.23821109222716e-06
+744.6000000001011 7.21880367247785e-06
+744.7000000001011 7.1993956403070625e-06
+744.8000000001011 7.1799869958179046e-06
+744.9000000001012 7.160577739105774e-06
+745.0000000001012 7.141167870285736e-06
+745.1000000001012 7.1261445487997995e-06
+745.2000000001012 7.111121107456152e-06
+745.3000000001012 7.0960975463195964e-06
+745.4000000001013 7.0810738654625e-06
+745.5000000001013 7.066050064957157e-06
+745.6000000001013 7.051026144860758e-06
+745.7000000001013 7.036002105253075e-06
+745.8000000001014 7.020977946198772e-06
+745.9000000001014 7.0059536677550326e-06
+746.0000000001014 6.990929270000672e-06
+746.1000000001014 6.975100999632431e-06
+746.2000000001015 6.959273672919121e-06
+746.3000000001015 6.9434472898980694e-06
+746.4000000001015 6.927621850599143e-06
+746.5000000001015 6.91179735506694e-06
+746.6000000001015 6.895973803316494e-06
+746.7000000001016 6.880151195399658e-06
+746.8000000001016 6.8643295313387905e-06
+746.9000000001016 6.848508811170916e-06
+747.0000000001016 6.832689034922864e-06
+747.1000000001017 6.806903932109952e-06
+747.2000000001017 6.781105529678239e-06
+747.3000000001017 6.755293826378042e-06
+747.4000000001017 6.729468820966926e-06
+747.5000000001017 6.703630512193893e-06
+747.6000000001018 6.67640515289958e-06
+747.7000000001018 6.649177692480509e-06
+747.8000000001018 6.621948130986075e-06
+747.9000000001018 6.594716468465677e-06
+748.0000000001019 6.567482704968137e-06
+748.1000000001019 6.539661551080429e-06
+748.2000000001019 6.511841951603049e-06
+748.3000000001019 6.484023906615785e-06
+748.400000000102 6.4562074161775245e-06
+748.500000000102 6.428392480354112e-06
+748.600000000102 6.400579099225018e-06
+748.700000000102 6.372767272855892e-06
+748.800000000102 6.344957001319113e-06
+748.9000000001021 6.317148284673478e-06
+749.0000000001021 6.289341123009043e-06
+749.1000000001021 6.278933642967124e-06
+749.2000000001021 6.26852605793436e-06
+749.3000000001022 6.258118367960974e-06
+749.4000000001022 6.247710573090476e-06
+749.5000000001022 6.237302673366382e-06
+749.6000000001022 6.226894668845478e-06
+749.7000000001022 6.216486559557961e-06
+749.8000000001023 6.206078345567189e-06
+749.9000000001023 6.195670026909969e-06
+750.0000000001023 6.185261603636107e-06
+750.1000000001023 6.174623683088505e-06
+750.2000000001024 6.163985924383398e-06
+750.3000000001024 6.15334832755961e-06
+750.4000000001024 6.142710892662545e-06
+750.5000000001024 6.1320736197519715e-06
+750.6000000001025 6.122696063702444e-06
+750.7000000001025 6.113314292381539e-06
+750.8000000001025 6.103928305939292e-06
+750.9000000001025 6.094538104519261e-06
+751.0000000001025 6.085143688277862e-06
+751.1000000001026 6.0756260928972655e-06
+751.2000000001026 6.066108699412378e-06
+751.3000000001026 6.056591507861585e-06
+751.4000000001026 6.047074518289726e-06
+751.5000000001027 6.037557730741585e-06
+751.6000000001027 6.028041145249073e-06
+751.7000000001027 6.0185247618633565e-06
+751.8000000001027 6.009008580616331e-06
+751.9000000001028 5.99949260155909e-06
+752.0000000001028 5.9899768247236525e-06
+752.1000000001028 5.980593880599725e-06
+752.2000000001028 5.971211154871746e-06
+752.3000000001028 5.961828647577123e-06
+752.4000000001029 5.952446358753255e-06
+752.5000000001029 5.943064288443866e-06
+752.6000000001029 5.933682436686331e-06
+752.7000000001029 5.92430080352431e-06
+752.800000000103 5.914919389001435e-06
+752.900000000103 5.905538193148722e-06
+753.000000000103 5.8961572160045064e-06
+753.100000000103 5.881661918325249e-06
+753.200000000103 5.867159576582348e-06
+753.3000000001031 5.852650190485344e-06
+753.4000000001031 5.838133759750069e-06
+753.5000000001031 5.823610284091141e-06
+753.6000000001031 5.807879265594628e-06
+753.7000000001032 5.7921426286824875e-06
+753.8000000001032 5.776403031686041e-06
+753.9000000001032 5.7606629111065826e-06
+754.0000000001032 5.744924484255852e-06
+754.1000000001033 5.729333178814405e-06
+754.2000000001033 5.713748267173737e-06
+754.3000000001033 5.69817132551137e-06
+754.4000000001033 5.682603721528128e-06
+754.5000000001033 5.66704661712478e-06
+754.6000000001034 5.65150097125048e-06
+754.7000000001034 5.635967541929152e-06
+754.8000000001034 5.620446889246985e-06
+754.9000000001034 5.604939377964456e-06
+755.0000000001035 5.589445180116918e-06
+755.1000000001035 5.56662782394481e-06
+755.2000000001035 5.543823618007339e-06
+755.3000000001035 5.521032120292294e-06
+755.4000000001035 5.498252708940141e-06
+755.5000000001036 5.4754845860728915e-06
+755.6000000001036 5.4527267813916095e-06
+755.7000000001036 5.4299781565450035e-06
+755.8000000001036 5.407237408610464e-06
+755.9000000001037 5.384503073912662e-06
+756.0000000001037 5.361773531824519e-06
+756.1000000001037 5.339142045016386e-06
+756.2000000001037 5.316511062993724e-06
+756.3000000001038 5.293878517129125e-06
+756.4000000001038 5.271242196954224e-06
+756.5000000001038 5.248599753981805e-06
+756.6000000001038 5.2270217956159984e-06
+756.7000000001038 5.205433109741338e-06
+756.8000000001039 5.183833695600524e-06
+756.9000000001039 5.1622235524404234e-06
+757.0000000001039 5.1406026795187895e-06
+757.1000000001039 5.146587597825132e-06
+757.200000000104 5.1525726600443e-06
+757.300000000104 5.1585578662016255e-06
+757.400000000104 5.1645432163220685e-06
+757.500000000104 5.1705287104356486e-06
+757.600000000104 5.176514348790168e-06
+757.7000000001041 5.182500131019303e-06
+757.8000000001041 5.188486056987187e-06
+757.9000000001041 5.194472126558632e-06
+758.0000000001041 5.200458339583701e-06
+758.1000000001042 5.2020976908657875e-06
+758.2000000001042 5.203727327124916e-06
+758.3000000001042 5.2053472482626855e-06
+758.4000000001042 5.206957454176463e-06
+758.5000000001043 5.208557944674501e-06
+758.6000000001043 5.16612027867612e-06
+758.7000000001043 5.123577838295525e-06
+758.8000000001043 5.080928210499834e-06
+758.9000000001043 5.038169228248908e-06
+759.0000000001044 4.99529896347033e-06
+759.1000000001044 4.787694198815756e-06
+759.2000000001044 4.581167757786169e-06
+759.3000000001044 4.375719187016461e-06
+759.4000000001045 4.171348399286587e-06
+759.5000000001045 3.9680556361587075e-06
+759.6000000001045 3.6777949985308055e-06
+759.7000000001045 3.3891156891407188e-06
+759.8000000001045 3.1020193643314347e-06
+759.9000000001046 2.816507888486265e-06
+760.0000000001046 2.532583284800886e-06
+760.1000000001046 2.3786722736977712e-06
+760.2000000001046 2.2256292572286363e-06
+760.3000000001047 2.0734554046553923e-06
+760.4000000001047 1.922151906680519e-06
+760.5000000001047 1.7717199510002558e-06
+760.6000000001047 1.7818019080264911e-06
+760.7000000001048 1.791786978690922e-06
+760.8000000001048 1.8016755083111492e-06
+760.9000000001048 1.8114679125304008e-06
+761.0000000001048 1.8211646790041402e-06
+761.1000000001048 1.9717709577556664e-06
+761.2000000001049 2.1232780885409553e-06
+761.3000000001049 2.2756867698955673e-06
+761.4000000001049 2.4289980162764114e-06
+761.5000000001049 2.583213187400019e-06
+761.600000000105 2.745589255746416e-06
+761.700000000105 2.9089121596237605e-06
+761.800000000105 3.0731819009059895e-06
+761.900000000105 3.2383984814579624e-06
+762.000000000105 3.404561902764488e-06
+762.1000000001051 3.3927647587134836e-06
+762.2000000001051 3.3808338116678883e-06
+762.3000000001051 3.3687690706988404e-06
+762.4000000001051 3.356570544883747e-06
+762.5000000001052 3.3442382431684664e-06
+762.6000000001052 3.2687473084755804e-06
+762.7000000001052 3.1927480955314463e-06
+762.8000000001052 3.116240638984919e-06
+762.9000000001053 3.039224973487837e-06
+763.0000000001053 2.9617011338684728e-06
+763.1000000001053 2.9535734005258046e-06
+763.2000000001053 2.9454392707843294e-06
+763.3000000001053 2.9372987450466057e-06
+763.4000000001054 2.929151823698548e-06
+763.5000000001054 2.92099850723615e-06
+763.6000000001054 2.959512105040455e-06
+763.7000000001054 2.997723726352884e-06
+763.8000000001055 3.0356333871311134e-06
+763.9000000001055 3.073241103313356e-06
+764.0000000001055 3.110546890872419e-06
+764.1000000001055 3.157016085878342e-06
+764.2000000001055 3.203125452351073e-06
+764.3000000001056 3.2488750110143293e-06
+764.4000000001056 3.2942647825829983e-06
+764.5000000001056 3.3392947878065945e-06
+764.6000000001056 3.3942381652939224e-06
+764.7000000001057 3.4487551254942895e-06
+764.8000000001057 3.502845692967674e-06
+764.9000000001057 3.5565098922816482e-06
+765.0000000001057 3.6097477479933583e-06
+765.1000000001058 3.6601472968813674e-06
+765.2000000001058 3.7103137822130505e-06
+765.3000000001058 3.760247207421263e-06
+765.4000000001058 3.809947575935423e-06
+765.5000000001058 3.8594148911744005e-06
+765.6000000001059 3.8966287081646645e-06
+765.7000000001059 3.933658557307823e-06
+765.8000000001059 3.970504441323568e-06
+765.9000000001059 4.007166362943324e-06
+766.000000000106 4.043644324878195e-06
+766.100000000106 4.073759882632734e-06
+766.200000000106 4.103711964970475e-06
+766.300000000106 4.13350058268148e-06
+766.400000000106 4.163125746556598e-06
+766.5000000001061 4.192587467384722e-06
+766.6000000001061 4.223847598764066e-06
+766.7000000001061 4.254935907969944e-06
+766.8000000001061 4.285852406340598e-06
+766.9000000001062 4.316597105220201e-06
+767.0000000001062 4.3471700159295575e-06
+767.1000000001062 4.368774036614269e-06
+767.2000000001062 4.390322118608701e-06
+767.3000000001063 4.41181426098364e-06
+767.4000000001063 4.433250462815329e-06
+767.5000000001063 4.454630723168251e-06
+767.6000000001063 4.464359302719885e-06
+767.7000000001063 4.474056778819967e-06
+767.8000000001064 4.48372315098093e-06
+767.9000000001064 4.493358418690446e-06
+768.0000000001064 4.502962581446166e-06
+768.1000000001064 4.507531953358002e-06
+768.2000000001065 4.512079989405852e-06
+768.3000000001065 4.516606690942992e-06
+768.4000000001065 4.521112059322761e-06
+768.5000000001065 4.525596095890627e-06
+768.6000000001065 4.527185511547541e-06
+768.7000000001066 4.528756091384311e-06
+768.8000000001066 4.530309883566702e-06
+768.9000000001066 4.531848787126503e-06
+769.0000000001066 4.533374551635877e-06
+769.1000000001067 4.52171747881478e-06
+769.2000000001067 4.510021476255832e-06
+769.3000000001067 4.498287789362329e-06
+769.4000000001067 4.486517499364215e-06
+769.5000000001068 4.4747115251984055e-06
+769.6000000001068 4.464729583399742e-06
+769.7000000001068 4.454698676023702e-06
+769.8000000001068 4.444619320344871e-06
+769.9000000001068 4.434491874379238e-06
+770.0000000001069 4.4243165385748234e-06
+770.1000000001069 4.41103858845095e-06
+770.2000000001069 4.3977337874350345e-06
+770.3000000001069 4.384401853563799e-06
+770.400000000107 4.371042355580324e-06
+770.500000000107 4.357654715263004e-06
+770.600000000107 4.341559695488637e-06
+770.700000000107 4.325457239177362e-06
+770.800000000107 4.309346209439323e-06
+770.9000000001071 4.293225345266898e-06
+771.0000000001071 4.2770932642052575e-06
+771.1000000001071 4.268822363100229e-06
+771.2000000001071 4.260548890318632e-06
+771.3000000001072 4.252271116049111e-06
+771.4000000001072 4.243987185940719e-06
+771.5000000001072 4.235695122490626e-06
+771.6000000001072 4.226525498115458e-06
+771.7000000001073 4.217354898301957e-06
+771.8000000001073 4.208183384360512e-06
+771.9000000001073 4.19901101281887e-06
+772.0000000001073 4.189837835491466e-06
+772.1000000001073 4.180805844216157e-06
+772.2000000001074 4.171772713437538e-06
+772.3000000001074 4.16273848101412e-06
+772.4000000001074 4.153703180273387e-06
+772.5000000001074 4.14466684006222e-06
+772.6000000001075 4.135629655261593e-06
+772.7000000001075 4.1265918190570185e-06
+772.8000000001075 4.117553357380743e-06
+772.9000000001075 4.108514300100198e-06
+773.0000000001075 4.099474680978224e-06
+773.1000000001076 4.1084800970873865e-06
+773.2000000001076 4.117489486890789e-06
+773.3000000001076 4.126502901137332e-06
+773.4000000001076 4.135520395204305e-06
+773.5000000001077 4.1445420291249795e-06
+773.6000000001077 4.152722553513709e-06
+773.7000000001077 4.160907190070083e-06
+773.8000000001077 4.1690940044696165e-06
+773.9000000001078 4.177281182896513e-06
+774.0000000001078 4.185467033402719e-06
+774.1000000001078 4.1939146219976475e-06
+774.2000000001078 4.202358226470543e-06
+774.3000000001078 4.210796527276351e-06
+774.4000000001079 4.21922833172217e-06
+774.5000000001079 4.227652575364247e-06
+774.6000000001079 4.236068323364777e-06
+774.7000000001079 4.2444752555330195e-06
+774.800000000108 4.2528728457685046e-06
+774.900000000108 4.261260711477379e-06
+775.000000000108 4.269638615010063e-06
+775.100000000108 4.270988479114524e-06
+775.200000000108 4.272328094094851e-06
+775.3000000001081 4.2736577151861265e-06
+775.4000000001081 4.274977745634776e-06
+775.5000000001081 4.276288736923853e-06
+775.6000000001081 4.2775913889818145e-06
+775.7000000001082 4.278886306741919e-06
+775.8000000001082 4.2801744157690426e-06
+775.9000000001082 4.281456786288547e-06
+776.0000000001082 4.282734633396199e-06
+776.1000000001083 4.2840234802480795e-06
+776.2000000001083 4.2853106528239974e-06
+776.3000000001083 4.286597802050258e-06
+776.4000000001083 4.2878867245756256e-06
+776.5000000001083 4.2891793629948375e-06
+776.6000000001084 4.290477806064451e-06
+776.7000000001084 4.291776218291418e-06
+776.8000000001084 4.293074599669333e-06
+776.9000000001084 4.294372950191789e-06
+777.0000000001085 4.295671269834114e-06
+777.1000000001085 4.275933318994965e-06
+777.2000000001085 4.256196292752481e-06
+777.3000000001085 4.2364601911666894e-06
+777.4000000001085 4.216725014279481e-06
+777.5000000001086 4.1969907621417255e-06
+777.6000000001086 4.177257434799762e-06
+777.7000000001086 4.15752503230434e-06
+777.8000000001086 4.1377935547017275e-06
+777.9000000001087 4.118063002038187e-06
+778.0000000001087 4.098333374360203e-06
+778.1000000001087 4.078821457247985e-06
+778.2000000001087 4.059309109099617e-06
+778.3000000001088 4.039796329991506e-06
+778.4000000001088 4.020283120008665e-06
+778.5000000001088 4.000769479240268e-06
+778.6000000001088 3.981255407758442e-06
+778.7000000001088 3.961740905652287e-06
+778.8000000001089 3.942225973002378e-06
+778.9000000001089 3.922710609889289e-06
+779.0000000001089 3.903194816428185e-06
+779.1000000001089 3.911631846439048e-06
+779.200000000109 3.92007208806759e-06
+779.300000000109 3.928515541326294e-06
+779.400000000109 3.9369622062400645e-06
+779.500000000109 3.945412082824611e-06
+779.600000000109 3.953055947773488e-06
+779.7000000001091 3.960699894878525e-06
+779.8000000001091 3.968343924107351e-06
+779.9000000001091 3.9759880354275895e-06
+780.0000000001091 3.983632228806969e-06
+780.1000000001092 3.991370932094657e-06
+780.2000000001092 3.999109220787059e-06
+780.3000000001092 4.006847094875246e-06
+780.4000000001092 4.014584554329138e-06
+780.5000000001093 4.022321599135617e-06
+780.6000000001093 4.0300582292731145e-06
+780.7000000001093 4.037794444720062e-06
+780.8000000001093 4.045530245459163e-06
+780.9000000001093 4.053265631468884e-06
+781.0000000001094 4.061000602717339e-06
+781.1000000001094 4.0592721819001386e-06
+781.2000000001094 4.057543731651915e-06
+781.3000000001094 4.055815251984272e-06
+781.4000000001095 4.054086742904527e-06
+781.5000000001095 4.05235820441999e-06
+781.6000000001095 4.0506296365422605e-06
+781.7000000001095 4.048901039278649e-06
+781.8000000001095 4.047172412640745e-06
+781.9000000001096 4.0454437566315666e-06
+782.0000000001096 4.043715071266795e-06
+782.1000000001096 4.041813814134855e-06
+782.2000000001096 4.039912610013212e-06
+782.3000000001097 4.038011458916382e-06
+782.4000000001097 4.036110360850313e-06
+782.5000000001097 4.034209315825232e-06
+782.6000000001097 4.032308323838549e-06
+782.7000000001098 4.030407384909019e-06
+782.8000000001098 4.028506499038314e-06
+782.9000000001098 4.0266056662366395e-06
+783.0000000001098 4.024704886499165e-06
+783.1000000001098 4.009115065649617e-06
+783.2000000001099 3.993525612929051e-06
+783.3000000001099 3.977936528404446e-06
+783.4000000001099 3.9623478121512305e-06
+783.5000000001099 3.946759464236406e-06
+783.60000000011 3.931171484743686e-06
+783.70000000011 3.915583873735855e-06
+783.80000000011 3.899996631288215e-06
+783.90000000011 3.884409757475997e-06
+784.00000000011 3.868823252370198e-06
+784.1000000001101 3.853175393443814e-06
+784.2000000001101 3.8375276360336035e-06
+784.3000000001101 3.821879980191445e-06
+784.4000000001101 3.806232425985475e-06
+784.5000000001102 3.7905849734716468e-06
+784.6000000001102 3.774937622721972e-06
+784.7000000001102 3.7592903737843778e-06
+784.8000000001102 3.743643226730771e-06
+784.9000000001103 3.727996181617071e-06
+785.0000000001103 3.7123492385333984e-06
+785.1000000001103 3.720533407626735e-06
+785.2000000001103 3.7287174161217403e-06
+785.3000000001103 3.736901264001554e-06
+785.4000000001104 3.7450849512335665e-06
+785.5000000001104 3.7532684777930744e-06
+785.6000000001104 3.7614518436514346e-06
+785.7000000001104 3.7696350487839937e-06
+785.8000000001105 3.777818093158136e-06
+785.9000000001105 3.7860009767532355e-06
+786.0000000001105 3.794183699535995e-06
+786.1000000001105 3.801735047612738e-06
+786.2000000001105 3.8092832428400975e-06
+786.3000000001106 3.816828285030349e-06
+786.4000000001106 3.824370173995816e-06
+786.5000000001106 3.831908909553779e-06
+786.6000000001106 3.8402314241757625e-06
+786.7000000001107 3.848554195985617e-06
+786.8000000001107 3.856877224952359e-06
+786.9000000001107 3.865200511040906e-06
+787.0000000001107 3.8735240542007354e-06
+787.1000000001108 3.856813532447858e-06
+787.2000000001108 3.840110026536596e-06
+787.3000000001108 3.823413536222748e-06
+787.4000000001108 3.80672406124981e-06
+787.5000000001108 3.790041601366144e-06
+787.6000000001109 3.7741403389490737e-06
+787.7000000001109 3.758239567725733e-06
+787.8000000001109 3.7423392877401785e-06
+787.9000000001109 3.7264394990444377e-06
+788.000000000111 3.710540201685599e-06
+788.100000000111 3.693807568847328e-06
+788.200000000111 3.677081545877081e-06
+788.300000000111 3.660362132824866e-06
+788.400000000111 3.6436493297406154e-06
+788.5000000001111 3.626943136673325e-06
+788.6000000001111 3.609502078310911e-06
+788.7000000001111 3.5920741836760186e-06
+788.8000000001111 3.5746594527886535e-06
+788.9000000001112 3.5572578856610015e-06
+789.0000000001112 3.5398694823377415e-06
+789.1000000001112 3.548437154222331e-06
+789.2000000001112 3.556996274158028e-06
+789.3000000001113 3.565546842489053e-06
+789.4000000001113 3.5740888595521576e-06
+789.5000000001113 3.5826223256934072e-06
+789.6000000001113 3.5926287376255614e-06
+789.7000000001113 3.6026348517744015e-06
+789.8000000001114 3.6126406681093516e-06
+789.9000000001114 3.62264618659983e-06
+790.0000000001114 3.632651407223034e-06
+790.1000000001114 3.6426785012207323e-06
+790.2000000001115 3.6527054192130737e-06
+790.3000000001115 3.6627321611613214e-06
+790.4000000001115 3.672758727038446e-06
+790.5000000001115 3.6827851168096495e-06
+790.6000000001115 3.692811330440131e-06
+790.7000000001116 3.7028373678911605e-06
+790.8000000001116 3.712863229139782e-06
+790.9000000001116 3.7228889141473e-06
+791.0000000001116 3.7329144228760196e-06
+791.1000000001117 3.7403053677761724e-06
+791.2000000001117 3.7477011507607985e-06
+791.3000000001117 3.7551017718259423e-06
+791.4000000001117 3.7625072309636056e-06
+791.5000000001118 3.7699175281720313e-06
+791.6000000001118 3.775778845002796e-06
+791.7000000001118 3.7816401757552058e-06
+791.8000000001118 3.787501520415167e-06
+791.9000000001118 3.793362878956528e-06
+792.0000000001119 3.7992242513604815e-06
+792.1000000001119 3.8044450996754217e-06
+792.2000000001119 3.809663503252525e-06
+792.3000000001119 3.814879462053999e-06
+792.400000000112 3.820092976042086e-06
+792.500000000112 3.825304045184882e-06
+792.600000000112 3.832090960599776e-06
+792.700000000112 3.838880372636052e-06
+792.800000000112 3.845672281276595e-06
+792.9000000001121 3.852466686520595e-06
+793.0000000001121 3.85926358835994e-06
+793.1000000001121 3.859523431586465e-06
+793.2000000001121 3.85978066190658e-06
+793.3000000001122 3.860035279338081e-06
+793.4000000001122 3.860287283898779e-06
+793.5000000001122 3.860536675614696e-06
+793.6000000001122 3.8607834544995875e-06
+793.7000000001123 3.8610276205795e-06
+793.8000000001123 3.861269173872314e-06
+793.9000000001123 3.8615081143918415e-06
+794.0000000001123 3.861744442161395e-06
+794.1000000001123 3.859502018834e-06
+794.2000000001124 3.857259593498835e-06
+794.3000000001124 3.855017166167044e-06
+794.4000000001124 3.852774736853845e-06
+794.5000000001124 3.850532305569483e-06
+794.6000000001125 3.847502900982883e-06
+794.7000000001125 3.844474411606381e-06
+794.8000000001125 3.841446837449846e-06
+794.9000000001125 3.838420178531263e-06
+795.0000000001125 3.835394434836797e-06
+795.1000000001126 3.814936747969371e-06
+795.2000000001126 3.794494814398638e-06
+795.3000000001126 3.774068633842876e-06
+795.4000000001126 3.7536582060202843e-06
+795.5000000001127 3.7332635306503243e-06
+795.6000000001127 3.710598817636992e-06
+795.7000000001127 3.68797306240388e-06
+795.8000000001127 3.6653862641500284e-06
+795.9000000001128 3.6428384220780976e-06
+796.0000000001128 3.6203295353927776e-06
+796.1000000001128 3.599964051729463e-06
+796.2000000001128 3.579614000641058e-06
+796.3000000001128 3.5592793823782937e-06
+796.4000000001129 3.538960197184087e-06
+796.5000000001129 3.518656445313686e-06
+796.6000000001129 3.5027067398023883e-06
+796.7000000001129 3.4867257517631427e-06
+796.800000000113 3.470713480926438e-06
+796.900000000113 3.4546699270303085e-06
+797.000000000113 3.43859508982664e-06
+797.100000000113 3.450898156725173e-06
+797.200000000113 3.4632134180765916e-06
+797.3000000001131 3.4755408731786197e-06
+797.4000000001131 3.4878805213215524e-06
+797.5000000001131 3.5002323618050717e-06
+797.6000000001131 3.511156215006458e-06
+797.7000000001132 3.522083887121518e-06
+797.8000000001132 3.5330153778988744e-06
+797.9000000001132 3.543950687087156e-06
+798.0000000001132 3.5548898144305047e-06
+798.1000000001133 3.565187084942571e-06
+798.2000000001133 3.5754842569566453e-06
+798.3000000001133 3.5857813304438934e-06
+798.4000000001133 3.5960783053603233e-06
+798.5000000001133 3.6063751816771456e-06
+798.6000000001134 3.6166719593579892e-06
+798.7000000001134 3.626968638370335e-06
+798.8000000001134 3.6372652186701447e-06
+798.9000000001134 3.647561700232614e-06
+799.0000000001135 3.657858083000471e-06
+799.1000000001135 3.6496693925499157e-06
+799.2000000001135 3.641480100956571e-06
+799.3000000001135 3.6332902082344067e-06
+799.4000000001136 3.6250997144012465e-06
+799.5000000001136 3.6169086194693605e-06
+799.6000000001136 3.6072379411139914e-06
+799.7000000001136 3.5975733766894887e-06
+799.8000000001136 3.587914926948116e-06
+799.9000000001137 3.5782625926497284e-06
+800.0000000001137 3.5686163745463667e-06
+800.1000000001137 3.5588438430104694e-06
+800.2000000001137 3.5490783006798084e-06
+800.3000000001138 3.539319747381313e-06
+800.4000000001138 3.5295681829343515e-06
+800.5000000001138 3.519823607171155e-06
+800.6000000001138 3.5115310944343747e-06
+800.7000000001138 3.503238745051329e-06
+800.8000000001139 3.494946559043558e-06
+800.9000000001139 3.4866545364400466e-06
+801.0000000001139 3.4783626772685116e-06
+801.1000000001139 3.4722326794367074e-06
+801.200000000114 3.4661025339130434e-06
+801.300000000114 3.4599722407193927e-06
+801.400000000114 3.4538417998813005e-06
+801.500000000114 3.4477112114250993e-06
+801.600000000114 3.4422886194967844e-06
+801.7000000001141 3.4368633569922726e-06
+801.8000000001141 3.431435423851773e-06
+801.9000000001141 3.4260048199972353e-06
+802.0000000001141 3.4205715453644896e-06
+802.1000000001142 3.4144899759929084e-06
+802.2000000001142 3.4084082851619617e-06
+802.3000000001142 3.402326472889579e-06
+802.4000000001142 3.3962445392045403e-06
+802.5000000001143 3.39016248412477e-06
+802.6000000001143 3.384080307675409e-06
+802.7000000001143 3.377998009881572e-06
+802.8000000001143 3.3719155907611843e-06
+802.9000000001143 3.3658330503393488e-06
+803.0000000001144 3.3597503886550563e-06
+803.1000000001144 3.3658306533909783e-06
+803.2000000001144 3.3719129032446296e-06
+803.3000000001144 3.377997138060045e-06
+803.4000000001145 3.384083357684823e-06
+803.5000000001145 3.3901715619621848e-06
+803.6000000001145 3.395564509569627e-06
+803.7000000001145 3.400957226858107e-06
+803.8000000001146 3.4063497138150216e-06
+803.9000000001146 3.411741970427775e-06
+804.0000000001146 3.4171339966910687e-06
+804.1000000001146 3.4225734084755994e-06
+804.2000000001146 3.4280128211560924e-06
+804.3000000001147 3.433452234713326e-06
+804.4000000001147 3.438891649128072e-06
+804.5000000001147 3.4443310643863904e-06
+804.6000000001147 3.4511872239857643e-06
+804.7000000001148 3.4580478520870285e-06
+804.8000000001148 3.4649129486652042e-06
+804.9000000001148 3.471782513709948e-06
+805.0000000001148 3.4786565472009326e-06
+805.1000000001148 3.48324048537895e-06
+805.2000000001149 3.4878270733650913e-06
+805.3000000001149 3.4924163112326785e-06
+805.4000000001149 3.497008199043947e-06
+805.5000000001149 3.5016027368668648e-06
+805.600000000115 3.5047664824432918e-06
+805.700000000115 3.507930290179227e-06
+805.800000000115 3.5110941600711234e-06
+805.900000000115 3.514258092108035e-06
+806.000000000115 3.517422086275293e-06
+806.1000000001151 3.520584845966197e-06
+806.2000000001151 3.5237475176152108e-06
+806.3000000001151 3.5269101012172527e-06
+806.4000000001151 3.5300725967672505e-06
+806.5000000001152 3.53323500425269e-06
+806.6000000001152 3.5363973236647657e-06
+806.7000000001152 3.5395595550021657e-06
+806.8000000001152 3.542721698256111e-06
+806.9000000001153 3.5458837534178266e-06
+807.0000000001153 3.549045720468443e-06
+807.1000000001153 3.543451898634529e-06
+807.2000000001153 3.5378579536292835e-06
+807.3000000001153 3.532263885464605e-06
+807.4000000001154 3.5266696941710587e-06
+807.5000000001154 3.5210753797605447e-06
+807.6000000001154 3.5154809422598652e-06
+807.7000000001154 3.509886381688364e-06
+807.8000000001155 3.504291698061676e-06
+807.9000000001155 3.4986968914065545e-06
+808.0000000001155 3.4931019617414696e-06
+808.1000000001155 3.486768578823896e-06
+808.2000000001156 3.480437309042567e-06
+808.3000000001156 3.4741081525238376e-06
+808.4000000001156 3.4677811094014018e-06
+808.5000000001156 3.461456179801581e-06
+808.6000000001156 3.4551333638507067e-06
+808.7000000001157 3.448812661686051e-06
+808.8000000001157 3.442494073433894e-06
+808.9000000001157 3.4361775992241554e-06
+809.0000000001157 3.4298632391904407e-06
+809.1000000001158 3.4298934571364115e-06
+809.2000000001158 3.4299233591791086e-06
+809.3000000001158 3.429952945323598e-06
+809.4000000001158 3.4299822155785825e-06
+809.5000000001158 3.4300111699572116e-06
+809.6000000001159 3.430743550729223e-06
+809.7000000001159 3.431475916094619e-06
+809.8000000001159 3.4322082660547006e-06
+809.9000000001159 3.4329406006071317e-06
+810.000000000116 3.433672919753403e-06
+810.100000000116 3.434571012638517e-06
+810.200000000116 3.435469129882582e-06
+810.300000000116 3.4363672714827806e-06
+810.400000000116 3.4372654374399442e-06
+810.5000000001161 3.4381636277459784e-06
+810.6000000001161 3.437650945244311e-06
+810.7000000001161 3.4371375500741198e-06
+810.8000000001161 3.4366234422094356e-06
+810.9000000001162 3.436108621617007e-06
+811.0000000001162 3.4355930882449866e-06
+811.1000000001162 3.4222186763543618e-06
+811.2000000001162 3.408857924025035e-06
+811.3000000001163 3.395510831713353e-06
+811.4000000001163 3.382177399879235e-06
+811.5000000001163 3.368857628990472e-06
+811.6000000001163 3.3562438140123676e-06
+811.7000000001163 3.3436390301921066e-06
+811.8000000001164 3.3310432778452306e-06
+811.9000000001164 3.3184565572872466e-06
+812.0000000001164 3.3058788688344604e-06
+812.1000000001164 3.294038968676033e-06
+812.2000000001165 3.282202994971153e-06
+812.3000000001165 3.270370948158749e-06
+812.4000000001165 3.2585428286672393e-06
+812.5000000001165 3.246718636930039e-06
+812.6000000001166 3.2302139942866674e-06
+812.7000000001166 3.2137455707602076e-06
+812.8000000001166 3.1973133697617236e-06
+812.9000000001166 3.1809173946953256e-06
+813.0000000001166 3.1645576489670726e-06
+813.1000000001167 3.149945519375125e-06
+813.2000000001167 3.1353631767982603e-06
+813.3000000001167 3.1208106192595825e-06
+813.4000000001167 3.1062878447854945e-06
+813.5000000001168 3.0917948514125036e-06
+813.6000000001168 3.083218137614285e-06
+813.7000000001168 3.0746534596234826e-06
+813.8000000001168 3.0661008166540426e-06
+813.9000000001168 3.0575602079232396e-06
+814.0000000001169 3.049031632650715e-06
+814.1000000001169 3.0425938022394372e-06
+814.2000000001169 3.036161530669397e-06
+814.3000000001169 3.029734818307582e-06
+814.400000000117 3.0233136655176187e-06
+814.500000000117 3.016898072661167e-06
+814.600000000117 3.0059774630087157e-06
+814.700000000117 2.9950758214278145e-06
+814.800000000117 2.98419314912482e-06
+814.9000000001171 2.9733294472894207e-06
+815.0000000001171 2.962484717139213e-06
+815.1000000001171 2.9613860964348473e-06
+815.2000000001171 2.9602592631666427e-06
+815.3000000001172 2.9591042162812406e-06
+815.4000000001172 2.957920954715511e-06
+815.5000000001172 2.956709477423885e-06
+815.6000000001172 2.9561180548454867e-06
+815.7000000001173 2.955500992738238e-06
+815.8000000001173 2.954858290139125e-06
+815.9000000001173 2.95418994608867e-06
+816.0000000001173 2.953495959634138e-06
+816.1000000001173 2.9555197901674655e-06
+816.2000000001174 2.957527946229316e-06
+816.3000000001174 2.959520427294923e-06
+816.4000000001174 2.961497232839638e-06
+816.5000000001174 2.9634583623646223e-06
+816.6000000001175 2.978630415708736e-06
+816.7000000001175 2.9938394740100647e-06
+816.8000000001175 3.00908553844158e-06
+816.9000000001175 3.0243686101828525e-06
+817.0000000001176 3.039688690371626e-06
+817.1000000001176 3.02834409805544e-06
+817.2000000001176 3.0169994821825586e-06
+817.3000000001176 3.0056548427869344e-06
+817.4000000001176 2.994310179899125e-06
+817.5000000001177 2.982965493529126e-06
+817.6000000001177 2.959890701728575e-06
+817.7000000001177 2.936905450221405e-06
+817.8000000001177 2.9140097393283233e-06
+817.9000000001178 2.8912035693527465e-06
+818.0000000001178 2.8684869406582117e-06
+818.1000000001178 2.8662787738658938e-06
+818.2000000001178 2.8640006156823e-06
+818.3000000001178 2.8616524651889513e-06
+818.4000000001179 2.859234321471078e-06
+818.5000000001179 2.8567461836088977e-06
+818.6000000001179 2.8523078214137333e-06
+818.7000000001179 2.8478144403055743e-06
+818.800000000118 2.843266039573535e-06
+818.900000000118 2.838662618510261e-06
+819.000000000118 2.8340041763932903e-06
+819.100000000118 2.829721446927072e-06
+819.200000000118 2.8254362519166133e-06
+819.3000000001181 2.8211485911507983e-06
+819.4000000001181 2.8168584644121533e-06
+819.5000000001181 2.812565871485654e-06
+819.6000000001181 2.8076604511901246e-06
+819.7000000001182 2.8027546972122478e-06
+819.8000000001182 2.7978486095567426e-06
+819.9000000001182 2.792942188225178e-06
+820.0000000001182 2.7880354332547294e-06
+820.1000000001183 2.7973359979509375e-06
+820.2000000001183 2.806582388581625e-06
+820.3000000001183 2.815774609490326e-06
+820.4000000001183 2.824912665017563e-06
+820.5000000001183 2.8339965594967033e-06
+820.6000000001184 2.839430564192136e-06
+820.7000000001184 2.8448240256271107e-06
+820.8000000001184 2.8501769470557235e-06
+820.9000000001184 2.8554893317383374e-06
+821.0000000001185 2.860761182926675e-06
+821.1000000001185 2.8689678636472534e-06
+821.2000000001185 2.877167588631935e-06
+821.3000000001185 2.885360356826191e-06
+821.4000000001186 2.8935461671754576e-06
+821.5000000001186 2.9017250186155554e-06
+821.6000000001186 2.9044385791085057e-06
+821.7000000001186 2.9071099821686854e-06
+821.8000000001186 2.9097392219048655e-06
+821.9000000001187 2.9123262924193573e-06
+822.0000000001187 2.9148711877770473e-06
+822.1000000001187 2.8993610875985394e-06
+822.2000000001187 2.883697160493076e-06
+822.3000000001188 2.8678793998262586e-06
+822.4000000001188 2.8519077989742877e-06
+822.5000000001188 2.8357823512820976e-06
+822.6000000001188 2.8113668593431034e-06
+822.7000000001188 2.78674742153372e-06
+822.8000000001189 2.7619240290848744e-06
+822.9000000001189 2.736896673222338e-06
+823.0000000001189 2.7116653452672234e-06
+823.1000000001189 2.713276571107797e-06
+823.200000000119 2.714749811398355e-06
+823.300000000119 2.7160850752356893e-06
+823.400000000119 2.7172823717106254e-06
+823.500000000119 2.7183417099583537e-06
+823.600000000119 2.737112494619323e-06
+823.7000000001191 2.755570686610112e-06
+823.8000000001191 2.7737163064614448e-06
+823.9000000001191 2.7915493747020624e-06
+824.0000000001191 2.809069911817289e-06
+824.1000000001192 2.8070407257159434e-06
+824.2000000001192 2.8048905405160917e-06
+824.3000000001192 2.8026193514876103e-06
+824.4000000001192 2.8002271539101526e-06
+824.5000000001193 2.797713943032104e-06
+824.6000000001193 2.7862993590540583e-06
+824.7000000001193 2.7748542365557513e-06
+824.8000000001193 2.763378574384421e-06
+824.9000000001193 2.751872371387403e-06
+825.0000000001194 2.7403356264302878e-06
+825.1000000001194 2.7538866310360085e-06
+825.2000000001194 2.767403691161112e-06
+825.3000000001194 2.780886805381401e-06
+825.4000000001195 2.7943359722759524e-06
+825.5000000001195 2.807751190414976e-06
+825.6000000001195 2.8211324583779726e-06
+825.7000000001195 2.8344797747447336e-06
+825.8000000001196 2.8477931380860433e-06
+825.9000000001196 2.861072546982134e-06
+826.0000000001196 2.8743180000351233e-06
+826.1000000001196 2.897775342733123e-06
+826.2000000001196 2.9213145717990387e-06
+826.3000000001197 2.944935687724978e-06
+826.4000000001197 2.968638691002521e-06
+826.5000000001197 2.9924235821103368e-06
+826.6000000001197 3.011265304731402e-06
+826.7000000001198 3.0301343716540715e-06
+826.8000000001198 3.0490307830030797e-06
+826.9000000001198 3.067954538909512e-06
+827.0000000001198 3.086905639454214e-06
+827.1000000001198 3.083317557242035e-06
+827.2000000001199 3.0796109893042636e-06
+827.3000000001199 3.0757859355553086e-06
+827.4000000001199 3.0718423959003568e-06
+827.5000000001199 3.0677803702733196e-06
+827.60000000012 3.070165653368662e-06
+827.70000000012 3.072481820869766e-06
+827.80000000012 3.07472887271976e-06
+827.90000000012 3.07690680885208e-06
+828.00000000012 3.079015629239337e-06
+828.1000000001201 3.0962144504449293e-06
+828.2000000001201 3.11345627514964e-06
+828.3000000001201 3.130741100095056e-06
+828.4000000001201 3.1480689220293e-06
+828.5000000001202 3.1654397376823476e-06
+828.6000000001202 3.176724814287482e-06
+828.7000000001202 3.1880093365514314e-06
+828.8000000001202 3.1992933044304167e-06
+828.9000000001203 3.2105767178771576e-06
+829.0000000001203 3.2218595766425807e-06
+829.1000000001203 3.059297517092603e-06
+829.2000000001203 2.8964610540591044e-06
+829.3000000001203 2.733350211352936e-06
+829.4000000001204 2.569965012797605e-06
+829.5000000001204 2.406305482216998e-06
+829.6000000001204 2.2452409609439607e-06
+829.7000000001204 2.083477383926158e-06
+829.8000000001205 1.9210148091797333e-06
+829.9000000001205 1.757853294731372e-06
+830.0000000001205 1.5939928986152745e-06
+830.1000000001205 1.4351571260172923e-06
+830.2000000001206 1.2761960916065472e-06
+830.3000000001206 1.117109808786249e-06
+830.4000000001206 9.578982909602826e-07
+830.5000000001206 7.98561551538103e-07
+830.6000000001206 6.400420301334797e-07
+830.7000000001207 4.809260590120708e-07
+830.8000000001207 3.2121369341407227e-07
+830.9000000001207 1.6090498859110904e-07
+831.0000000001207 6.138711578123248e-19
+831.1000000001208 5.083360696815115e-10
+831.2000000001208 1.0164576804965878e-09
+831.3000000001208 1.524364827681828e-09
+831.4000000001208 2.0320575058661173e-09
+831.5000000001208 2.5395357096692173e-09
+831.6000000001209 3.0397938330522044e-09
+831.7000000001209 3.537502306297929e-09
+831.8000000001209 4.0326611392554805e-09
+831.9000000001209 4.52527034185021e-09
+832.000000000121 5.015329933914953e-09
+832.100000000121 1.3636657410861131e-08
+832.200000000121 2.228609460360665e-08
+832.300000000121 3.096363642982241e-08
+832.400000000121 3.9669277807363815e-08
+832.5000000001211 4.840301365418123e-08
+832.6000000001211 5.720076901945337e-08
+832.7000000001211 6.603751949841888e-08
+832.8000000001211 7.49132580994028e-08
+832.9000000001212 8.382797783086704e-08
+833.0000000001212 9.278167168880833e-08
+833.1000000001212 9.176581444178196e-08
+833.2000000001212 9.075084369610543e-08
+833.3000000001213 8.973675936486208e-08
+833.4000000001213 8.872356136160831e-08
+833.5000000001213 8.771124959956646e-08
+833.6000000001213 8.675403928539161e-08
+833.7000000001213 8.579657092147576e-08
+833.8000000001214 8.483880365439068e-08
+833.9000000001214 8.388070117512415e-08
+834.0000000001214 8.2922231560312e-08
+834.1000000001214 8.201999946827037e-08
+834.2000000001215 8.111432362024374e-08
+834.3000000001215 8.020518449624493e-08
+834.4000000001215 7.929256629550364e-08
+834.5000000001215 7.83764567926057e-08
+834.6000000001216 7.737721142709282e-08
+834.7000000001216 7.63766191115565e-08
+834.8000000001216 7.537467653087581e-08
+834.9000000001216 7.437138347970563e-08
+835.0000000001216 7.336674270814714e-08
+835.1000000001217 8.655852523762626e-08
+835.2000000001217 9.973750395273797e-08
+835.3000000001217 1.1290358980328395e-07
+835.4000000001217 1.260567004672601e-07
+835.5000000001218 1.3919676261505562e-07
+835.6000000001218 1.5238641206378397e-07
+835.7000000001218 1.6557374517913063e-07
+835.8000000001218 1.7875872904593496e-07
+835.9000000001218 1.919413497610348e-07
+836.0000000001219 2.0512161457186766e-07
+836.1000000001219 2.1831212917252822e-07
+836.2000000001219 2.3151179646750611e-07
+836.3000000001219 2.4472069797529774e-07
+836.400000000122 2.5793894495977444e-07
+836.500000000122 2.711666806205635e-07
+836.600000000122 2.844041057435708e-07
+836.700000000122 2.9765086866213745e-07
+836.800000000122 3.1090696834244143e-07
+836.9000000001221 3.241724033594326e-07
+837.0000000001221 3.374471720066298e-07
+837.1000000001221 3.8647273703128656e-07
+837.2000000001221 4.355080115407454e-07
+837.3000000001222 4.84552996055005e-07
+837.4000000001222 5.336076899475113e-07
+837.5000000001222 5.826720916886755e-07
+837.6000000001222 6.316168758476146e-07
+837.7000000001223 6.805512676711768e-07
+837.8000000001223 7.294752562919625e-07
+837.9000000001223 7.783888287608672e-07
+838.0000000001223 8.272919698023348e-07
+838.1000000001223 8.766971803959402e-07
+838.2000000001224 9.261358242627073e-07
+838.3000000001224 9.756078683285992e-07
+838.4000000001224 1.025113276148074e-06
+838.5000000001224 1.0746520076410806e-06
+838.6000000001225 1.1239944447742494e-06
+838.7000000001225 1.1733501834989084e-06
+838.8000000001225 1.2227192334549723e-06
+838.9000000001225 1.2721016088835964e-06
+839.0000000001226 1.3214973292004179e-06
+839.1000000001226 1.633272836912102e-06
+839.2000000001226 1.945005166378241e-06
+839.3000000001226 2.256694412346077e-06
+839.4000000001226 2.568340699396594e-06
+839.5000000001227 2.879944183537474e-06
+839.6000000001227 3.1921563814534504e-06
+839.7000000001227 3.5044529400211454e-06
+839.8000000001227 3.816833858291674e-06
+839.9000000001228 4.1292991228890725e-06
+840.0000000001228 4.441848706414758e-06
+840.1000000001228 4.752613443524903e-06
+840.2000000001228 5.063198187952781e-06
+840.3000000001228 5.373602921724953e-06
+840.4000000001229 5.683827606586811e-06
+840.5000000001229 5.993872182407176e-06
+840.6000000001229 6.303736565684683e-06
+840.7000000001229 6.613421024763595e-06
+840.800000000123 6.922925593609553e-06
+840.900000000123 7.232250306196173e-06
+841.000000000123 7.541395197119418e-06
+841.100000000123 8.397851186419242e-06
+841.200000000123 9.254526571654273e-06
+841.3000000001231 1.0111421273634971e-05
+841.4000000001231 1.0968535213148625e-05
+841.5000000001231 1.1825868310925736e-05
+841.6000000001231 1.2683420487135202e-05
+841.7000000001232 1.3541191663326441e-05
+841.8000000001232 1.4399181760647998e-05
+841.9000000001232 1.5257390700336763e-05
+842.0000000001232 1.6115818403706336e-05
+842.1000000001233 1.697397782622624e-05
+842.2000000001233 1.7832312948474733e-05
+842.3000000001233 1.8690823673409892e-05
+842.4000000001233 1.9549509904173083e-05
+842.5000000001234 2.0408371543849674e-05
+842.6000000001234 2.126307793092696e-05
+842.7000000001234 2.211761145409551e-05
+842.8000000001234 2.2971972121564078e-05
+842.9000000001234 2.3826159941529413e-05
+843.0000000001235 2.4680174922148822e-05
+843.1000000001235 2.555012086614417e-05
+843.2000000001235 2.641957231826336e-05
+843.3000000001235 2.7288529360289934e-05
+843.4000000001236 2.8156992073862265e-05
+843.5000000001236 2.9024960540652448e-05
+843.6000000001236 2.9904544409586825e-05
+843.7000000001236 3.078428775950976e-05
+843.8000000001236 3.166421456164568e-05
+843.9000000001237 3.2544349791866125e-05
+844.0000000001237 3.342471913700169e-05
+844.1000000001237 3.429690214782041e-05
+844.2000000001237 3.516895754487479e-05
+844.3000000001238 3.6040911417468813e-05
+844.4000000001238 3.691278936581541e-05
+844.5000000001238 3.778461620790509e-05
+844.6000000001238 3.8664288685387066e-05
+844.7000000001239 3.9544311287595004e-05
+844.8000000001239 4.042470473876803e-05
+844.9000000001239 4.13054878250575e-05
+845.0000000001239 4.218667709954456e-05
+845.1000000001239 4.254692137092729e-05
+845.200000000124 4.290748919205174e-05
+845.300000000124 4.3268381369541646e-05
+845.400000000124 4.362959564207233e-05
+845.500000000124 4.399112655910635e-05
+845.600000000124 4.434395235853063e-05
+845.7000000001241 4.469693035522815e-05
+845.8000000001241 4.505004471637334e-05
+845.9000000001241 4.540327594751555e-05
+846.0000000001241 4.575660077389171e-05
+846.1000000001242 4.609932882612281e-05
+846.2000000001242 4.644193406175122e-05
+846.3000000001242 4.678438116335507e-05
+846.4000000001242 4.712663059559863e-05
+846.5000000001243 4.746863849202647e-05
+846.6000000001243 4.782981537690653e-05
+846.7000000001243 4.819111682203303e-05
+846.8000000001243 4.855254281000187e-05
+846.9000000001244 4.891409332336612e-05
+847.0000000001244 4.927576834363092e-05
+847.1000000001244 4.887273525810922e-05
+847.2000000001244 4.8469730351577115e-05
+847.3000000001244 4.806675363345967e-05
+847.4000000001245 4.766380511331191e-05
+847.5000000001245 4.726088480045303e-05
+847.6000000001245 4.6848468724195534e-05
+847.7000000001245 4.6436244638388066e-05
+847.8000000001246 4.6024212533789496e-05
+847.9000000001246 4.5612372401197556e-05
+848.0000000001246 4.5200724231461715e-05
+848.1000000001246 4.4799027437166514e-05
+848.2000000001246 4.4397345040098884e-05
+848.3000000001247 4.399567704973851e-05
+848.4000000001247 4.359402347565597e-05
+848.5000000001247 4.319238432741892e-05
+848.6000000001247 4.279087616516444e-05
+848.7000000001248 4.2389454481939906e-05
+848.8000000001248 4.1988079150380896e-05
+848.9000000001248 4.1586714289352856e-05
+849.0000000001248 4.1185328128111724e-05
+849.1000000001249 4.02661522725374e-05
+849.2000000001249 3.9346971761135216e-05
+849.3000000001249 3.842777051315805e-05
+849.4000000001249 3.7508537060319686e-05
+849.5000000001249 3.658926423806857e-05
+849.600000000125 3.5669948878441824e-05
+849.700000000125 3.475059149785468e-05
+849.800000000125 3.383119599064376e-05
+849.900000000125 3.291176932048228e-05
+850.000000000125 3.1992321211518506e-05
+850.1000000001251 3.107444982570233e-05
+850.2000000001251 3.0156578927093084e-05
+850.3000000001251 2.9238724654429077e-05
+850.4000000001251 2.8320904673911955e-05
+850.5000000001252 2.740313787131083e-05
+850.6000000001252 2.6485444044206256e-05
+850.7000000001252 2.5567843592853468e-05
+850.8000000001252 2.4650357215306603e-05
+850.9000000001253 2.3733005599052927e-05
+851.0000000001253 2.2815809114226747e-05
+851.1000000001253 2.2128269812862352e-05
+851.2000000001253 2.144114544238577e-05
+851.3000000001254 2.0754453492700052e-05
+851.4000000001254 2.0068210681109096e-05
+851.5000000001254 1.9382432725696315e-05
+851.6000000001254 1.870475161024015e-05
+851.7000000001254 1.8026940026266547e-05
+851.8000000001255 1.734899806262638e-05
+851.9000000001255 1.667092580811598e-05
+852.0000000001255 1.599272335145545e-05
+852.1000000001255 1.5311090804665846e-05
+852.2000000001256 1.4629621912751139e-05
+852.3000000001256 1.3948316668574512e-05
+852.4000000001256 1.3267175064926504e-05
+852.5000000001256 1.2586197094557124e-05
+852.6000000001256 1.1907805005512789e-05
+852.7000000001257 1.1229299565842026e-05
+852.8000000001257 1.0550680867716054e-05
+852.9000000001257 9.87194900327675e-06
+853.0000000001257 9.193104065229314e-06
+853.1000000001258 8.927724708282284e-06
+853.2000000001258 8.662392962024748e-06
+853.3000000001258 8.39710882874823e-06
+853.4000000001258 8.131872310736372e-06
+853.5000000001259 7.866683410298723e-06
+853.6000000001259 7.599976394808913e-06
+853.7000000001259 7.333413370772427e-06
+853.8000000001259 7.067002111934279e-06
+853.9000000001259 6.800748969584589e-06
+854.000000000126 6.534658963130087e-06
+854.100000000126 6.269733612178302e-06
+854.200000000126 6.004892008434283e-06
+854.300000000126 5.740135749034413e-06
+854.400000000126 5.475465460703823e-06
+854.5000000001261 5.210880888917038e-06
+854.6000000001261 4.94738737196972e-06
+854.7000000001261 4.683869179555849e-06
+854.8000000001261 4.420323996749883e-06
+854.9000000001262 4.15674898088137e-06
+855.0000000001262 3.893140850103271e-06
+855.1000000001262 3.817658215001534e-06
+855.2000000001262 3.742209436681256e-06
+855.3000000001263 3.6667930618453528e-06
+855.4000000001263 3.591407427160595e-06
+855.5000000001263 3.516050684489568e-06
+855.6000000001263 3.440720825969593e-06
+855.7000000001264 3.365415709402589e-06
+855.8000000001264 3.290133083570365e-06
+855.9000000001264 3.2148706132669407e-06
+856.0000000001264 3.139625904470123e-06
+856.1000000001264 3.0644797933404047e-06
+856.2000000001265 2.98934034265124e-06
+856.3000000001265 2.914205133810129e-06
+856.4000000001265 2.8390717897875396e-06
+856.5000000001265 2.76393800026652e-06
+856.6000000001266 2.6888015468324516e-06
+856.7000000001266 2.6136701673222706e-06
+856.8000000001266 2.538543864535558e-06
+856.9000000001266 2.463422641271753e-06
+857.0000000001266 2.3883065004167816e-06
+857.1000000001267 2.3818923804970757e-06
+857.2000000001267 2.375479428097797e-06
+857.3000000001267 2.3690676433677346e-06
+857.4000000001267 2.3626570264526493e-06
+857.5000000001268 2.3562475775032978e-06
+857.6000000001268 2.3503169063814133e-06
+857.7000000001268 2.34438479892715e-06
+857.8000000001268 2.338451255924267e-06
+857.9000000001269 2.3325162781601283e-06
+858.0000000001269 2.32657986642273e-06
+858.1000000001269 2.320216796990682e-06
+858.2000000001269 2.3138542746210657e-06
+858.3000000001269 2.3074922995256577e-06
+858.400000000127 2.3011308719125083e-06
+858.500000000127 2.2947699919955916e-06
+858.600000000127 2.288415893000254e-06
+858.700000000127 2.282066303259255e-06
+858.800000000127 2.275719128520628e-06
+858.9000000001271 2.269372449892646e-06
+859.0000000001271 2.263024521681738e-06
+859.1000000001271 2.2586654050258767e-06
+859.2000000001271 2.2543020055736346e-06
+859.3000000001272 2.249933068330952e-06
+859.4000000001272 2.245557498977003e-06
+859.5000000001272 2.241174362411547e-06
+859.6000000001272 2.236782881386255e-06
+859.7000000001273 2.232382434830662e-06
+859.8000000001273 2.227972556520429e-06
+859.9000000001273 2.2235529336029765e-06
+860.0000000001273 2.219123405133987e-06
+860.1000000001274 2.2147123765596382e-06
+860.2000000001274 2.2102917347252306e-06
+860.3000000001274 2.2058617650679376e-06
+860.4000000001274 2.2014228989945205e-06
+860.5000000001274 2.196975712376477e-06
+860.6000000001275 2.1925209240634697e-06
+860.7000000001275 2.1880593942471364e-06
+860.8000000001275 2.1835921231787266e-06
+860.9000000001275 2.1791202495674046e-06
+861.0000000001276 2.1746450491337416e-06
+861.1000000001276 2.218922903082426e-06
+861.2000000001276 2.2631866598041415e-06
+861.3000000001276 2.3074379979082834e-06
+861.4000000001276 2.351678890441723e-06
+861.5000000001277 2.3959116196564587e-06
+861.6000000001277 2.4401387916623734e-06
+861.7000000001277 2.484354001070981e-06
+861.8000000001277 2.528557247826972e-06
+861.9000000001278 2.572748531868884e-06
+862.0000000001278 2.616927853148477e-06
+862.1000000001278 2.6618982170579257e-06
+862.2000000001278 2.7068752215215716e-06
+862.3000000001279 2.751858859293379e-06
+862.4000000001279 2.7968491231344924e-06
+862.5000000001279 2.841846005809764e-06
+862.6000000001279 2.886264051117789e-06
+862.700000000128 2.9306706858540303e-06
+862.800000000128 2.9750659096353162e-06
+862.900000000128 3.019449722082513e-06
+863.000000000128 3.063822122744756e-06
+863.100000000128 3.0536529951315742e-06
+863.2000000001281 3.0434874208227297e-06
+863.3000000001281 3.0333253994647553e-06
+863.4000000001281 3.0231669306916518e-06
+863.5000000001281 3.013012014153458e-06
+863.6000000001281 3.002852468239955e-06
+863.7000000001282 2.9926912873329805e-06
+863.8000000001282 2.982531226239656e-06
+863.9000000001282 2.9723748036018536e-06
+864.0000000001282 2.962224305319529e-06
+864.1000000001283 2.9522527056084076e-06
+864.2000000001283 2.9422897944845403e-06
+864.3000000001283 2.9323371820572114e-06
+864.4000000001283 2.9223962597453016e-06
+864.5000000001284 2.9124682036296826e-06
+864.6000000001284 2.902553977959624e-06
+864.7000000001284 2.8926543383774227e-06
+864.8000000001284 2.8827698351454717e-06
+864.9000000001284 2.872900816601631e-06
+865.0000000001285 2.863047432495641e-06
+865.1000000001285 2.849661633912168e-06
+865.2000000001285 2.8362928130589687e-06
+865.3000000001285 2.822940493707368e-06
+865.4000000001286 2.8096040166561015e-06
+865.5000000001286 2.7962825442255183e-06
+865.6000000001286 2.7829750645657986e-06
+865.7000000001286 2.7696803962186344e-06
+865.8000000001286 2.756397192695552e-06
+865.9000000001287 2.743123946747849e-06
+866.0000000001287 2.7298589948258842e-06
+866.1000000001287 2.716573359691326e-06
+866.2000000001287 2.7032927343026374e-06
+866.3000000001288 2.6900150126654286e-06
+866.4000000001288 2.6767379502672295e-06
+866.5000000001288 2.663459168512461e-06
+866.6000000001288 2.650176159180187e-06
+866.7000000001289 2.6368962154851754e-06
+866.8000000001289 2.623619337884503e-06
+866.9000000001289 2.610345526837281e-06
+867.0000000001289 2.5970747827822602e-06
+867.100000000129 2.566500874416551e-06
+867.200000000129 2.5359313461141815e-06
+867.300000000129 2.505366199756604e-06
+867.400000000129 2.474805437218671e-06
+867.500000000129 2.4442490603791696e-06
+867.6000000001291 2.4136970712172685e-06
+867.7000000001291 2.3831494714254093e-06
+867.8000000001291 2.352606262804434e-06
+867.9000000001291 2.3220674471586717e-06
+868.0000000001291 2.291533026293416e-06
+868.1000000001292 2.2609109541478186e-06
+868.2000000001292 2.230296428947744e-06
+868.3000000001292 2.199689451886622e-06
+868.4000000001292 2.1690900241608362e-06
+868.5000000001293 2.1384981469652133e-06
+868.6000000001293 2.1079253044705713e-06
+868.7000000001293 2.0773669564771923e-06
+868.8000000001293 2.046819075636811e-06
+868.9000000001294 2.0162781268125156e-06
+869.0000000001294 1.985741046400255e-06
+869.1000000001294 1.949869844335178e-06
+869.2000000001294 1.9139979396135344e-06
+869.3000000001294 1.8781236459829984e-06
+869.4000000001295 1.842245687914574e-06
+869.5000000001295 1.8063631765074094e-06
+869.6000000001295 1.770834708129632e-06
+869.7000000001295 1.7352864110188173e-06
+869.8000000001296 1.6997184084349985e-06
+869.9000000001296 1.6641311141816315e-06
+870.0000000001296 1.6285252087766986e-06
+870.1000000001296 1.5925230600103397e-06
+870.2000000001296 1.556518951538405e-06
+870.3000000001297 1.5205142230657638e-06
+870.4000000001297 1.4845103840734807e-06
+870.5000000001297 1.4485090896685968e-06
+870.6000000001297 1.4125121165059884e-06
+870.7000000001298 1.376521338439088e-06
+870.8000000001298 1.3405387026621082e-06
+870.9000000001298 1.3045662055877698e-06
+871.0000000001298 1.2686058688253181e-06
+871.1000000001299 1.2375501290050257e-06
+871.2000000001299 1.2065097697944023e-06
+871.3000000001299 1.1754867434974052e-06
+871.4000000001299 1.1444829647364575e-06
+871.50000000013 1.1135002899231385e-06
+871.60000000013 1.0825405414397823e-06
+871.70000000013 1.051597459643773e-06
+871.80000000013 1.0206710243060992e-06
+871.90000000013 9.897612178996043e-07
+872.0000000001301 9.588680254413596e-07
+872.1000000001301 9.278794763213193e-07
+872.2000000001301 8.969084491031354e-07
+872.3000000001301 8.659549354912692e-07
+872.4000000001301 8.350189291046501e-07
+872.5000000001302 8.041004253193724e-07
+872.6000000001302 7.731993892065776e-07
+872.7000000001302 7.423158339989421e-07
+872.8000000001302 7.114497716201099e-07
+872.9000000001303 6.806012127344343e-07
+873.0000000001303 6.497701667891375e-07
+873.1000000001303 6.542635963959622e-07
+873.2000000001303 6.587545850077444e-07
+873.3000000001304 6.632431392109528e-07
+873.4000000001304 6.677292657772403e-07
+873.5000000001304 6.72212971661873e-07
+873.6000000001304 6.766914963422007e-07
+873.7000000001304 6.811657868955783e-07
+873.8000000001305 6.856367478842879e-07
+873.9000000001305 6.90105239011125e-07
+874.0000000001305 6.945720728221682e-07
+874.1000000001305 6.990200764071e-07
+874.2000000001306 7.034675867863552e-07
+874.3000000001306 7.079152613990693e-07
+874.4000000001306 7.123637013642235e-07
+874.5000000001306 7.168134492302755e-07
+874.6000000001306 7.212649867198662e-07
+874.7000000001307 7.257186910831241e-07
+874.8000000001307 7.301749026330287e-07
+874.9000000001307 7.346338930691107e-07
+875.0000000001307 7.39095863174687e-07
+875.1000000001308 7.232519056928528e-07
+875.2000000001308 7.07419752412525e-07
+875.3000000001308 6.915989483443766e-07
+875.4000000001308 6.757889803284752e-07
+875.5000000001309 6.599892850540968e-07
+875.6000000001309 6.441992570660513e-07
+875.7000000001309 6.284182926100622e-07
+875.8000000001309 6.126457334963422e-07
+875.900000000131 5.968809028970723e-07
+876.000000000131 5.811231132411741e-07
+876.100000000131 5.653792663185555e-07
+876.200000000131 5.496408620648877e-07
+876.300000000131 5.339072282934742e-07
+876.4000000001311 5.1817771355181e-07
+876.5000000001311 5.024516949971863e-07
+876.6000000001311 4.867285862641858e-07
+876.7000000001311 4.710105084648968e-07
+876.8000000001311 4.5529746236878037e-07
+876.9000000001312 4.395894487448021e-07
+877.0000000001312 4.2388646837857096e-07
+877.1000000001312 4.208505281327912e-07
+877.2000000001312 4.1781580677147295e-07
+877.3000000001313 4.1478230433102064e-07
+877.4000000001313 4.11750020847391e-07
+877.5000000001313 4.0871895635696085e-07
+877.6000000001313 4.056891108956659e-07
+877.7000000001314 4.0266048449943486e-07
+877.8000000001314 3.9963307720419204e-07
+877.9000000001314 3.966068890462691e-07
+878.0000000001314 3.935819200611739e-07
+878.1000000001314 3.90570314928212e-07
+878.2000000001315 3.875597872183999e-07
+878.3000000001315 3.845503370489298e-07
+878.4000000001315 3.815419645361858e-07
+878.5000000001315 3.785346697977489e-07
+878.6000000001316 3.755274130116792e-07
+878.7000000001316 3.7252058769935346e-07
+878.8000000001316 3.695145502749859e-07
+878.9000000001316 3.6650962107741444e-07
+879.0000000001316 3.635060854063889e-07
+879.1000000001317 3.63614063463819e-07
+879.2000000001317 3.637227440208873e-07
+879.3000000001317 3.6383233871242205e-07
+879.4000000001317 3.639430346051023e-07
+879.5000000001318 3.640549941641665e-07
+879.6000000001318 3.641683702766981e-07
+879.7000000001318 3.6428327073882267e-07
+879.8000000001318 3.6439977900500946e-07
+879.9000000001319 3.645179541539831e-07
+880.0000000001319 3.6463783085213275e-07
+880.1000000001319 3.647329144954078e-07
+880.2000000001319 3.648297045320806e-07
+880.300000000132 3.6492816178720857e-07
+880.400000000132 3.6502822253456407e-07
+880.500000000132 3.6512979846397664e-07
+880.600000000132 3.652327766488742e-07
+880.700000000132 3.653370195096003e-07
+880.8000000001321 3.654423647783955e-07
+880.9000000001321 3.6554862546473265e-07
+881.0000000001321 3.6565558984211644e-07
+881.1000000001321 3.838533087516832e-07
+881.2000000001321 4.020466059257534e-07
+881.3000000001322 4.202351888162872e-07
+881.4000000001322 4.3841867851202067e-07
+881.5000000001322 4.5659660367910254e-07
+881.6000000001322 4.746721705621972e-07
+881.7000000001323 4.927354372544642e-07
+881.8000000001323 5.107864107260216e-07
+881.9000000001323 5.288250994226417e-07
+882.0000000001323 5.468515132650321e-07
+882.1000000001324 5.650505003285137e-07
+882.2000000001324 5.832519545800966e-07
+882.3000000001324 6.014558841047469e-07
+882.4000000001324 6.196622984678796e-07
+882.5000000001324 6.378712087130291e-07
+882.6000000001325 6.559497637018132e-07
+882.7000000001325 6.740235167140187e-07
+882.8000000001325 6.920924552847797e-07
+882.9000000001325 7.101565659430453e-07
+883.0000000001326 7.282158342947307e-07
+883.1000000001326 7.413638823131706e-07
+883.2000000001326 7.545080357344572e-07
+883.3000000001326 7.676482786718838e-07
+883.4000000001326 7.807845950410407e-07
+883.5000000001327 7.939169686345062e-07
+883.6000000001327 8.070442499341734e-07
+883.7000000001327 8.20166778777643e-07
+883.8000000001327 8.332848925806686e-07
+883.9000000001328 8.463989241136436e-07
+884.0000000001328 8.595091992813226e-07
+884.1000000001328 8.726571188287049e-07
+884.2000000001328 8.858016746704054e-07
+884.3000000001329 8.989431590878404e-07
+884.4000000001329 9.120818486946939e-07
+884.5000000001329 9.252180022262401e-07
+884.6000000001329 9.383518583243116e-07
+884.700000000133 9.514836876350036e-07
+884.800000000133 9.646137004382137e-07
+884.900000000133 9.777420821803409e-07
+885.000000000133 9.908689913672129e-07
+885.100000000133 1.0219658286581173e-06
+885.2000000001331 1.0530446722715776e-06
+885.3000000001331 1.0841057188431579e-06
+885.4000000001331 1.1151491248802104e-06
+885.5000000001331 1.1461750017380685e-06
+885.6000000001332 1.177183362034616e-06
+885.7000000001332 1.2081740878505666e-06
+885.8000000001332 1.2391470873191984e-06
+885.9000000001332 1.2701021970735067e-06
+886.0000000001332 1.3010391767843783e-06
+886.1000000001333 1.332214898073617e-06
+886.2000000001333 1.3633815288095366e-06
+886.3000000001333 1.3945385616721983e-06
+886.4000000001333 1.4256853902353074e-06
+886.5000000001334 1.4568213034707801e-06
+886.6000000001334 1.4882476625532873e-06
+886.7000000001334 1.519676971549661e-06
+886.8000000001334 1.5511092125452491e-06
+886.9000000001334 1.5825443663414372e-06
+887.0000000001335 1.6139824124429924e-06
+887.1000000001335 1.6288032823440381e-06
+887.2000000001335 1.6436198545259336e-06
+887.3000000001335 1.6584321111649446e-06
+887.4000000001336 1.6732400338325764e-06
+887.5000000001336 1.6880436034954722e-06
+887.6000000001336 1.702497396384572e-06
+887.7000000001336 1.7169407945101652e-06
+887.8000000001337 1.7313737797077944e-06
+887.9000000001337 1.7457963332315996e-06
+888.0000000001337 1.7602084357557676e-06
+888.1000000001337 1.7748813154337652e-06
+888.2000000001337 1.7895496316447468e-06
+888.3000000001338 1.804213360656693e-06
+888.4000000001338 1.8188724781495388e-06
+888.5000000001338 1.8335269592130129e-06
+888.6000000001338 1.848944918958901e-06
+888.7000000001339 1.8643818999012367e-06
+888.8000000001339 1.8798322327039058e-06
+888.9000000001339 1.8952905003976254e-06
+889.0000000001339 1.9107515562474374e-06
+889.100000000134 1.9205545297178973e-06
+889.200000000134 1.930334951914974e-06
+889.300000000134 1.9400887635755956e-06
+889.400000000134 1.949812288676179e-06
+889.500000000134 1.9595022462341237e-06
+889.6000000001341 1.969555266208792e-06
+889.7000000001341 1.9795733403523965e-06
+889.8000000001341 1.9895543857602637e-06
+889.9000000001341 1.999496757268282e-06
+890.0000000001342 2.009399259322137e-06
+890.1000000001342 2.019058068567421e-06
+890.2000000001342 2.028673350462467e-06
+890.3000000001342 2.0382453407809063e-06
+890.4000000001342 2.0477747711925524e-06
+890.5000000001343 2.057262880378876e-06
+890.6000000001343 2.0675509544051304e-06
+890.7000000001343 2.077809793140428e-06
+890.8000000001343 2.0880421569577535e-06
+890.9000000001344 2.098251363714924e-06
+891.0000000001344 2.1084413006151457e-06
+891.1000000001344 2.096941346403019e-06
+891.2000000001344 2.08544812223486e-06
+891.3000000001344 2.0739672928372644e-06
+891.4000000001345 2.0625048865683535e-06
+891.5000000001345 2.051067282419763e-06
+891.6000000001345 2.0396611130160246e-06
+891.7000000001345 2.028266747565989e-06
+891.8000000001346 2.016884204111232e-06
+891.9000000001346 2.005513500225448e-06
+892.0000000001346 1.994154653018937e-06
+892.1000000001346 1.98212626760818e-06
+892.2000000001347 1.9701173064239865e-06
+892.3000000001347 1.9581277737435605e-06
+892.4000000001347 1.946157673367071e-06
+892.5000000001347 1.934207008607148e-06
+892.6000000001347 1.920709135401132e-06
+892.7000000001348 1.9072488497258625e-06
+892.8000000001348 1.893826128100766e-06
+892.9000000001348 1.8804409465273702e-06
+893.0000000001348 1.8670932804879167e-06
+893.1000000001349 1.8456023008244905e-06
+893.2000000001349 1.8241523059041968e-06
+893.3000000001349 1.8027432777556555e-06
+893.4000000001349 1.7813751975617308e-06
+893.500000000135 1.7600480456710735e-06
+893.600000000135 1.7401709560809829e-06
+893.700000000135 1.7202883669527484e-06
+893.800000000135 1.7004076713168115e-06
+893.900000000135 1.6805354305604828e-06
+894.0000000001351 1.6606774045494383e-06
+894.1000000001351 1.6383367219457864e-06
+894.2000000001351 1.6160812814383402e-06
+894.3000000001351 1.593914445901185e-06
+894.4000000001352 1.5718388807457218e-06
+894.5000000001352 1.5498565891699632e-06
+894.6000000001352 1.5260724195693015e-06
+894.7000000001352 1.5024332191176316e-06
+894.8000000001352 1.4789390607642246e-06
+894.9000000001353 1.4555894932390208e-06
+895.0000000001353 1.4323835773714568e-06
+895.1000000001353 1.3861406003646422e-06
+895.2000000001353 1.3402244747596254e-06
+895.3000000001354 1.294631469322141e-06
+895.4000000001354 1.2493575970206753e-06
+895.5000000001354 1.2043986813519835e-06
+895.6000000001354 1.160988364810335e-06
+895.7000000001354 1.1177978111172265e-06
+895.8000000001355 1.0748227588674365e-06
+895.9000000001355 1.032058988173982e-06
+896.0000000001355 9.895023809970755e-07
+896.1000000001355 9.460973197459495e-07
+896.2000000001356 9.029812084264281e-07
+896.3000000001356 8.601505373945839e-07
+896.4000000001356 8.176021454110086e-07
+896.5000000001356 7.753332737057177e-07
+896.6000000001357 7.349537432750282e-07
+896.7000000001357 6.946887381997599e-07
+896.8000000001357 6.545382107437965e-07
+896.9000000001357 6.1450211480657e-07
+897.0000000001357 5.745804059692936e-07
+897.1000000001358 5.753560608949816e-07
+897.2000000001358 5.761288747897133e-07
+897.3000000001358 5.768988429252334e-07
+897.4000000001358 5.776659605460282e-07
+897.5000000001359 5.784302228669906e-07
+897.6000000001359 5.786880896267827e-07
+897.7000000001359 5.789441776385312e-07
+897.8000000001359 5.791984817492649e-07
+897.900000000136 5.794509967952641e-07
+898.000000000136 5.797017175920178e-07
+898.100000000136 5.743148872458234e-07
+898.200000000136 5.689384503256004e-07
+898.300000000136 5.635723999864204e-07
+898.4000000001361 5.582167295937966e-07
+898.5000000001361 5.528714327139207e-07
+898.6000000001361 5.4592361950507e-07
+898.7000000001361 5.389933522609528e-07
+898.8000000001362 5.320785619859564e-07
+898.9000000001362 5.251774217789491e-07
+899.0000000001362 5.182883369902435e-07
+899.1000000001362 5.109952274793612e-07
+899.2000000001362 5.035901626396933e-07
+899.3000000001363 4.960722666608293e-07
+899.4000000001363 4.884408700167886e-07
+899.5000000001363 4.806955015013955e-07
+899.6000000001363 4.7393093379056285e-07
+899.7000000001364 4.6700365620067874e-07
+899.8000000001364 4.599137055787616e-07
+899.9000000001364 4.526612842440408e-07
+900.0000000001364 4.452467514651693e-07
+900.1000000001364 4.333334711805651e-07
+900.2000000001365 4.2147328647682866e-07
+900.3000000001365 4.096669797691913e-07
+900.4000000001365 3.9791541521317685e-07
+900.5000000001365 3.8621952318425104e-07
+900.6000000001366 3.758589759691162e-07
+900.7000000001366 3.654832290438783e-07
+900.8000000001366 3.550933864694827e-07
+900.9000000001366 3.446905719523709e-07
+901.0000000001367 3.342759147376976e-07
+901.1000000001367 3.3630671706479725e-07
+901.2000000001367 3.3834121810547235e-07
+901.3000000001367 3.4038044552412615e-07
+901.4000000001367 3.424255438407143e-07
+901.5000000001368 3.444777773446329e-07
+901.6000000001368 3.455354440029127e-07
+901.7000000001368 3.4659089570886054e-07
+901.8000000001368 3.4764412982905944e-07
+901.9000000001369 3.486951440257163e-07
+902.0000000001369 3.497439362573949e-07
+902.1000000001369 3.503938557357447e-07
+902.2000000001369 3.510395147576227e-07
+902.300000000137 3.5168091592030735e-07
+902.400000000137 3.5231806215127583e-07
+902.500000000137 3.5295095671797453e-07
+902.600000000137 3.550947019030626e-07
+902.700000000137 3.5724363744963293e-07
+902.8000000001371 3.593977498839578e-07
+902.9000000001371 3.6155702531163917e-07
+903.0000000001371 3.6372144939730424e-07
+903.1000000001371 3.5992222283320426e-07
+903.2000000001372 3.5602700710182076e-07
+903.3000000001372 3.520359400948884e-07
+903.4000000001372 3.4794915955842496e-07
+903.5000000001372 3.4376680312111413e-07
+903.6000000001372 3.3862406364220806e-07
+903.7000000001373 3.3342033471239645e-07
+903.8000000001373 3.2815603984825297e-07
+903.9000000001373 3.228315622835423e-07
+904.0000000001373 3.174472461772081e-07
+904.1000000001374 3.102700959125953e-07
+904.2000000001374 3.031118466562727e-07
+904.3000000001374 2.959726093217141e-07
+904.4000000001374 2.8885245914419944e-07
+904.5000000001374 2.817514381300088e-07
+904.6000000001375 2.746119868522041e-07
+904.7000000001375 2.674944948558577e-07
+904.8000000001375 2.603989078682248e-07
+904.9000000001375 2.533251484602408e-07
+905.0000000001376 2.46273118519505e-07
+905.1000000001376 2.5886182083577616e-07
+905.2000000001376 2.71439997511204e-07
+905.3000000001376 2.840077988457129e-07
+905.4000000001377 2.9656534899162764e-07
+905.5000000001377 3.0911274169302985e-07
+905.6000000001377 3.213114570555261e-07
+905.7000000001377 3.3347374016972766e-07
+905.8000000001377 3.4559960786606903e-07
+905.9000000001378 3.5768903108641107e-07
+906.0000000001378 3.697419309985324e-07
+906.1000000001378 3.8027205047559246e-07
+906.2000000001378 3.9066450506556836e-07
+906.3000000001379 4.0091918302758365e-07
+906.4000000001379 4.110359131690604e-07
+906.5000000001379 4.2101446255814397e-07
+906.6000000001379 4.306664293422567e-07
+906.700000000138 4.401707157299294e-07
+906.800000000138 4.495275121772191e-07
+906.900000000138 4.587370091252534e-07
+907.000000000138 4.677993969782752e-07
+907.100000000138 4.593624372626004e-07
+907.2000000001381 4.5096237163859045e-07
+907.3000000001381 4.4259915941647374e-07
+907.4000000001381 4.3427275990972364e-07
+907.5000000001381 4.259831324321981e-07
+907.6000000001382 4.1829716266997734e-07
+907.7000000001382 4.1062784960185275e-07
+907.8000000001382 4.0297517951033545e-07
+907.9000000001382 3.9533913867735937e-07
+908.0000000001382 3.8771971338975157e-07
+908.1000000001383 3.806944094321818e-07
+908.2000000001383 3.7366295270250794e-07
+908.3000000001383 3.6662536172711077e-07
+908.4000000001383 3.5958165502814274e-07
+908.5000000001384 3.525318511242198e-07
+908.6000000001384 3.453198432592978e-07
+908.7000000001384 3.381081368446119e-07
+908.8000000001384 3.3089690944857233e-07
+908.9000000001384 3.2368631471756373e-07
+909.0000000001385 3.1647648360053274e-07
+909.1000000001385 3.192630042179755e-07
+909.2000000001385 3.2205371544043795e-07
+909.3000000001385 3.2484870879109894e-07
+909.4000000001386 3.276480680222681e-07
+909.5000000001386 3.304518686565763e-07
+909.6000000001386 3.3311143386381696e-07
+909.7000000001386 3.3577345522649866e-07
+909.8000000001387 3.3843798310194104e-07
+909.9000000001387 3.4110505768071065e-07
+910.0000000001387 3.4377470854020457e-07
+910.1000000001387 3.4556942276490014e-07
+910.2000000001387 3.4735532473304697e-07
+910.3000000001388 3.4913242077497733e-07
+910.4000000001388 3.509007049570469e-07
+910.5000000001388 3.526601587942437e-07
+910.6000000001388 3.560025351404837e-07
+910.7000000001389 3.593566873854596e-07
+910.8000000001389 3.627225343477787e-07
+910.9000000001389 3.66099979736561e-07
+911.0000000001389 3.6948891157494805e-07
+911.100000000139 3.868751024066444e-07
+911.200000000139 4.042903813350033e-07
+911.300000000139 4.217345413156167e-07
+911.400000000139 4.3920733365243686e-07
+911.500000000139 4.5670846494370975e-07
+911.6000000001391 4.724699906431672e-07
+911.7000000001391 4.881339807372503e-07
+911.8000000001391 5.037005494228396e-07
+911.9000000001391 5.191698109126974e-07
+912.0000000001392 5.345418794390946e-07
+912.1000000001392 5.527531559712657e-07
+912.2000000001392 5.710450346886849e-07
+912.3000000001392 5.894173806569082e-07
+912.4000000001392 6.078700589164676e-07
+912.5000000001393 6.264029344683693e-07
+912.6000000001393 6.396618742690909e-07
+912.7000000001393 6.52721618315206e-07
+912.8000000001393 6.655824202339495e-07
+912.9000000001394 6.782445336959956e-07
+913.0000000001394 6.907082124020149e-07
+913.1000000001394 6.913181443596008e-07
+913.2000000001394 6.918598996935495e-07
+913.3000000001394 6.923335766631822e-07
+913.4000000001395 6.92739273538447e-07
+913.5000000001395 6.930770886207358e-07
+913.6000000001395 7.017876947763515e-07
+913.7000000001395 7.105475820228538e-07
+913.8000000001396 7.193563628611483e-07
+913.9000000001396 7.282136584246212e-07
+914.0000000001396 7.371190997604736e-07
+914.1000000001396 7.479411504390043e-07
+914.2000000001397 7.58835049480041e-07
+914.3000000001397 7.698004097298705e-07
+914.4000000001397 7.808368571872487e-07
+914.5000000001397 7.919440326418289e-07
+914.6000000001397 7.953158432279677e-07
+914.7000000001398 7.986578249554977e-07
+914.8000000001398 8.019699116112997e-07
+914.9000000001398 8.052520621980452e-07
+915.0000000001398 8.085042614932997e-07
+915.1000000001399 8.22267223697821e-07
+915.2000000001399 8.355136003362483e-07
+915.3000000001399 8.482441659411386e-07
+915.4000000001399 8.60459733166786e-07
+915.50000000014 8.721611544145104e-07
+915.60000000014 8.964406713978249e-07
+915.70000000014 9.208333649999566e-07
+915.80000000014 9.453390592321059e-07
+915.90000000014 9.699576296426502e-07
+916.0000000001401 9.94689007846267e-07
+916.1000000001401 1.0279068848356242e-06
+916.2000000001401 1.0615931948795378e-06
+916.3000000001401 1.095747456492072e-06
+916.4000000001402 1.130369277122871e-06
+916.5000000001402 1.165458360921415e-06
+916.6000000001402 1.1889271696967093e-06
+916.7000000001402 1.2123993322773554e-06
+916.8000000001402 1.2358747916029037e-06
+916.9000000001403 1.2593534906165938e-06
+917.0000000001403 1.2828353722197047e-06
+917.1000000001403 1.2875465641981785e-06
+917.2000000001403 1.2920421630692287e-06
+917.3000000001404 1.2963225350066347e-06
+917.4000000001404 1.3003880462827202e-06
+917.5000000001404 1.3042390632850654e-06
+917.6000000001404 1.3137712688331522e-06
+917.7000000001404 1.3232092290311903e-06
+917.8000000001405 1.3325531105211225e-06
+917.9000000001405 1.3418030819414736e-06
+918.0000000001405 1.3509593139961075e-06
+918.1000000001405 1.3726022189601281e-06
+918.2000000001406 1.3943926143839984e-06
+918.3000000001406 1.4163302538483656e-06
+918.4000000001406 1.43841489434263e-06
+918.5000000001406 1.4606462964186927e-06
+918.6000000001407 1.4833510335546744e-06
+918.7000000001407 1.5062093057356865e-06
+918.8000000001407 1.529220164635889e-06
+918.9000000001407 1.5523826709852924e-06
+919.0000000001407 1.575695897729416e-06
+919.1000000001408 1.584760798232057e-06
+919.2000000001408 1.5938372987106779e-06
+919.3000000001408 1.6029248365602693e-06
+919.4000000001408 1.6120228920705346e-06
+919.5000000001409 1.621130989903537e-06
+919.6000000001409 1.6274901753564714e-06
+919.7000000001409 1.633837125769107e-06
+919.8000000001409 1.6401716224861355e-06
+919.900000000141 1.6464934995345e-06
+920.000000000141 1.6528026447189617e-06
+920.100000000141 1.6641314078589695e-06
+920.200000000141 1.675485854481288e-06
+920.300000000141 1.6868659295179148e-06
+920.4000000001411 1.6982716372701644e-06
+920.5000000001411 1.7097030433359903e-06
+920.6000000001411 1.7157861292175023e-06
+920.7000000001411 1.7218549664165082e-06
+920.8000000001412 1.727909921583751e-06
+920.9000000001412 1.7339514252830826e-06
+921.0000000001412 1.7399799729724307e-06
+921.1000000001412 1.7367561284062166e-06
+921.2000000001412 1.733522802748299e-06
+921.3000000001413 1.7302807102815083e-06
+921.4000000001413 1.7270306182198477e-06
+921.5000000001413 1.723773346127967e-06
+921.6000000001413 1.724525240773966e-06
+921.7000000001414 1.7252735104531007e-06
+921.8000000001414 1.7260181942672031e-06
+921.9000000001414 1.7267593261166845e-06
+922.0000000001414 1.7274969346829276e-06
+922.1000000001414 1.7326609319655394e-06
+922.2000000001415 1.7378273164876772e-06
+922.3000000001415 1.7429960786229432e-06
+922.4000000001415 1.7481672035328928e-06
+922.5000000001415 1.7533406710624778e-06
+922.6000000001416 1.7541075220579555e-06
+922.7000000001416 1.7548712142498824e-06
+922.8000000001416 1.7556316907580252e-06
+922.9000000001416 1.7563888963757175e-06
+923.0000000001417 1.7571427775524143e-06
+923.1000000001417 1.739263511244073e-06
+923.2000000001417 1.7214322531376597e-06
+923.3000000001417 1.7036488972636842e-06
+923.4000000001417 1.6859133414428414e-06
+923.5000000001418 1.6682254871870767e-06
+923.6000000001418 1.6498986743377998e-06
+923.7000000001418 1.631638568344287e-06
+923.8000000001418 1.6134419376813824e-06
+923.9000000001419 1.595305901308671e-06
+924.0000000001419 1.5772279153390811e-06
+924.1000000001419 1.5594792192762617e-06
+924.2000000001419 1.5417772348582875e-06
+924.300000000142 1.52412036309157e-06
+924.400000000142 1.5065072893535473e-06
+924.500000000142 1.4889369709691062e-06
+924.600000000142 1.4726634357700617e-06
+924.700000000142 1.4564042472182656e-06
+924.8000000001421 1.4401592083761703e-06
+924.9000000001421 1.4239283414138724e-06
+925.0000000001421 1.4077118765902828e-06
+925.1000000001421 1.3883368790795364e-06
+925.2000000001422 1.3689253603200635e-06
+925.3000000001422 1.349478327859107e-06
+925.4000000001422 1.3299969513617881e-06
+925.5000000001422 1.3104825493250492e-06
+925.6000000001422 1.2903903165890189e-06
+925.7000000001423 1.2702858358361e-06
+925.8000000001423 1.2501706879699387e-06
+925.9000000001423 1.2300465488676565e-06
+926.0000000001423 1.2099151758944504e-06
+926.1000000001424 1.1892550064967194e-06
+926.2000000001424 1.1686103490671099e-06
+926.3000000001424 1.1479830810459977e-06
+926.4000000001424 1.1273751041772288e-06
+926.5000000001424 1.1067883310410657e-06
+926.6000000001425 1.0869103745873253e-06
+926.7000000001425 1.0670228427675224e-06
+926.8000000001425 1.047125823812022e-06
+926.9000000001425 1.027219404031542e-06
+927.0000000001426 1.0073036680190295e-06
+927.1000000001426 9.927425644632564e-07
+927.2000000001426 9.782938337160789e-07
+927.3000000001426 9.639572245725158e-07
+927.4000000001427 9.497324847797623e-07
+927.5000000001427 9.356193611589198e-07
+927.6000000001427 9.196249511101548e-07
+927.7000000001427 9.037805094150223e-07
+927.8000000001427 8.880857000785858e-07
+927.9000000001428 8.725401884554559e-07
+928.0000000001428 8.571436411838382e-07
+928.1000000001428 8.473201002248573e-07
+928.2000000001428 8.3753437740732e-07
+928.3000000001429 8.277864068226658e-07
+928.4000000001429 8.180761233905888e-07
+928.5000000001429 8.08403462807195e-07
+928.6000000001429 7.978740693976829e-07
+928.700000000143 7.874046419845091e-07
+928.800000000143 7.769931667966694e-07
+928.900000000143 7.666378536274668e-07
+929.000000000143 7.563371259954193e-07
+929.100000000143 7.518468429548939e-07
+929.2000000001431 7.473629921543397e-07
+929.3000000001431 7.428845668060888e-07
+929.4000000001431 7.384107089297938e-07
+929.5000000001431 7.339407055505411e-07
+929.6000000001432 7.263988889091763e-07
+929.7000000001432 7.188688132845987e-07
+929.8000000001432 7.113502925810128e-07
+929.9000000001432 7.038432745201165e-07
+930.0000000001432 6.963478343265379e-07
+930.1000000001433 6.895152898478825e-07
+930.2000000001433 6.826932702827615e-07
+930.3000000001433 6.758821754053557e-07
+930.4000000001433 6.690825088280254e-07
+930.5000000001434 6.622948723998332e-07
+930.6000000001434 6.556882424248284e-07
+930.7000000001434 6.490945593670333e-07
+930.8000000001434 6.425146643471502e-07
+930.9000000001435 6.359494763559064e-07
+931.0000000001435 6.293999869639446e-07
+931.1000000001435 6.173498576581294e-07
+931.2000000001435 6.054265745339669e-07
+931.3000000001435 5.93630985934595e-07
+931.4000000001436 5.819639478574383e-07
+931.5000000001436 5.704263167061307e-07
+931.6000000001436 5.538121154131485e-07
+931.7000000001436 5.374262944756297e-07
+931.8000000001437 5.212682095811199e-07
+931.9000000001437 5.053372149109281e-07
+932.0000000001437 4.896326633586812e-07
+932.1000000001437 4.807165490387246e-07
+932.2000000001437 4.718910589287648e-07
+932.3000000001438 4.631559457339363e-07
+932.4000000001438 4.5451096124932315e-07
+932.5000000001438 4.459558564649781e-07
+932.6000000001438 4.420446264518319e-07
+932.7000000001439 4.3812463327217464e-07
+932.8000000001439 4.341959236102992e-07
+932.9000000001439 4.302585440857559e-07
+933.0000000001439 4.2631254123308067e-07
+933.100000000144 4.1171364415086436e-07
+933.200000000144 3.972872546974712e-07
+933.300000000144 3.830328715886457e-07
+933.400000000144 3.6894999420094354e-07
+933.500000000144 3.550381225513517e-07
+933.6000000001441 3.354109325714432e-07
+933.7000000001441 3.16349377040862e-07
+933.8000000001441 2.978522167451927e-07
+933.9000000001441 2.799180786466322e-07
+934.0000000001442 2.625454725524451e-07
+934.1000000001442 2.499496815158096e-07
+934.2000000001442 2.3757372073575055e-07
+934.3000000001442 2.25416988359643e-07
+934.4000000001442 2.1347882470204245e-07
+934.5000000001443 2.0175852014286477e-07
+934.6000000001443 1.9839620007028217e-07
+934.7000000001443 1.9444372090229082e-07
+934.8000000001443 1.8990306963429826e-07
+934.9000000001444 1.8477618169949244e-07
+935.0000000001444 1.790649418410695e-07
+935.1000000001444 1.8149689975685862e-07
+935.2000000001444 1.8394352974604336e-07
+935.3000000001445 1.8640480901732963e-07
+935.4000000001445 1.8888069478101722e-07
+935.5000000001445 1.913711229414539e-07
+935.6000000001445 1.9075903718658658e-07
+935.7000000001445 1.9013064495612044e-07
+935.8000000001446 1.8948585732737836e-07
+935.9000000001446 1.8882456730010686e-07
+936.0000000001446 1.8814665025720928e-07
+936.1000000001446 1.897136575030204e-07
+936.2000000001447 1.912852494741103e-07
+936.3000000001447 1.9286118004891476e-07
+936.4000000001447 1.944411757175136e-07
+936.5000000001447 1.96024934703902e-07
+936.6000000001447 1.9584889008893679e-07
+936.7000000001448 1.956615390197648e-07
+936.8000000001448 1.954629181008914e-07
+936.9000000001448 1.9525306390626313e-07
+937.0000000001448 1.9503201299499085e-07
+937.1000000001449 2.0205793182019054e-07
+937.2000000001449 2.0917670060625813e-07
+937.3000000001449 2.1638798834197e-07
+937.4000000001449 2.2369146459385014e-07
+937.500000000145 2.310867995125177e-07
+937.600000000145 2.3712127692739273e-07
+937.700000000145 2.4318416372811974e-07
+937.800000000145 2.4927533919601004e-07
+937.900000000145 2.553946829829164e-07
+938.0000000001451 2.615420751123665e-07
+938.1000000001451 2.678705812276278e-07
+938.2000000001451 2.7423340358565234e-07
+938.3000000001451 2.8063040283015674e-07
+938.4000000001452 2.8706144001337673e-07
+938.5000000001452 2.9352637661954366e-07
+938.6000000001452 3.0679325085233505e-07
+938.7000000001452 3.2032579763786336e-07
+938.8000000001452 3.3412423276901436e-07
+938.9000000001453 3.4818889706894464e-07
+939.0000000001453 3.625202443487739e-07
+939.1000000001453 3.647451855424812e-07
+939.2000000001453 3.6665859633953566e-07
+939.3000000001454 3.682626339803691e-07
+939.4000000001454 3.6955932516925097e-07
+939.5000000001454 3.7055055564657344e-07
+939.6000000001454 3.6204768825021715e-07
+939.7000000001455 3.536137334459158e-07
+939.8000000001455 3.452484089584029e-07
+939.9000000001455 3.369512881565077e-07
+940.0000000001455 3.287218145671055e-07
+940.1000000001455 3.177192574528557e-07
+940.2000000001456 3.069073906540104e-07
+940.3000000001456 2.9628488331480814e-07
+940.4000000001456 2.858503559340914e-07
+940.5000000001456 2.756023965437721e-07
+940.6000000001457 2.6879598171880884e-07
+940.7000000001457 2.620139614137921e-07
+940.8000000001457 2.552553938542381e-07
+940.9000000001457 2.485193142540555e-07
+941.0000000001457 2.418047457065298e-07
+941.1000000001458 2.586336556320996e-07
+941.2000000001458 2.7566292639729635e-07
+941.3000000001458 2.9289114497453347e-07
+941.4000000001458 3.1031652875535544e-07
+941.5000000001459 3.279368881991367e-07
+941.6000000001459 3.427757891997262e-07
+941.7000000001459 3.5754501391936055e-07
+941.8000000001459 3.7224465934784786e-07
+941.900000000146 3.868748218822955e-07
+942.000000000146 4.0143559731303346e-07
+942.100000000146 4.0869270038694015e-07
+942.200000000146 4.153491712725063e-07
+942.300000000146 4.2140643369647103e-07
+942.4000000001461 4.2686591128688535e-07
+942.5000000001461 4.317290276438816e-07
+942.6000000001461 4.3839765454369914e-07
+942.7000000001461 4.446193186167617e-07
+942.8000000001462 4.503950759368387e-07
+942.9000000001462 4.5572598258645104e-07
+943.0000000001462 4.6061309474722615e-07
+943.1000000001462 4.804886635905683e-07
+943.2000000001462 5.007010355624033e-07
+943.3000000001463 5.212493046658606e-07
+943.4000000001463 5.421325636948741e-07
+943.5000000001463 5.633499041612334e-07
+943.6000000001463 5.717245806851759e-07
+943.7000000001464 5.797742375780154e-07
+943.8000000001464 5.875008605853846e-07
+943.9000000001464 5.949064121112585e-07
+944.0000000001464 6.01992817960798e-07
+944.1000000001465 6.09507812156776e-07
+944.2000000001465 6.167411405710346e-07
+944.3000000001465 6.236944530324034e-07
+944.4000000001465 6.303693236595042e-07
+944.5000000001465 6.367672415954352e-07
+944.6000000001466 6.665847982728715e-07
+944.7000000001466 6.970590316778393e-07
+944.8000000001466 7.281897989191473e-07
+944.9000000001466 7.599769467135845e-07
+945.0000000001467 7.924202876209071e-07
+945.1000000001467 8.062539229696458e-07
+945.2000000001467 8.201662714070056e-07
+945.3000000001467 8.341574463263876e-07
+945.4000000001467 8.482274085238802e-07
+945.5000000001468 8.623759539775231e-07
+945.6000000001468 8.618272102899362e-07
+945.7000000001468 8.609896654177169e-07
+945.8000000001468 8.598628858863183e-07
+945.9000000001469 8.584462850798379e-07
+946.0000000001469 8.567391280644509e-07
+946.1000000001469 8.713352780068493e-07
+946.2000000001469 8.860256269114433e-07
+946.300000000147 9.008082677469163e-07
+946.400000000147 9.156810248496109e-07
+946.500000000147 9.306414396995392e-07
+946.600000000147 9.535719710412742e-07
+946.700000000147 9.76763278583513e-07
+946.8000000001471 1.0002147453402269e-06
+946.9000000001471 1.0239257518373526e-06
+947.0000000001471 1.0478956759343244e-06
+947.1000000001471 1.0523941154311728e-06
+947.2000000001472 1.0568624238186922e-06
+947.3000000001472 1.0613006277014942e-06
+947.4000000001472 1.0657087524439283e-06
+947.5000000001472 1.0700868220970653e-06
+947.6000000001472 1.0576972847436307e-06
+947.7000000001473 1.0450881215801438e-06
+947.8000000001473 1.0322598531227217e-06
+947.9000000001473 1.0192130006404775e-06
+948.0000000001473 1.005948086137376e-06
+948.1000000001474 1.0195812152329335e-06
+948.2000000001474 1.0332932306483922e-06
+948.3000000001474 1.0470839240079672e-06
+948.4000000001474 1.0609530890498755e-06
+948.5000000001475 1.0749005217709768e-06
+948.6000000001475 1.1090813158732084e-06
+948.7000000001475 1.1435514674460344e-06
+948.8000000001475 1.17830975903544e-06
+948.9000000001475 1.2133549495940207e-06
+949.0000000001476 1.2486857787142365e-06
+949.1000000001476 1.2531891212199157e-06
+949.2000000001476 1.25716029338426e-06
+949.3000000001476 1.2605999399620799e-06
+949.4000000001477 1.263508747362749e-06
+949.5000000001477 1.2658874455167e-06
+949.6000000001477 1.2604449789718567e-06
+949.7000000001477 1.2542602815926834e-06
+949.8000000001477 1.2473347534650633e-06
+949.9000000001478 1.2396698502729416e-06
+950.0000000001478 1.231267082843343e-06
+950.1000000001478 1.2672180450417564e-06
+950.2000000001478 1.3036570125856886e-06
+950.3000000001479 1.3405826585346513e-06
+950.4000000001479 1.3779937002466314e-06
+950.5000000001479 1.4158889059143542e-06
+950.6000000001479 1.4701781810697174e-06
+950.700000000148 1.525350212517664e-06
+950.800000000148 1.5814029795911974e-06
+950.900000000148 1.6383345507013746e-06
+951.000000000148 1.6961430947365515e-06
+951.100000000148 1.6921245722771857e-06
+951.2000000001481 1.688091277671166e-06
+951.3000000001481 1.684043883441024e-06
+951.4000000001481 1.6799831129300872e-06
+951.5000000001481 1.6759097394441176e-06
+951.6000000001482 1.6361376545350371e-06
+951.7000000001482 1.5962933454293553e-06
+951.8000000001482 1.556377202432206e-06
+951.9000000001482 1.516389614519195e-06
+952.0000000001482 1.4763309694027982e-06
+952.1000000001483 1.4670429833255883e-06
+952.2000000001483 1.45773284399072e-06
+952.3000000001483 1.448400657084523e-06
+952.4000000001483 1.4390465279907124e-06
+952.5000000001484 1.429670561876853e-06
+952.6000000001484 1.4537158895033577e-06
+952.7000000001484 1.4777947733035741e-06
+952.8000000001484 1.5019070461284533e-06
+952.9000000001485 1.5260525414209104e-06
+953.0000000001485 1.5502310930950816e-06
+953.1000000001485 1.566839191112232e-06
+953.2000000001485 1.583481623803543e-06
+953.3000000001485 1.6001582618592942e-06
+953.4000000001486 1.6168689754254995e-06
+953.5000000001486 1.633613633993283e-06
+953.6000000001486 1.6396909702939727e-06
+953.7000000001486 1.6457759115564549e-06
+953.8000000001487 1.6518669082733283e-06
+953.9000000001487 1.6579624991534759e-06
+954.0000000001487 1.6640613130366393e-06
+954.1000000001487 1.6610506091027059e-06
+954.2000000001487 1.6580170703931433e-06
+954.3000000001488 1.6549597799870066e-06
+954.4000000001488 1.651877938919726e-06
+954.5000000001488 1.648770865243698e-06
+954.6000000001488 1.6534474376530213e-06
+954.7000000001489 1.6581173033342985e-06
+954.8000000001489 1.6627799821818965e-06
+954.9000000001489 1.6674351009050136e-06
+955.0000000001489 1.6720823945413372e-06
+955.100000000149 1.6729294945414325e-06
+955.200000000149 1.6737032605420792e-06
+955.300000000149 1.6744039989434474e-06
+955.400000000149 1.6750321299782464e-06
+955.500000000149 1.6755881877752246e-06
+955.6000000001491 1.6756260565014833e-06
+955.7000000001491 1.6755898335538015e-06
+955.8000000001491 1.6754804156341699e-06
+955.9000000001491 1.675298815571984e-06
+956.0000000001492 1.6750461619038501e-06
+956.1000000001492 1.6836807795857857e-06
+956.2000000001492 1.692316052870967e-06
+956.3000000001492 1.7009532207488856e-06
+956.4000000001492 1.7095936661192093e-06
+956.5000000001493 1.7182389187365117e-06
+956.6000000001493 1.729211747552461e-06
+956.7000000001493 1.7402032181086283e-06
+956.8000000001493 1.7512131840025132e-06
+956.9000000001494 1.762241498332059e-06
+957.0000000001494 1.7732880137871861e-06
+957.1000000001494 1.8178896575898291e-06
+957.2000000001494 1.862957593452645e-06
+957.3000000001495 1.9084902214587565e-06
+957.4000000001495 1.954485938757624e-06
+957.5000000001495 2.000943139452518e-06
+957.6000000001495 2.020139519084715e-06
+957.7000000001495 2.039349192109709e-06
+957.8000000001496 2.0585720302596724e-06
+957.9000000001496 2.0778079067396647e-06
+958.0000000001496 2.09705669617474e-06
+958.1000000001496 2.098456396271929e-06
+958.2000000001497 2.0995945740680593e-06
+958.3000000001497 2.100471911655086e-06
+958.4000000001497 2.1010890918080872e-06
+958.5000000001497 2.1014467979564376e-06
+958.6000000001497 2.103152508293571e-06
+958.7000000001498 2.104625500844421e-06
+958.8000000001498 2.105865370436595e-06
+958.9000000001498 2.106871780558739e-06
+959.0000000001498 2.1076444645505272e-06
+959.1000000001499 2.113406702524128e-06
+959.2000000001499 2.1189717908209574e-06
+959.3000000001499 2.124339565814154e-06
+959.4000000001499 2.129509931205883e-06
+959.50000000015 2.134482859521168e-06
+959.60000000015 2.168618325657684e-06
+959.70000000015 2.202984482624932e-06
+959.80000000015 2.237580008230795e-06
+959.90000000015 2.2724036347004627e-06
+960.0000000001501 2.3074541540079382e-06
+960.1000000001501 2.3419782728985247e-06
+960.2000000001501 2.3767133408999176e-06
+960.3000000001501 2.411658331845895e-06
+960.4000000001502 2.4468123018824703e-06
+960.5000000001502 2.4821743951994954e-06
+960.6000000001502 2.511574629527473e-06
+960.7000000001502 2.5411008619044035e-06
+960.8000000001502 2.5707528435035214e-06
+960.9000000001503 2.6005304388007265e-06
+961.0000000001503 2.63043363104292e-06
+961.1000000001503 2.6720364081528013e-06
+961.2000000001503 2.7138650012418935e-06
+961.3000000001504 2.7559195051140277e-06
+961.4000000001504 2.798200174514709e-06
+961.5000000001504 2.8407074322457446e-06
+961.6000000001504 2.855152911194855e-06
+961.7000000001505 2.8692579999613616e-06
+961.8000000001505 2.883023510277891e-06
+961.9000000001505 2.896450251446291e-06
+962.0000000001505 2.9095390302354533e-06
+962.1000000001505 2.9094394274675135e-06
+962.2000000001506 2.908762213881546e-06
+962.3000000001506 2.9075091082353186e-06
+962.4000000001506 2.9056818274324563e-06
+962.5000000001506 2.903282086740604e-06
+962.6000000001507 2.953569042820863e-06
+962.7000000001507 3.004226099980618e-06
+962.8000000001507 3.05525178323831e-06
+962.9000000001507 3.10664462353655e-06
+963.0000000001507 3.1584031581014334e-06
+963.1000000001508 3.214858270570998e-06
+963.2000000001508 3.2717408451974906e-06
+963.3000000001508 3.3290493271445882e-06
+963.4000000001508 3.386782169074769e-06
+963.5000000001509 3.444937831445943e-06
+963.6000000001509 3.4678603424340733e-06
+963.7000000001509 3.4905537889000023e-06
+963.8000000001509 3.5130171098700195e-06
+963.900000000151 3.535249318109058e-06
+964.000000000151 3.5572495047777546e-06
+964.100000000151 3.5885847760635254e-06
+964.200000000151 3.619853880647938e-06
+964.300000000151 3.6510555660798384e-06
+964.4000000001511 3.6821886635756403e-06
+964.5000000001511 3.7132520933501307e-06
+964.6000000001511 3.7574878956073445e-06
+964.7000000001511 3.8018648113317696e-06
+964.8000000001512 3.8463812139622045e-06
+964.9000000001512 3.891035584969653e-06
+965.0000000001512 3.935826521305006e-06
+965.1000000001512 4.015186551072533e-06
+965.2000000001512 4.0950523007480455e-06
+965.3000000001513 4.1754210540013055e-06
+965.4000000001513 4.256290246382756e-06
+965.5000000001513 4.3376574791777994e-06
+965.6000000001513 4.377005949448138e-06
+965.7000000001514 4.4157453225761965e-06
+965.8000000001514 4.453878099351476e-06
+965.9000000001514 4.491406968930037e-06
+966.0000000001514 4.528334813361213e-06
+966.1000000001515 4.547256661644963e-06
+966.2000000001515 4.565159334270435e-06
+966.3000000001515 4.582047527144363e-06
+966.4000000001515 4.597926115670457e-06
+966.5000000001515 4.612800153359434e-06
+966.6000000001516 4.685834187722411e-06
+966.7000000001516 4.75920536070463e-06
+966.8000000001516 4.83291198151133e-06
+966.9000000001516 4.906952356250433e-06
+967.0000000001517 4.981324788454225e-06
+967.1000000001517 5.141798924229811e-06
+967.2000000001517 5.304626635344888e-06
+967.3000000001517 5.469798940048663e-06
+967.4000000001517 5.637306845947585e-06
+967.5000000001518 5.807141350242526e-06
+967.6000000001518 5.921775654926744e-06
+967.7000000001518 6.0370583811594775e-06
+967.8000000001518 6.1529863630045545e-06
+967.9000000001519 6.269556432896741e-06
+968.0000000001519 6.38676542197613e-06
+968.1000000001519 6.4459327029337046e-06
+968.2000000001519 6.504189668870683e-06
+968.300000000152 6.56153896728522e-06
+968.400000000152 6.617983251206458e-06
+968.500000000152 6.673525179702673e-06
+968.600000000152 6.77486909639366e-06
+968.700000000152 6.876457779079846e-06
+968.8000000001521 6.978286694754425e-06
+968.9000000001521 7.080351381091994e-06
+969.0000000001521 7.182647462698799e-06
+969.1000000001521 7.288259027121209e-06
+969.2000000001522 7.39412234546787e-06
+969.3000000001522 7.500233418853e-06
+969.4000000001522 7.606588397859184e-06
+969.5000000001522 7.713183599743668e-06
+969.6000000001522 7.782333296296115e-06
+969.7000000001523 7.85089162060446e-06
+969.8000000001523 7.918858386146352e-06
+969.9000000001523 7.986233645246752e-06
+970.0000000001523 8.053017701149041e-06
+970.1000000001524 8.129891947510721e-06
+970.2000000001524 8.206396529041487e-06
+970.3000000001524 8.282531607659348e-06
+970.4000000001524 8.358297640788652e-06
+970.5000000001525 8.433695393993786e-06
+970.6000000001525 8.537777661425659e-06
+970.7000000001525 8.642053626926862e-06
+970.8000000001525 8.746522978422069e-06
+970.9000000001525 8.8511857747678e-06
+971.0000000001526 8.956042462634957e-06
+971.1000000001526 9.01651896042693e-06
+971.2000000001526 9.076429196955222e-06
+971.3000000001526 9.135778055913995e-06
+971.4000000001527 9.194570802899566e-06
+971.5000000001527 9.252813092433539e-06
+971.6000000001527 9.322422461380272e-06
+971.7000000001527 9.391674953902487e-06
+971.8000000001527 9.46057123143935e-06
+971.9000000001528 9.529111966760121e-06
+972.0000000001528 9.597297844396861e-06
+972.1000000001528 9.669063675802356e-06
+972.2000000001528 9.740534522902347e-06
+972.3000000001529 9.811710838475668e-06
+972.4000000001529 9.882593088507525e-06
+972.5000000001529 9.953181752427205e-06
+972.6000000001529 1.0002004579398953e-05
+972.700000000153 1.005021520954163e-05
+972.800000000153 1.009781527786029e-05
+972.900000000153 1.0144806405491543e-05
+973.000000000153 1.019119019946146e-05
+973.100000000153 1.0158549328299369e-05
+973.2000000001531 1.0125964412832968e-05
+973.3000000001531 1.0093435214386912e-05
+973.4000000001531 1.0060961486869145e-05
+973.5000000001531 1.0028542976985769e-05
+973.6000000001532 1.000713534144826e-05
+973.7000000001532 9.985751082633144e-06
+973.8000000001532 9.964390262264978e-06
+973.9000000001532 9.943052951640276e-06
+974.0000000001532 9.921739231400562e-06
+974.1000000001533 9.888279372086706e-06
+974.2000000001533 9.854876298198912e-06
+974.3000000001533 9.821530115128774e-06
+974.4000000001533 9.788240936648645e-06
+974.5000000001534 9.755008884726509e-06
+974.6000000001534 9.7218336877816e-06
+974.7000000001534 9.688715077735748e-06
+974.8000000001534 9.65565317910307e-06
+974.9000000001535 9.622648104755237e-06
+975.0000000001535 9.58969995617913e-06
+975.1000000001535 9.581229239216834e-06
+975.2000000001535 9.572739791028388e-06
+975.3000000001535 9.564231724654097e-06
+975.4000000001536 9.555705143097857e-06
+975.5000000001536 9.547160139354363e-06
+975.6000000001536 9.521598525136643e-06
+975.7000000001536 9.496079972294691e-06
+975.8000000001537 9.47060421436345e-06
+975.9000000001537 9.445170996984678e-06
+976.0000000001537 9.419780077801836e-06
+976.1000000001537 9.424227310849453e-06
+976.2000000001538 9.428611332824361e-06
+976.3000000001538 9.432932040277275e-06
+976.4000000001538 9.437189339053862e-06
+976.5000000001538 9.441383144449874e-06
+976.6000000001538 9.48308669368296e-06
+976.7000000001539 9.524593186658656e-06
+976.8000000001539 9.565902690789944e-06
+976.9000000001539 9.607015281163226e-06
+977.0000000001539 9.64793104063131e-06
+977.100000000154 9.67261227679009e-06
+977.200000000154 9.697251989335326e-06
+977.300000000154 9.721849845419034e-06
+977.400000000154 9.746405521190635e-06
+977.500000000154 9.770918701809507e-06
+977.6000000001541 9.747788014194596e-06
+977.7000000001541 9.724638541056668e-06
+977.8000000001541 9.701470722075962e-06
+977.9000000001541 9.678285004378104e-06
+978.0000000001542 9.65508184241541e-06
+978.1000000001542 9.641939274380968e-06
+978.2000000001542 9.628775350447434e-06
+978.3000000001542 9.615590460618376e-06
+978.4000000001543 9.602385003007935e-06
+978.5000000001543 9.589159383778884e-06
+978.6000000001543 9.584169114715716e-06
+978.7000000001543 9.579153341306694e-06
+978.8000000001543 9.574112108219733e-06
+978.9000000001544 9.56904545031742e-06
+979.0000000001544 9.563953392628879e-06
+979.1000000001544 9.544544799278375e-06
+979.2000000001544 9.52515043858155e-06
+979.3000000001545 9.505770307783749e-06
+979.4000000001545 9.48640439459932e-06
+979.5000000001545 9.467052677397779e-06
+979.6000000001545 9.470228786414954e-06
+979.7000000001545 9.473365645200406e-06
+979.8000000001546 9.47646329660228e-06
+979.9000000001546 9.479521764256648e-06
+980.0000000001546 9.482541052546251e-06
+980.1000000001546 9.486615950590219e-06
+980.2000000001547 9.49065175945781e-06
+980.3000000001547 9.494648408686142e-06
+980.4000000001547 9.498605808420027e-06
+980.5000000001547 9.50252384945149e-06
+980.6000000001548 9.542833943548531e-06
+980.7000000001548 9.583026418849074e-06
+980.8000000001548 9.623100913887936e-06
+980.9000000001548 9.663057073109426e-06
+981.0000000001548 9.702894546943347e-06
+981.1000000001549 9.69609708970541e-06
+981.2000000001549 9.689247182680062e-06
+981.3000000001549 9.682344770560925e-06
+981.4000000001549 9.675389808491719e-06
+981.500000000155 9.668382261948708e-06
+981.600000000155 9.635494210893377e-06
+981.700000000155 9.602675835229577e-06
+981.800000000155 9.569927216500066e-06
+981.900000000155 9.537248424630319e-06
+982.0000000001551 9.504639518146676e-06
+982.1000000001551 9.466508037519192e-06
+982.2000000001551 9.428477551010597e-06
+982.3000000001551 9.390548011764272e-06
+982.4000000001552 9.35271936208363e-06
+982.5000000001552 9.31499153361108e-06
+982.6000000001552 9.28899060089362e-06
+982.7000000001552 9.263030947800257e-06
+982.8000000001553 9.23711261139033e-06
+982.9000000001553 9.21123563741191e-06
+983.0000000001553 9.185400080277138e-06
+983.1000000001553 9.18226813012398e-06
+983.2000000001553 9.179010529745415e-06
+983.3000000001554 9.175627807308033e-06
+983.4000000001554 9.172120500048538e-06
+983.5000000001554 9.168489154275102e-06
+983.6000000001554 9.155357634767495e-06
+983.7000000001555 9.14217989511402e-06
+983.8000000001555 9.128947703803157e-06
+983.9000000001555 9.115653481182327e-06
+984.0000000001555 9.102290295481935e-06
+984.1000000001555 9.06370358381006e-06
+984.2000000001556 9.02520030117592e-06
+984.3000000001556 8.986775254859242e-06
+984.4000000001556 8.94842393382903e-06
+984.5000000001556 8.9101424954718e-06
+984.6000000001557 8.870108236023891e-06
+984.7000000001557 8.830151296515703e-06
+984.8000000001557 8.790269917486081e-06
+984.9000000001557 8.75046298070854e-06
+985.0000000001558 8.710729995359235e-06
+985.1000000001558 8.69098070179361e-06
+985.2000000001558 8.67116620478508e-06
+985.3000000001558 8.65128788442527e-06
+985.4000000001558 8.631347710799146e-06
+985.5000000001559 8.611348237057782e-06
+985.6000000001559 8.596566928910308e-06
+985.7000000001559 8.581694603258174e-06
+985.8000000001559 8.566735666278953e-06
+985.900000000156 8.551695063795199e-06
+986.000000000156 8.536578275903681e-06
+986.100000000156 8.50880455360352e-06
+986.200000000156 8.481057233550851e-06
+986.300000000156 8.453343125756612e-06
+986.4000000001561 8.425669510102594e-06
+986.5000000001561 8.398044127572945e-06
+986.6000000001561 8.363694031188405e-06
+986.7000000001561 8.329428091427945e-06
+986.8000000001562 8.29524609806276e-06
+986.9000000001562 8.261147851224596e-06
+987.0000000001562 8.227133161218857e-06
+987.1000000001562 8.196955057577205e-06
+987.2000000001563 8.16684307577162e-06
+987.3000000001563 8.136797085724242e-06
+987.4000000001563 8.106816966669738e-06
+987.5000000001563 8.07690260698282e-06
+987.6000000001563 8.053605213219161e-06
+987.7000000001564 8.030329532784231e-06
+987.8000000001564 8.007075569234763e-06
+987.9000000001564 7.983843318590378e-06
+988.0000000001564 7.960632769505843e-06
+988.1000000001565 7.941146645553306e-06
+988.2000000001565 7.921659289142085e-06
+988.3000000001565 7.902170717398524e-06
+988.4000000001565 7.88268094035166e-06
+988.5000000001565 7.86318996103014e-06
+988.6000000001566 7.837347464871787e-06
+988.7000000001566 7.811539590381627e-06
+988.8000000001566 7.78577007287698e-06
+988.9000000001566 7.760042346488981e-06
+989.0000000001567 7.734359548468624e-06
+989.1000000001567 7.707719414284253e-06
+989.2000000001567 7.681140876569504e-06
+989.3000000001567 7.654626163873505e-06
+989.4000000001568 7.628177224233923e-06
+989.5000000001568 7.601795729595458e-06
+989.6000000001568 7.5739492711972995e-06
+989.7000000001568 7.546181937238921e-06
+989.8000000001568 7.5184943179740164e-06
+989.9000000001569 7.490886733078227e-06
+990.0000000001569 7.463359236468128e-06
+990.1000000001569 7.440990000254948e-06
+990.2000000001569 7.418668181676833e-06
+990.300000000157 7.396393179849418e-06
+990.400000000157 7.374164144652705e-06
+990.500000000157 7.351979980567137e-06
+990.600000000157 7.33132432600993e-06
+990.700000000157 7.310701493690211e-06
+990.8000000001571 7.2901098235483095e-06
+990.9000000001571 7.269547429474344e-06
+991.0000000001571 7.249012202761462e-06
+991.1000000001571 7.219150497948997e-06
+991.2000000001572 7.189346530365282e-06
+991.3000000001572 7.15959751841351e-06
+991.4000000001572 7.12990048698772e-06
+991.5000000001572 7.100252272246693e-06
+991.6000000001573 7.072079384703944e-06
+991.7000000001573 7.043949759008838e-06
+991.8000000001573 7.015863446990405e-06
+991.9000000001573 6.987820500520627e-06
+992.0000000001573 6.959820971443516e-06
+992.1000000001574 6.928494149475963e-06
+992.2000000001574 6.897240738356428e-06
+992.3000000001574 6.866060696884949e-06
+992.4000000001574 6.834953983885638e-06
+992.5000000001575 6.803920558163815e-06
+992.6000000001575 6.772960378534606e-06
+992.7000000001575 6.742073403829805e-06
+992.8000000001575 6.71125959286967e-06
+992.9000000001575 6.6805189044840715e-06
+993.0000000001576 6.649851297493789e-06
+993.1000000001576 6.6206599736344755e-06
+993.2000000001576 6.591523585950728e-06
+993.3000000001576 6.562442164073872e-06
+993.4000000001577 6.533415737633149e-06
+993.5000000001577 6.50444433625762e-06
+993.6000000001577 6.476828400664937e-06
+993.7000000001577 6.449249772017057e-06
+993.8000000001578 6.4217115054814954e-06
+993.9000000001578 6.394216391315469e-06
+994.0000000001578 6.366766959631205e-06
+994.1000000001578 6.3376107532464345e-06
+994.2000000001578 6.30852094769651e-06
+994.3000000001579 6.279499255758669e-06
+994.4000000001579 6.250547147543212e-06
+994.5000000001579 6.2216658555078365e-06
+994.6000000001579 6.192856123785434e-06
+994.700000000158 6.164118819016843e-06
+994.800000000158 6.13545457718328e-06
+994.900000000158 6.106863808677753e-06
+995.000000000158 6.078346703325665e-06
+995.100000000158 6.056138617273524e-06
+995.2000000001581 6.033984764925989e-06
+995.3000000001581 6.011884738218185e-06
+995.4000000001581 5.989837926129015e-06
+995.5000000001581 5.967843518456386e-06
+995.6000000001582 5.945901000884999e-06
+995.7000000001582 5.924008995882458e-06
+995.8000000001582 5.902165952561255e-06
+995.9000000001582 5.880370150184482e-06
+996.0000000001583 5.858619701607985e-06
+996.1000000001583 5.836533032246675e-06
+996.2000000001583 5.814491075119611e-06
+996.3000000001583 5.792491451939053e-06
+996.4000000001583 5.77053163226684e-06
+996.5000000001584 5.748608936883106e-06
+996.6000000001584 5.726720068097396e-06
+996.7000000001584 5.704872983180789e-06
+996.8000000001584 5.683067762598566e-06
+996.9000000001585 5.6613044798498385e-06
+997.0000000001585 5.6395832015285745e-06
+997.1000000001585 5.619948213323034e-06
+997.2000000001585 5.600344802378835e-06
+997.3000000001585 5.580773032932358e-06
+997.4000000001586 5.561232962874537e-06
+997.5000000001586 5.541724643858847e-06
+997.6000000001586 5.522248349341292e-06
+997.7000000001586 5.502804349136388e-06
+997.8000000001587 5.483392688620081e-06
+997.9000000001587 5.464013418219216e-06
+998.0000000001587 5.444666593309101e-06
+998.1000000001587 5.425125076101075e-06
+998.2000000001588 5.405618217150144e-06
+998.3000000001588 5.3861460792081126e-06
+998.4000000001588 5.366708729594633e-06
+998.5000000001588 5.347306240091219e-06
+998.6000000001588 5.327945951158103e-06
+998.7000000001589 5.308624673038697e-06
+998.8000000001589 5.289339870776544e-06
+998.9000000001589 5.270089217527513e-06
+999.0000000001589 5.250870591290717e-06
+999.100000000159 5.2407118813780705e-06
+999.200000000159 5.230550121046253e-06
+999.300000000159 5.2203837397583e-06
+999.400000000159 5.210211349200613e-06
+999.500000000159 5.2000317416029155e-06
+999.6000000001591 5.189843888080578e-06
+999.7000000001591 5.179647528149662e-06
+999.8000000001591 5.16944215576874e-06
+999.9000000001591 5.159227447926193e-06
+1000.0000000001592 5.149003262895784e-06
+1000.1000000001592 5.140738810306765e-06
+1000.2000000001592 5.132458422193744e-06
+1000.3000000001592 5.124162477139172e-06
+1000.4000000001593 5.115851528710906e-06
+1000.5000000001593 5.107526304062687e-06
+1000.6000000001593 5.097131992848327e-06
+1000.7000000001593 5.086732644991349e-06
+1000.8000000001593 5.076329425045221e-06
+1000.9000000001594 5.0659236585573495e-06
+1001.0000000001594 5.055516830382302e-06
+1001.1000000001594 5.067386546810933e-06
+1001.2000000001594 5.0791600926927096e-06
+1001.3000000001595 5.090839512274822e-06
+1001.4000000001595 5.102427039265446e-06
+1001.5000000001595 5.113925098393376e-06
+1001.6000000001595 5.125336306954804e-06
+1001.7000000001595 5.13665380057535e-06
+1001.8000000001596 5.147877670606082e-06
+1001.9000000001596 5.1590080084298475e-06
+1002.0000000001596 5.170044905444065e-06
+1002.1000000001596 5.18355473879954e-06
+1002.2000000001597 5.196984145478245e-06
+1002.3000000001597 5.210333091703402e-06
+1002.4000000001597 5.223601543713037e-06
+1002.5000000001597 5.2367894677851e-06
+1002.6000000001598 5.2520218643011765e-06
+1002.7000000001598 5.2671833491563595e-06
+1002.8000000001598 5.282273784903413e-06
+1002.9000000001598 5.297293034139367e-06
+1003.0000000001598 5.312240959523126e-06
+1003.1000000001599 5.3381123409667645e-06
+1003.2000000001599 5.363848818917927e-06
+1003.3000000001599 5.389450384969924e-06
+1003.4000000001599 5.414917030727636e-06
+1003.50000000016 5.4402487477965124e-06
+1003.60000000016 5.465452978375047e-06
+1003.70000000016 5.490527143441311e-06
+1003.80000000016 5.515468799519958e-06
+1003.90000000016 5.5402756434802905e-06
+1004.0000000001601 5.564945517285916e-06
+1004.1000000001601 5.589945934883044e-06
+1004.2000000001601 5.6148096459163755e-06
+1004.3000000001601 5.639534938550875e-06
+1004.4000000001602 5.6641202639061195e-06
+1004.5000000001602 5.688564240557726e-06
+1004.6000000001602 5.7128658947017136e-06
+1004.7000000001602 5.737024111458172e-06
+1004.8000000001603 5.761037960856205e-06
+1004.9000000001603 5.784906702229522e-06
+1005.0000000001603 5.808629788535081e-06
+1005.1000000001603 5.8510012581993e-06
+1005.2000000001603 5.893137364767833e-06
+1005.3000000001604 5.935038130590771e-06
+1005.4000000001604 5.976703795010576e-06
+1005.5000000001604 6.018134821448688e-06
+1005.6000000001604 6.059331403889829e-06
+1005.7000000001605 6.100294644455253e-06
+1005.8000000001605 6.141025882332212e-06
+1005.9000000001605 6.181526699863419e-06
+1006.0000000001605 6.221798928579727e-06
+1006.1000000001605 6.26301407978459e-06
+1006.2000000001606 6.304022407541312e-06
+1006.3000000001606 6.3448264218404064e-06
+1006.4000000001606 6.3854289069961424e-06
+1006.5000000001606 6.425832927419727e-06
+1006.6000000001607 6.467347320465159e-06
+1006.7000000001607 6.508674482799863e-06
+1006.8000000001607 6.549814203463365e-06
+1006.9000000001607 6.590766275762112e-06
+1007.0000000001608 6.631530497557991e-06
+1007.1000000001608 6.685697218201112e-06
+1007.2000000001608 6.739573047477888e-06
+1007.3000000001608 6.793158088451444e-06
+1007.4000000001608 6.846452449198929e-06
+1007.5000000001609 6.8994562430946605e-06
+1007.6000000001609 6.953572646740427e-06
+1007.7000000001609 7.007419872075285e-06
+1007.8000000001609 7.060997852497691e-06
+1007.900000000161 7.114306512874779e-06
+1008.000000000161 7.167345769205609e-06
+1008.100000000161 7.217509736381169e-06
+1008.200000000161 7.267366830113891e-06
+1008.300000000161 7.316917243777872e-06
+1008.4000000001611 7.3661611610234636e-06
+1008.5000000001611 7.415098755502951e-06
+1008.6000000001611 7.463709833058976e-06
+1008.7000000001611 7.512002326129098e-06
+1008.8000000001612 7.559983253770969e-06
+1008.9000000001612 7.607659311381648e-06
+1009.0000000001612 7.65503685214211e-06
+1009.1000000001612 7.682230266747739e-06
+1009.2000000001613 7.709250839898266e-06
+1009.3000000001613 7.736103439050768e-06
+1009.4000000001613 7.762792479101457e-06
+1009.5000000001613 7.789321912588111e-06
+1009.6000000001613 7.818859786924786e-06
+1009.7000000001614 7.848265948777945e-06
+1009.8000000001614 7.877542568362601e-06
+1009.9000000001614 7.906691292823908e-06
+1010.0000000001614 7.935713235868525e-06
+1010.1000000001615 7.966213498826013e-06
+1010.2000000001615 7.996597693860995e-06
+1010.3000000001615 8.026865193557911e-06
+1010.4000000001615 8.057014796107972e-06
+1010.5000000001615 8.087044715054173e-06
+1010.6000000001616 8.115315767040097e-06
+1010.7000000001616 8.143451979373257e-06
+1010.8000000001616 8.17144976418424e-06
+1010.9000000001616 8.199304936393951e-06
+1011.0000000001617 8.227012705255674e-06
+1011.1000000001617 8.227067982985587e-06
+1011.2000000001617 8.227058801729447e-06
+1011.3000000001617 8.226978654556327e-06
+1011.4000000001618 8.2268204906905e-06
+1011.5000000001618 8.226576716268847e-06
+1011.6000000001618 8.224579999602516e-06
+1011.7000000001618 8.222511587976877e-06
+1011.8000000001618 8.220371643509054e-06
+1011.9000000001619 8.21816031985134e-06
+1012.0000000001619 8.2158777622651e-06
+1012.1000000001619 8.215702348438982e-06
+1012.2000000001619 8.215456117543564e-06
+1012.300000000162 8.215139129895032e-06
+1012.400000000162 8.214751437494602e-06
+1012.500000000162 8.214293083976742e-06
+1012.600000000162 8.21542211562967e-06
+1012.700000000162 8.216480993189882e-06
+1012.8000000001621 8.21746971781098e-06
+1012.9000000001621 8.218388298986325e-06
+1013.0000000001621 8.219236754456586e-06
+1013.1000000001621 8.15307991235707e-06
+1013.2000000001622 8.087128489145919e-06
+1013.3000000001622 8.021382587243207e-06
+1013.4000000001622 7.955842314218999e-06
+1013.5000000001622 7.890507782443186e-06
+1013.6000000001623 7.825389778236307e-06
+1013.7000000001623 7.76048349215324e-06
+1013.8000000001623 7.695785154661276e-06
+1013.9000000001623 7.631291367310769e-06
+1014.0000000001623 7.566999091286461e-06
+1014.1000000001624 7.502585214599457e-06
+1014.2000000001624 7.4383729878897625e-06
+1014.3000000001624 7.374360342766415e-06
+1014.4000000001624 7.310545526005665e-06
+1014.5000000001625 7.2469270885771835e-06
+1014.6000000001625 7.183503874748546e-06
+1014.7000000001625 7.120275823887627e-06
+1014.8000000001625 7.057242549854228e-06
+1014.9000000001625 6.994403933605158e-06
+1015.0000000001626 6.931760112144943e-06
+1015.1000000001626 6.845324190765934e-06
+1015.2000000001626 6.759170238852037e-06
+1015.3000000001626 6.673299358501974e-06
+1015.4000000001627 6.5877128542205994e-06
+1015.5000000001627 6.502412218308076e-06
+1015.6000000001627 6.417399116463081e-06
+1015.7000000001627 6.332675012329889e-06
+1015.8000000001628 6.24824178531712e-06
+1015.9000000001628 6.164101445121667e-06
+1016.0000000001628 6.080256118305824e-06
+1016.1000000001628 5.9961966686495655e-06
+1016.2000000001628 5.912449929231455e-06
+1016.3000000001629 5.829018225974073e-06
+1016.4000000001629 5.745903948642997e-06
+1016.5000000001629 5.663109538159546e-06
+1016.6000000001629 5.580637474085744e-06
+1016.700000000163 5.498479905008559e-06
+1016.800000000163 5.416636812426955e-06
+1016.900000000163 5.335108177838227e-06
+1017.000000000163 5.253893982725688e-06
+1017.100000000163 5.168782462140047e-06
+1017.2000000001631 5.084009767817782e-06
+1017.3000000001631 4.99957584520247e-06
+1017.4000000001631 4.91548063973454e-06
+1017.5000000001631 4.831724096835818e-06
+1017.6000000001632 4.748306161934974e-06
+1017.7000000001632 4.665226780432438e-06
+1017.8000000001632 4.582485897735309e-06
+1017.9000000001632 4.500083459242098e-06
+1018.0000000001633 4.418019410334453e-06
+1018.1000000001633 4.3368114713554865e-06
+1018.2000000001633 4.255918926686253e-06
+1018.3000000001633 4.1753418227574185e-06
+1018.4000000001633 4.095080205993262e-06
+1018.5000000001634 4.015134122810337e-06
+1018.6000000001634 3.934710171312316e-06
+1018.7000000001634 3.85463382801718e-06
+1018.8000000001634 3.7749049483992585e-06
+1018.9000000001635 3.695523387880867e-06
+1019.0000000001635 3.6164890018803114e-06
+1019.1000000001635 3.5643013483248364e-06
+1019.2000000001635 3.512313926136387e-06
+1019.3000000001635 3.4605267295198237e-06
+1019.4000000001636 3.4089397526755294e-06
+1019.5000000001636 3.357552989804254e-06
+1019.6000000001636 3.3070337138991467e-06
+1019.7000000001636 3.2566940606051556e-06
+1019.8000000001637 3.2065341453261215e-06
+1019.9000000001637 3.1565540834671454e-06
+1020.0000000001637 3.10675399041976e-06
+1020.1000000001637 3.0562613862811067e-06
+1020.2000000001638 3.005973930954395e-06
+1020.3000000001638 2.9558915937845467e-06
+1020.4000000001638 2.9060143441204436e-06
+1020.5000000001638 2.856342151296697e-06
+1020.6000000001638 2.8068749846549857e-06
+1020.7000000001639 2.7576128135318823e-06
+1020.8000000001639 2.7085556072619185e-06
+1020.9000000001639 2.6597033351803296e-06
+1021.0000000001639 2.611055966624263e-06
+1021.100000000164 2.5684305926889354e-06
+1021.200000000164 2.52597453917456e-06
+1021.300000000164 2.4836878319097228e-06
+1021.400000000164 2.44157049671074e-06
+1021.500000000164 2.3996225594023886e-06
+1021.6000000001641 2.3578440457999617e-06
+1021.7000000001641 2.3162349817219034e-06
+1021.8000000001641 2.2747953929799583e-06
+1021.9000000001641 2.233525305388847e-06
+1022.0000000001642 2.192424744758938e-06
+1022.1000000001642 2.1514367683432896e-06
+1022.2000000001642 2.110620609941073e-06
+1022.3000000001642 2.0699762580536017e-06
+1022.4000000001643 2.029503701168577e-06
+1022.5000000001643 1.9892029277833184e-06
+1022.6000000001643 1.94868096794001e-06
+1022.7000000001643 1.9083468803715254e-06
+1022.8000000001643 1.868200549692954e-06
+1022.9000000001644 1.828241860522201e-06
+1023.0000000001644 1.7884706975142498e-06
+1023.1000000001644 1.762559777076275e-06
+1023.2000000001644 1.7367531006791537e-06
+1023.3000000001645 1.7110506610307688e-06
+1023.4000000001645 1.6854524508386042e-06
+1023.5000000001645 1.6599584628057639e-06
+1023.6000000001645 1.634241034783383e-06
+1023.7000000001646 1.6086393603435818e-06
+1023.8000000001646 1.5831525849340098e-06
+1023.9000000001646 1.5577799529262217e-06
+1024.0000000001646 1.532520802853591e-06
+1024.1000000001645 1.5080745092435493e-06
+1024.2000000001647 1.4837173416249466e-06
+1024.3000000001648 1.459449035788318e-06
+1024.4000000001647 1.4352694027547555e-06
+1024.5000000001646 1.4111783244747652e-06
+1024.6000000001648 1.3871758068269006e-06
+1024.700000000165 1.3632618378451672e-06
+1024.8000000001648 1.3394364666511028e-06
+1024.9000000001647 1.3156997991908308e-06
+1025.0000000001648 1.2920519940439117e-06
+1025.100000000165 1.2753338662162504e-06
+1025.200000000165 1.2586984040488633e-06
+1025.3000000001648 1.2421457604557803e-06
+1025.400000000165 1.2256761267762991e-06
+1025.500000000165 1.2092897299731188e-06
+1025.600000000165 1.1929867313456253e-06
+1025.700000000165 1.1767674596197468e-06
+1025.800000000165 1.1606322667099367e-06
+1025.9000000001652 1.1445815252846537e-06
+1026.000000000165 1.1286156263748578e-06
+1026.100000000165 1.1127825911998962e-06
+1026.2000000001651 1.0970338272582085e-06
+1026.3000000001653 1.0813697781443583e-06
+1026.4000000001652 1.0657908967443482e-06
+1026.500000000165 1.0502976430537042e-06
+1026.6000000001652 1.0348905675367358e-06
+1026.7000000001653 1.019568183286252e-06
+1026.8000000001653 1.0043304585249224e-06
+1026.9000000001652 9.891773633765027e-07
+1027.0000000001653 9.74108869793794e-07
+1027.1000000001654 9.662560337027632e-07
+1027.2000000001653 9.584342532355561e-07
+1027.3000000001653 9.506435212235655e-07
+1027.4000000001654 9.428838317367887e-07
+1027.5000000001655 9.351551800419507e-07
+1027.6000000001654 9.274575242743748e-07
+1027.7000000001653 9.197908240148235e-07
+1027.8000000001655 9.121550769975046e-07
+1027.9000000001656 9.045502802309816e-07
+1028.0000000001655 8.969764300305129e-07
+1028.1000000001654 8.893092561243008e-07
+1028.2000000001656 8.816751452005118e-07
+1028.3000000001657 8.740740767102441e-07
+1028.4000000001656 8.66506029559556e-07
+1028.5000000001655 8.589709821474911e-07
+1028.6000000001657 8.51466589978924e-07
+1028.7000000001658 8.439938101106312e-07
+1028.8000000001657 8.365534426966399e-07
+1028.9000000001656 8.291462053534936e-07
+1029.0000000001658 8.217727358920741e-07
+1029.100000000166 8.143140884951669e-07
+1029.2000000001658 8.068896995221394e-07
+1029.3000000001657 7.994999946250122e-07
+1029.4000000001658 7.921453300377615e-07
+1029.500000000166 7.84825995197203e-07
+1029.600000000166 7.776989457618314e-07
+1029.7000000001658 7.706045844049519e-07
+1029.800000000166 7.635430250439162e-07
+1029.900000000166 7.56514323201626e-07
+1030.000000000166 7.495184785088962e-07
+1030.100000000166 7.423579713161516e-07
+1030.200000000166 7.352337196707673e-07
+1030.3000000001662 7.281455442267112e-07
+1030.400000000166 7.210932196340446e-07
+1030.500000000166 7.140764769314446e-07
+1030.6000000001661 7.070950643336683e-07
+1030.7000000001663 7.001486502536799e-07
+1030.8000000001662 6.932368392062464e-07
+1030.900000000166 6.863592037260535e-07
+1031.0000000001662 6.795152864902377e-07
+1031.1000000001663 6.80354696604436e-07
+1031.2000000001663 6.811701058554705e-07
+1031.3000000001662 6.819609785871512e-07
+1031.4000000001663 6.827267314605232e-07
+1031.5000000001664 6.834667334082233e-07
+1031.6000000001663 6.841802490881167e-07
+1031.7000000001663 6.848691530694416e-07
+1031.8000000001664 6.855334571125578e-07
+1031.9000000001665 6.861731723332437e-07
+1032.0000000001664 6.867883091985325e-07
+1032.1000000001663 6.874861394394195e-07
+1032.2000000001665 6.881594373129508e-07
+1032.3000000001666 6.88808201689932e-07
+1032.4000000001665 6.894324307717171e-07
+1032.5000000001664 6.900321220829435e-07
+1032.6000000001666 6.90607300978235e-07
+1032.7000000001667 6.91157992919644e-07
+1032.8000000001666 6.916841956158699e-07
+1032.9000000001665 6.92185907486924e-07
+1033.0000000001667 6.926631276554541e-07
+1033.1000000001668 6.904638480870711e-07
+1033.2000000001667 6.882613632143265e-07
+1033.3000000001666 6.860556808413998e-07
+1033.4000000001668 6.838468093657751e-07
+1033.500000000167 6.816347577594972e-07
+1033.6000000001668 6.794204619091649e-07
+1033.7000000001667 6.772035157548686e-07
+1033.8000000001668 6.74983596164421e-07
+1033.900000000167 6.727604060897373e-07
+1034.000000000167 6.705336742205537e-07
+1034.1000000001668 6.683587738388832e-07
+1034.200000000167 6.661799554051121e-07
+1034.300000000167 6.639970218124226e-07
+1034.400000000167 6.618098002244902e-07
+1034.500000000167 6.59618141724464e-07
+1034.600000000167 6.574219209726169e-07
+1034.7000000001672 6.552211106307789e-07
+1034.800000000167 6.530156526195754e-07
+1034.900000000167 6.508055124020692e-07
+1035.0000000001671 6.48590678611881e-07
+1035.1000000001673 6.487988430337925e-07
+1035.2000000001672 6.489847590410512e-07
+1035.300000000167 6.491484624374782e-07
+1035.4000000001672 6.492900118301419e-07
+1035.5000000001673 6.494094886337036e-07
+1035.6000000001673 6.495069970716213e-07
+1035.7000000001672 6.495826271102851e-07
+1035.8000000001673 6.496365176204412e-07
+1035.9000000001674 6.496688295434461e-07
+1036.0000000001673 6.49679745847164e-07
+1036.1000000001673 6.496026534706356e-07
+1036.2000000001674 6.49505309562896e-07
+1036.3000000001675 6.493879709664701e-07
+1036.4000000001674 6.492509161585831e-07
+1036.5000000001673 6.4909444514807e-07
+1036.6000000001675 6.489188793618365e-07
+1036.7000000001676 6.487233395501214e-07
+1036.8000000001675 6.485078315312193e-07
+1036.9000000001674 6.482723611249703e-07
+1037.0000000001676 6.480169341539429e-07
+1037.1000000001677 6.496400952653614e-07
+1037.2000000001676 6.512296239281666e-07
+1037.3000000001675 6.527855174043118e-07
+1037.4000000001677 6.543077729553746e-07
+1037.5000000001678 6.557963878452518e-07
+1037.6000000001677 6.572513593354365e-07
+1037.7000000001676 6.586726846904391e-07
+1037.8000000001678 6.60060361173717e-07
+1037.900000000168 6.614143860476545e-07
+1038.0000000001678 6.627347565785407e-07
+1038.1000000001677 6.641359118499125e-07
+1038.2000000001678 6.655047232903678e-07
+1038.300000000168 6.668411907968812e-07
+1038.400000000168 6.68145314264508e-07
+1038.5000000001678 6.694170935912117e-07
+1038.600000000168 6.706565286730355e-07
+1038.700000000168 6.718636194068517e-07
+1038.800000000168 6.730383656910708e-07
+1038.900000000168 6.741807674214801e-07
+1039.000000000168 6.75290824494023e-07
+1039.1000000001682 6.751393588380394e-07
+1039.200000000168 6.749653527502328e-07
+1039.300000000168 6.74768811731374e-07
+1039.4000000001681 6.745497412843865e-07
+1039.5000000001683 6.743081469101605e-07
+1039.6000000001682 6.74044034108252e-07
+1039.700000000168 6.737574083796662e-07
+1039.8000000001682 6.73448275221986e-07
+1039.9000000001683 6.731166401342445e-07
+1040.0000000001683 6.727625086151891e-07
+1040.1000000001682 6.725959414340679e-07
+1040.2000000001683 6.724076964870392e-07
+1040.3000000001684 6.721977734041726e-07
+1040.4000000001683 6.719661718151416e-07
+1040.5000000001683 6.717128913492212e-07
+1040.6000000001684 6.714379316380663e-07
+1040.7000000001685 6.711412923108549e-07
+1040.8000000001684 6.708229729998382e-07
+1040.9000000001683 6.70482973335482e-07
+1041.0000000001685 6.701212929499606e-07
+1041.1000000001686 6.697526132075277e-07
+1041.2000000001685 6.693618544322175e-07
+1041.3000000001684 6.689490198078378e-07
+1041.4000000001686 6.68514112518092e-07
+1041.5000000001687 6.680571357465816e-07
+1041.6000000001686 6.675780926774951e-07
+1041.7000000001685 6.670769864935342e-07
+1041.8000000001687 6.665538203779874e-07
+1041.9000000001688 6.6600859751473e-07
+1042.0000000001687 6.65441321086384e-07
+1042.1000000001686 6.649870328052552e-07
+1042.2000000001688 6.645117952628412e-07
+1042.300000000169 6.640156116462067e-07
+1042.4000000001688 6.634984851443963e-07
+1042.5000000001687 6.629604189449978e-07
+1042.6000000001688 6.624014162348349e-07
+1042.700000000169 6.618214802013395e-07
+1042.800000000169 6.61220614032547e-07
+1042.9000000001688 6.605988209164069e-07
+1043.000000000169 6.599561040359488e-07
+1043.100000000169 6.576466981044195e-07
+1043.200000000169 6.5533142062047e-07
+1043.300000000169 6.530102717899497e-07
+1043.400000000169 6.50683251820094e-07
+1043.5000000001692 6.483503609168361e-07
+1043.600000000169 6.460124799433192e-07
+1043.700000000169 6.436692861407473e-07
+1043.8000000001691 6.413204828128701e-07
+1043.9000000001693 6.389657989585298e-07
+1044.0000000001692 6.366049888989724e-07
+1044.100000000169 6.343160347652625e-07
+1044.2000000001692 6.32021383121586e-07
+1044.3000000001693 6.297208628706966e-07
+1044.4000000001693 6.274143266486107e-07
+1044.5000000001692 6.251016504496774e-07
+1044.6000000001693 6.226573243653037e-07
+1044.7000000001694 6.202076317769674e-07
+1044.8000000001693 6.177525116790532e-07
+1044.9000000001693 6.152919256964537e-07
+1045.0000000001694 6.128258576666725e-07
+1045.1000000001695 6.102740587342704e-07
+1045.2000000001694 6.077178760069786e-07
+1045.3000000001693 6.051573534696478e-07
+1045.4000000001695 6.025925555751772e-07
+1045.5000000001696 6.000235668018536e-07
+1045.6000000001695 5.97450441856031e-07
+1045.7000000001694 5.948733221070577e-07
+1045.8000000001696 5.922923660920113e-07
+1045.9000000001697 5.897077490932853e-07
+1046.0000000001696 5.871196627056979e-07
+1046.1000000001695 5.846504124182447e-07
+1046.2000000001697 5.821785397204136e-07
+1046.3000000001698 5.797042826065192e-07
+1046.4000000001697 5.772278938705149e-07
+1046.5000000001696 5.747496406975804e-07
+1046.6000000001698 5.722698515248691e-07
+1046.70000000017 5.697877301620287e-07
+1046.8000000001698 5.673032681527127e-07
+1046.9000000001697 5.648164577498544e-07
+1047.0000000001698 5.623272919007341e-07
+1047.10000000017 5.593120270394912e-07
+1047.20000000017 5.563002388479502e-07
+1047.3000000001698 5.532919210729253e-07
+1047.40000000017 5.502870681237848e-07
+1047.50000000017 5.472856750609556e-07
+1047.60000000017 5.442877151098026e-07
+1047.70000000017 5.412931620562259e-07
+1047.80000000017 5.383020119216709e-07
+1047.9000000001702 5.353142602619704e-07
+1048.00000000017 5.323299021812218e-07
+1048.10000000017 5.293953291930106e-07
+1048.2000000001701 5.264636086672201e-07
+1048.3000000001703 5.235347354477901e-07
+1048.4000000001702 5.206087039827822e-07
+1048.50000000017 5.176855083408832e-07
+1048.6000000001702 5.146606570513938e-07
+1048.7000000001703 5.116394231398335e-07
+1048.8000000001703 5.086220525225125e-07
+1048.9000000001702 5.056087689667161e-07
+1049.0000000001703 5.025997746040274e-07
+1049.1000000001704 5.019853592530787e-07
+1049.2000000001703 5.013529196187072e-07
+1049.3000000001703 5.00702609780712e-07
+1049.4000000001704 5.000345665926498e-07
+1049.5000000001705 4.993489097376842e-07
+1049.6000000001704 4.986457417934556e-07
+1049.7000000001703 4.979250914499158e-07
+1049.8000000001705 4.971870108565339e-07
+1049.9000000001706 4.964315344048953e-07
+1050.0000000001705 4.956586788427988e-07
+1050.1000000001704 4.949450649917617e-07
+1050.2000000001706 4.942145874925058e-07
+1050.3000000001707 4.934672120945405e-07
+1050.4000000001706 4.927028874281063e-07
+1050.5000000001705 4.919215451494266e-07
+1050.6000000001707 4.911231000955244e-07
+1050.7000000001708 4.903074784229109e-07
+1050.8000000001707 4.894745699023222e-07
+1050.9000000001706 4.886242484379432e-07
+1051.0000000001708 4.877563722492826e-07
+1051.100000000171 4.843180350816737e-07
+1051.2000000001708 4.808890157202518e-07
+1051.3000000001707 4.774691257025957e-07
+1051.4000000001708 4.740581659315878e-07
+1051.500000000171 4.7065592721339513e-07
+1051.600000000171 4.672621907899488e-07
+1051.7000000001708 4.6387760314729467e-07
+1051.800000000171 4.6050216416017027e-07
+1051.900000000171 4.57135873704705e-07
+1052.000000000171 4.5377873165518923e-07
+1052.100000000171 4.5050249689095147e-07
+1052.200000000171 4.47236042010745e-07
+1052.3000000001712 4.4397936224317495e-07
+1052.400000000171 4.407324528151069e-07
+1052.500000000171 4.3749530895502353e-07
+1052.6000000001711 4.3435567450884214e-07
+1052.7000000001713 4.312245309751505e-07
+1052.8000000001712 4.2810187872488536e-07
+1052.900000000171 4.249877181311613e-07
+1053.0000000001712 4.2188204956647164e-07
+1053.1000000001713 4.1897406291420776e-07
+1053.2000000001713 4.160731535321926e-07
+1053.3000000001712 4.131793206919591e-07
+1053.4000000001713 4.102925636649987e-07
+1053.5000000001714 4.0741288172319995e-07
+1053.6000000001713 4.0454027413756046e-07
+1053.7000000001713 4.016747401794528e-07
+1053.8000000001714 3.988162791206234e-07
+1053.9000000001715 3.9596489023277954e-07
+1054.0000000001714 3.931205727859873e-07
+1054.1000000001713 3.903060971653561e-07
+1054.2000000001715 3.8749921752568057e-07
+1054.3000000001716 3.846999301855035e-07
+1054.4000000001715 3.819082314637444e-07
+1054.5000000001714 3.7912411767821793e-07
+1054.6000000001716 3.7642370722998954e-07
+1054.7000000001717 3.737297847979661e-07
+1054.8000000001716 3.7104235063496143e-07
+1054.9000000001715 3.683614049943284e-07
+1055.0000000001717 3.6568694812787025e-07
+1055.1000000001718 3.633555296110159e-07
+1055.2000000001717 3.610274631629394e-07
+1055.3000000001716 3.587027487522275e-07
+1055.4000000001718 3.5638138634701576e-07
+1055.500000000172 3.5406337591525446e-07
+1055.6000000001718 3.5167758522809153e-07
+1055.7000000001717 3.4929608125561274e-07
+1055.8000000001718 3.4691886193279904e-07
+1055.900000000172 3.445459251938645e-07
+1056.000000000172 3.42177268973548e-07
+1056.1000000001718 3.3993736025708214e-07
+1056.200000000172 3.377009127544064e-07
+1056.300000000172 3.354679260462147e-07
+1056.400000000172 3.3323839971286817e-07
+1056.500000000172 3.310123333349682e-07
+1056.600000000172 3.2872316986922913e-07
+1056.7000000001722 3.2643836396139435e-07
+1056.800000000172 3.241579130917054e-07
+1056.900000000172 3.2188181474074925e-07
+1057.0000000001721 3.1961006639137646e-07
+1057.1000000001723 3.180632174060714e-07
+1057.2000000001722 3.1651290855518206e-07
+1057.300000000172 3.1495913971971903e-07
+1057.4000000001722 3.1340191078006195e-07
+1057.5000000001723 3.1184122161781874e-07
+1057.6000000001723 3.1021419935368306e-07
+1057.7000000001722 3.0858435193240834e-07
+1057.8000000001723 3.069516813380797e-07
+1057.9000000001724 3.053161895565087e-07
+1058.0000000001723 3.0367787857258507e-07
+1058.1000000001723 3.0217700950908864e-07
+1058.2000000001724 3.0067273922666976e-07
+1058.3000000001725 2.991650681342e-07
+1058.4000000001724 2.9765399663929876e-07
+1058.5000000001723 2.9613952515082266e-07
+1058.6000000001725 2.9462165407638865e-07
+1058.7000000001726 2.931003838248513e-07
+1058.8000000001725 2.9157571480444565e-07
+1058.9000000001724 2.9004764742309663e-07
+1059.0000000001726 2.885161820879535e-07
+1059.1000000001727 2.863594547498175e-07
+1059.2000000001726 2.842087398024288e-07
+1059.3000000001725 2.8206403363533627e-07
+1059.4000000001727 2.7992533263757324e-07
+1059.5000000001728 2.777926331992418e-07
+1059.6000000001727 2.7572191585551704e-07
+1059.7000000001726 2.7365635404502974e-07
+1059.8000000001728 2.715959472990959e-07
+1059.900000000173 2.6954069514818386e-07
+1060.0000000001728 2.6749059712390437e-07
+1060.1000000001727 2.654576948470652e-07
+1060.2000000001728 2.634297689432369e-07
+1060.300000000173 2.614068194901448e-07
+1060.400000000173 2.593888465652025e-07
+1060.5000000001728 2.573758502454234e-07
+1060.600000000173 2.553159792726913e-07
+1060.700000000173 2.5326189847845766e-07
+1060.800000000173 2.5121360490862467e-07
+1060.900000000173 2.491710956087243e-07
+1061.000000000173 2.471343676271583e-07
+1061.1000000001732 2.4665809174645135e-07
+1061.200000000173 2.4616857332581514e-07
+1061.300000000173 2.4566581594095843e-07
+1061.4000000001731 2.451498231673628e-07
+1061.5000000001733 2.4462059857951895e-07
+1061.6000000001732 2.4407814575169224e-07
+1061.700000000173 2.4352246825791736e-07
+1061.8000000001732 2.4295356967149216e-07
+1061.9000000001733 2.423714535652349e-07
+1062.0000000001733 2.4177612351167614e-07
+1062.1000000001732 2.41280152666639e-07
+1062.2000000001733 2.4077258194534525e-07
+1062.3000000001734 2.4025341645984964e-07
+1062.4000000001733 2.3972266132361163e-07
+1062.5000000001733 2.3918032165183e-07
+1062.6000000001734 2.386749630826176e-07
+1062.7000000001735 2.3815781977871269e-07
+1062.8000000001734 2.3762888966562587e-07
+1062.9000000001733 2.3708817066933043e-07
+1063.0000000001735 2.3653566071568144e-07
+1063.1000000001736 2.3606408849458568e-07
+1063.2000000001735 2.355793315484254e-07
+1063.3000000001734 2.3508139179980472e-07
+1063.4000000001736 2.3457027117194546e-07
+1063.5000000001737 2.3404597158713646e-07
+1063.6000000001736 2.3346098560998993e-07
+1063.7000000001735 2.328630485911043e-07
+1063.8000000001737 2.3225217049279772e-07
+1063.9000000001738 2.3162836127668162e-07
+1064.0000000001737 2.3099163090275571e-07
+1064.1000000001736 2.305238546793623e-07
+1064.2000000001738 2.3004455067356997e-07
+1064.300000000174 2.2955372278050337e-07
+1064.4000000001738 2.290513748950688e-07
+1064.5000000001737 2.285375109109932e-07
+1064.6000000001738 2.2801213472202115e-07
+1064.700000000174 2.2747525022024746e-07
+1064.800000000174 2.269268612977839e-07
+1064.9000000001738 2.2636697184604007e-07
+1065.000000000174 2.257955857521922e-07
+1065.100000000174 2.2346434043739022e-07
+1065.200000000174 2.2114434406245927e-07
+1065.300000000174 2.1883559901687246e-07
+1065.400000000174 2.1653810768998427e-07
+1065.5000000001742 2.142518724710528e-07
+1065.600000000174 2.1197689575012498e-07
+1065.700000000174 2.0971317991667944e-07
+1065.8000000001741 2.0746072736053669e-07
+1065.9000000001743 2.0521954047164423e-07
+1066.0000000001742 2.0298962164053542e-07
+1066.100000000174 2.0091830987650978e-07
+1066.2000000001742 1.9885729385408706e-07
+1066.3000000001744 1.9680657268347907e-07
+1066.4000000001743 1.9476614547466046e-07
+1066.5000000001742 1.9273601133757145e-07
+1066.6000000001743 1.9071616938212724e-07
+1066.7000000001744 1.8870661871842366e-07
+1066.8000000001744 1.8670735845613328e-07
+1066.9000000001743 1.8471838770528844e-07
+1067.0000000001744 1.8273970558112773e-07
+1067.1000000001745 1.8397360351289496e-07
+1067.2000000001744 1.851759463541773e-07
+1067.3000000001744 1.8634673642462285e-07
+1067.4000000001745 1.8748597604451416e-07
+1067.5000000001746 1.8859366753359906e-07
+1067.6000000001745 1.8966981321206924e-07
+1067.7000000001744 1.9071441539977924e-07
+1067.8000000001746 1.917274764168315e-07
+1067.9000000001747 1.9270899858357637e-07
+1068.0000000001746 1.936589842205949e-07
+1068.1000000001745 1.9479524907297824e-07
+1068.2000000001747 1.959046146834429e-07
+1068.3000000001748 1.969870667564424e-07
+1068.4000000001747 1.980425909983969e-07
+1068.5000000001746 1.9907117311749074e-07
+1068.6000000001748 2.0007279882428765e-07
+1068.700000000175 2.0104745383089812e-07
+1068.8000000001748 2.0199512385160613e-07
+1068.9000000001747 2.0291579460266644e-07
+1069.0000000001749 2.0380945179876712e-07
+1069.100000000175 2.027891132516636e-07
+1069.200000000175 2.017666560766675e-07
+1069.3000000001748 2.0074208037540912e-07
+1069.400000000175 1.9971538624973865e-07
+1069.500000000175 1.9868657380200353e-07
+1069.600000000175 1.9769581704456576e-07
+1069.700000000175 1.9670252223010624e-07
+1069.800000000175 1.9570668816907945e-07
+1069.9000000001752 1.947083136716286e-07
+1070.000000000175 1.937073975485881e-07
+1070.100000000175 1.926970945931302e-07
+1070.2000000001751 1.9168432856378e-07
+1070.3000000001753 1.9066909836793048e-07
+1070.4000000001752 1.8965140291329812e-07
+1070.500000000175 1.8863124110791302e-07
+1070.6000000001752 1.876086118595323e-07
+1070.7000000001754 1.865835140762387e-07
+1070.8000000001753 1.8555594666623616e-07
+1070.9000000001752 1.8452590853765462e-07
+1071.0000000001753 1.8349339859876222e-07
+1071.1000000001754 1.8225041954838635e-07
+1071.2000000001754 1.810099573689821e-07
+1071.3000000001753 1.7977201174211001e-07
+1071.4000000001754 1.785365823489692e-07
+1071.5000000001755 1.7730366887115178e-07
+1071.6000000001754 1.7607327098989312e-07
+1071.7000000001754 1.7484538838698705e-07
+1071.8000000001755 1.7362002074369028e-07
+1071.9000000001756 1.7239716774146326e-07
+1072.0000000001755 1.7117682906197633e-07
+1072.1000000001754 1.70069961922591e-07
+1072.2000000001756 1.6896522600751612e-07
+1072.3000000001757 1.6786262138911945e-07
+1072.4000000001756 1.6676214814010396e-07
+1072.5000000001755 1.6566380633303377e-07
+1072.6000000001757 1.6460094307097147e-07
+1072.7000000001758 1.6353976799988404e-07
+1072.8000000001757 1.6248028248862821e-07
+1072.9000000001756 1.614224879050788e-07
+1073.0000000001758 1.6036638561894674e-07
+1073.100000000176 1.5994327671313227e-07
+1073.2000000001758 1.5951496316415086e-07
+1073.3000000001757 1.5908144295235653e-07
+1073.4000000001759 1.5864271405866716e-07
+1073.500000000176 1.5819877446434997e-07
+1073.600000000176 1.577177277684911e-07
+1073.7000000001758 1.5723166292626624e-07
+1073.800000000176 1.567405809650667e-07
+1073.900000000176 1.562444829123501e-07
+1074.000000000176 1.5574336979552303e-07
+1074.100000000176 1.5526562253773115e-07
+1074.200000000176 1.5478374698335652e-07
+1074.3000000001762 1.5429775123492628e-07
+1074.400000000176 1.5380764339500902e-07
+1074.500000000176 1.5331343156755378e-07
+1074.6000000001761 1.5293918728132292e-07
+1074.7000000001763 1.5256019015057094e-07
+1074.8000000001762 1.521764371163397e-07
+1074.900000000176 1.517879251191653e-07
+1075.0000000001762 1.5139465109995943e-07
+1075.1000000001764 1.5104686708045792e-07
+1075.2000000001763 1.5069401412183104e-07
+1075.3000000001762 1.5033608468677817e-07
+1075.4000000001763 1.499730712393881e-07
+1075.5000000001764 1.4960496624550565e-07
+1075.6000000001764 1.491715030326766e-07
+1075.7000000001763 1.4873331149909214e-07
+1075.8000000001764 1.4829038961719577e-07
+1075.9000000001765 1.4784273535981134e-07
+1076.0000000001764 1.4739034669993785e-07
+1076.1000000001764 1.469029821734202e-07
+1076.2000000001765 1.4641109133137584e-07
+1076.3000000001766 1.4591467477382034e-07
+1076.4000000001765 1.4541373310150175e-07
+1076.5000000001764 1.4490826691408352e-07
+1076.6000000001766 1.4431085101421646e-07
+1076.7000000001767 1.4370953482360186e-07
+1076.8000000001766 1.4310432715700211e-07
+1076.9000000001765 1.4249523682814836e-07
+1077.0000000001767 1.418822726514036e-07
+1077.1000000001768 1.425373880079595e-07
+1077.2000000001767 1.4317494016494382e-07
+1077.3000000001766 1.4379495937820546e-07
+1077.4000000001768 1.4439747590463994e-07
+1077.500000000177 1.449825200015543e-07
+1077.6000000001768 1.4569797861177064e-07
+1077.7000000001767 1.4639732415682724e-07
+1077.8000000001769 1.4708053623690694e-07
+1077.900000000177 1.4774759445238893e-07
+1078.000000000177 1.4839847840292835e-07
+1078.1000000001768 1.4894069126404248e-07
+1078.200000000177 1.4946440419927792e-07
+1078.300000000177 1.4996958155564949e-07
+1078.400000000177 1.5045618767783462e-07
+1078.500000000177 1.5092418690838007e-07
+1078.600000000177 1.5131262598520937e-07
+1078.7000000001772 1.5168224725206728e-07
+1078.800000000177 1.5203297007742836e-07
+1078.900000000177 1.5236471824699286e-07
+1079.0000000001771 1.5267742009972267e-07
+1079.1000000001773 1.5242877026875538e-07
+1079.2000000001772 1.5217115601627058e-07
+1079.300000000177 1.5190453694434758e-07
+1079.4000000001772 1.5162887811906284e-07
+1079.5000000001774 1.513441500486291e-07
+1079.6000000001773 1.5092838472195546e-07
+1079.7000000001772 1.5050399251623935e-07
+1079.8000000001773 1.5007098428340197e-07
+1079.9000000001774 1.4962937603424624e-07
+1080.0000000001774 1.4917918887372108e-07
+1080.1000000001773 1.4875924036136838e-07
+1080.2000000001774 1.4833054695306241e-07
+1080.3000000001775 1.478931382954688e-07
+1080.4000000001774 1.4744704885052203e-07
+1080.5000000001774 1.469923178153473e-07
+1080.6000000001775 1.4664819098178809e-07
+1080.7000000001776 1.4629489214640663e-07
+1080.8000000001775 1.459324522913922e-07
+1080.9000000001774 1.4556090690893098e-07
+1081.0000000001776 1.4518029592021378e-07
+1081.1000000001777 1.4533203795523298e-07
+1081.2000000001776 1.4547107226354654e-07
+1081.3000000001775 1.4559745626644172e-07
+1081.4000000001777 1.457112523338493e-07
+1081.5000000001778 1.4581252775326546e-07
+1081.6000000001777 1.4599024067853064e-07
+1081.7000000001776 1.4615540755784573e-07
+1081.8000000001778 1.4630800173267007e-07
+1081.900000000178 1.4644799666931122e-07
+1082.0000000001778 1.4657536596455694e-07
+1082.1000000001777 1.4665211709460493e-07
+1082.2000000001779 1.4671621121982615e-07
+1082.300000000178 1.4676763158649535e-07
+1082.400000000178 1.4680636159391577e-07
+1082.5000000001778 1.4683238479793295e-07
+1082.600000000178 1.466677559778776e-07
+1082.700000000178 1.4649053474094738e-07
+1082.800000000178 1.463007557395272e-07
+1082.900000000178 1.4609845377112854e-07
+1083.000000000178 1.4588366377810978e-07
+1083.1000000001782 1.4625286186493685e-07
+1083.200000000178 1.4659421914070792e-07
+1083.300000000178 1.469078060306671e-07
+1083.4000000001781 1.471936931330629e-07
+1083.5000000001783 1.4745195121784274e-07
+1083.6000000001782 1.4789316661091736e-07
+1083.700000000178 1.4830768805075822e-07
+1083.8000000001782 1.4869553807482773e-07
+1083.9000000001784 1.4905673520082458e-07
+1084.0000000001783 1.4939129374758357e-07
+1084.1000000001782 1.5006416897210794e-07
+1084.2000000001783 1.507185780901785e-07
+1084.3000000001784 1.513545394080039e-07
+1084.4000000001784 1.519720669276105e-07
+1084.5000000001783 1.5257117019214085e-07
+1084.6000000001784 1.530279198052912e-07
+1084.7000000001785 1.5346547366427008e-07
+1084.8000000001784 1.5388386783195663e-07
+1084.9000000001784 1.5428313294635278e-07
+1085.0000000001785 1.546632941339716e-07
+1085.1000000001786 1.558455859680672e-07
+1085.2000000001785 1.5698386488465366e-07
+1085.3000000001784 1.5807826041461748e-07
+1085.4000000001786 1.5912889566250297e-07
+1085.5000000001787 1.6013588716044994e-07
+1085.6000000001786 1.6090228133223357e-07
+1085.7000000001785 1.6162259857298223e-07
+1085.8000000001787 1.622970891175198e-07
+1085.9000000001788 1.6292599664931973e-07
+1086.0000000001787 1.6350955830847558e-07
+1086.1000000001786 1.6459235600546401e-07
+1086.2000000001788 1.6564020134433423e-07
+1086.300000000179 1.6665307322348787e-07
+1086.4000000001788 1.676309433153645e-07
+1086.5000000001787 1.6857377604317482e-07
+1086.6000000001789 1.699014704119624e-07
+1086.700000000179 1.7119903049167684e-07
+1086.800000000179 1.7246624582694624e-07
+1086.9000000001788 1.737029059653086e-07
+1087.000000000179 1.7490880045428035e-07
+1087.100000000179 1.7505515427796763e-07
+1087.200000000179 1.7518186808496456e-07
+1087.300000000179 1.752888413768438e-07
+1087.400000000179 1.7537597368298975e-07
+1087.5000000001792 1.754431645604043e-07
+1087.600000000179 1.7527755508340084e-07
+1087.700000000179 1.7509251043225445e-07
+1087.8000000001791 1.7488799976279562e-07
+1087.9000000001793 1.746639922407349e-07
+1088.0000000001792 1.7442045703985262e-07
+1088.100000000179 1.7395603843619466e-07
+1088.2000000001792 1.7347290601142109e-07
+1088.3000000001794 1.7297109566416411e-07
+1088.4000000001793 1.7245064329034809e-07
+1088.5000000001792 1.7191158478335577e-07
+1088.6000000001793 1.712498316945156e-07
+1088.7000000001794 1.7057011827586392e-07
+1088.8000000001794 1.698725152243038e-07
+1088.9000000001793 1.6915709323123997e-07
+1089.0000000001794 1.6842392298400634e-07
+1089.1000000001795 1.6778015582710236e-07
+1089.2000000001794 1.6711803834326813e-07
+1089.3000000001794 1.6643760546145372e-07
+1089.4000000001795 1.6573889211082336e-07
+1089.5000000001796 1.6502193322012354e-07
+1089.6000000001795 1.6432034645848087e-07
+1089.7000000001794 1.6360031704945806e-07
+1089.8000000001796 1.628618682920874e-07
+1089.9000000001797 1.6210502348530423e-07
+1090.0000000001796 1.613298059289686e-07
+1090.1000000001795 1.6082468677457768e-07
+1090.2000000001797 1.6030492779640172e-07
+1090.3000000001798 1.597705610814169e-07
+1090.4000000001797 1.5922161870577484e-07
+1090.5000000001796 1.5865813273644532e-07
+1090.6000000001798 1.5843741516920973e-07
+1090.70000000018 1.5819997904004743e-07
+1090.8000000001798 1.5794575415630782e-07
+1090.9000000001797 1.5767467035220592e-07
+1091.0000000001799 1.57386657487781e-07
+1091.10000000018 1.5659849485252643e-07
+1091.20000000018 1.5580033254088725e-07
+1091.3000000001798 1.5499214471040644e-07
+1091.40000000018 1.5417390551345503e-07
+1091.50000000018 1.5334558909597404e-07
+1091.60000000018 1.5198234736027652e-07
+1091.70000000018 1.506158723115567e-07
+1091.80000000018 1.4924622181143408e-07
+1091.9000000001802 1.478734537342586e-07
+1092.00000000018 1.4649762596602182e-07
+1092.10000000018 1.451309595024576e-07
+1092.2000000001801 1.4376124829779824e-07
+1092.3000000001803 1.4238854687879937e-07
+1092.4000000001802 1.4101290975344068e-07
+1092.50000000018 1.3963439141415282e-07
+1092.6000000001802 1.387130273529389e-07
+1092.7000000001804 1.3778176883213402e-07
+1092.8000000001803 1.368405939381349e-07
+1092.9000000001802 1.3588948076457021e-07
+1093.0000000001803 1.3492840741177882e-07
+1093.1000000001804 1.3302768005068192e-07
+1093.2000000001804 1.311337349698396e-07
+1093.3000000001803 1.2924666789963505e-07
+1093.4000000001804 1.2736657455868824e-07
+1093.5000000001805 1.2549355065273916e-07
+1093.6000000001804 1.2337564765448615e-07
+1093.7000000001804 1.2127359404437948e-07
+1093.8000000001805 1.1918738836600217e-07
+1093.9000000001806 1.1711702916332352e-07
+1094.0000000001805 1.1506251497982983e-07
+1094.1000000001804 1.1316712193733512e-07
+1094.2000000001806 1.112896240030584e-07
+1094.3000000001807 1.0942995714005577e-07
+1094.4000000001806 1.0758805730616896e-07
+1094.5000000001805 1.0576386045481466e-07
+1094.6000000001807 1.0415057163390388e-07
+1094.7000000001808 1.0254891338582892e-07
+1094.8000000001807 1.0095888639882015e-07
+1094.9000000001806 9.938049136121338e-08
+1095.0000000001808 9.781372896076734e-08
+1095.100000000181 9.611626989334685e-08
+1095.2000000001808 9.443374148443729e-08
+1095.3000000001807 9.276613144340214e-08
+1095.4000000001809 9.111342748317333e-08
+1095.500000000181 8.94756173194365e-08
+1095.600000000181 8.778014309918123e-08
+1095.7000000001808 8.61021644615892e-08
+1095.800000000181 8.444163393947423e-08
+1095.900000000181 8.279850408058127e-08
+1096.000000000181 8.117272744788276e-08
+1096.100000000181 7.978652438415224e-08
+1096.200000000181 7.840918381821873e-08
+1096.3000000001812 7.704077464144755e-08
+1096.400000000181 7.568136574447579e-08
+1096.500000000181 7.4331026017093e-08
+1096.6000000001811 7.297483054721531e-08
+1096.7000000001813 7.162843757194127e-08
+1096.8000000001812 7.029190735425952e-08
+1096.900000000181 6.896530015679578e-08
+1097.0000000001812 6.764867624031136e-08
+1097.1000000001814 6.612091628194614e-08
+1097.2000000001813 6.461248668668396e-08
+1097.3000000001812 6.31233080540888e-08
+1097.4000000001813 6.165330099112572e-08
+1097.5000000001814 6.02023861122966e-08
+1097.6000000001814 5.880690450022749e-08
+1097.7000000001813 5.742873748137386e-08
+1097.8000000001814 5.6067831812519986e-08
+1097.9000000001815 5.472413425537949e-08
+1098.0000000001814 5.3397591577295336e-08
+1098.1000000001814 5.238085667701004e-08
+1098.2000000001815 5.137435127338717e-08
+1098.3000000001816 5.03780619918063e-08
+1098.4000000001815 4.939197546052481e-08
+1098.5000000001814 5.4627525820883646e-08
+1098.6000000001816 5.7617880460522134e-08
+1098.7000000001817 5.840589843312526e-08
+1098.8000000001816 5.7138654961908934e-08
+1098.9000000001815 5.4101970209917304e-08
+1099.0000000001817 0.0
+1099.1000000001818 0.0
+1099.2000000001817 0.0
+1099.3000000001816 0.0
+1099.4000000001818 0.0
+1099.500000000182 0.0
+1099.6000000001818 0.0
+1099.7000000001817 0.0
+1099.8000000001819 0.0
+1099.900000000182 0.0
+1100.000000000182 0.0
+1100.1000000001818 0.0
+1100.200000000182 0.0
+1100.300000000182 0.0
+1100.400000000182 0.0
+1100.500000000182 0.0
+1100.600000000182 0.0
+1100.7000000001822 0.0
+1100.800000000182 -0.0
+1100.900000000182 -0.0
+1101.0000000001821 -0.0
+1101.1000000001823 -0.0
+1101.2000000001822 -0.0
+1101.300000000182 -0.0
+1101.4000000001822 -0.0
+1101.5000000001824 0.0
+1101.6000000001823 0.0
+1101.7000000001822 0.0
+1101.8000000001823 0.0
+1101.9000000001824 0.0
+1102.0000000001824 0.0
+1102.1000000001823 0.0
+1102.2000000001824 0.0
+1102.3000000001825 0.0
+1102.4000000001824 0.0
+1102.5000000001824 0.0
+1102.6000000001825 0.0
+1102.7000000001826 0.0
+1102.8000000001825 0.0
+1102.9000000001824 0.0
+1103.0000000001826 0.0
+1103.1000000001827 0.0
+1103.2000000001826 0.0
+1103.3000000001825 0.0
+1103.4000000001827 0.0
+1103.5000000001828 0.0
+1103.6000000001827 0.0
+1103.7000000001826 0.0
+1103.8000000001828 0.0
+1103.900000000183 0.0
+1104.0000000001828 0.0
+1104.1000000001827 0.0
+1104.2000000001829 0.0
+1104.300000000183 0.0
+1104.400000000183 0.0
+1104.5000000001828 0.0
+1104.600000000183 0.0
+1104.700000000183 0.0
+1104.800000000183 0.0
+1104.900000000183 0.0
+1105.000000000183 0.0
+1105.1000000001832 0.0
+1105.200000000183 0.0
+1105.300000000183 0.0
+1105.4000000001831 0.0
+1105.5000000001833 0.0
+1105.6000000001832 0.0
+1105.700000000183 0.0
+1105.8000000001832 0.0
+1105.9000000001834 0.0
+1106.0000000001833 0.0
+1106.1000000001832 0.0
+1106.2000000001833 0.0
+1106.3000000001834 0.0
+1106.4000000001834 0.0
+1106.5000000001833 0.0
+1106.6000000001834 0.0
+1106.7000000001835 0.0
+1106.8000000001834 0.0
+1106.9000000001834 0.0
+1107.0000000001835 0.0
+1107.1000000001836 0.0
+1107.2000000001835 0.0
+1107.3000000001834 0.0
+1107.4000000001836 0.0
+1107.5000000001837 0.0
+1107.6000000001836 0.0
+1107.7000000001835 0.0
+1107.8000000001837 0.0
+1107.9000000001838 0.0
+1108.0000000001837 0.0
+1108.1000000001836 0.0
+1108.2000000001838 0.0
+1108.300000000184 0.0
+1108.4000000001838 0.0
+1108.5000000001837 0.0
+1108.6000000001839 0.0
+1108.700000000184 0.0
+1108.800000000184 0.0
+1108.9000000001838 0.0
+1109.000000000184 0.0
+1109.100000000184 0.0
+1109.200000000184 0.0
+1109.300000000184 0.0
+1109.400000000184 0.0
+1109.5000000001842 0.0
+1109.600000000184 0.0
+1109.700000000184 0.0
+1109.8000000001841 0.0
+1109.9000000001843 0.0
+1110.0000000001842 0.0
+1110.100000000184 0.0
+1110.2000000001842 0.0
+1110.3000000001844 0.0
+1110.4000000001843 0.0
+1110.5000000001842 0.0
+1110.6000000001843 0.0
+1110.7000000001844 0.0
+1110.8000000001844 0.0
+1110.9000000001843 0.0
+1111.0000000001844 0.0
+1111.1000000001845 0.0
+1111.2000000001844 0.0
+1111.3000000001844 0.0
+1111.4000000001845 0.0
+1111.5000000001846 0.0
+1111.6000000001845 0.0
+1111.7000000001844 0.0
+1111.8000000001846 0.0
+1111.9000000001847 0.0
+1112.0000000001846 0.0
+1112.1000000001845 0.0
+1112.2000000001847 0.0
+1112.3000000001848 0.0
+1112.4000000001847 0.0
+1112.5000000001846 0.0
+1112.6000000001848 0.0
+1112.700000000185 0.0
+1112.8000000001848 0.0
+1112.9000000001847 0.0
+1113.0000000001849 0.0
+1113.100000000185 0.0
+1113.200000000185 0.0
+1113.3000000001848 0.0
+1113.400000000185 0.0
+1113.500000000185 0.0
+1113.600000000185 0.0
+1113.700000000185 0.0
+1113.800000000185 0.0
+1113.9000000001852 0.0
+1114.000000000185 0.0
+1114.100000000185 0.0
+1114.2000000001851 0.0
+1114.3000000001853 0.0
+1114.4000000001852 0.0
+1114.500000000185 0.0
+1114.6000000001852 0.0
+1114.7000000001854 0.0
+1114.8000000001853 0.0
+1114.9000000001852 0.0
+1115.0000000001853 0.0
+1115.1000000001854 0.0
+1115.2000000001854 0.0
+1115.3000000001853 0.0
+1115.4000000001854 0.0
+1115.5000000001855 0.0
+1115.6000000001854 0.0
+1115.7000000001854 0.0
+1115.8000000001855 0.0
+1115.9000000001856 0.0
+1116.0000000001855 0.0
+1116.1000000001854 0.0
+1116.2000000001856 0.0
+1116.3000000001857 0.0
+1116.4000000001856 0.0
+1116.5000000001855 0.0
+1116.6000000001857 0.0
+1116.7000000001858 0.0
+1116.8000000001857 0.0
+1116.9000000001856 0.0
+1117.0000000001858 0.0
+1117.100000000186 0.0
+1117.2000000001858 0.0
+1117.3000000001857 0.0
+1117.4000000001859 0.0
+1117.500000000186 0.0
+1117.600000000186 0.0
+1117.7000000001858 0.0
+1117.800000000186 0.0
+1117.900000000186 0.0
+1118.000000000186 0.0
+1118.100000000186 0.0
+1118.200000000186 0.0
+1118.3000000001862 0.0
+1118.400000000186 0.0
+1118.500000000186 0.0
+1118.6000000001861 0.0
+1118.7000000001863 0.0
+1118.8000000001862 0.0
+1118.900000000186 0.0
+1119.0000000001862 0.0
+1119.1000000001864 0.0
+1119.2000000001863 0.0
+1119.3000000001862 0.0
+1119.4000000001863 0.0
+1119.5000000001864 0.0
+1119.6000000001864 0.0
+1119.7000000001863 0.0
+1119.8000000001864 0.0
+1119.9000000001865 0.0
+1120.0000000001864 0.0
+1120.1000000001864 0.0
+1120.2000000001865 0.0
+1120.3000000001866 0.0
+1120.4000000001865 0.0
+1120.5000000001864 0.0
+1120.6000000001866 0.0
+1120.7000000001867 0.0
+1120.8000000001866 0.0
+1120.9000000001865 0.0
+1121.0000000001867 0.0
+1121.1000000001868 0.0
+1121.2000000001867 0.0
+1121.3000000001866 0.0
+1121.4000000001868 0.0
+1121.500000000187 0.0
+1121.6000000001868 0.0
+1121.7000000001867 0.0
+1121.8000000001869 0.0
+1121.900000000187 0.0
+1122.000000000187 0.0
+1122.1000000001868 0.0
+1122.200000000187 0.0
+1122.300000000187 0.0
+1122.400000000187 0.0
+1122.500000000187 0.0
+1122.600000000187 0.0
+1122.7000000001872 0.0
+1122.800000000187 0.0
+1122.900000000187 0.0
+1123.0000000001871 0.0
+1123.1000000001873 0.0
+1123.2000000001872 0.0
+1123.300000000187 0.0
+1123.4000000001872 0.0
+1123.5000000001874 0.0
+1123.6000000001873 0.0
+1123.7000000001872 0.0
+1123.8000000001873 0.0
+1123.9000000001874 0.0
+1124.0000000001874 0.0
+1124.1000000001873 0.0
+1124.2000000001874 0.0
+1124.3000000001875 0.0
+1124.4000000001874 0.0
+1124.5000000001874 0.0
+1124.6000000001875 0.0
+1124.7000000001876 0.0
+1124.8000000001875 0.0
+1124.9000000001874 0.0
+1125.0000000001876 0.0
+1125.1000000001877 0.0
+1125.2000000001876 0.0
+1125.3000000001875 0.0
+1125.4000000001877 0.0
+1125.5000000001878 0.0
+1125.6000000001877 0.0
+1125.7000000001876 0.0
+1125.8000000001878 0.0
+1125.900000000188 0.0
+1126.0000000001878 0.0
+1126.1000000001877 0.0
+1126.2000000001879 0.0
+1126.300000000188 0.0
+1126.400000000188 0.0
+1126.5000000001878 0.0
+1126.600000000188 0.0
+1126.700000000188 0.0
+1126.800000000188 0.0
+1126.900000000188 0.0
+1127.000000000188 0.0
+1127.1000000001882 0.0
+1127.200000000188 0.0
+1127.300000000188 0.0
+1127.4000000001881 0.0
+1127.5000000001883 0.0
+1127.6000000001882 0.0
+1127.700000000188 0.0
+1127.8000000001882 0.0
+1127.9000000001884 0.0
+1128.0000000001883 0.0
+1128.1000000001882 0.0
+1128.2000000001883 0.0
+1128.3000000001884 0.0
+1128.4000000001884 0.0
+1128.5000000001883 0.0
+1128.6000000001884 0.0
+1128.7000000001885 0.0
+1128.8000000001884 0.0
+1128.9000000001884 0.0
+1129.0000000001885 0.0
+1129.1000000001886 0.0
+1129.2000000001885 0.0
+1129.3000000001884 0.0
+1129.4000000001886 0.0
+1129.5000000001887 0.0
+1129.6000000001886 0.0
+1129.7000000001885 0.0
+1129.8000000001887 0.0
+1129.9000000001888 0.0
+1130.0000000001887 0.0
+1130.1000000001886 0.0
+1130.2000000001888 0.0
+1130.300000000189 0.0
+1130.4000000001888 0.0
+1130.5000000001887 0.0
+1130.6000000001889 0.0
+1130.700000000189 0.0
+1130.800000000189 0.0
+1130.9000000001888 0.0
+1131.000000000189 0.0
+1131.100000000189 0.0
+1131.200000000189 0.0
+1131.300000000189 0.0
+1131.400000000189 0.0
+1131.5000000001892 0.0
+1131.600000000189 0.0
+1131.700000000189 0.0
+1131.8000000001891 0.0
+1131.9000000001893 0.0
+1132.0000000001892 0.0
+1132.100000000189 0.0
+1132.2000000001892 0.0
+1132.3000000001894 0.0
+1132.4000000001893 0.0
+1132.5000000001892 0.0
+1132.6000000001893 0.0
+1132.7000000001894 0.0
+1132.8000000001894 0.0
+1132.9000000001893 0.0
+1133.0000000001894 0.0
+1133.1000000001895 0.0
+1133.2000000001894 0.0
+1133.3000000001894 0.0
+1133.4000000001895 0.0
+1133.5000000001896 0.0
+1133.6000000001895 0.0
+1133.7000000001894 0.0
+1133.8000000001896 0.0
+1133.9000000001897 0.0
+1134.0000000001896 0.0
+1134.1000000001895 0.0
+1134.2000000001897 0.0
+1134.3000000001898 0.0
+1134.4000000001897 0.0
+1134.5000000001896 0.0
+1134.6000000001898 0.0
+1134.70000000019 0.0
+1134.8000000001898 0.0
+1134.9000000001897 0.0
+1135.0000000001899 0.0
+1135.10000000019 0.0
+1135.20000000019 0.0
+1135.3000000001898 0.0
+1135.40000000019 0.0
+1135.50000000019 0.0
+1135.60000000019 0.0
+1135.70000000019 0.0
+1135.80000000019 0.0
+1135.9000000001902 0.0
+1136.00000000019 0.0
+1136.10000000019 0.0
+1136.2000000001901 0.0
+1136.3000000001903 0.0
+1136.4000000001902 0.0
+1136.50000000019 0.0
+1136.6000000001902 0.0
+1136.7000000001904 0.0
+1136.8000000001903 0.0
+1136.9000000001902 0.0
+1137.0000000001903 0.0
+1137.1000000001904 0.0
+1137.2000000001904 0.0
+1137.3000000001903 0.0
+1137.4000000001904 0.0
+1137.5000000001905 0.0
+1137.6000000001904 0.0
+1137.7000000001904 0.0
+1137.8000000001905 0.0
+1137.9000000001906 0.0
+1138.0000000001905 0.0
+1138.1000000001904 0.0
+1138.2000000001906 0.0
+1138.3000000001907 0.0
+1138.4000000001906 0.0
+1138.5000000001905 0.0
+1138.6000000001907 0.0
+1138.7000000001908 0.0
+1138.8000000001907 0.0
+1138.9000000001906 0.0
+1139.0000000001908 0.0
+1139.100000000191 0.0
+1139.2000000001908 0.0
+1139.3000000001907 0.0
+1139.4000000001909 0.0
+1139.500000000191 0.0
+1139.600000000191 0.0
+1139.7000000001908 0.0
+1139.800000000191 0.0
+1139.900000000191 0.0
+1140.000000000191 0.0
+1140.100000000191 0.0
+1140.200000000191 0.0
+1140.3000000001912 0.0
+1140.400000000191 0.0
+1140.500000000191 0.0
+1140.6000000001911 0.0
+1140.7000000001913 0.0
+1140.8000000001912 0.0
+1140.900000000191 0.0
+1141.0000000001912 0.0
+1141.1000000001914 0.0
+1141.2000000001913 0.0
+1141.3000000001912 0.0
+1141.4000000001913 0.0
+1141.5000000001914 0.0
+1141.6000000001914 0.0
+1141.7000000001913 0.0
+1141.8000000001914 0.0
+1141.9000000001915 0.0
+1142.0000000001914 0.0
+1142.1000000001914 0.0
+1142.2000000001915 0.0
+1142.3000000001916 0.0
+1142.4000000001915 0.0
+1142.5000000001914 0.0
+1142.6000000001916 0.0
+1142.7000000001917 0.0
+1142.8000000001916 0.0
+1142.9000000001915 0.0
+1143.0000000001917 0.0
+1143.1000000001918 0.0
+1143.2000000001917 0.0
+1143.3000000001916 0.0
+1143.4000000001918 0.0
+1143.500000000192 0.0
+1143.6000000001918 0.0
+1143.7000000001917 0.0
+1143.8000000001919 0.0
+1143.900000000192 0.0
+1144.000000000192 0.0
+1144.1000000001918 0.0
+1144.200000000192 0.0
+1144.300000000192 0.0
+1144.400000000192 0.0
+1144.500000000192 0.0
+1144.600000000192 0.0
+1144.7000000001922 0.0
+1144.800000000192 0.0
+1144.900000000192 0.0
+1145.0000000001921 0.0
+1145.1000000001923 0.0
+1145.2000000001922 0.0
+1145.300000000192 0.0
+1145.4000000001922 0.0
+1145.5000000001924 0.0
+1145.6000000001923 0.0
+1145.7000000001922 0.0
+1145.8000000001923 0.0
+1145.9000000001924 0.0
+1146.0000000001924 0.0
+1146.1000000001923 0.0
+1146.2000000001924 0.0
+1146.3000000001925 0.0
+1146.4000000001924 0.0
+1146.5000000001924 0.0
+1146.6000000001925 0.0
+1146.7000000001926 0.0
+1146.8000000001925 0.0
+1146.9000000001924 0.0
+1147.0000000001926 0.0
+1147.1000000001927 0.0
+1147.2000000001926 0.0
+1147.3000000001925 0.0
+1147.4000000001927 0.0
+1147.5000000001928 0.0
+1147.6000000001927 0.0
+1147.7000000001926 0.0
+1147.8000000001928 0.0
+1147.900000000193 0.0
+1148.0000000001928 0.0
+1148.1000000001927 0.0
+1148.2000000001929 0.0
+1148.300000000193 0.0
+1148.400000000193 0.0
+1148.5000000001928 0.0
+1148.600000000193 0.0
+1148.700000000193 0.0
+1148.800000000193 0.0
+1148.900000000193 0.0
+1149.000000000193 0.0
+1149.1000000001932 0.0
+1149.200000000193 0.0
+1149.300000000193 0.0
+1149.4000000001931 0.0
+1149.5000000001933 0.0
+1149.6000000001932 0.0
+1149.700000000193 0.0
+1149.8000000001932 0.0
+1149.9000000001934 0.0
+1150.0000000001933 0.0
diff --git a/filt_func/rubin/u.dat b/filt_func/rubin/u.dat
new file mode 100755
index 00000000..2ff028a4
--- /dev/null
+++ b/filt_func/rubin/u.dat
@@ -0,0 +1,8508 @@
+# LSST Throughputs files created from syseng_throughputs repo
+# Version 1.9
+# sha1 fcc05772f99427e4a45cd1b9da1628dded9a06d5
+# Aerosols added to atmosphere
+# Wavelen_cutoff_BLUE 304.30
+# Wavelen_cutoff_RED 403.50
+# Wavelength(nm) Throughput(0-1)
+300.0 0.0
+300.1 0.0
+300.20000000000005 0.0
+300.30000000000007 0.0
+300.4000000000001 0.0
+300.5000000000001 0.0
+300.60000000000014 0.0
+300.70000000000016 0.0
+300.8000000000002 0.0
+300.9000000000002 0.0
+301.0000000000002 0.0
+301.10000000000025 0.0
+301.2000000000003 0.0
+301.3000000000003 0.0
+301.4000000000003 0.0
+301.50000000000034 0.0
+301.60000000000036 0.0
+301.7000000000004 0.0
+301.8000000000004 0.0
+301.90000000000043 0.0
+302.00000000000045 0.0
+302.1000000000005 0.0
+302.2000000000005 0.0
+302.3000000000005 0.0
+302.40000000000055 0.0
+302.50000000000057 0.0
+302.6000000000006 0.0
+302.7000000000006 0.0
+302.80000000000064 0.0
+302.90000000000066 0.0
+303.0000000000007 0.0
+303.1000000000007 0.0
+303.2000000000007 0.0
+303.30000000000075 0.0
+303.4000000000008 0.0
+303.5000000000008 0.0
+303.6000000000008 0.0
+303.70000000000084 0.0
+303.80000000000086 0.0
+303.9000000000009 0.0
+304.0000000000009 0.0
+304.10000000000093 0.0
+304.20000000000095 0.0
+304.300000000001 0.0
+304.400000000001 0.0
+304.500000000001 0.0
+304.60000000000105 0.0
+304.70000000000107 0.0
+304.8000000000011 0.0
+304.9000000000011 0.0
+305.00000000000114 0.0
+305.10000000000116 0.0
+305.2000000000012 0.0
+305.3000000000012 0.0
+305.4000000000012 0.0
+305.50000000000125 0.0
+305.6000000000013 0.0
+305.7000000000013 0.0
+305.8000000000013 0.0
+305.90000000000134 0.0
+306.00000000000136 0.0
+306.1000000000014 0.0
+306.2000000000014 0.0
+306.30000000000143 0.0
+306.40000000000146 0.0
+306.5000000000015 0.0
+306.6000000000015 0.0
+306.7000000000015 0.0
+306.80000000000155 0.0
+306.90000000000157 0.0
+307.0000000000016 0.0
+307.1000000000016 0.0
+307.20000000000164 0.0
+307.30000000000166 0.0
+307.4000000000017 0.0
+307.5000000000017 0.0
+307.6000000000017 0.0
+307.70000000000175 0.0
+307.8000000000018 0.0
+307.9000000000018 0.0
+308.0000000000018 0.0
+308.10000000000184 0.0
+308.20000000000186 0.0
+308.3000000000019 0.0
+308.4000000000019 0.0
+308.50000000000193 0.0
+308.60000000000196 0.0
+308.700000000002 0.0
+308.800000000002 0.0
+308.900000000002 0.0
+309.00000000000205 0.0
+309.10000000000207 0.0
+309.2000000000021 0.0
+309.3000000000021 0.0
+309.40000000000214 0.0
+309.50000000000216 0.0
+309.6000000000022 0.0
+309.7000000000022 0.0
+309.8000000000022 0.0
+309.90000000000225 0.0
+310.0000000000023 0.0
+310.1000000000023 0.0
+310.2000000000023 0.0
+310.30000000000234 0.0
+310.40000000000236 0.0
+310.5000000000024 0.0
+310.6000000000024 0.0
+310.70000000000243 0.0
+310.80000000000246 0.0
+310.9000000000025 0.0
+311.0000000000025 0.0
+311.1000000000025 0.0
+311.20000000000255 0.0
+311.30000000000257 0.0
+311.4000000000026 0.0
+311.5000000000026 0.0
+311.60000000000264 0.0
+311.70000000000266 0.0
+311.8000000000027 0.0
+311.9000000000027 0.0
+312.00000000000273 0.0
+312.10000000000275 0.0
+312.2000000000028 0.0
+312.3000000000028 0.0
+312.4000000000028 0.0
+312.50000000000284 0.0
+312.60000000000286 0.0
+312.7000000000029 0.0
+312.8000000000029 0.0
+312.90000000000293 0.0
+313.00000000000296 0.0
+313.100000000003 0.0
+313.200000000003 0.0
+313.300000000003 0.0
+313.40000000000305 0.0
+313.50000000000307 0.0
+313.6000000000031 0.0
+313.7000000000031 0.0
+313.80000000000314 0.0
+313.90000000000316 0.0
+314.0000000000032 0.0
+314.1000000000032 0.0
+314.20000000000323 0.0
+314.30000000000325 0.0
+314.4000000000033 0.0
+314.5000000000033 0.0
+314.6000000000033 0.0
+314.70000000000334 0.0
+314.80000000000337 0.0
+314.9000000000034 0.0
+315.0000000000034 0.0
+315.10000000000343 0.0
+315.20000000000346 0.0
+315.3000000000035 0.0
+315.4000000000035 0.0
+315.5000000000035 0.0
+315.60000000000355 0.0
+315.70000000000357 0.0
+315.8000000000036 0.0
+315.9000000000036 0.0
+316.00000000000364 0.0
+316.10000000000366 0.0
+316.2000000000037 0.0
+316.3000000000037 0.0
+316.40000000000373 0.0
+316.50000000000375 0.0
+316.6000000000038 0.0
+316.7000000000038 0.0
+316.8000000000038 0.0
+316.90000000000384 0.0
+317.00000000000387 0.0
+317.1000000000039 0.0
+317.2000000000039 0.0
+317.30000000000393 0.0
+317.40000000000396 0.0
+317.500000000004 0.0
+317.600000000004 0.0
+317.700000000004 0.0
+317.80000000000405 0.0
+317.90000000000407 0.0
+318.0000000000041 0.0
+318.1000000000041 0.0
+318.20000000000414 0.0
+318.30000000000416 0.0
+318.4000000000042 0.0
+318.5000000000042 0.0
+318.60000000000423 0.0
+318.70000000000425 0.0
+318.8000000000043 0.0
+318.9000000000043 0.0
+319.0000000000043 0.0
+319.10000000000434 0.0
+319.20000000000437 0.0
+319.3000000000044 0.0
+319.4000000000044 0.0
+319.50000000000443 0.0
+319.60000000000446 0.0
+319.7000000000045 0.0
+319.8000000000045 0.0
+319.9000000000045 0.0
+320.00000000000455 1.2722411862695854e-18
+320.10000000000457 3.3828906912305605e-08
+320.2000000000046 8.105575010853388e-08
+320.3000000000046 1.4445078584801978e-07
+320.40000000000464 2.271046784271956e-07
+320.50000000000466 3.324469887924082e-07
+320.6000000000047 4.650236836252534e-07
+320.7000000000047 6.287539591394464e-07
+320.80000000000473 8.283557763031786e-07
+320.90000000000475 1.0689906579382723e-06
+321.0000000000048 1.3562866208778777e-06
+321.1000000000048 1.7382427555050511e-06
+321.2000000000048 2.1906276472605853e-06
+321.30000000000484 2.720817259288728e-06
+321.40000000000487 3.3365122586066983e-06
+321.5000000000049 4.045743337485347e-06
+321.6000000000049 4.824514182414484e-06
+321.70000000000493 5.701866827988874e-06
+321.80000000000496 6.684603249429582e-06
+321.900000000005 7.779661716687781e-06
+322.000000000005 8.994114585803342e-06
+322.100000000005 1.045901769825142e-05
+322.20000000000505 1.2084535920922277e-05
+322.30000000000507 1.388078667736946e-05
+322.4000000000051 1.585813598655208e-05
+322.5000000000051 1.802719946112174e-05
+322.60000000000514 2.0570803181250923e-05
+322.70000000000516 2.3372102711573017e-05
+322.8000000000052 2.644831264177393e-05
+322.9000000000052 2.9817319325783764e-05
+323.00000000000523 3.3497694865091256e-05
+323.10000000000525 3.870447970476407e-05
+323.2000000000053 4.448696609846561e-05
+323.3000000000053 5.088641136077791e-05
+323.4000000000053 5.794572618621224e-05
+323.50000000000534 6.57095059658939e-05
+323.60000000000537 7.376511802973065e-05
+323.7000000000054 8.251517090941256e-05
+323.8000000000054 9.199728363274416e-05
+323.90000000000543 0.00010225013384225696
+324.00000000000546 0.00011331347136191019
+324.1000000000055 0.00012715893337735578
+324.2000000000055 0.00014211543491286316
+324.3000000000055 0.00015822942012151363
+324.40000000000555 0.00017554765966318236
+324.50000000000557 0.0001941172437612852
+324.6000000000056 0.00021388343453570389
+324.7000000000056 0.00023497526627829025
+324.80000000000564 0.0002574385778149882
+324.90000000000566 0.00028131938560812164
+325.0000000000057 0.0003066638763425043
+325.1000000000057 0.00033772739789559577
+325.20000000000573 0.00037098493794072865
+325.30000000000575 0.00040653140474661135
+325.4000000000058 0.0004444637100752182
+325.5000000000058 0.00048488079560062063
+325.6000000000058 0.0005301331649257396
+325.70000000000584 0.0005784477027142639
+325.80000000000587 0.000629961429929553
+325.9000000000059 0.0006848149179934708
+326.0000000000059 0.0007431523473716462
+326.10000000000593 0.0007958949914519211
+326.20000000000596 0.0008513694144624589
+326.300000000006 0.0009096701048366369
+326.400000000006 0.0009708935447294648
+326.500000000006 0.001035138250522457
+326.60000000000605 0.0010971457556756769
+326.70000000000607 0.001161754521907191
+326.8000000000061 0.0012290309547654062
+326.9000000000061 0.001299042249354656
+327.00000000000614 0.0013718563949675555
+327.10000000000616 0.0014651699571526637
+327.2000000000062 0.0015626683068202959
+327.3000000000062 0.0016644462133189296
+327.40000000000623 0.0017705985293338716
+327.50000000000625 0.0018812201818055212
+327.6000000000063 0.0019981966615821144
+327.7000000000063 0.00212005601733101
+327.8000000000063 0.0022469077037430827
+327.90000000000634 0.0023788616861163334
+328.00000000000637 0.0025160284364810228
+328.1000000000064 0.002654300117881103
+328.2000000000064 0.0027981363463603806
+328.30000000000643 0.0029476865865489484
+328.40000000000646 0.0031031026266599526
+328.5000000000065 0.0032645385966761577
+328.6000000000065 0.0034396730738118306
+328.7000000000065 0.003621833131685399
+328.80000000000655 0.0038112145207748337
+328.90000000000657 0.004008016424040023
+329.0000000000066 0.0042124414820124915
+329.1000000000066 0.0044222087516894645
+329.20000000000664 0.004639547534272341
+329.30000000000666 0.004864638126618942
+329.4000000000067 0.005097663296554199
+329.5000000000067 0.0053388082831940095
+329.60000000000673 0.00556957830783951
+329.70000000000675 0.0058072512221714325
+329.8000000000068 0.006051949082786514
+329.9000000000068 0.0063037947533028625
+330.0000000000068 0.006562911874334092
+330.10000000000684 0.006820342539537143
+330.20000000000687 0.007084435339346531
+330.3000000000069 0.007355275413653762
+330.4000000000069 0.007632947572476592
+330.50000000000693 0.007917536242115195
+330.60000000000696 0.008219556656755238
+330.700000000007 0.008529457011468034
+330.800000000007 0.008847351596548349
+330.900000000007 0.009173354692844762
+331.00000000000705 0.009507580499770301
+331.10000000000707 0.00977527188515768
+331.2000000000071 0.010048558664930502
+331.3000000000071 0.010327516499508202
+331.40000000000714 0.01061222093410401
+331.50000000000716 0.010902747330601426
+331.6000000000072 0.011222541353309155
+331.7000000000072 0.01154947054822519
+331.80000000000723 0.01188364664289118
+331.90000000000725 0.012225182409536746
+332.0000000000073 0.012574191667194224
+332.1000000000073 0.012970523149991614
+332.2000000000073 0.013375986457649038
+332.30000000000734 0.013790719729418111
+332.40000000000737 0.014214862198806471
+332.5000000000074 0.014648554192945723
+332.6000000000074 0.015061595480078306
+332.70000000000744 0.015482825089736927
+332.80000000000746 0.01591234129807198
+332.9000000000075 0.016350242928492704
+333.0000000000075 0.01679662935575307
+333.1000000000075 0.01714503566834546
+333.20000000000755 0.01749815842295881
+333.30000000000757 0.01785602676931482
+333.4000000000076 0.018218669806093605
+333.5000000000076 0.018586116582177407
+333.60000000000764 0.018981300897845114
+333.70000000000766 0.01938224627943431
+333.8000000000077 0.019789033975717202
+333.9000000000077 0.020201745540357783
+334.00000000000773 0.020620462657896348
+334.10000000000775 0.021044111755557413
+334.2000000000078 0.02147450235020487
+334.3000000000078 0.021911738944828126
+334.4000000000078 0.022355925763223875
+334.50000000000784 0.022807166533468867
+334.60000000000787 0.023274805702496796
+334.7000000000079 0.0237500202302288
+334.8000000000079 0.024232917606246924
+334.90000000000794 0.02472360392148994
+335.00000000000796 0.02522218357858808
+335.100000000008 0.025660443915880276
+335.200000000008 0.026104817931545378
+335.300000000008 0.026555370365242057
+335.40000000000805 0.02701216266866157
+335.5000000000081 0.02747525268876752
+335.6000000000081 0.02791220281630029
+335.7000000000081 0.028354577019981786
+335.80000000000814 0.02880240284789035
+335.90000000000816 0.029255702798568192
+336.0000000000082 0.02971449397203567
+336.1000000000082 0.03017012493275714
+336.20000000000823 0.030630801437875502
+336.30000000000825 0.03109651134067901
+336.4000000000083 0.031567235513432136
+336.5000000000083 0.03204294745321911
+336.6000000000083 0.032523610185679716
+336.70000000000834 0.03300942923164114
+336.80000000000837 0.03350043908545962
+336.9000000000084 0.0339966742845941
+337.0000000000084 0.03449816940433054
+337.10000000000844 0.03494480750588462
+337.20000000000846 0.03539584991429036
+337.3000000000085 0.03585132738290108
+337.4000000000085 0.03631127072478478
+337.5000000000085 0.036775710808159466
+337.60000000000855 0.03731683174144827
+337.7000000000086 0.037864294741291445
+337.8000000000086 0.03841815639642251
+337.9000000000086 0.03897847370241527
+338.00000000000864 0.03954530406627934
+338.10000000000866 0.040073530744801605
+338.2000000000087 0.04060734008732215
+338.3000000000087 0.04114677673305907
+338.40000000000873 0.04169188562922572
+338.50000000000875 0.04224271203517678
+338.6000000000088 0.042750834528649286
+338.7000000000088 0.04326374755223768
+338.8000000000088 0.04378146451359308
+338.90000000000884 0.044303999461836836
+339.00000000000887 0.0448313671509768
+339.1000000000089 0.04538006312009771
+339.2000000000089 0.04593382811698493
+339.30000000000894 0.04649268002016426
+339.40000000000896 0.0470566376624989
+339.500000000009 0.04762572090693517
+339.600000000009 0.04816380528387877
+339.700000000009 0.048706249793068306
+339.80000000000905 0.04925306987668251
+339.9000000000091 0.049804282470137864
+340.0000000000091 0.05035990609268984
+340.1000000000091 0.05075067394417233
+340.20000000000914 0.05114372480343449
+340.30000000000916 0.05153907016218431
+340.4000000000092 0.05193672340737878
+340.5000000000092 0.05233669989067952
+340.60000000000923 0.052778416402294775
+340.70000000000925 0.05322303393850298
+340.8000000000093 0.053670578010973885
+340.9000000000093 0.05412107633040515
+341.0000000000093 0.05457455888721941
+341.10000000000935 0.05509148922387127
+341.20000000000937 0.05561224327732393
+341.3000000000094 0.05613686376284386
+341.4000000000094 0.056665396137713056
+341.50000000000944 0.05719788870319012
+341.60000000000946 0.057734395090580135
+341.7000000000095 0.05827485919099664
+341.8000000000095 0.05881930210548467
+341.9000000000095 0.05936774499402243
+342.00000000000955 0.059920209075407405
+342.1000000000096 0.06041088137582278
+342.2000000000096 0.060904698302109976
+342.3000000000096 0.06140167398378775
+342.40000000000964 0.06190182257531993
+342.50000000000966 0.06240515825561494
+342.6000000000097 0.06286582450574929
+342.7000000000097 0.06332906396094323
+342.80000000000973 0.06379488592537719
+342.90000000000975 0.06426329970615957
+343.0000000000098 0.06473431461407018
+343.1000000000098 0.0650864967985537
+343.2000000000098 0.06544017794871887
+343.30000000000985 0.065795362021631
+343.40000000000987 0.06615205296854967
+343.5000000000099 0.0665102547350395
+343.6000000000099 0.06687015042270471
+343.70000000000994 0.06723168634592436
+343.80000000000996 0.06759480928485721
+343.90000000001 0.06795946931818751
+344.00000000001 0.06832561993236906
+344.10000000001 0.06865439797644973
+344.20000000001005 0.06898430863124483
+344.3000000000101 0.06931531554725782
+344.4000000000101 0.06964738630970986
+344.5000000000101 0.06998049254319888
+344.60000000001014 0.07036543663143573
+344.70000000001016 0.07075178052535606
+344.8000000000102 0.07113950762686003
+344.9000000000102 0.07152860572300733
+345.00000000001023 0.07191906711250434
+345.10000000001025 0.07238469567959462
+345.2000000000103 0.07285240872294287
+345.3000000000103 0.0733222158466884
+345.4000000000103 0.07379413172661976
+345.50000000001035 0.07426817626931621
+345.60000000001037 0.07471770892604519
+345.7000000000104 0.07516914245068611
+345.8000000000104 0.07562251196197795
+345.90000000001044 0.07607785841756146
+346.00000000001046 0.07653522877475062
+346.1000000000105 0.07690510331689204
+346.2000000000105 0.07727632585376487
+346.3000000000105 0.07764895839539494
+346.40000000001055 0.07802306930708255
+346.5000000000106 0.07839873344462873
+346.6000000000106 0.07877602904843993
+346.7000000000106 0.07915475274284918
+346.80000000001064 0.07953491003616743
+346.90000000001066 0.07991650647380945
+347.0000000000107 0.08029954763814205
+347.1000000000107 0.08082468584163252
+347.20000000001073 0.08135252064833624
+347.30000000001075 0.08188306387808862
+347.4000000000108 0.08241632741823007
+347.5000000000108 0.0829523232246443
+347.6000000000108 0.08349106675978574
+347.70000000001085 0.08403256416840756
+347.80000000001087 0.08457682499244092
+347.9000000000109 0.08512385877803416
+348.0000000000109 0.08567367507513182
+348.10000000001094 0.08601517382433668
+348.20000000001096 0.08635773714347664
+348.300000000011 0.08670136653072719
+348.400000000011 0.08704606347412278
+348.500000000011 0.08739182944998095
+348.60000000001105 0.08776967999276247
+348.7000000000111 0.08814903660378438
+348.8000000000111 0.08852978447258662
+348.9000000000111 0.08891181566355935
+349.00000000001114 0.0892950292877755
+349.10000000001116 0.08969371089194714
+349.2000000000112 0.09009348337005813
+349.3000000000112 0.09049426812616185
+349.40000000001123 0.09089599428524395
+349.50000000001125 0.09129859888371203
+349.6000000000113 0.09170202706195087
+349.7000000000113 0.09210623750144269
+349.8000000000113 0.09251119375999421
+349.90000000001135 0.09291686821362555
+350.00000000001137 0.09332324225910543
+350.1000000000114 0.0936690275382283
+350.2000000000114 0.09401512003694742
+350.30000000001144 0.09436152951108975
+350.40000000001146 0.09470827550984011
+350.5000000000115 0.09505538755261628
+350.6000000000115 0.09543579152292958
+350.7000000000115 0.09581686290569646
+350.80000000001155 0.09619866083775541
+350.9000000000116 0.0965812551189512
+351.0000000000116 0.0969647264095781
+351.1000000000116 0.09722400262743855
+351.20000000001164 0.09748365615621994
+351.30000000001166 0.09774379940196798
+351.4000000000117 0.09800455581168707
+351.5000000000117 0.09826606001115533
+351.60000000001173 0.09856225090831885
+351.70000000001176 0.09885909648183847
+351.8000000000118 0.09915659626164325
+351.9000000000118 0.09945474986305662
+352.0000000000118 0.09975355698694063
+352.10000000001185 0.10001622037580932
+352.20000000001187 0.10027934063136262
+352.3000000000119 0.10054291725547045
+352.4000000000119 0.10080694984352516
+352.50000000001194 0.10107143808426375
+352.60000000001196 0.10130194040308496
+352.700000000012 0.10153278258512588
+352.800000000012 0.101763967231593
+352.900000000012 0.1019954968621333
+353.00000000001205 0.10222737391319216
+353.1000000000121 0.10257391750670336
+353.2000000000121 0.10292132237679746
+353.3000000000121 0.10326959173685427
+353.40000000001214 0.10361872872129903
+353.50000000001216 0.10396873638473246
+353.6000000000122 0.10428426101315114
+353.7000000000122 0.10460038294127669
+353.80000000001223 0.10491714961112081
+353.90000000001226 0.10523460551643427
+354.0000000000123 0.10555279215137156
+354.1000000000123 0.10583022724065894
+354.2000000000123 0.10610831809374663
+354.30000000001235 0.10638709658045446
+354.40000000001237 0.10666659132515587
+354.5000000000124 0.1069468276604379
+354.6000000000124 0.10722782758337221
+354.70000000001244 0.10750960359470384
+354.80000000001246 0.10779216902923994
+354.9000000000125 0.1080755336184132
+355.0000000000125 0.10835970344173919
+355.1000000000125 0.10862094776454356
+355.20000000001255 0.10888288432764462
+355.3000000000126 0.109145507506298
+355.4000000000126 0.10940880783558084
+355.5000000000126 0.10967277196345335
+355.60000000001264 0.10993738260489133
+355.70000000001266 0.1102026310322645
+355.8000000000127 0.1104684957415648
+355.9000000000127 0.11073495141630883
+356.00000000001273 0.11100196888208198
+356.10000000001276 0.11129584166185764
+356.2000000000128 0.11159028735696573
+356.3000000000128 0.11188526497957733
+356.4000000000128 0.11218072946076889
+356.50000000001285 0.1124766316015893
+356.60000000001287 0.11281037166543821
+356.7000000000129 0.11314481645650167
+356.8000000000129 0.11347996676528724
+356.90000000001294 0.11381582338149654
+357.00000000001296 0.11415238709501815
+357.100000000013 0.11435959517093712
+357.200000000013 0.1145669756321524
+357.30000000001303 0.11477452826561668
+357.40000000001305 0.114982252858592
+357.5000000000131 0.11519014919701785
+357.6000000000131 0.1153982170661225
+357.7000000000131 0.11560645625062721
+357.80000000001314 0.11581486653454179
+357.90000000001316 0.11602344770095921
+358.0000000000132 0.11623219953267087
+358.1000000000132 0.11644273605754799
+358.20000000001323 0.11665347262944424
+358.30000000001326 0.11686440917037252
+358.4000000000133 0.11707554560192276
+358.5000000000133 0.1172868818458768
+358.6000000000133 0.11745976424764072
+358.70000000001335 0.11763265798209258
+358.80000000001337 0.11780561411341879
+358.9000000000134 0.11797868018094798
+359.0000000000134 0.11815190016980552
+359.10000000001344 0.11843814513697476
+359.20000000001346 0.11872500527120876
+359.3000000000135 0.11901251476273028
+359.4000000000135 0.11930070425238806
+359.50000000001353 0.1195896007846197
+359.60000000001355 0.11987921789457726
+359.7000000000136 0.12016957876182754
+359.8000000000136 0.12046070262267684
+359.9000000000136 0.12075260472197659
+360.00000000001364 0.12104529626374555
+360.10000000001367 0.12124495861133654
+360.2000000000137 0.1214451175735195
+360.3000000000137 0.12164577084585229
+360.40000000001373 0.12184691190175838
+360.50000000001376 0.1220485299591283
+360.6000000000138 0.12229029384992607
+360.7000000000138 0.1225326092034239
+360.8000000000138 0.12277545090166252
+360.90000000001385 0.12301878950470578
+361.00000000001387 0.12326259120829004
+361.1000000000139 0.12358292071186118
+361.2000000000139 0.12390394177447599
+361.30000000001394 0.12422560790923687
+361.40000000001396 0.12454786797132852
+361.500000000014 0.12487066610058734
+361.600000000014 0.12519394166853823
+361.70000000001403 0.1255178576699275
+361.80000000001405 0.1258424128898147
+361.9000000000141 0.12616760596510823
+362.0000000000141 0.126493435381941
+362.1000000000141 0.12678979546492086
+362.20000000001414 0.1270866889989736
+362.30000000001417 0.1273841138786799
+362.4000000000142 0.12768206784379843
+362.5000000000142 0.12798054847764953
+362.60000000001423 0.12832072122382074
+362.70000000001426 0.12866159573362446
+362.8000000000143 0.12900317388298238
+362.9000000000143 0.12934545768777886
+363.0000000000143 0.1296884493071924
+363.10000000001435 0.13003645393805774
+363.20000000001437 0.1303851900880851
+363.3000000000144 0.13073466039757636
+363.4000000000144 0.13108486765695007
+363.50000000001444 0.1314358148092671
+363.60000000001446 0.1317454888501807
+363.7000000000145 0.13205572708882166
+363.8000000000145 0.13236653206546348
+363.90000000001453 0.13267790620432537
+364.00000000001455 0.13298985181048764
+364.1000000000146 0.13328339398926484
+364.2000000000146 0.13357742989151195
+364.3000000000146 0.13387196127155507
+364.40000000001464 0.13416698975815644
+364.50000000001467 0.13446251685398214
+364.6000000000147 0.1347585550219648
+364.7000000000147 0.13505510160665554
+364.80000000001473 0.13535215406397294
+364.90000000001476 0.1356497099593604
+365.0000000000148 0.13594776697033223
+365.1000000000148 0.13630032549876575
+365.2000000000148 0.1366536110174013
+365.30000000001485 0.1370076220801099
+365.40000000001487 0.1373623573543618
+365.5000000000149 0.13771781562358984
+365.6000000000149 0.1381175959196404
+365.70000000001494 0.1385182875873302
+365.80000000001496 0.1389198939989988
+365.900000000015 0.1393224184082646
+366.000000000015 0.13972586394997658
+366.10000000001503 0.14000891750189837
+366.20000000001505 0.14029238298857338
+366.3000000000151 0.14057626198368586
+366.4000000000151 0.14086055592849803
+366.5000000000151 0.14114526612973108
+366.60000000001514 0.1413860281101214
+366.70000000001517 0.1416271007115022
+366.8000000000152 0.1418684832365872
+366.9000000000152 0.14211017526878297
+367.00000000001523 0.14235217667629504
+367.10000000001526 0.14271593043216957
+367.2000000000153 0.14308040310329775
+367.3000000000153 0.1434455961353076
+367.4000000000153 0.14381151127074604
+367.50000000001535 0.1441781505520733
+367.60000000001537 0.14454551632637602
+367.7000000000154 0.14491359477621898
+367.8000000000154 0.1452823838861297
+367.90000000001544 0.1456518816110895
+368.00000000001546 0.14602208587661217
+368.1000000000155 0.1462649254426031
+368.2000000000155 0.14650804370190473
+368.30000000001553 0.1467514378398148
+368.40000000001555 0.14699510502191704
+368.5000000000156 0.14723904239427665
+368.6000000000156 0.14752949465611156
+368.7000000000156 0.14782060328345056
+368.80000000001564 0.1481122423753591
+368.90000000001567 0.1484042949566076
+369.0000000000157 0.14869665307143812
+369.1000000000157 0.14889650486668365
+369.20000000001573 0.14909622317011265
+369.30000000001576 0.14929572803770313
+369.4000000000158 0.14949494910131136
+369.5000000000158 0.14969382563586714
+369.6000000000158 0.14993869854889366
+369.70000000001585 0.15018321145363833
+369.80000000001587 0.15042732732083353
+369.9000000000159 0.15067101866720017
+370.0000000000159 0.1509142676342304
+370.10000000001594 0.1511734013805889
+370.20000000001596 0.15143214045438666
+370.300000000016 0.15169049621110187
+370.400000000016 0.15194848995548527
+370.50000000001603 0.15220615302530022
+370.60000000001605 0.15241665640790977
+370.7000000000161 0.15262682991949397
+370.8000000000161 0.15283673170001894
+370.9000000000161 0.15304643045461183
+371.00000000001614 0.15325600552416274
+371.10000000001617 0.1536795142962635
+371.2000000000162 0.15410383956363466
+371.3000000000162 0.1545290944347554
+371.40000000001623 0.1549554036233651
+371.50000000001626 0.15538290359939438
+371.6000000000163 0.15576403732398456
+371.7000000000163 0.1561458894297173
+371.8000000000163 0.15652846397801973
+371.90000000001635 0.15691176506076396
+372.00000000001637 0.1572957968027327
+372.1000000000164 0.15770143233101613
+372.2000000000164 0.15810790846777292
+372.30000000001644 0.15851522972453594
+372.40000000001646 0.15892340064729113
+372.5000000000165 0.15933242581637913
+372.6000000000165 0.1596936507389519
+372.70000000001653 0.16005555683154177
+372.80000000001655 0.16041814400530158
+372.9000000000166 0.16078141248865901
+373.0000000000166 0.16114536282939987
+373.1000000000166 0.16150314604911126
+373.20000000001664 0.16186157036366308
+373.30000000001667 0.16222063717370314
+373.4000000000167 0.16258034821448417
+373.5000000000167 0.16294070556033777
+373.60000000001673 0.1632517245214635
+373.70000000001676 0.16356292125487487
+373.8000000000168 0.16387444372906465
+373.9000000000168 0.16418642973692346
+374.0000000000168 0.1644990067923261
+374.10000000001685 0.16481514099808975
+374.20000000001687 0.16513207642707275
+374.3000000000169 0.16544990908412494
+374.4000000000169 0.1657687242817846
+374.50000000001694 0.1660885965356971
+374.60000000001696 0.16635935870403423
+374.700000000017 0.16663118816013292
+374.800000000017 0.1669041266780389
+374.90000000001703 0.16717820545217887
+375.00000000001705 0.167453445012271
+375.1000000000171 0.16781102380617324
+375.2000000000171 0.16817002880546755
+375.3000000000171 0.1685304496380685
+375.40000000001714 0.16889226486357464
+375.50000000001717 0.16925544185486907
+375.6000000000172 0.1695689398775962
+375.7000000000172 0.16988351354016015
+375.80000000001723 0.17019909395104002
+375.90000000001726 0.1705155999452616
+376.0000000000173 0.17083293797240318
+376.1000000000173 0.17121071845043268
+376.2000000000173 0.17158927050032505
+376.30000000001735 0.1719684629297226
+376.40000000001737 0.17234815150767596
+376.5000000000174 0.17272817882984873
+376.6000000000174 0.17305659058329392
+376.70000000001744 0.17338550023696742
+376.80000000001746 0.17371490713646087
+376.9000000000175 0.17404481097095964
+377.0000000000175 0.17437521177653206
+377.10000000001753 0.17469161805008623
+377.20000000001755 0.17500842922618703
+377.3000000000176 0.17532564609829296
+377.4000000000176 0.1756432698196899
+377.5000000000176 0.17596130190641313
+377.60000000001764 0.17622723314598293
+377.70000000001767 0.17649342950295005
+377.8000000000177 0.17675988745881924
+377.9000000000177 0.17702660347219984
+378.00000000001774 0.1772935739810025
+378.10000000001776 0.17750410377705717
+378.2000000000178 0.1777146310093383
+378.3000000000178 0.1779251514666725
+378.4000000000178 0.17813566091947156
+378.50000000001785 0.17834615512057173
+378.60000000001787 0.1785036623844425
+378.7000000000179 0.17866109470907932
+378.8000000000179 0.1788184588245294
+378.90000000001794 0.1789757614849869
+379.00000000001796 0.1791330094693207
+379.100000000018 0.1792021599029207
+379.200000000018 0.17927099696058002
+379.30000000001803 0.17933952695764904
+379.40000000001805 0.17940775621864608
+379.5000000000181 0.17947569107827566
+379.6000000000181 0.1795964488825209
+379.7000000000181 0.1797169177490767
+379.80000000001814 0.17983709528590244
+379.90000000001817 0.17995697891264403
+380.0000000000182 0.18007656586060714
+380.1000000000182 0.18010205908762633
+380.20000000001824 0.1801269134501003
+380.30000000001826 0.18015112474963382
+380.4000000000183 0.1801746885988171
+380.5000000000183 0.18019760042375677
+380.6000000000183 0.18027291632287962
+380.70000000001835 0.18034754718116308
+380.8000000000184 0.1804214897484679
+380.9000000000184 0.18049474040236543
+381.0000000000184 0.18056729514769262
+381.10000000001844 0.18047635276568016
+381.20000000001846 0.18038453856498424
+381.3000000000185 0.18029184804136117
+381.4000000000185 0.18019827632767743
+381.50000000001853 0.1801038181952896
+381.60000000001855 0.18006125579089738
+381.7000000000186 0.18001773803798138
+381.8000000000186 0.17997325898046904
+381.9000000000186 0.17992781302340508
+382.00000000001864 0.17988139493486044
+382.10000000001867 0.17973454737036776
+382.2000000000187 0.17958664280607287
+382.3000000000187 0.17943767743231284
+382.40000000001874 0.17928764780344345
+382.50000000001876 0.17913655083552438
+382.6000000000188 0.1790366120457829
+382.7000000000188 0.17893546130619734
+382.8000000000188 0.17883309771019093
+382.90000000001885 0.1787295201596668
+383.0000000000189 0.17862472736564408
+383.1000000000189 0.1784566519843969
+383.2000000000189 0.17828721123896143
+383.30000000001894 0.17811640302290038
+383.40000000001896 0.17794422503802818
+383.500000000019 0.17777067479461828
+383.600000000019 0.1775959978334516
+383.70000000001903 0.17742011205246858
+383.80000000001905 0.17724293446289718
+383.9000000000191 0.1770643884793832
+384.0000000000191 0.1768844038931992
+384.1000000000191 0.17657692862579918
+384.20000000001914 0.1762674842806612
+384.30000000001917 0.1759560192470582
+384.4000000000192 0.1756424883071584
+384.5000000000192 0.1753268525862431
+384.60000000001924 0.17505979207180977
+384.70000000001926 0.1747903332561673
+384.8000000000193 0.1745184485402213
+384.9000000000193 0.17424411613369
+385.0000000000193 0.17396732001135742
+385.10000000001935 0.17357452995246977
+385.2000000000194 0.17317951479256563
+385.3000000000194 0.17278227836230517
+385.4000000000194 0.1723828300541719
+385.50000000001944 0.17198118475630625
+385.60000000001946 0.1716268657761789
+385.7000000000195 0.17127015250629432
+385.8000000000195 0.17091107989934706
+385.90000000001953 0.17054968847025304
+386.00000000001955 0.17018602422907136
+386.1000000000196 0.1695619958320382
+386.2000000000196 0.1689355821705759
+386.3000000000196 0.16830684600479104
+386.40000000001965 0.16767585486617753
+386.50000000001967 0.16704268094055522
+386.6000000000197 0.166407400947682
+386.7000000000197 0.16576977592571202
+386.80000000001974 0.16512980122621448
+386.90000000001976 0.1644874721938397
+387.0000000000198 0.16384278416686143
+387.1000000000198 0.16337211799423465
+387.2000000000198 0.16289827772048476
+387.30000000001985 0.1624212534590706
+387.4000000000199 0.1619410353022529
+387.5000000000199 0.1614576133223048
+387.6000000000199 0.1609249464079212
+387.70000000001994 0.16038938837511382
+387.80000000001996 0.15985093143501786
+387.90000000002 0.15930956778507185
+388.00000000002 0.15876528960846942
+388.10000000002003 0.15803827183777505
+388.20000000002005 0.15730850343125874
+388.3000000000201 0.15657597870100315
+388.4000000000201 0.1558406919507027
+388.5000000000201 0.15510263747685415
+388.60000000002015 0.15440562803448443
+388.70000000002017 0.1537052581332375
+388.8000000000202 0.1530015909047827
+388.9000000000202 0.1522946831232603
+389.00000000002024 0.15158458530777574
+389.10000000002026 0.15084045520602268
+389.2000000000203 0.1500937884576451
+389.3000000000203 0.14934461970553706
+389.4000000000203 0.1485929777497042
+389.50000000002035 0.14783888566635045
+389.6000000000204 0.14708236092913204
+389.7000000000204 0.14632341552741365
+389.8000000000204 0.14556205609016967
+389.90000000002044 0.14479828401016342
+390.00000000002046 0.14403209556848076
+390.1000000000205 0.1432308352528361
+390.2000000000205 0.14242600844900377
+390.30000000002053 0.14161759207014718
+390.40000000002055 0.1408055584158919
+390.5000000000206 0.1399898753101117
+390.6000000000206 0.13913115919279903
+390.7000000000206 0.13826922603585393
+390.80000000002065 0.13740403341628019
+390.90000000002067 0.13653553505583113
+391.0000000000207 0.13566368097499715
+391.1000000000207 0.13467669982913283
+391.20000000002074 0.1336867453292933
+391.30000000002076 0.13269375992374582
+391.4000000000208 0.1316976831806004
+391.5000000000208 0.1306984519669685
+391.6000000000208 0.12969599529924428
+391.70000000002085 0.12869048834113564
+391.8000000000209 0.12768192745896575
+391.9000000000209 0.1266703088296938
+392.0000000000209 0.12565562844449513
+392.10000000002094 0.12477546367943813
+392.20000000002096 0.12389158326185369
+392.300000000021 0.12300397948127731
+392.400000000021 0.12211264445835375
+392.50000000002103 0.12121757014865156
+392.60000000002105 0.12028497980739994
+392.7000000000211 0.11934918417074458
+392.8000000000211 0.11841017359079002
+392.9000000000211 0.11746793861662518
+393.00000000002115 0.1165224699906466
+393.10000000002117 0.11565230701165616
+393.2000000000212 0.11477884615111057
+393.3000000000212 0.11390207799881535
+393.40000000002124 0.11302199331286321
+393.50000000002126 0.11213858301679687
+393.6000000000213 0.11128283242531316
+393.7000000000213 0.1104231231365408
+393.8000000000213 0.10955949896262608
+393.90000000002135 0.10869199836892032
+394.0000000000214 0.10782065460526943
+394.1000000000214 0.10680324156715493
+394.2000000000214 0.10578281450491174
+394.30000000002144 0.10475939534549296
+394.40000000002146 0.10373300121976792
+394.5000000000215 0.1027036446305768
+394.6000000000215 0.10167133779949226
+394.70000000002153 0.10063608859181138
+394.80000000002156 0.09959789669471639
+394.9000000000216 0.09855675804098442
+395.0000000000216 0.09751266497512764
+395.1000000000216 0.09644195846244309
+395.20000000002165 0.09536856454967031
+395.30000000002167 0.09429246679033089
+395.4000000000217 0.09321364583872227
+395.5000000000217 0.09213207962630808
+395.60000000002174 0.09104786320776953
+395.70000000002176 0.08996091287018872
+395.8000000000218 0.08887115523526463
+395.9000000000218 0.08777851963154601
+396.0000000000218 0.08668293812469967
+396.10000000002185 0.08540283943936061
+396.2000000000219 0.08411716304236888
+396.3000000000219 0.08282584118726675
+396.4000000000219 0.08152880949700654
+396.50000000002194 0.08022600701422714
+396.60000000002196 0.07889563774158956
+396.700000000022 0.0775603577746204
+396.800000000022 0.07622011791089747
+396.90000000002203 0.0748748771149615
+397.00000000002206 0.0735246020889051
+397.1000000000221 0.07205476212680498
+397.2000000000221 0.07057996196218544
+397.3000000000221 0.0691001912710238
+397.40000000002215 0.06761544577379117
+397.50000000002217 0.0661257267408217
+397.6000000000222 0.06463104049470729
+397.7000000000222 0.06313139432478836
+397.80000000002224 0.061626802369591824
+397.90000000002226 0.06011728233648324
+398.0000000000223 0.05860285499107641
+398.1000000000223 0.05697042563681617
+398.2000000000223 0.05533325434246838
+398.30000000002235 0.05369136980468988
+398.4000000000224 0.0520448014708214
+398.5000000000224 0.05039357896902132
+398.6000000000224 0.048751154206871705
+398.70000000002244 0.04710312552721019
+398.80000000002246 0.045449501355826705
+398.9000000000225 0.04379029018751321
+399.0000000000225 0.042125500287722294
+399.10000000002253 0.04062968679323737
+399.20000000002256 0.03912965060606067
+399.3000000000226 0.03762540105959418
+399.4000000000226 0.03611694634390907
+399.5000000000226 0.0346042932295213
+399.60000000002265 0.03308744678792479
+399.70000000002267 0.031566349225447064
+399.8000000000227 0.030040993154384844
+399.9000000000227 0.028511371177852095
+400.00000000002274 0.02697747588988873
+400.10000000002276 0.025831037229223152
+400.2000000000228 0.024681745975014602
+400.3000000000228 0.02352959773406685
+400.4000000000228 0.022374588108396397
+400.50000000002285 0.021216712695149634
+400.6000000000229 0.0200559670865696
+400.7000000000229 0.01889234687002809
+400.8000000000229 0.017725847628047724
+400.90000000002294 0.016556464938265188
+401.00000000002296 0.015384194373494139
+401.100000000023 0.014597904108361877
+401.200000000023 0.013809141871408148
+401.30000000002303 0.01301790308631436
+401.40000000002306 0.012224183170833954
+401.5000000000231 0.01142797753684784
+401.6000000000231 0.010626386905813533
+401.7000000000231 0.009822740654791723
+401.80000000002315 0.009017035500809359
+401.90000000002317 0.008209268157090503
+402.0000000000232 0.007399435333193881
+402.1000000000232 0.006912401470183356
+402.20000000002324 0.0064241510403333915
+402.30000000002326 0.005934682149721133
+402.4000000000233 0.005443992902296108
+402.5000000000233 0.004952081399885633
+402.60000000002333 0.004458945742176542
+402.70000000002335 0.003964584026728518
+402.8000000000234 0.003468994348958685
+402.9000000000234 0.0029721748021520555
+403.0000000000234 0.0024741234775203735
+403.10000000002344 0.0022799907253217215
+403.20000000002346 0.002085365710933996
+403.3000000000235 0.001890247651217077
+403.4000000000235 0.001694635762129117
+403.50000000002353 0.0014985292587142574
+403.60000000002356 0.0013019273551084505
+403.7000000000236 0.0011048292645386747
+403.8000000000236 0.0009072341993247866
+403.9000000000236 0.0007091413708707442
+404.00000000002365 0.0005105499897153773
+404.10000000002367 0.000492807206094869
+404.2000000000237 0.00047502167720988
+404.3000000000237 0.0004571933396108779
+404.40000000002374 0.00043932212978240484
+404.50000000002376 0.0004214079841415739
+404.6000000000238 0.00040355985034176033
+404.7000000000238 0.00038565886988234903
+404.80000000002383 0.00036770495196244193
+404.90000000002385 0.0003496980056770972
+405.0000000000239 0.00033163794000703605
+405.1000000000239 0.00029404435557688096
+405.2000000000239 0.000256373328220183
+405.30000000002394 0.0002186247590720779
+405.40000000002397 0.0001807985491762014
+405.500000000024 0.0001428945994861998
+405.600000000024 0.00010491281086409668
+405.70000000002403 6.685308408106552e-05
+405.80000000002406 2.8715319816970834e-05
+405.9000000000241 0.0
+406.0000000000241 0.0
+406.1000000000241 0.0
+406.20000000002415 0.0
+406.30000000002417 0.0
+406.4000000000242 0.0
+406.5000000000242 0.0
+406.60000000002424 0.0
+406.70000000002426 0.0
+406.8000000000243 0.0
+406.9000000000243 0.0
+407.00000000002433 0.0
+407.10000000002435 5.391373654090821e-05
+407.2000000000244 0.00012768518498678232
+407.3000000000244 0.00020158895074783497
+407.4000000000244 0.00027562517889126724
+407.50000000002444 0.00034979401459812556
+407.60000000002447 0.00042409560316245345
+407.7000000000245 0.0004985300899901144
+407.8000000000245 0.0005730976206018833
+407.90000000002453 0.000647798340629559
+408.00000000002456 0.000722632395797472
+408.1000000000246 0.0007032693704672939
+408.2000000000246 0.0006838592552426416
+408.3000000000246 0.0006644019792833539
+408.40000000002465 0.0006448974716712093
+408.50000000002467 0.0006253456614126782
+408.6000000000247 0.0006057464774334031
+408.7000000000247 0.0005860998485862085
+408.80000000002474 0.0005664057036430815
+408.90000000002476 0.0005466639713011169
+409.0000000000248 0.0005268745801673576
+409.1000000000248 0.0004659377815869517
+409.20000000002483 0.0004048729420052565
+409.30000000002485 0.00034367989485926937
+409.4000000000249 0.0002823584734332429
+409.5000000000249 0.00022090851085401007
+409.6000000000249 0.00015932984009532725
+409.70000000002494 9.762229397433605e-05
+409.80000000002497 3.578570515346431e-05
+409.900000000025 0.0
+410.000000000025 0.0
+410.10000000002503 0.0
+410.20000000002506 0.0
+410.3000000000251 0.0
+410.4000000000251 0.0
+410.5000000000251 0.0
+410.60000000002515 0.0
+410.70000000002517 0.0
+410.8000000000252 0.0
+410.9000000000252 0.0
+411.00000000002524 0.0
+411.10000000002526 0.0
+411.2000000000253 0.0
+411.3000000000253 0.0
+411.40000000002533 0.0
+411.50000000002535 0.0
+411.6000000000254 0.0
+411.7000000000254 0.0
+411.8000000000254 0.0
+411.90000000002544 0.0
+412.00000000002547 0.0
+412.1000000000255 0.0
+412.2000000000255 0.0
+412.30000000002553 0.0
+412.40000000002556 0.0
+412.5000000000256 0.0
+412.6000000000256 0.0
+412.7000000000256 0.0
+412.80000000002565 0.0
+412.90000000002567 0.0
+413.0000000000257 0.0
+413.1000000000257 0.0
+413.20000000002574 0.0
+413.30000000002576 0.0
+413.4000000000258 0.0
+413.5000000000258 0.0
+413.60000000002583 0.0
+413.70000000002585 0.0
+413.8000000000259 0.0
+413.9000000000259 0.0
+414.0000000000259 0.0
+414.10000000002594 0.0
+414.20000000002597 0.0
+414.300000000026 0.0
+414.400000000026 0.0
+414.50000000002603 0.0
+414.60000000002606 0.0
+414.7000000000261 0.0
+414.8000000000261 0.0
+414.9000000000261 0.0
+415.00000000002615 0.0
+415.10000000002617 0.0
+415.2000000000262 0.0
+415.3000000000262 0.0
+415.40000000002624 0.0
+415.50000000002626 0.0
+415.6000000000263 0.0
+415.7000000000263 0.0
+415.80000000002633 0.0
+415.90000000002635 0.0
+416.0000000000264 0.0
+416.1000000000264 0.0
+416.2000000000264 0.0
+416.30000000002644 0.0
+416.40000000002647 0.0
+416.5000000000265 0.0
+416.6000000000265 0.0
+416.70000000002653 0.0
+416.80000000002656 0.0
+416.9000000000266 0.0
+417.0000000000266 0.0
+417.1000000000266 0.0
+417.20000000002665 0.0
+417.30000000002667 0.0
+417.4000000000267 0.0
+417.5000000000267 0.0
+417.60000000002674 0.0
+417.70000000002676 0.0
+417.8000000000268 0.0
+417.9000000000268 0.0
+418.00000000002683 0.0
+418.10000000002685 0.0
+418.2000000000269 0.0
+418.3000000000269 0.0
+418.4000000000269 0.0
+418.50000000002694 0.0
+418.60000000002697 0.0
+418.700000000027 0.0
+418.800000000027 0.0
+418.90000000002703 0.0
+419.00000000002706 0.0
+419.1000000000271 0.0
+419.2000000000271 0.0
+419.3000000000271 0.0
+419.40000000002715 0.0
+419.50000000002717 0.0
+419.6000000000272 0.0
+419.7000000000272 0.0
+419.80000000002724 0.0
+419.90000000002726 0.0
+420.0000000000273 0.0
+420.1000000000273 0.0
+420.20000000002733 0.0
+420.30000000002735 0.0
+420.4000000000274 0.0
+420.5000000000274 0.0
+420.6000000000274 0.0
+420.70000000002744 0.0
+420.80000000002747 0.0
+420.9000000000275 0.0
+421.0000000000275 0.0
+421.10000000002753 0.0
+421.20000000002756 0.0
+421.3000000000276 0.0
+421.4000000000276 0.0
+421.5000000000276 0.0
+421.60000000002765 0.0
+421.70000000002767 0.0
+421.8000000000277 0.0
+421.9000000000277 0.0
+422.00000000002774 0.0
+422.10000000002776 0.0
+422.2000000000278 0.0
+422.3000000000278 0.0
+422.40000000002783 0.0
+422.50000000002785 0.0
+422.6000000000279 0.0
+422.7000000000279 0.0
+422.8000000000279 0.0
+422.90000000002794 0.0
+423.00000000002797 0.0
+423.100000000028 0.0
+423.200000000028 0.0
+423.30000000002804 0.0
+423.40000000002806 0.0
+423.5000000000281 0.0
+423.6000000000281 0.0
+423.7000000000281 1.355195549944869e-05
+423.80000000002815 4.447052002697071e-05
+423.9000000000282 7.543951668068881e-05
+424.0000000000282 0.00010645899486936358
+424.1000000000282 7.499045843024194e-05
+424.20000000002824 4.3475331116478115e-05
+424.30000000002826 1.191357239190221e-05
+424.4000000000283 0.0
+424.5000000000283 0.0
+424.60000000002833 0.0
+424.70000000002835 0.0
+424.8000000000284 0.0
+424.9000000000284 0.0
+425.0000000000284 0.0
+425.10000000002844 0.0
+425.20000000002847 0.0
+425.3000000000285 0.0
+425.4000000000285 0.0
+425.50000000002854 0.0
+425.60000000002856 0.0
+425.7000000000286 0.0
+425.8000000000286 0.0
+425.9000000000286 1.3477664092254708e-05
+426.00000000002865 3.853727956587635e-05
+426.1000000000287 3.8561929168458204e-05
+426.2000000000287 3.858659065763861e-05
+426.3000000000287 3.861126403780289e-05
+426.40000000002874 3.863594931312811e-05
+426.50000000002876 3.866064648784462e-05
+426.6000000000288 3.86853555662886e-05
+426.7000000000288 3.8710076552692496e-05
+426.80000000002883 3.873480945134227e-05
+426.90000000002885 3.875955426647233e-05
+427.0000000000289 3.8784311002372e-05
+427.1000000000289 3.881368372839951e-05
+427.2000000000289 3.8843073951997955e-05
+427.30000000002894 3.887248168111432e-05
+427.40000000002897 3.8901906923645496e-05
+427.500000000029 3.8931349687540626e-05
+427.600000000029 3.895091140094507e-05
+427.70000000002904 3.897048070532037e-05
+427.80000000002906 3.899005760274822e-05
+427.9000000000291 3.900964209546887e-05
+428.0000000000291 3.9029234185569864e-05
+428.1000000000291 3.906572459232184e-05
+428.20000000002915 3.910223743260479e-05
+428.3000000000292 3.913877271620399e-05
+428.4000000000292 3.9175330452960335e-05
+428.5000000000292 3.9211910652608986e-05
+428.60000000002924 3.923856944010467e-05
+428.70000000002926 3.92652422333641e-05
+428.8000000000293 3.929192903789298e-05
+428.9000000000293 3.931862985935728e-05
+429.00000000002933 3.934534470326498e-05
+429.10000000002935 3.9369219753613054e-05
+429.2000000000294 3.939310556354446e-05
+429.3000000000294 3.941700213660797e-05
+429.4000000000294 3.9440909476459294e-05
+429.50000000002944 3.946482758664583e-05
+429.60000000002947 3.947877447971038e-05
+429.7000000000295 3.9492725095627476e-05
+429.8000000000295 3.950667943509147e-05
+429.90000000002954 3.952063749895621e-05
+430.00000000002956 3.953459928786709e-05
+430.1000000000296 3.956148192015986e-05
+430.2000000000296 3.9588378729660224e-05
+430.3000000000296 3.9615289722007133e-05
+430.40000000002965 3.964221490294758e-05
+430.5000000000297 3.9669154278283456e-05
+430.6000000000297 3.9696107853658636e-05
+430.7000000000297 3.9723075634825096e-05
+430.80000000002974 3.975005762753652e-05
+430.90000000002976 3.9777053837548286e-05
+431.0000000000298 3.980406427056215e-05
+431.1000000000298 3.982444965851846e-05
+431.20000000002983 3.984484217115324e-05
+431.30000000002985 3.986524181013615e-05
+431.4000000000299 3.9885648577297346e-05
+431.5000000000299 3.990606247436033e-05
+431.6000000000299 3.992648350310243e-05
+431.70000000002995 3.994691166524772e-05
+431.80000000002997 3.996734696257397e-05
+431.90000000003 3.9987789396805845e-05
+432.00000000003 4.000823896977691e-05
+432.10000000003004 4.0034809892369786e-05
+432.20000000003006 4.006139429923737e-05
+432.3000000000301 4.008799219544684e-05
+432.4000000000301 4.0114603586066574e-05
+432.5000000000301 4.014122847627039e-05
+432.60000000003015 4.0157776977393044e-05
+432.7000000000302 4.0174330669834645e-05
+432.8000000000302 4.0190889554778e-05
+432.9000000000302 4.02074536334063e-05
+433.00000000003024 4.022402290695838e-05
+433.10000000003026 4.0246329816592135e-05
+433.2000000000303 4.026864555890698e-05
+433.3000000000303 4.029097013627387e-05
+433.40000000003033 4.031330355127926e-05
+433.50000000003035 4.033564580640245e-05
+433.6000000000304 4.035805323970618e-05
+433.7000000000304 4.0380505816495374e-05
+433.8000000000304 4.040298484652615e-05
+433.90000000003045 4.0425472988057114e-05
+434.00000000003047 4.044795425115576e-05
+434.1000000000305 4.046459908464079e-05
+434.2000000000305 4.0481205444300306e-05
+434.30000000003054 4.049776144244838e-05
+434.40000000003056 4.051425656495893e-05
+434.5000000000306 4.0530681674476496e-05
+434.6000000000306 4.0557187845438604e-05
+434.7000000000306 4.058361587536808e-05
+434.80000000003065 4.0609961811725225e-05
+434.9000000000307 4.0636223007384906e-05
+435.0000000000307 4.066239812484678e-05
+435.1000000000307 4.0686212269785045e-05
+435.20000000003074 4.070993915946148e-05
+435.30000000003076 4.0733581425704604e-05
+435.4000000000308 4.075714302605393e-05
+435.5000000000308 4.078062924769439e-05
+435.60000000003083 4.080405006200488e-05
+435.70000000003085 4.082741223539799e-05
+435.8000000000309 4.085072395507538e-05
+435.9000000000309 4.0873994833161365e-05
+436.0000000000309 4.089723591061588e-05
+436.10000000003095 4.091600136299388e-05
+436.20000000003097 4.0934759423378225e-05
+436.300000000031 4.0953525441175215e-05
+436.400000000031 4.0972316203823874e-05
+436.50000000003104 4.0991149939782034e-05
+436.60000000003106 4.101004463810368e-05
+436.7000000000311 4.1028942867328634e-05
+436.8000000000311 4.104784435578365e-05
+436.9000000000311 4.1066748789856715e-05
+437.00000000003115 4.108565581379188e-05
+437.1000000000312 4.110828135630223e-05
+437.2000000000312 4.113091197131553e-05
+437.3000000000312 4.1153547176242044e-05
+437.40000000003124 4.117618644571039e-05
+437.50000000003126 4.119882921155857e-05
+437.6000000000313 4.12214765554078e-05
+437.7000000000313 4.12441319018591e-05
+437.80000000003133 4.12667953771969e-05
+437.90000000003135 4.1289467191464264e-05
+438.0000000000314 4.13121476388571e-05
+438.1000000000314 4.132377168311236e-05
+438.2000000000314 4.1335398583880206e-05
+438.30000000003145 4.134702888561418e-05
+438.40000000003147 4.1358663217299865e-05
+438.5000000000315 4.13703022923627e-05
+438.6000000000315 4.139217033527845e-05
+438.70000000003154 4.1414008649534465e-05
+438.80000000003156 4.143583599758957e-05
+438.9000000000316 4.1457669756582456e-05
+439.0000000000316 4.1479525914382736e-05
+439.1000000000316 4.1489230657239465e-05
+439.20000000003165 4.149897912397253e-05
+439.3000000000317 4.1508783062688175e-05
+439.4000000000317 4.1518652805025915e-05
+439.5000000000317 4.152859726449693e-05
+439.60000000003174 4.154893128565846e-05
+439.70000000003176 4.156936096897371e-05
+439.8000000000318 4.158989173039515e-05
+439.9000000000318 4.16105276077676e-05
+440.00000000003183 4.163127125719519e-05
+440.10000000003186 4.165222493443393e-05
+440.2000000000319 4.1673287579683685e-05
+440.3000000000319 4.1694457684024005e-05
+440.4000000000319 4.1715732342971994e-05
+440.50000000003195 4.173710725270611e-05
+440.60000000003197 4.175857670631114e-05
+440.700000000032 4.178013121921962e-05
+440.800000000032 4.1801761566220306e-05
+440.90000000003204 4.182345706429396e-05
+441.00000000003206 4.184520556881904e-05
+441.1000000000321 4.186424893500382e-05
+441.2000000000321 4.188331424902309e-05
+441.3000000000321 4.190238495734325e-05
+441.40000000003215 4.192144303418407e-05
+441.5000000000322 4.1940468978194287e-05
+441.6000000000322 4.1959441809352337e-05
+441.7000000000322 4.197842007952046e-05
+441.80000000003224 4.1997403789850316e-05
+441.90000000003226 4.201639294132869e-05
+442.0000000000323 4.203538753505384e-05
+442.1000000000323 4.2058732312154814e-05
+442.20000000003233 4.208208641983611e-05
+442.30000000003236 4.2105449860803e-05
+442.4000000000324 4.2128822637761175e-05
+442.5000000000324 4.215220475341348e-05
+442.6000000000324 4.216521069053258e-05
+442.70000000003245 4.217821956341848e-05
+442.80000000003247 4.2191231372535493e-05
+442.9000000000325 4.220424611840335e-05
+443.0000000000325 4.2217263801543116e-05
+443.10000000003254 4.22340851241764e-05
+443.20000000003256 4.2250910101673776e-05
+443.3000000000326 4.226773873442135e-05
+443.4000000000326 4.228457102297085e-05
+443.5000000000326 4.2301406967818854e-05
+443.60000000003265 4.231824656940671e-05
+443.7000000000327 4.233508982817586e-05
+443.8000000000327 4.2351936744678064e-05
+443.9000000000327 4.23687873192996e-05
+444.00000000003274 4.238564155259113e-05
+444.10000000003276 4.239889597895989e-05
+444.2000000000328 4.241215338237226e-05
+444.3000000000328 4.242541376332981e-05
+444.40000000003283 4.243867712238944e-05
+444.50000000003286 4.2451943460052925e-05
+444.6000000000329 4.246521277676692e-05
+444.7000000000329 4.247848507303346e-05
+444.8000000000329 4.249176034941018e-05
+444.90000000003295 4.250503860628866e-05
+445.00000000003297 4.2518319844285146e-05
+445.100000000033 4.254034577453524e-05
+445.200000000033 4.256237966277791e-05
+445.30000000003304 4.258442151108008e-05
+445.40000000003306 4.260647132145372e-05
+445.5000000000331 4.262852909596644e-05
+445.6000000000331 4.265059483668637e-05
+445.7000000000331 4.2672668545626344e-05
+445.80000000003315 4.2694750224855046e-05
+445.9000000000332 4.271683987638609e-05
+446.0000000000332 4.273893750234682e-05
+446.1000000000332 4.276833654779162e-05
+446.20000000003324 4.279774491247749e-05
+446.30000000003326 4.282716259795943e-05
+446.4000000000333 4.285658960601496e-05
+446.5000000000333 4.2886025938303476e-05
+446.60000000003333 4.2894496292718435e-05
+446.70000000003336 4.2902967689780314e-05
+446.8000000000334 4.2911440129597986e-05
+446.9000000000334 4.2919913612336046e-05
+447.0000000000334 4.292838813821866e-05
+447.10000000003345 4.294823652102547e-05
+447.20000000003347 4.2968090877522995e-05
+447.3000000000335 4.2987951208987614e-05
+447.4000000000335 4.30078175165846e-05
+447.50000000003354 4.302768980164289e-05
+447.60000000003356 4.303705840522819e-05
+447.7000000000336 4.304642841251172e-05
+447.8000000000336 4.305579982361793e-05
+447.90000000003363 4.30651726388387e-05
+448.00000000003365 4.307454685835752e-05
+448.1000000000337 4.309315310103692e-05
+448.2000000000337 4.311176424187926e-05
+448.3000000000337 4.313038028186897e-05
+448.40000000003374 4.314900122182316e-05
+448.50000000003376 4.316762706255908e-05
+448.6000000000338 4.318631457429608e-05
+448.7000000000338 4.320504354799011e-05
+448.80000000003383 4.3223795139021306e-05
+448.90000000003386 4.3242551870286466e-05
+449.0000000000339 4.326129763484753e-05
+449.1000000000339 4.328004580921102e-05
+449.2000000000339 4.3298754921274064e-05
+449.30000000003395 4.3317412993601136e-05
+449.40000000003397 4.333600943128538e-05
+449.500000000034 4.3354535025392945e-05
+449.600000000034 4.337298551894441e-05
+449.70000000003404 4.339135321503361e-05
+449.80000000003406 4.3409631897597016e-05
+449.9000000000341 4.342781683428003e-05
+450.0000000000341 4.3445904780003714e-05
+450.10000000003413 4.3458424400478176e-05
+450.20000000003415 4.347084316288125e-05
+450.3000000000342 4.3483162340870134e-05
+450.4000000000342 4.34953847065929e-05
+450.5000000000342 4.3507514532600814e-05
+450.60000000003424 4.353013164013725e-05
+450.70000000003427 4.35526739257142e-05
+450.8000000000343 4.357515071783519e-05
+450.9000000000343 4.359757282087356e-05
+451.00000000003433 4.361995251886658e-05
+451.10000000003436 4.363540105190117e-05
+451.2000000000344 4.365083097965454e-05
+451.3000000000344 4.366625904827318e-05
+451.4000000000344 4.368170348725019e-05
+451.50000000003445 4.36971840118317e-05
+451.60000000003447 4.370212737077675e-05
+451.7000000000345 4.370706887705272e-05
+451.8000000000345 4.3712009259960946e-05
+451.90000000003454 4.3716949293405696e-05
+452.00000000003456 4.3721889795870716e-05
+452.1000000000346 4.3742146743010215e-05
+452.2000000000346 4.376241185026081e-05
+452.30000000003463 4.3782686074521686e-05
+452.40000000003465 4.3802970418830876e-05
+452.5000000000347 4.382326593247145e-05
+452.6000000000347 4.3843573711324325e-05
+452.7000000000347 4.386388991653825e-05
+452.80000000003474 4.3884214263889206e-05
+452.90000000003477 4.39045464242865e-05
+453.0000000000348 4.392488602338129e-05
+453.1000000000348 4.393126500163302e-05
+453.20000000003483 4.393764480900176e-05
+453.30000000003486 4.394402493429641e-05
+453.4000000000349 4.395040482158277e-05
+453.5000000000349 4.395678386992769e-05
+453.6000000000349 4.3973733760459233e-05
+453.70000000003495 4.399064865768983e-05
+453.80000000003497 4.400754836126754e-05
+453.900000000035 4.402445123170783e-05
+454.000000000035 4.4041374187413565e-05
+454.10000000003504 4.405592405044251e-05
+454.20000000003506 4.40705219378806e-05
+454.3000000000351 4.4085180414973355e-05
+454.4000000000351 4.4099910591005694e-05
+454.50000000003513 4.41147221171671e-05
+454.60000000003515 4.412962318390166e-05
+454.7000000000352 4.41446205189374e-05
+454.8000000000352 4.415971938422797e-05
+454.9000000000352 4.4174923573550545e-05
+455.00000000003524 4.419023541015255e-05
+455.10000000003527 4.4198117192706974e-05
+455.2000000000353 4.42061051708265e-05
+455.3000000000353 4.421419718753504e-05
+455.40000000003533 4.422238960750678e-05
+455.50000000003536 4.4230677315296075e-05
+455.6000000000354 4.424971372719293e-05
+455.7000000000354 4.4268834825592265e-05
+455.8000000000354 4.4288031097656446e-05
+455.90000000003545 4.430729153376768e-05
+456.00000000003547 4.432660362447936e-05
+456.1000000000355 4.4334448528167216e-05
+456.2000000000355 4.4342311133851644e-05
+456.30000000003554 4.435017441162832e-05
+456.40000000003556 4.4358019837781006e-05
+456.5000000000356 4.436582739333345e-05
+456.6000000000356 4.438425512360872e-05
+456.70000000003563 4.440268736337785e-05
+456.80000000003565 4.442112411329151e-05
+456.9000000000357 4.443956537400049e-05
+457.0000000000357 4.4458011146211965e-05
+457.1000000000357 4.447589260089733e-05
+457.20000000003574 4.4493778151162154e-05
+457.30000000003577 4.4511667797544606e-05
+457.4000000000358 4.452956154058311e-05
+457.5000000000358 4.454745938092545e-05
+457.60000000003583 4.45546639207714e-05
+457.70000000003586 4.456186909920666e-05
+457.8000000000359 4.4569074916251364e-05
+457.9000000000359 4.45762813720957e-05
+458.0000000000359 4.458348846681698e-05
+458.10000000003595 4.459163907323839e-05
+458.20000000003597 4.459979059159423e-05
+458.300000000036 4.4607943021989424e-05
+458.400000000036 4.4616096364585664e-05
+458.50000000003604 4.4624250619491894e-05
+458.60000000003606 4.464318423744179e-05
+458.7000000000361 4.466216286009235e-05
+458.8000000000361 4.4681165777370314e-05
+458.90000000003613 4.4700173782587986e-05
+459.00000000003615 4.471916917554068e-05
+459.1000000000362 4.4735612703409924e-05
+459.2000000000362 4.4752010910614596e-05
+459.3000000000362 4.476835064650104e-05
+459.40000000003624 4.478462028282872e-05
+459.50000000003627 4.4800809716858116e-05
+459.6000000000363 4.4806174672294496e-05
+459.7000000000363 4.481143891400243e-05
+459.80000000003633 4.481659823158929e-05
+459.90000000003636 4.4821649865017055e-05
+460.0000000000364 4.482659250568304e-05
+460.1000000000364 4.484463914838796e-05
+460.2000000000364 4.486258246237515e-05
+460.30000000003645 4.4880425406713935e-05
+460.40000000003647 4.489817240036465e-05
+460.5000000000365 4.4915829325228655e-05
+460.6000000000365 4.492266017467205e-05
+460.70000000003654 4.492941626507047e-05
+460.80000000003656 4.493610670465648e-05
+460.9000000000366 4.4942742155081454e-05
+461.0000000000366 4.4949334832048026e-05
+461.10000000003663 4.496089500623486e-05
+461.20000000003665 4.4972441235603456e-05
+461.3000000000367 4.4983990406531614e-05
+461.4000000000367 4.499556097249603e-05
+461.5000000000367 4.5007172956356056e-05
+461.60000000003674 4.5008091480333135e-05
+461.70000000003677 4.500900758675304e-05
+461.8000000000368 4.500992097940377e-05
+461.9000000000368 4.501083131618237e-05
+462.00000000003683 4.5011738209605904e-05
+462.10000000003686 4.502573550011887e-05
+462.2000000000369 4.503973011512797e-05
+462.3000000000369 4.505372152598888e-05
+462.4000000000369 4.506770915781075e-05
+462.50000000003695 4.5081692389326237e-05
+462.60000000003697 4.5095672406363744e-05
+462.700000000037 4.510965295930039e-05
+462.800000000037 4.512363418445666e-05
+462.90000000003704 4.5137616309686836e-05
+463.00000000003706 4.5151599654581295e-05
+463.1000000000371 4.516057310408697e-05
+463.2000000000371 4.516954833921179e-05
+463.30000000003713 4.5178525955211655e-05
+463.40000000003715 4.518750663964785e-05
+463.5000000000372 4.5196491171974416e-05
+463.6000000000372 4.521619324910267e-05
+463.7000000000372 4.523585944672013e-05
+463.80000000003724 4.525551029007419e-05
+463.90000000003727 4.527516478228905e-05
+464.0000000000373 4.529484040058775e-05
+464.1000000000373 4.5300141334488414e-05
+464.20000000003733 4.5305488509443645e-05
+464.30000000003736 4.53108947476911e-05
+464.4000000000374 4.531637131777048e-05
+464.5000000000374 4.532192793350172e-05
+464.6000000000374 4.5338365032358336e-05
+464.70000000003745 4.535490224663736e-05
+464.80000000003747 4.537154545286902e-05
+464.9000000000375 4.538829901962458e-05
+465.0000000000375 4.540516580462936e-05
+465.10000000003754 4.5418451178067174e-05
+465.20000000003756 4.543184870717662e-05
+465.3000000000376 4.544535667339152e-05
+465.4000000000376 4.545897183695963e-05
+465.50000000003763 4.547268943460483e-05
+465.60000000003765 4.548650317709943e-05
+465.7000000000377 4.550040266204719e-05
+465.8000000000377 4.551437777831304e-05
+465.9000000000377 4.552841683465194e-05
+466.00000000003774 4.554250655695346e-05
+466.10000000003777 4.556032144205821e-05
+466.2000000000378 4.557815811364742e-05
+466.3000000000378 4.559599853463661e-05
+466.40000000003783 4.56138230689533e-05
+466.50000000003786 4.5631610478425086e-05
+466.6000000000379 4.5638523103726255e-05
+466.7000000000379 4.564543626396494e-05
+466.8000000000379 4.565234995920881e-05
+466.90000000003795 4.565926418958284e-05
+467.00000000003797 4.5666178955158376e-05
+467.100000000038 4.568250602767295e-05
+467.200000000038 4.5698835891880644e-05
+467.30000000003804 4.571516854806212e-05
+467.40000000003806 4.5731503996326254e-05
+467.5000000000381 4.574784223694957e-05
+467.6000000000381 4.575335407381466e-05
+467.70000000003813 4.575886609422493e-05
+467.80000000003815 4.576437829822498e-05
+467.9000000000382 4.576989068585956e-05
+468.0000000000382 4.577540325717773e-05
+468.1000000000382 4.5792178416724874e-05
+468.20000000003824 4.580895667109063e-05
+468.30000000003827 4.582573802051523e-05
+468.4000000000383 4.5842522465296245e-05
+468.5000000000383 4.5859310005669785e-05
+468.60000000003834 4.586525779146929e-05
+468.70000000003836 4.587120586111539e-05
+468.8000000000384 4.5877154214714235e-05
+468.9000000000384 4.588310285231463e-05
+469.0000000000384 4.588905177402622e-05
+469.10000000003845 4.590365952396377e-05
+469.2000000000385 4.591826901201229e-05
+469.3000000000385 4.593288023820029e-05
+469.4000000000385 4.594749320261364e-05
+469.50000000003854 4.596210790533412e-05
+469.60000000003856 4.5965870539965206e-05
+469.7000000000386 4.596963313610998e-05
+469.8000000000386 4.59733956938923e-05
+469.90000000003863 4.5977158213378925e-05
+470.00000000003865 4.598092069469868e-05
+470.1000000000387 4.599701578902464e-05
+470.2000000000387 4.6013113426669846e-05
+470.3000000000387 4.602921360764293e-05
+470.40000000003874 4.604531633212494e-05
+470.50000000003877 4.606142160018191e-05
+470.6000000000388 4.6077529411937384e-05
+470.7000000000388 4.609363976745729e-05
+470.80000000003884 4.61097526668651e-05
+470.90000000003886 4.612586811028415e-05
+471.0000000000389 4.6141986097775935e-05
+471.1000000000389 4.6146709640492414e-05
+471.2000000000389 4.615143326007214e-05
+471.30000000003895 4.615615695657035e-05
+471.400000000039 4.616088073004224e-05
+471.500000000039 4.616560458066232e-05
+471.600000000039 4.618120491091029e-05
+471.70000000003904 4.619680754411302e-05
+471.80000000003906 4.6212412480309936e-05
+471.9000000000391 4.622801971977071e-05
+472.0000000000391 4.624362926253087e-05
+472.10000000003913 4.624913403451979e-05
+472.20000000003915 4.625463897636003e-05
+472.3000000000392 4.626014408803703e-05
+472.4000000000392 4.626564936970888e-05
+472.5000000000392 4.627115482142301e-05
+472.60000000003924 4.6287549069119163e-05
+472.70000000003927 4.6303946078004126e-05
+472.8000000000393 4.632034584816974e-05
+472.9000000000393 4.6336748379822954e-05
+473.00000000003934 4.635315367316543e-05
+473.10000000003936 4.635610242689744e-05
+473.2000000000394 4.635905098007965e-05
+473.3000000000394 4.63619993328343e-05
+473.4000000000394 4.636494748522599e-05
+473.50000000003945 4.636789543726606e-05
+473.6000000000395 4.6381741154615547e-05
+473.7000000000395 4.639558805731449e-05
+473.8000000000395 4.640943614532933e-05
+473.90000000003954 4.642328541856874e-05
+474.00000000003956 4.643713587693803e-05
+474.1000000000396 4.644237142539062e-05
+474.2000000000396 4.644760714919783e-05
+474.30000000003963 4.6452843048358806e-05
+474.40000000003965 4.6458079123045716e-05
+474.5000000000397 4.6463315373257815e-05
+474.6000000000397 4.6468551799052045e-05
+474.7000000000397 4.647378840060067e-05
+474.80000000003974 4.647902517796072e-05
+474.90000000003977 4.648426213118938e-05
+475.0000000000398 4.6489499260348126e-05
+475.1000000000398 4.650609251381035e-05
+475.20000000003984 4.652268854867531e-05
+475.30000000003986 4.653928736508512e-05
+475.4000000000399 4.655588896306655e-05
+475.5000000000399 4.6572493342815006e-05
+475.6000000000399 4.657817947757678e-05
+475.70000000003995 4.65838657278963e-05
+475.80000000004 4.658955209379341e-05
+475.90000000004 4.6595238575288035e-05
+476.00000000004 4.660092517240312e-05
+476.10000000004004 4.661412577335538e-05
+476.20000000004006 4.662732718998863e-05
+476.3000000000401 4.6640529422302616e-05
+476.4000000000401 4.6653732470181475e-05
+476.50000000004013 4.666693633356273e-05
+476.60000000004015 4.666921145462689e-05
+476.7000000000402 4.6671486325484536e-05
+476.8000000000402 4.667376094632892e-05
+476.9000000000402 4.6676035317122184e-05
+477.00000000004025 4.667830943805888e-05
+477.10000000004027 4.668350073018063e-05
+477.2000000000403 4.6688692164586935e-05
+477.3000000000403 4.669388374127173e-05
+477.40000000004034 4.6699075460344524e-05
+477.50000000004036 4.67042673218615e-05
+477.6000000000404 4.672039830939833e-05
+477.7000000000404 4.673653187135912e-05
+477.8000000000404 4.6752668008050455e-05
+477.90000000004045 4.676880671954781e-05
+478.0000000000405 4.6784948006094956e-05
+478.1000000000405 4.6788419819159274e-05
+478.2000000000405 4.679189151279791e-05
+478.30000000004054 4.679536308695543e-05
+478.40000000004056 4.6798834541807806e-05
+478.5000000000406 4.680230587741536e-05
+478.6000000000406 4.6805777093838486e-05
+478.70000000004063 4.6809248191137535e-05
+478.80000000004065 4.681271916948867e-05
+478.9000000000407 4.681619002883659e-05
+479.0000000000407 4.681966076935729e-05
+479.1000000000407 4.682244244501201e-05
+479.20000000004075 4.682522390375841e-05
+479.30000000004077 4.682800514566384e-05
+479.4000000000408 4.683078617085353e-05
+479.5000000000408 4.683356697939499e-05
+479.60000000004084 4.683634757129776e-05
+479.70000000004086 4.683912794680296e-05
+479.8000000000409 4.684190810586232e-05
+479.9000000000409 4.6844688048659145e-05
+480.0000000000409 4.684746777515003e-05
+480.10000000004095 4.686206041303265e-05
+480.200000000041 4.687665461655455e-05
+480.300000000041 4.689125038571209e-05
+480.400000000041 4.690584772044381e-05
+480.50000000004104 4.692044662079941e-05
+480.60000000004106 4.692408351580917e-05
+480.7000000000411 4.692772027694094e-05
+480.8000000000411 4.693135690424858e-05
+480.90000000004113 4.6934993397843885e-05
+481.00000000004115 4.693862975772672e-05
+481.1000000000412 4.695169524836021e-05
+481.2000000000412 4.696476146277791e-05
+481.3000000000412 4.697782840097475e-05
+481.40000000004125 4.699089606288781e-05
+481.50000000004127 4.70039644483916e-05
+481.6000000000413 4.7006063647590884e-05
+481.7000000000413 4.700816259054292e-05
+481.80000000004134 4.701026127738671e-05
+481.90000000004136 4.701235970820324e-05
+482.0000000000414 4.7014457883020996e-05
+482.1000000000414 4.70297736514211e-05
+482.2000000000414 4.704509138288338e-05
+482.30000000004145 4.7060411077439416e-05
+482.4000000000415 4.707573273506273e-05
+482.5000000000415 4.7091056355780265e-05
+482.6000000000415 4.709540398997391e-05
+482.70000000004154 4.709975156042298e-05
+482.80000000004156 4.7104099067226964e-05
+482.9000000000416 4.7108446510427316e-05
+483.0000000000416 4.711279389007017e-05
+483.10000000004163 4.7128086213660634e-05
+483.20000000004165 4.714338051838446e-05
+483.3000000000417 4.715867680424663e-05
+483.4000000000417 4.7173975071367924e-05
+483.5000000000417 4.7189275319753295e-05
+483.60000000004175 4.720463967044849e-05
+483.70000000004177 4.722004599087099e-05
+483.8000000000418 4.723547365055038e-05
+483.9000000000418 4.7250903523696416e-05
+484.00000000004184 4.726631799170939e-05
+484.10000000004186 4.726829119687319e-05
+484.2000000000419 4.727021604417549e-05
+484.3000000000419 4.7272079503658496e-05
+484.4000000000419 4.727387007580998e-05
+484.50000000004195 4.727557779186311e-05
+484.600000000042 4.7288188910514366e-05
+484.700000000042 4.730070253564771e-05
+484.800000000042 4.7313113221044206e-05
+484.90000000004204 4.7325417049097336e-05
+485.00000000004206 4.733761163319297e-05
+485.1000000000421 4.733898597057655e-05
+485.2000000000421 4.734025037162774e-05
+485.30000000004213 4.7341407127417526e-05
+485.40000000004216 4.734246006429902e-05
+485.5000000000422 4.734341454433178e-05
+485.6000000000422 4.7355278869490945e-05
+485.7000000000422 4.736706293794416e-05
+485.80000000004225 4.737877537447832e-05
+485.90000000004227 4.739042644531725e-05
+486.0000000000423 4.7402028060130165e-05
+486.1000000000423 4.7413064511196184e-05
+486.20000000004234 4.742408008500687e-05
+486.30000000004236 4.743509163375964e-05
+486.4000000000424 4.744611766043008e-05
+486.5000000000424 4.7457178320775385e-05
+486.6000000000424 4.745729330662423e-05
+486.70000000004245 4.745739928932654e-05
+486.8000000000425 4.745749723016193e-05
+486.9000000000425 4.7457588090405166e-05
+487.0000000000425 4.7457672831564555e-05
+487.10000000004254 4.747373313677766e-05
+487.20000000004256 4.7489791880447295e-05
+487.3000000000426 4.750585002101771e-05
+487.4000000000426 4.7521908518276026e-05
+487.50000000004263 4.753796833352088e-05
+487.60000000004266 4.754302901035267e-05
+487.7000000000427 4.754809310559404e-05
+487.8000000000427 4.7553160283186704e-05
+487.9000000000427 4.755823030339898e-05
+488.00000000004275 4.7563303022648456e-05
+488.10000000004277 4.7563979588604276e-05
+488.2000000000428 4.756465855065325e-05
+488.3000000000428 4.756534005376657e-05
+488.40000000004284 4.756602433914722e-05
+488.50000000004286 4.756671174470687e-05
+488.6000000000429 4.7567336167637605e-05
+488.7000000000429 4.7567916489480567e-05
+488.8000000000429 4.7568473868714216e-05
+488.90000000004295 4.756902782673435e-05
+489.000000000043 4.756959624785861e-05
+489.100000000043 4.7581227496487405e-05
+489.200000000043 4.759290436714368e-05
+489.30000000004304 4.7604639872393766e-05
+489.40000000004306 4.7616445397554924e-05
+489.5000000000431 4.762833069868035e-05
+489.6000000000431 4.76292913477375e-05
+489.70000000004313 4.763035131699897e-05
+489.80000000004316 4.7631516987698194e-05
+489.9000000000432 4.7632793197444264e-05
+490.0000000000432 4.763418324022478e-05
+490.1000000000432 4.764716375952023e-05
+490.20000000004325 4.766026099178993e-05
+490.30000000004327 4.767347368132235e-05
+490.4000000000433 4.768679902471541e-05
+490.5000000000433 4.770023266906188e-05
+490.60000000004334 4.7702751907408676e-05
+490.70000000004336 4.770535945131347e-05
+490.8000000000434 4.7708044629847416e-05
+490.9000000000434 4.7710795125951336e-05
+491.0000000000434 4.771359697585395e-05
+491.10000000004345 4.7726179970600546e-05
+491.2000000000435 4.773878217565444e-05
+491.3000000000435 4.775138468313977e-05
+491.4000000000435 4.7763966919407765e-05
+491.50000000004354 4.7776506643014696e-05
+491.60000000004356 4.777795849869425e-05
+491.7000000000436 4.7779410082856254e-05
+491.8000000000436 4.778086139553701e-05
+491.90000000004363 4.778231243688911e-05
+492.00000000004366 4.778376320695412e-05
+492.1000000000437 4.779716143653817e-05
+492.2000000000437 4.781056055108645e-05
+492.3000000000437 4.782396055055859e-05
+492.40000000004375 4.783736143485609e-05
+492.50000000004377 4.785076320393371e-05
+492.6000000000438 4.785313978868672e-05
+492.7000000000438 4.78555161629798e-05
+492.80000000004384 4.785789232689223e-05
+492.90000000004386 4.78602682805614e-05
+493.0000000000439 4.786264402400861e-05
+493.1000000000439 4.786568143401042e-05
+493.20000000004393 4.7868718654223726e-05
+493.30000000004395 4.787175568465558e-05
+493.400000000044 4.7874792525487615e-05
+493.500000000044 4.7877829176673614e-05
+493.600000000044 4.7891898095893084e-05
+493.70000000004404 4.7905968224871145e-05
+493.80000000004407 4.792003956350896e-05
+493.9000000000441 4.793411211176595e-05
+494.0000000000441 4.794818586965434e-05
+494.10000000004413 4.795010437947554e-05
+494.20000000004416 4.795202262661979e-05
+494.3000000000442 4.795394061111461e-05
+494.4000000000442 4.7955858333103755e-05
+494.5000000000442 4.795777579267286e-05
+494.60000000004425 4.79596929898494e-05
+494.70000000004427 4.796160992483545e-05
+494.8000000000443 4.796352659760029e-05
+494.9000000000443 4.7965443008287795e-05
+495.00000000004434 4.796735915704673e-05
+495.10000000004436 4.798000257678413e-05
+495.2000000000444 4.799264641002094e-05
+495.3000000000444 4.8005290656699845e-05
+495.40000000004443 4.8017935316589e-05
+495.50000000004445 4.803058038968437e-05
+495.6000000000445 4.8032183994330504e-05
+495.7000000000445 4.8033787274729504e-05
+495.8000000000445 4.8035390230966e-05
+495.90000000004454 4.8036992863008327e-05
+496.00000000004457 4.8038595171115865e-05
+496.1000000000446 4.804014101664564e-05
+496.2000000000446 4.80416865922468e-05
+496.30000000004463 4.80432318979541e-05
+496.40000000004466 4.8044776933977016e-05
+496.5000000000447 4.804632170029194e-05
+496.6000000000447 4.804786619705015e-05
+496.7000000000447 4.804941042428633e-05
+496.80000000004475 4.805095438221003e-05
+496.90000000004477 4.805249807079773e-05
+497.0000000000448 4.80540414902646e-05
+497.1000000000448 4.806820687336472e-05
+497.20000000004484 4.808237354120664e-05
+497.30000000004486 4.809654149366221e-05
+497.4000000000449 4.811071073083637e-05
+497.5000000000449 4.812488125259596e-05
+497.60000000004493 4.812800185304009e-05
+497.70000000004495 4.8131122305047624e-05
+497.800000000045 4.8134242608570884e-05
+497.900000000045 4.8137362763737035e-05
+498.000000000045 4.814048277067332e-05
+498.10000000004504 4.814378917051842e-05
+498.20000000004507 4.8147095415438935e-05
+498.3000000000451 4.81504015055563e-05
+498.4000000000451 4.815370744087556e-05
+498.50000000004513 4.815701322145998e-05
+498.60000000004516 4.816031884737275e-05
+498.7000000000452 4.816362431873563e-05
+498.8000000000452 4.8166929635553575e-05
+498.9000000000452 4.817023479789003e-05
+499.00000000004525 4.817353980587113e-05
+499.10000000004527 4.818676082963822e-05
+499.2000000000453 4.8199982603342995e-05
+499.3000000000453 4.8213205126863995e-05
+499.40000000004534 4.822642840013814e-05
+499.50000000004536 4.8239652422980546e-05
+499.6000000000454 4.8241812559589093e-05
+499.7000000000454 4.824397245482186e-05
+499.80000000004543 4.824613210887812e-05
+499.90000000004545 4.8248291521782344e-05
+500.0000000000455 4.825045069366989e-05
+500.1000000000455 4.8240394807645255e-05
+500.2000000000455 4.823033818427971e-05
+500.30000000004554 4.8220280823903556e-05
+500.40000000004557 4.821022272673045e-05
+500.5000000000456 4.820016389309577e-05
+500.6000000000456 4.8201172330700465e-05
+500.70000000004563 4.8202180495395665e-05
+500.80000000004566 4.820318838728487e-05
+500.9000000000457 4.820419600647149e-05
+501.0000000000457 4.820520335311767e-05
+501.1000000000457 4.820697162053707e-05
+501.20000000004575 4.820873965327924e-05
+501.30000000004577 4.821050745143512e-05
+501.4000000000458 4.821227501515391e-05
+501.5000000000458 4.821404234435149e-05
+501.60000000004584 4.821580943929385e-05
+501.70000000004586 4.821757630001355e-05
+501.8000000000459 4.8219342926543214e-05
+501.9000000000459 4.8221109319032076e-05
+502.00000000004593 4.822287547757106e-05
+502.10000000004595 4.8224328841675384e-05
+502.200000000046 4.822578194710326e-05
+502.300000000046 4.822723479395082e-05
+502.400000000046 4.8228687382372525e-05
+502.50000000004604 4.823013971240106e-05
+502.60000000004607 4.822051679182655e-05
+502.7000000000461 4.8210892946364414e-05
+502.8000000000461 4.820126817621258e-05
+502.90000000004613 4.819164248168558e-05
+503.00000000004616 4.818201586310432e-05
+503.1000000000462 4.818590612228544e-05
+503.2000000000462 4.8189796266396734e-05
+503.3000000000462 4.81936862954335e-05
+503.40000000004625 4.819757620950771e-05
+503.50000000004627 4.8201466008668043e-05
+503.6000000000463 4.81943394439912e-05
+503.7000000000463 4.818725302026164e-05
+503.80000000004634 4.8180184965198834e-05
+503.90000000004636 4.817311513037739e-05
+504.0000000000464 4.8166024990315575e-05
+504.1000000000464 4.8176091384501685e-05
+504.20000000004643 4.8186106466880135e-05
+504.30000000004645 4.819605650450625e-05
+504.4000000000465 4.820592936557236e-05
+504.5000000000465 4.8215714521133394e-05
+504.6000000000465 4.8225403045948965e-05
+504.70000000004654 4.8234987622417935e-05
+504.80000000004657 4.824446254099464e-05
+504.9000000000466 4.825382370207396e-05
+505.0000000000466 4.8263068617372216e-05
+505.10000000004663 4.8264555752796665e-05
+505.20000000004666 4.826592734793807e-05
+505.3000000000467 4.826718581245612e-05
+505.4000000000467 4.826833517121613e-05
+505.5000000000467 4.826938106455822e-05
+505.60000000004675 4.827033074955998e-05
+505.70000000004677 4.827119309770237e-05
+505.8000000000468 4.8271978596468195e-05
+505.9000000000468 4.827269934939421e-05
+506.00000000004684 4.8273369076120465e-05
+506.10000000004686 4.828636913663872e-05
+506.2000000000469 4.8299351341392326e-05
+506.3000000000469 4.831233425911863e-05
+506.40000000004693 4.832533809587493e-05
+506.50000000004695 4.833838469739939e-05
+506.600000000047 4.835149954084034e-05
+506.700000000047 4.836461628660392e-05
+506.800000000047 4.837773427367322e-05
+506.90000000004704 4.8390852889261646e-05
+507.00000000004707 4.8403971568816905e-05
+507.1000000000471 4.840343346694176e-05
+507.2000000000471 4.840289356217199e-05
+507.30000000004713 4.84023514373495e-05
+507.40000000004716 4.840180672448026e-05
+507.5000000000472 4.8401259104739285e-05
+507.6000000000472 4.8411792687218126e-05
+507.7000000000472 4.8422320055463514e-05
+507.80000000004725 4.8432842359352586e-05
+507.90000000004727 4.844336070095994e-05
+508.0000000000473 4.845387613397119e-05
+508.1000000000473 4.845448554813418e-05
+508.20000000004734 4.845509421062472e-05
+508.30000000004736 4.845570303042477e-05
+508.4000000000474 4.845631286761438e-05
+508.5000000000474 4.8456924533370324e-05
+508.60000000004743 4.846856362557459e-05
+508.70000000004745 4.848016521625313e-05
+508.8000000000475 4.8491751180783815e-05
+508.9000000000475 4.8503341793639364e-05
+509.0000000000475 4.851495572633376e-05
+509.10000000004754 4.852529527560401e-05
+509.20000000004757 4.853569014233205e-05
+509.3000000000476 4.85461541717367e-05
+509.4000000000476 4.855669959673339e-05
+509.50000000004763 4.856733703656561e-05
+509.60000000004766 4.856698714156572e-05
+509.7000000000477 4.8566742999892476e-05
+509.8000000000477 4.8566609488228356e-05
+509.9000000000477 4.856658980946913e-05
+510.00000000004775 4.856668549268075e-05
+510.10000000004777 4.8579064545104935e-05
+510.2000000000478 4.8591557637195036e-05
+510.3000000000478 4.860416135885819e-05
+510.40000000004784 4.86168706205308e-05
+510.50000000004786 4.862967865101261e-05
+510.6000000000479 4.863148657641615e-05
+510.7000000000479 4.863337934598379e-05
+510.80000000004793 4.8635346711557025e-05
+510.90000000004795 4.863737684527645e-05
+511.000000000048 4.863945633915722e-05
+511.100000000048 4.865374121314056e-05
+511.200000000048 4.86680454301995e-05
+511.30000000004804 4.8682350839179525e-05
+511.40000000004807 4.869663768750394e-05
+511.5000000000481 4.871088461881958e-05
+511.6000000000481 4.8713972093959994e-05
+511.70000000004814 4.871705943906799e-05
+511.80000000004816 4.87201466542799e-05
+511.9000000000482 4.8723233739673674e-05
+512.0000000000482 4.872632069526765e-05
+512.1000000000482 4.87271246144787e-05
+512.2000000000482 4.872792831185991e-05
+512.3000000000483 4.8728731787580326e-05
+512.4000000000483 4.872953504175053e-05
+512.5000000000483 4.8730338074428034e-05
+512.6000000000483 4.87422413734239e-05
+512.7000000000484 4.875414481676258e-05
+512.8000000000484 4.876604840447223e-05
+512.9000000000484 4.8777952136405645e-05
+513.0000000000484 4.8789856012586325e-05
+513.1000000000485 4.8792070636043946e-05
+513.2000000000485 4.8794285055403016e-05
+513.3000000000485 4.8796499270808526e-05
+513.4000000000485 4.8798713282288515e-05
+513.5000000000485 4.88009270898711e-05
+513.6000000000486 4.880314069375965e-05
+513.7000000000486 4.8805354093923925e-05
+513.8000000000486 4.8807567290508916e-05
+513.9000000000486 4.880978028348426e-05
+514.0000000000487 4.881199307305911e-05
+514.1000000000487 4.8825562602897945e-05
+514.2000000000487 4.883913310162435e-05
+514.3000000000487 4.885270456911568e-05
+514.4000000000487 4.8866277005424515e-05
+514.5000000000488 4.887985041053964e-05
+514.6000000000488 4.8882315167285496e-05
+514.7000000000488 4.888477977241489e-05
+514.8000000000488 4.8887244226133466e-05
+514.9000000000489 4.8889708528412894e-05
+515.0000000000489 4.889217267940051e-05
+515.1000000000489 4.88948919154517e-05
+515.2000000000489 4.8897611057633613e-05
+515.300000000049 4.8900330105919693e-05
+515.400000000049 4.890304906045882e-05
+515.500000000049 4.8905767921282986e-05
+515.600000000049 4.890848668848262e-05
+515.700000000049 4.8911205362148165e-05
+515.8000000000491 4.8913923942311674e-05
+515.9000000000491 4.891664242912216e-05
+516.0000000000491 4.8919360822616e-05
+516.1000000000491 4.893109529346484e-05
+516.2000000000492 4.894282983003691e-05
+516.3000000000492 4.895456443224927e-05
+516.4000000000492 4.896629910013606e-05
+516.5000000000492 4.897803383355035e-05
+516.6000000000492 4.8978649756280915e-05
+516.7000000000493 4.897926546500779e-05
+516.8000000000493 4.89798809597279e-05
+516.9000000000493 4.898049624055511e-05
+517.0000000000493 4.898111130766246e-05
+517.1000000000494 4.898286783263817e-05
+517.2000000000494 4.898462417457572e-05
+517.3000000000494 4.89863803335152e-05
+517.4000000000494 4.8988136309613776e-05
+517.5000000000495 4.898989210291156e-05
+517.6000000000495 4.899164771344866e-05
+517.7000000000495 4.899340314144084e-05
+517.8000000000495 4.8995158386811155e-05
+517.9000000000495 4.899691344977536e-05
+518.0000000000496 4.899866833031576e-05
+518.1000000000496 4.900175671329744e-05
+518.2000000000496 4.900484498716011e-05
+518.3000000000496 4.900793315210272e-05
+518.4000000000497 4.9011021208090116e-05
+518.5000000000497 4.9014109155262745e-05
+518.6000000000497 4.9017196993702575e-05
+518.7000000000497 4.902028472337448e-05
+518.8000000000497 4.902337234441901e-05
+518.9000000000498 4.902645985691816e-05
+519.0000000000498 4.9029547260900646e-05
+519.1000000000498 4.9043143461577075e-05
+519.2000000000498 4.9056740676186385e-05
+519.3000000000499 4.9070338904874165e-05
+519.4000000000499 4.908393814761033e-05
+519.5000000000499 4.909753840441776e-05
+519.6000000000499 4.910000588707134e-05
+519.70000000005 4.910247326480084e-05
+519.80000000005 4.910494053764216e-05
+519.90000000005 4.910740770574833e-05
+520.00000000005 4.910987476915552e-05
+520.10000000005 4.9112782946700935e-05
+520.2000000000501 4.9115691050756223e-05
+520.3000000000501 4.91185990813532e-05
+520.4000000000501 4.9121507038582425e-05
+520.5000000000501 4.91244149224758e-05
+520.6000000000502 4.912732273318237e-05
+520.7000000000502 4.913023047079278e-05
+520.8000000000502 4.913313813528037e-05
+520.9000000000502 4.9136045726794305e-05
+521.0000000000502 4.913895324536554e-05
+521.1000000000503 4.913971331679797e-05
+521.2000000000503 4.914047318140755e-05
+521.3000000000503 4.9141232839248075e-05
+521.4000000000503 4.914199229043187e-05
+521.5000000000504 4.914275153512996e-05
+521.6000000000504 4.9143510573337475e-05
+521.7000000000504 4.914426940516677e-05
+521.8000000000504 4.9145028030730316e-05
+521.9000000000505 4.9145786450140415e-05
+522.0000000000505 4.914654466345188e-05
+522.1000000000505 4.9149297260065345e-05
+522.2000000000505 4.9152049761200965e-05
+522.3000000000505 4.9154802166949894e-05
+522.4000000000506 4.9157554477344576e-05
+522.5000000000506 4.916030669241758e-05
+522.6000000000506 4.916305881231865e-05
+522.7000000000506 4.9165810837138976e-05
+522.8000000000507 4.916856276685248e-05
+522.9000000000507 4.9171314601609006e-05
+523.0000000000507 4.917406634149942e-05
+523.1000000000507 4.917605836301819e-05
+523.2000000000507 4.917805024361874e-05
+523.3000000000508 4.918004198340052e-05
+523.4000000000508 4.9182033582345656e-05
+523.5000000000508 4.918402504061238e-05
+523.6000000000508 4.9186016358300185e-05
+523.7000000000509 4.918800753544995e-05
+523.8000000000509 4.9189998572161225e-05
+523.9000000000509 4.9191989468474925e-05
+524.0000000000509 4.919398022449095e-05
+524.100000000051 4.919669679754904e-05
+524.200000000051 4.91994132976841e-05
+524.300000000051 4.920212972504917e-05
+524.400000000051 4.920484607968006e-05
+524.500000000051 4.920756236161246e-05
+524.6000000000511 4.9210278570940876e-05
+524.7000000000511 4.921299470775971e-05
+524.8000000000511 4.921571077210478e-05
+524.9000000000511 4.921842676412928e-05
+525.0000000000512 4.922114268386213e-05
+525.1000000000512 4.921031792080412e-05
+525.2000000000512 4.919949281319835e-05
+525.3000000000512 4.9188667361409594e-05
+525.4000000000513 4.917784156550921e-05
+525.5000000000513 4.9167015425808965e-05
+525.6000000000513 4.9167350656671484e-05
+525.7000000000513 4.916768569624606e-05
+525.8000000000513 4.916802054470992e-05
+525.9000000000514 4.9168355202122856e-05
+526.0000000000514 4.916868966854554e-05
+526.1000000000514 4.9170777013550885e-05
+526.2000000000514 4.9172864231644164e-05
+526.3000000000515 4.9174951322748855e-05
+526.4000000000515 4.917703828714047e-05
+526.5000000000515 4.917912512474246e-05
+526.6000000000515 4.91812118356544e-05
+526.7000000000515 4.918329842009312e-05
+526.8000000000516 4.918538487798216e-05
+526.9000000000516 4.918747120942107e-05
+527.0000000000516 4.918955741456954e-05
+527.1000000000516 4.9194450618517805e-05
+527.2000000000517 4.9199344006394694e-05
+527.3000000000517 4.9204237578286456e-05
+527.4000000000517 4.9209131334103216e-05
+527.5000000000517 4.921402527410741e-05
+527.6000000000518 4.921891939820918e-05
+527.7000000000518 4.922381370655363e-05
+527.8000000000518 4.922870819916844e-05
+527.9000000000518 4.9233602876139975e-05
+528.0000000000518 4.92384977374942e-05
+528.1000000000519 4.9239992343113864e-05
+528.2000000000519 4.9241486800021346e-05
+528.3000000000519 4.9242981108381746e-05
+528.4000000000519 4.924447526818387e-05
+528.500000000052 4.9245969279651544e-05
+528.600000000052 4.9247463142714885e-05
+528.700000000052 4.9248956857538983e-05
+528.800000000052 4.9250450424230206e-05
+528.900000000052 4.9251943842836156e-05
+529.0000000000521 4.9253437113405595e-05
+529.1000000000521 4.925706289708e-05
+529.2000000000521 4.9260688697341884e-05
+529.3000000000521 4.9264314514221946e-05
+529.4000000000522 4.9267940347868455e-05
+529.5000000000522 4.927156619825338e-05
+529.6000000000522 4.9275192065466265e-05
+529.7000000000522 4.927881794959669e-05
+529.8000000000523 4.928244385073423e-05
+529.9000000000523 4.928606976890968e-05
+530.0000000000523 4.928969570421245e-05
+530.1000000000523 4.929271331569933e-05
+530.2000000000523 4.92957308860558e-05
+530.3000000000524 4.9298748415375526e-05
+530.4000000000524 4.930176590369352e-05
+530.5000000000524 4.930478335104469e-05
+530.6000000000524 4.930780075758167e-05
+530.7000000000525 4.931081812333944e-05
+530.8000000000525 4.9313835448353016e-05
+530.9000000000525 4.93168527327751e-05
+531.0000000000525 4.93198699765808e-05
+531.1000000000525 4.932090770470303e-05
+531.2000000000526 4.932194526837221e-05
+531.3000000000526 4.9322982667699626e-05
+531.4000000000526 4.9324019902737774e-05
+531.5000000000526 4.932505697353912e-05
+531.6000000000527 4.9326093880273837e-05
+531.7000000000527 4.932713062293555e-05
+531.8000000000527 4.932816720169444e-05
+531.9000000000527 4.9329203616603e-05
+532.0000000000528 4.933023986771375e-05
+532.1000000000528 4.933129555048751e-05
+532.2000000000528 4.9332351062348796e-05
+532.3000000000528 4.9333406403349284e-05
+532.4000000000528 4.933446157359965e-05
+532.5000000000529 4.933551657321052e-05
+532.6000000000529 4.933657140217484e-05
+532.7000000000529 4.933762606066208e-05
+532.8000000000529 4.933868054872407e-05
+532.900000000053 4.933973486647146e-05
+533.000000000053 4.93407890139626e-05
+533.100000000053 4.935421054821675e-05
+533.200000000053 4.936763299473962e-05
+533.300000000053 4.9381056353504654e-05
+533.4000000000531 4.939448062454412e-05
+533.5000000000531 4.9407905807884405e-05
+533.6000000000531 4.941012779297504e-05
+533.7000000000531 4.941234968266645e-05
+533.8000000000532 4.941457147711851e-05
+533.9000000000532 4.941679317631445e-05
+534.0000000000532 4.941901478047417e-05
+534.1000000000532 4.942345866704261e-05
+534.2000000000533 4.942790269859004e-05
+534.3000000000533 4.9432346875268225e-05
+534.4000000000533 4.943679119705246e-05
+534.5000000000533 4.944123566410057e-05
+534.6000000000533 4.945689244883994e-05
+534.7000000000534 4.947255139471272e-05
+534.8000000000534 4.948821250184758e-05
+534.9000000000534 4.95038757703731e-05
+535.0000000000534 4.951954120058771e-05
+535.1000000000535 4.952209280320606e-05
+535.2000000000535 4.9524644309358e-05
+535.3000000000535 4.952719571902136e-05
+535.4000000000535 4.9529747032350915e-05
+535.5000000000535 4.953229824933063e-05
+535.6000000000536 4.954606904145595e-05
+535.7000000000536 4.95598408930659e-05
+535.8000000000536 4.9573613804068e-05
+535.9000000000536 4.9587387774546656e-05
+536.0000000000537 4.960116280446297e-05
+536.1000000000537 4.9605055427085e-05
+536.2000000000537 4.960894811380161e-05
+536.3000000000537 4.961284086470534e-05
+536.4000000000538 4.961673367988855e-05
+536.5000000000538 4.962062655932587e-05
+536.6000000000538 4.962451950310985e-05
+536.7000000000538 4.9628412511391893e-05
+536.8000000000538 4.9632305584146666e-05
+536.9000000000539 4.9636198721407796e-05
+537.0000000000539 4.964009192338584e-05
+537.1000000000539 4.964407392065432e-05
+537.2000000000539 4.964805600884324e-05
+537.300000000054 4.9652038187929833e-05
+537.400000000054 4.96560204581272e-05
+537.500000000054 4.966000281935965e-05
+537.600000000054 4.967522146752307e-05
+537.700000000054 4.969044200901615e-05
+537.8000000000541 4.9705664443871714e-05
+537.9000000000541 4.9720888772299604e-05
+538.0000000000541 4.973611499432629e-05
+538.1000000000541 4.973943926020663e-05
+538.2000000000542 4.9742763506013715e-05
+538.3000000000542 4.974608773183905e-05
+538.4000000000542 4.9749411937714985e-05
+538.5000000000542 4.975273612379208e-05
+538.6000000000543 4.9756129938114795e-05
+538.7000000000543 4.975956851896075e-05
+538.8000000000543 4.976302871345473e-05
+538.9000000000543 4.9766489078344885e-05
+539.0000000000543 4.9769929880439404e-05
+539.1000000000544 4.977269982926532e-05
+539.2000000000544 4.977541583631573e-05
+539.3000000000544 4.977806330508106e-05
+539.4000000000544 4.9780629352287706e-05
+539.5000000000545 4.9783102808543316e-05
+539.6000000000545 4.978547217031659e-05
+539.7000000000545 4.978773042939757e-05
+539.8000000000545 4.9789872242759865e-05
+539.9000000000545 4.9791893933279056e-05
+540.0000000000546 4.979379349006162e-05
+540.1000000000546 4.979690229372672e-05
+540.2000000000546 4.979989003392894e-05
+540.3000000000546 4.980275969114898e-05
+540.4000000000547 4.980551591404374e-05
+540.5000000000547 4.9808165019913426e-05
+540.6000000000547 4.97994583352164e-05
+540.7000000000547 4.979066106268495e-05
+540.8000000000548 4.978178458129619e-05
+540.9000000000548 4.977284192840341e-05
+541.0000000000548 4.9763847798341205e-05
+541.1000000000548 4.976492217612368e-05
+541.2000000000548 4.976598037862772e-05
+541.3000000000549 4.9767042064062174e-05
+541.4000000000549 4.976812855889415e-05
+541.5000000000549 4.9769262858347824e-05
+541.6000000000549 4.977046962771134e-05
+541.700000000055 4.9771678913664e-05
+541.800000000055 4.977289038827181e-05
+541.900000000055 4.977410367320753e-05
+542.000000000055 4.977531833944886e-05
+542.100000000055 4.97797037686114e-05
+542.2000000000551 4.978408985503082e-05
+542.3000000000551 4.978847601810626e-05
+542.4000000000551 4.979286162652281e-05
+542.5000000000551 4.979724599829259e-05
+542.6000000000552 4.981289778786161e-05
+542.7000000000552 4.982855296017971e-05
+542.8000000000552 4.98442108342102e-05
+542.9000000000552 4.9859870778404994e-05
+543.0000000000553 4.987553221095494e-05
+543.1000000000553 4.987566868191289e-05
+543.2000000000553 4.987580334341223e-05
+543.3000000000553 4.987593576532412e-05
+543.4000000000553 4.987606556800704e-05
+543.5000000000554 4.987619242236858e-05
+543.6000000000554 4.987624620539086e-05
+543.7000000000554 4.987625163292432e-05
+543.8000000000554 4.987623175136633e-05
+543.9000000000555 4.9876207938253606e-05
+544.0000000000555 4.987619990241602e-05
+544.1000000000555 4.987668824105594e-05
+544.2000000000555 4.987722674874376e-05
+544.3000000000555 4.98778301296424e-05
+544.4000000000556 4.987851141925486e-05
+544.5000000000556 4.987928198470713e-05
+544.6000000000556 4.9880151524551434e-05
+544.7000000000556 4.9881128066692836e-05
+544.8000000000557 4.988221797167428e-05
+544.9000000000557 4.9883425931079384e-05
+545.0000000000557 4.988475496723936e-05
+545.1000000000557 4.98872821043193e-05
+545.2000000000558 4.9889931438923254e-05
+545.3000000000558 4.989270099249216e-05
+545.4000000000558 4.989558711575053e-05
+545.5000000000558 4.989858448851016e-05
+545.6000000000558 4.990168611872778e-05
+545.7000000000559 4.990488050304951e-05
+545.8000000000559 4.990815646852006e-05
+545.9000000000559 4.991150111783812e-05
+546.0000000000559 4.991489982848435e-05
+546.100000000056 4.991968984133576e-05
+546.200000000056 4.992449969938009e-05
+546.300000000056 4.9929309600697444e-05
+546.400000000056 4.993409801293982e-05
+546.500000000056 4.9938841673075015e-05
+546.6000000000561 4.9943515586317326e-05
+546.7000000000561 4.994818968944358e-05
+546.8000000000561 4.995286398243429e-05
+546.9000000000561 4.995753846544761e-05
+547.0000000000562 4.996221313846929e-05
+547.1000000000562 4.99762607058737e-05
+547.2000000000562 4.9990309457170474e-05
+547.3000000000562 5.00043593924032e-05
+547.4000000000563 5.00184105116747e-05
+547.5000000000563 5.003246281490373e-05
+547.6000000000563 5.0035221669715425e-05
+547.7000000000563 5.003798046308685e-05
+547.8000000000563 5.00407391950561e-05
+547.9000000000564 5.004349786566135e-05
+548.0000000000564 5.004625647505966e-05
+548.1000000000564 5.004955105741905e-05
+548.2000000000564 5.0052845615418984e-05
+548.3000000000565 5.005614014897537e-05
+548.4000000000565 5.005943465824141e-05
+548.5000000000565 5.0062729143251605e-05
+548.6000000000565 5.006602360404053e-05
+548.7000000000565 5.006931804070212e-05
+548.8000000000566 5.007261245327094e-05
+548.9000000000566 5.007590684184092e-05
+549.0000000000566 5.0079201206387597e-05
+549.1000000000566 5.008283522932321e-05
+549.2000000000567 5.008646928043152e-05
+549.3000000000567 5.0090103359748416e-05
+549.4000000000567 5.0093737467309824e-05
+549.5000000000567 5.0097371603276706e-05
+549.6000000000568 5.0112315249663245e-05
+549.7000000000568 5.012726056527298e-05
+549.8000000000568 5.0142207550147894e-05
+549.9000000000568 5.015715620438908e-05
+550.0000000000568 5.017210652797329e-05
+550.1000000000569 5.0176690583707815e-05
+550.2000000000569 5.018127477934155e-05
+550.3000000000569 5.018585911490593e-05
+550.4000000000569 5.0190443590491805e-05
+550.500000000057 5.0195028206071176e-05
+550.600000000057 5.0199612961794364e-05
+550.700000000057 5.020419785769279e-05
+550.800000000057 5.020878289379805e-05
+550.900000000057 5.0213368070141635e-05
+551.0000000000571 5.021795338681448e-05
+551.1000000000571 5.022243746156168e-05
+551.2000000000571 5.022692169573954e-05
+551.3000000000571 5.023140608944678e-05
+551.4000000000572 5.0235890642782286e-05
+551.5000000000572 5.024037535572605e-05
+551.6000000000572 5.0244860228376875e-05
+551.7000000000572 5.024934526083368e-05
+551.8000000000573 5.0253830453135954e-05
+551.9000000000573 5.0258315805382596e-05
+552.0000000000573 5.026280131755189e-05
+552.1000000000573 5.026398311299942e-05
+552.2000000000573 5.026516470684061e-05
+552.3000000000574 5.026634609918697e-05
+552.4000000000574 5.026752729015017e-05
+552.5000000000574 5.0268708279723006e-05
+552.6000000000574 5.0269889068017025e-05
+552.7000000000575 5.027106965508445e-05
+552.8000000000575 5.027225004103696e-05
+552.9000000000575 5.027343022586724e-05
+553.0000000000575 5.027461020980854e-05
+553.1000000000575 5.028038430065593e-05
+553.2000000000576 5.0286158729356074e-05
+553.3000000000576 5.029193349594589e-05
+553.4000000000576 5.0297708600521755e-05
+553.5000000000576 5.030348404318015e-05
+553.6000000000577 5.0309259823898517e-05
+553.7000000000577 5.03150359427734e-05
+553.8000000000577 5.0320812399901304e-05
+553.9000000000577 5.0326589195259746e-05
+554.0000000000578 5.033236632888512e-05
+554.1000000000578 5.0336852715166795e-05
+554.2000000000578 5.0341339216715e-05
+554.3000000000578 5.034582583362291e-05
+554.4000000000578 5.0350312565924136e-05
+554.5000000000579 5.0354799413777965e-05
+554.6000000000579 5.037064134584357e-05
+554.7000000000579 5.038648541694464e-05
+554.8000000000579 5.040233162729594e-05
+554.900000000058 5.041817997699322e-05
+555.000000000058 5.043403046606553e-05
+555.100000000058 5.043764318432672e-05
+555.200000000058 5.0441255916223306e-05
+555.300000000058 5.044486866190852e-05
+555.4000000000581 5.044848142147598e-05
+555.5000000000581 5.04520941948407e-05
+555.6000000000581 5.0455706982155914e-05
+555.7000000000581 5.045931978351535e-05
+555.8000000000582 5.0462932598834006e-05
+555.9000000000582 5.0466545428324834e-05
+556.0000000000582 5.047015827189611e-05
+556.1000000000582 5.0462271045466635e-05
+556.2000000000583 5.045438224890517e-05
+556.3000000000583 5.04464918823244e-05
+556.4000000000583 5.043859994577744e-05
+556.5000000000583 5.043070643938359e-05
+556.6000000000583 5.043418321946358e-05
+556.7000000000584 5.043765999766994e-05
+556.8000000000584 5.04411367740373e-05
+556.9000000000584 5.044461354854078e-05
+557.0000000000584 5.044809032133504e-05
+557.1000000000585 5.045283850518441e-05
+557.2000000000585 5.045758684916255e-05
+557.3000000000585 5.0462335353304675e-05
+557.4000000000585 5.04670840177058e-05
+557.5000000000585 5.04718328424012e-05
+557.6000000000586 5.047658182742628e-05
+557.7000000000586 5.048133097281636e-05
+557.8000000000586 5.0486080278726176e-05
+557.9000000000586 5.0490829745071865e-05
+558.0000000000587 5.049557937200755e-05
+558.1000000000587 5.0499311321393394e-05
+558.2000000000587 5.050304326565403e-05
+558.3000000000587 5.0506775205000446e-05
+558.4000000000588 5.051050713928553e-05
+558.5000000000588 5.0514239068720344e-05
+558.6000000000588 5.051797099333677e-05
+558.7000000000588 5.05217029131072e-05
+558.8000000000588 5.052543482812326e-05
+558.9000000000589 5.052916673841703e-05
+559.0000000000589 5.0532898644079896e-05
+559.1000000000589 5.053604280055793e-05
+559.2000000000589 5.053918692035072e-05
+559.300000000059 5.0542331003494916e-05
+559.400000000059 5.054547505014682e-05
+559.500000000059 5.0548619060216986e-05
+559.600000000059 5.054036466564641e-05
+559.700000000059 5.053210881692182e-05
+559.8000000000591 5.0523851514063664e-05
+559.9000000000591 5.051559275721218e-05
+560.0000000000591 5.050733254639773e-05
+560.1000000000591 5.0515536819409935e-05
+560.2000000000592 5.0523742008473643e-05
+560.3000000000592 5.0531948113803804e-05
+560.4000000000592 5.054015513549591e-05
+560.5000000000592 5.0548363073585585e-05
+560.6000000000593 5.055657192828799e-05
+560.7000000000593 5.056478169963879e-05
+560.8000000000593 5.057299238779345e-05
+560.9000000000593 5.058120399284749e-05
+561.0000000000593 5.058941651489267e-05
+561.1000000000594 5.059089892572592e-05
+561.2000000000594 5.0592381094090495e-05
+561.3000000000594 5.0593863019916214e-05
+561.4000000000594 5.059534470337233e-05
+561.5000000000595 5.0596826144441805e-05
+561.6000000000595 5.058688560353718e-05
+561.7000000000595 5.05769441517412e-05
+561.8000000000595 5.056700178946704e-05
+561.9000000000595 5.055705851676873e-05
+562.0000000000596 5.0547114334008246e-05
+562.1000000000596 5.055156556102542e-05
+562.2000000000596 5.055601688951305e-05
+562.3000000000596 5.056046831968267e-05
+562.4000000000597 5.056491985144652e-05
+562.5000000000597 5.056937148495637e-05
+562.6000000000597 5.057382322024423e-05
+562.7000000000597 5.0578275057342194e-05
+562.8000000000598 5.058272699628226e-05
+562.9000000000598 5.058717903709654e-05
+563.0000000000598 5.059163117987748e-05
+563.1000000000598 5.059691729826425e-05
+563.2000000000598 5.0602203664686814e-05
+563.3000000000599 5.060749027912217e-05
+563.4000000000599 5.0612777141667136e-05
+563.5000000000599 5.06180642523587e-05
+563.6000000000599 5.0623351611233815e-05
+563.70000000006 5.062863921838944e-05
+563.80000000006 5.0633927073862585e-05
+563.90000000006 5.063921517769028e-05
+564.00000000006 5.064450352990144e-05
+564.10000000006 5.0636161712920704e-05
+564.2000000000601 5.0627818411938664e-05
+564.3000000000601 5.061947362700709e-05
+564.4000000000601 5.061112735829799e-05
+564.5000000000601 5.060277960587018e-05
+564.6000000000602 5.060587966383396e-05
+564.7000000000602 5.060897964107145e-05
+564.8000000000602 5.061207953755836e-05
+564.9000000000602 5.0615179353330326e-05
+565.0000000000603 5.061827908848531e-05
+565.1000000000603 5.062512015309487e-05
+565.2000000000603 5.063196182515184e-05
+565.3000000000603 5.063880410466808e-05
+565.4000000000603 5.064564699171543e-05
+565.5000000000604 5.065249048642576e-05
+565.6000000000604 5.065933458893114e-05
+565.7000000000604 5.066617929924341e-05
+565.8000000000604 5.067302461749461e-05
+565.9000000000605 5.067987054375675e-05
+566.0000000000605 5.0686717078100175e-05
+566.1000000000605 5.069066622594297e-05
+566.2000000000605 5.069461534787842e-05
+566.3000000000605 5.069856444381578e-05
+566.4000000000606 5.070251351384472e-05
+566.5000000000606 5.070646255799473e-05
+566.6000000000606 5.071041157641556e-05
+566.7000000000606 5.071436056901655e-05
+566.8000000000607 5.07183095358874e-05
+566.9000000000607 5.0722258477117795e-05
+567.0000000000607 5.072620739267823e-05
+567.1000000000607 5.073164888934772e-05
+567.2000000000608 5.073709065336786e-05
+567.3000000000608 5.0742532684774935e-05
+567.4000000000608 5.074797498366532e-05
+567.5000000000608 5.075341755007537e-05
+567.6000000000608 5.075886038398126e-05
+567.7000000000609 5.0764303485539634e-05
+567.8000000000609 5.076974685472669e-05
+567.9000000000609 5.077519049163906e-05
+568.0000000000609 5.078063439630502e-05
+568.100000000061 5.077281936125576e-05
+568.200000000061 5.076500265534681e-05
+568.300000000061 5.0757184278580604e-05
+568.400000000061 5.0749364231019916e-05
+568.500000000061 5.074154251272739e-05
+568.6000000000611 5.0733719123765964e-05
+568.7000000000611 5.07258940641382e-05
+568.8000000000611 5.071806733396714e-05
+568.9000000000611 5.071023893325556e-05
+569.0000000000612 5.070240886207509e-05
+569.1000000000612 5.070881397122196e-05
+569.2000000000612 5.071521952543075e-05
+569.3000000000612 5.072162552475003e-05
+569.4000000000613 5.0728031969228384e-05
+569.5000000000613 5.073443885891434e-05
+569.6000000000613 5.074084619397705e-05
+569.7000000000613 5.074725397434459e-05
+569.8000000000613 5.0753662200125965e-05
+569.9000000000614 5.0760070871430105e-05
+570.0000000000614 5.076647998825069e-05
+570.1000000000614 5.0781543489413996e-05
+570.2000000000614 5.0796608577401214e-05
+570.3000000000615 5.0811675252146006e-05
+570.4000000000615 5.082674351376287e-05
+570.5000000000615 5.0841813362298916e-05
+570.6000000000615 5.0845368293012785e-05
+570.7000000000616 5.084892320027734e-05
+570.8000000000616 5.0852478084187324e-05
+570.9000000000616 5.085603294477739e-05
+571.0000000000616 5.085958778208335e-05
+571.1000000000616 5.086530800984137e-05
+571.2000000000617 5.087102851799481e-05
+571.3000000000617 5.087674930639696e-05
+571.4000000000617 5.0882470375202986e-05
+571.5000000000617 5.088819172450756e-05
+571.6000000000618 5.0893913354224414e-05
+571.7000000000618 5.0899635264508744e-05
+571.8000000000618 5.090535745533469e-05
+571.9000000000618 5.091107992679707e-05
+572.0000000000618 5.091680267886947e-05
+572.1000000000619 5.092158640862337e-05
+572.2000000000619 5.0926370247768594e-05
+572.3000000000619 5.093115419639564e-05
+572.4000000000619 5.093593825447431e-05
+572.500000000062 5.094072242209526e-05
+572.600000000062 5.094550669928865e-05
+572.700000000062 5.09502910860848e-05
+572.800000000062 5.0955075582574354e-05
+572.900000000062 5.0959860188727225e-05
+573.0000000000621 5.096464490464224e-05
+573.1000000000621 5.0982527774315496e-05
+573.2000000000621 5.100041396258233e-05
+573.3000000000621 5.101830346995012e-05
+573.4000000000622 5.103619629662396e-05
+573.5000000000622 5.1054092443043606e-05
+573.6000000000622 5.1060439773933336e-05
+573.7000000000622 5.1066787552970316e-05
+573.8000000000623 5.107313578020275e-05
+573.9000000000623 5.1079484455799814e-05
+574.0000000000623 5.1085833579690174e-05
+574.1000000000623 5.109462652932976e-05
+574.2000000000623 5.1103420541409424e-05
+574.3000000000624 5.111221561598601e-05
+574.4000000000624 5.1121011753237544e-05
+574.5000000000624 5.112980895322091e-05
+574.6000000000624 5.113860721617476e-05
+574.7000000000625 5.114740654209546e-05
+574.8000000000625 5.115620693122185e-05
+574.9000000000625 5.1165008383671506e-05
+575.0000000000625 5.1173810899506376e-05
+575.1000000000626 5.1190449989808595e-05
+575.2000000000626 5.120709152639913e-05
+575.3000000000626 5.122373550957073e-05
+575.4000000000626 5.124038193937349e-05
+575.5000000000626 5.125703081591109e-05
+575.6000000000627 5.126209748463932e-05
+575.7000000000627 5.126716431035542e-05
+575.8000000000627 5.1272231293151684e-05
+575.9000000000627 5.127729843299915e-05
+576.0000000000628 5.1282365729998e-05
+576.1000000000628 5.1299848274632955e-05
+576.2000000000628 5.1317333812344544e-05
+576.3000000000628 5.133482234349289e-05
+576.4000000000628 5.135231386825607e-05
+576.5000000000629 5.136980838704773e-05
+576.6000000000629 5.137570867458928e-05
+576.7000000000629 5.138160929268326e-05
+576.8000000000629 5.1387510241433124e-05
+576.900000000063 5.139341152088158e-05
+577.000000000063 5.139931313101819e-05
+577.100000000063 5.141694454803286e-05
+577.200000000063 5.1434579035673775e-05
+577.300000000063 5.145221659419105e-05
+577.4000000000631 5.146985722389551e-05
+577.5000000000631 5.148750092502998e-05
+577.6000000000631 5.14935369793372e-05
+577.7000000000631 5.14995733834965e-05
+577.8000000000632 5.150561013754964e-05
+577.9000000000632 5.1511647241599206e-05
+578.0000000000632 5.151768469569181e-05
+578.1000000000632 5.153140079119576e-05
+578.2000000000633 5.154511752929949e-05
+578.3000000000633 5.1558834909746485e-05
+578.4000000000633 5.157255293240182e-05
+578.5000000000633 5.1586271597183915e-05
+578.6000000000633 5.1588371901166236e-05
+578.7000000000634 5.159047190101413e-05
+578.8000000000634 5.159257159670528e-05
+578.9000000000634 5.1594670988278206e-05
+579.0000000000634 5.159677007589632e-05
+579.1000000000635 5.160386201907617e-05
+579.2000000000635 5.161095154988568e-05
+579.3000000000635 5.161803866831014e-05
+579.4000000000635 5.1625123374334845e-05
+579.5000000000636 5.1632205667755494e-05
+579.6000000000636 5.16276707746605e-05
+579.7000000000636 5.162313550961379e-05
+579.8000000000636 5.1618599872820606e-05
+579.9000000000636 5.1614063864485976e-05
+580.0000000000637 5.1609527484881824e-05
+580.1000000000637 5.1614509812886864e-05
+580.2000000000637 5.161949228169204e-05
+580.3000000000637 5.1624474891329405e-05
+580.4000000000638 5.162945764183104e-05
+580.5000000000638 5.1634440533236464e-05
+580.6000000000638 5.165104098369536e-05
+580.7000000000638 5.166764381733064e-05
+580.8000000000638 5.1684249034179165e-05
+580.9000000000639 5.170085663446003e-05
+581.0000000000639 5.1717466618264955e-05
+581.1000000000639 5.1724893473583484e-05
+581.2000000000639 5.1732320977567623e-05
+581.300000000064 5.1739749130217786e-05
+581.400000000064 5.1747177931595196e-05
+581.500000000064 5.1754607381890334e-05
+581.600000000064 5.177366939964537e-05
+581.700000000064 5.1792735405984015e-05
+581.8000000000641 5.181180540149674e-05
+581.9000000000641 5.1830879386652225e-05
+582.0000000000641 5.184995736197102e-05
+582.1000000000641 5.185486123266674e-05
+582.2000000000642 5.185976515796556e-05
+582.3000000000642 5.186466913777183e-05
+582.4000000000642 5.1869573172233675e-05
+582.5000000000642 5.187447726138484e-05
+582.6000000000643 5.18910266086773e-05
+582.7000000000643 5.190757821237479e-05
+582.8000000000643 5.19241320724489e-05
+582.9000000000643 5.1940688189114806e-05
+583.0000000000643 5.195724656233724e-05
+583.1000000000644 5.196312534653187e-05
+583.2000000000644 5.196900444551288e-05
+583.3000000000644 5.1974883859381965e-05
+583.4000000000644 5.198076358824115e-05
+583.5000000000645 5.198664363200934e-05
+583.6000000000645 5.1992451171345014e-05
+583.7000000000645 5.199821219147358e-05
+583.8000000000645 5.20039508957309e-05
+583.9000000000646 5.2009689703783516e-05
+584.0000000000646 5.2015449251082084e-05
+584.1000000000646 5.2018177111406164e-05
+584.2000000000646 5.202096110471278e-05
+584.3000000000646 5.202381649489473e-05
+584.4000000000647 5.2026756754389655e-05
+584.5000000000647 5.202979356425747e-05
+584.6000000000647 5.204460553400406e-05
+584.7000000000647 5.2059534879644785e-05
+584.8000000000648 5.2074587274403366e-05
+584.9000000000648 5.208976665458096e-05
+585.0000000000648 5.2105075216572835e-05
+585.1000000000648 5.210833267254438e-05
+585.2000000000648 5.211171657852173e-05
+585.3000000000649 5.211522381071176e-05
+585.4000000000649 5.211884950027231e-05
+585.5000000000649 5.212258703241301e-05
+585.6000000000649 5.2126428047346126e-05
+585.700000000065 5.213036243650698e-05
+585.800000000065 5.2134378343513466e-05
+585.900000000065 5.213846216347081e-05
+586.000000000065 5.214259854263421e-05
+586.100000000065 5.214542456444666e-05
+586.2000000000651 5.214826706084326e-05
+586.3000000000651 5.215110542694012e-05
+586.4000000000651 5.215391730836615e-05
+586.5000000000651 5.215667860094006e-05
+586.6000000000652 5.215936344932961e-05
+586.7000000000652 5.216204517845322e-05
+586.8000000000652 5.216472413213666e-05
+586.9000000000652 5.2167400707213054e-05
+587.0000000000653 5.217007535328508e-05
+587.1000000000653 5.216526401007617e-05
+587.2000000000653 5.216044945049862e-05
+587.3000000000653 5.2155632283017974e-05
+587.4000000000653 5.215081316859992e-05
+587.5000000000654 5.2145992820859185e-05
+587.6000000000654 5.212947639262952e-05
+587.7000000000654 5.211295289079474e-05
+587.8000000000654 5.20964230295406e-05
+587.9000000000655 5.207988746931683e-05
+588.0000000000655 5.206334681679257e-05
+588.1000000000655 5.2035656795874095e-05
+588.2000000000655 5.200795912022333e-05
+588.3000000000656 5.1980254233970844e-05
+588.4000000000656 5.19525425277826e-05
+588.5000000000656 5.192482433870314e-05
+588.6000000000656 5.190895493095862e-05
+588.7000000000656 5.189317620828731e-05
+588.8000000000657 5.187743996274266e-05
+588.9000000000657 5.186170157149621e-05
+589.0000000000657 5.184591999092095e-05
+589.1000000000657 5.185467193071572e-05
+589.2000000000658 5.186331633707767e-05
+589.3000000000658 5.1871822675141164e-05
+589.4000000000658 5.188016391712478e-05
+589.5000000000658 5.1888316545293004e-05
+589.6000000000658 5.188453045162849e-05
+589.7000000000659 5.1880514392752234e-05
+589.8000000000659 5.187625627241301e-05
+589.9000000000659 5.187174747277983e-05
+590.0000000000659 5.1866982852688675e-05
+590.100000000066 5.189695676502848e-05
+590.200000000066 5.1926683533257485e-05
+590.300000000066 5.19561679371205e-05
+590.400000000066 5.198541824957796e-05
+590.500000000066 5.201444624722867e-05
+590.6000000000661 5.2043267218037285e-05
+590.7000000000661 5.207190293511903e-05
+590.8000000000661 5.2100376618279145e-05
+590.9000000000661 5.212871508292999e-05
+591.0000000000662 5.215694874925823e-05
+591.1000000000662 5.2152422724379005e-05
+591.2000000000662 5.2147856691259904e-05
+591.3000000000662 5.214329193373778e-05
+591.4000000000663 5.213877326630228e-05
+591.5000000000663 5.2134349032843297e-05
+591.6000000000663 5.211831421243839e-05
+591.7000000000663 5.210227604406525e-05
+591.8000000000663 5.2086234180825545e-05
+591.9000000000664 5.2070188223618604e-05
+592.0000000000664 5.2054137720989574e-05
+592.1000000000664 5.205967484258528e-05
+592.2000000000664 5.206521271062793e-05
+592.3000000000665 5.207075071799291e-05
+592.4000000000665 5.207628820428715e-05
+592.5000000000665 5.2081824456334324e-05
+592.6000000000665 5.2122674316454135e-05
+592.7000000000666 5.216353320701907e-05
+592.8000000000666 5.220440041675723e-05
+592.9000000000666 5.224527528503788e-05
+593.0000000000666 5.228615720218642e-05
+593.1000000000666 5.230211047605144e-05
+593.2000000000667 5.231806387570119e-05
+593.3000000000667 5.233401694803611e-05
+593.4000000000667 5.234996929264851e-05
+593.5000000000667 5.236592056151284e-05
+593.6000000000668 5.234637846054216e-05
+593.7000000000668 5.232673501884776e-05
+593.8000000000668 5.230703887065402e-05
+593.9000000000668 5.2287335026007705e-05
+594.0000000000668 5.2267664876596846e-05
+594.1000000000669 5.2226915817785226e-05
+594.2000000000669 5.2186264754984075e-05
+594.3000000000669 5.214574209425863e-05
+594.4000000000669 5.210537460636343e-05
+594.500000000067 5.2065185440639e-05
+594.600000000067 5.209596281397375e-05
+594.700000000067 5.212697553072628e-05
+594.800000000067 5.21582362274338e-05
+594.900000000067 5.218975407774152e-05
+595.0000000000671 5.22215347820991e-05
+595.1000000000671 5.2262648196355066e-05
+595.2000000000671 5.230402500607856e-05
+595.3000000000671 5.2345660558425634e-05
+595.4000000000672 5.238754667843249e-05
+595.5000000000672 5.242967165510247e-05
+595.6000000000672 5.244840014269342e-05
+595.7000000000672 5.2467324006562185e-05
+595.8000000000673 5.2486419726054055e-05
+595.9000000000673 5.250566017930465e-05
+596.0000000000673 5.252501463651895e-05
+596.1000000000673 5.2536585043714835e-05
+596.2000000000673 5.254819498609476e-05
+596.3000000000674 5.255980287049026e-05
+596.4000000000674 5.257136349591468e-05
+596.5000000000674 5.258282805023867e-05
+596.6000000000674 5.258231190181489e-05
+596.7000000000675 5.258178969250478e-05
+596.8000000000675 5.258126176829533e-05
+596.9000000000675 5.2580728528516676e-05
+597.0000000000675 5.2580190425905386e-05
+597.1000000000676 5.2589263752422356e-05
+597.2000000000676 5.259833756676584e-05
+597.3000000000676 5.2607412482616436e-05
+597.4000000000676 5.2616489167273466e-05
+597.5000000000676 5.2625568341768964e-05
+597.6000000000677 5.2646503265039855e-05
+597.7000000000677 5.266744198398705e-05
+597.8000000000677 5.268838521927873e-05
+597.9000000000677 5.270933363938393e-05
+598.0000000000678 5.2730287860210886e-05
+598.1000000000678 5.273636266398432e-05
+598.2000000000678 5.2742439426039194e-05
+598.3000000000678 5.274851860184801e-05
+598.4000000000678 5.2754600593588666e-05
+598.5000000000679 5.276068574999214e-05
+598.6000000000679 5.27669221149492e-05
+598.7000000000679 5.2773257202769246e-05
+598.8000000000679 5.277964209347335e-05
+598.900000000068 5.2786031432722465e-05
+599.000000000068 5.2792383434092025e-05
+599.100000000068 5.281021782817635e-05
+599.200000000068 5.282794456720282e-05
+599.300000000068 5.2845532487253814e-05
+599.4000000000681 5.286295397675052e-05
+599.5000000000681 5.288018498286796e-05
+599.6000000000681 5.2885318499603616e-05
+599.7000000000681 5.289022052558365e-05
+599.8000000000682 5.2894878609393714e-05
+599.9000000000682 5.289928383830921e-05
+600.0000000000682 5.2903430839753276e-05
+600.1000000000682 5.291882396896299e-05
+600.2000000000683 5.2933960170732246e-05
+600.3000000000683 5.294884453731627e-05
+600.4000000000683 5.2963485714339294e-05
+600.5000000000683 5.297789590551012e-05
+600.6000000000683 5.2980198575752986e-05
+600.7000000000684 5.2982307427423574e-05
+600.8000000000684 5.298424637009817e-05
+600.9000000000684 5.298604291947169e-05
+601.0000000000684 5.298772819743219e-05
+601.1000000000685 5.299108005146028e-05
+601.2000000000685 5.299439384993069e-05
+601.3000000000685 5.2997711536356494e-05
+601.4000000000685 5.300107866855148e-05
+601.5000000000686 5.3004544420155546e-05
+601.6000000000686 5.30081615835745e-05
+601.7000000000686 5.3011781459683196e-05
+601.8000000000686 5.3015403699542186e-05
+601.9000000000686 5.30190279002217e-05
+602.0000000000687 5.302265360522718e-05
+602.1000000000687 5.3041974232910235e-05
+602.2000000000687 5.306129929395276e-05
+602.3000000000687 5.308062817028326e-05
+602.4000000000688 5.3099960189002284e-05
+602.5000000000688 5.3119294622211106e-05
+602.6000000000688 5.3126721053724316e-05
+602.7000000000688 5.31341493800247e-05
+602.8000000000688 5.314157887404739e-05
+602.9000000000689 5.314900886217697e-05
+603.0000000000689 5.315643872428762e-05
+603.1000000000689 5.316424882798942e-05
+603.2000000000689 5.3172057813836053e-05
+603.300000000069 5.317986522243023e-05
+603.400000000069 5.318767064795012e-05
+603.500000000069 5.3195473738199644e-05
+603.600000000069 5.32151286599548e-05
+603.700000000069 5.323473622104171e-05
+603.8000000000691 5.325432097223198e-05
+603.9000000000691 5.327390571809799e-05
+604.0000000000691 5.329351151371448e-05
+604.1000000000691 5.329958466997178e-05
+604.2000000000692 5.330571190575723e-05
+604.3000000000692 5.331190895414381e-05
+604.4000000000692 5.331818977139943e-05
+604.5000000000692 5.33245665357408e-05
+604.6000000000693 5.334299389054874e-05
+604.7000000000693 5.336153916458298e-05
+604.8000000000693 5.3380209277427284e-05
+604.9000000000693 5.339900937098775e-05
+605.0000000000693 5.3417942806557936e-05
+605.1000000000694 5.3423861687115134e-05
+605.2000000000694 5.34299117018007e-05
+605.3000000000694 5.343609075502463e-05
+605.4000000000694 5.3442394961335367e-05
+605.5000000000695 5.344881864454954e-05
+605.6000000000695 5.3467313028337126e-05
+605.7000000000695 5.34859100861922e-05
+605.8000000000695 5.3504597924769445e-05
+605.9000000000696 5.35233627882038e-05
+606.0000000000696 5.354218905423346e-05
+606.1000000000696 5.355256696821443e-05
+606.2000000000696 5.356296744537043e-05
+606.3000000000696 5.3573369244695336e-05
+606.4000000000697 5.358374926034447e-05
+606.5000000000697 5.3594082519699755e-05
+606.6000000000697 5.361632080575464e-05
+606.7000000000697 5.3638565129186805e-05
+606.8000000000698 5.366081549098803e-05
+606.9000000000698 5.368307189233796e-05
+607.0000000000698 5.3705334334469216e-05
+607.1000000000698 5.3713388187579566e-05
+607.2000000000698 5.372144278061376e-05
+607.3000000000699 5.372949811364462e-05
+607.4000000000699 5.373755418668243e-05
+607.5000000000699 5.374561099993376e-05
+607.6000000000699 5.376566714001501e-05
+607.70000000007 5.378572761781546e-05
+607.80000000007 5.380579243386131e-05
+607.90000000007 5.382586158880422e-05
+608.00000000007 5.384593508309862e-05
+608.10000000007 5.3852794377707737e-05
+608.2000000000701 5.385965411891239e-05
+608.3000000000701 5.386651430688633e-05
+608.4000000000701 5.387337494155251e-05
+608.5000000000701 5.3880236023093016e-05
+608.6000000000702 5.389911251187115e-05
+608.7000000000702 5.3917992507481365e-05
+608.8000000000702 5.393687601035354e-05
+608.9000000000702 5.39557630207294e-05
+609.0000000000703 5.397465353896823e-05
+609.1000000000703 5.39823407374245e-05
+609.2000000000703 5.399002852765971e-05
+609.3000000000703 5.399771690954627e-05
+609.4000000000703 5.400540588327064e-05
+609.5000000000704 5.401309544883927e-05
+609.6000000000704 5.403281696168426e-05
+609.7000000000704 5.405254249222309e-05
+609.8000000000704 5.4072272040868856e-05
+609.9000000000705 5.409200560809743e-05
+610.0000000000705 5.411174319438479e-05
+610.1000000000705 5.4131466299921894e-05
+610.2000000000705 5.415119348428983e-05
+610.3000000000706 5.4170924747957224e-05
+610.4000000000706 5.4190660091518346e-05
+610.5000000000706 5.421039951537052e-05
+610.6000000000706 5.4218094554672585e-05
+610.7000000000706 5.422579025503148e-05
+610.8000000000707 5.423348661658196e-05
+610.9000000000707 5.424118363926994e-05
+611.0000000000707 5.4248881323238645e-05
+611.1000000000707 5.426850088176016e-05
+611.2000000000708 5.42881244081085e-05
+611.3000000000708 5.43077519028941e-05
+611.4000000000708 5.432738336653834e-05
+611.5000000000708 5.434701879945416e-05
+611.6000000000708 5.435459280979369e-05
+611.7000000000709 5.436216742752221e-05
+611.8000000000709 5.4369742652826904e-05
+611.9000000000709 5.437731848576907e-05
+612.0000000000709 5.4384894926288945e-05
+612.100000000071 5.439948940370646e-05
+612.200000000071 5.44140846908202e-05
+612.300000000071 5.442868078742441e-05
+612.400000000071 5.4443277693439485e-05
+612.500000000071 5.445787540865123e-05
+612.6000000000711 5.446039845653416e-05
+612.7000000000711 5.446292119459283e-05
+612.8000000000711 5.446544362280927e-05
+612.9000000000711 5.4467965741228603e-05
+613.0000000000712 5.447048754997036e-05
+613.1000000000712 5.448898981690955e-05
+613.2000000000712 5.4507495194371794e-05
+613.3000000000712 5.452600368252012e-05
+613.4000000000713 5.454451528164379e-05
+613.5000000000713 5.4563029991779614e-05
+613.6000000000713 5.458154781327993e-05
+613.7000000000713 5.460006874630781e-05
+613.8000000000713 5.4618592791026225e-05
+613.9000000000714 5.463711994766136e-05
+614.0000000000714 5.465565021643064e-05
+614.1000000000714 5.466219605399697e-05
+614.2000000000714 5.4668742258990104e-05
+614.3000000000715 5.467528883132824e-05
+614.4000000000715 5.468183577111896e-05
+614.5000000000715 5.468838307841536e-05
+614.6000000000715 5.470703140164216e-05
+614.7000000000716 5.472568298984073e-05
+614.8000000000716 5.4744337843190804e-05
+614.9000000000716 5.476299596206172e-05
+615.0000000000716 5.478165734668689e-05
+615.1000000000716 5.478700830198404e-05
+615.2000000000717 5.4792359368532904e-05
+615.3000000000717 5.4797710546300946e-05
+615.4000000000717 5.480306183544513e-05
+615.5000000000717 5.480841323594173e-05
+615.6000000000718 5.4825878286967816e-05
+615.7000000000718 5.48433458147479e-05
+615.8000000000718 5.486081581934063e-05
+615.9000000000718 5.487828830086768e-05
+616.0000000000719 5.489576325950586e-05
+616.1000000000719 5.490158699433798e-05
+616.2000000000719 5.490741086383173e-05
+616.3000000000719 5.491323486808206e-05
+616.4000000000719 5.491905900705736e-05
+616.500000000072 5.492488328073465e-05
+616.600000000072 5.494283367330509e-05
+616.700000000072 5.496078677213116e-05
+616.800000000072 5.497874257747734e-05
+616.900000000072 5.4996701089418216e-05
+617.0000000000721 5.501466230801938e-05
+617.1000000000721 5.502017063033537e-05
+617.2000000000721 5.50256791041068e-05
+617.3000000000721 5.503118772943197e-05
+617.4000000000722 5.5036696506219256e-05
+617.5000000000722 5.5042205434639134e-05
+617.6000000000722 5.505985293011568e-05
+617.7000000000722 5.507750300691976e-05
+617.8000000000723 5.5095155665076654e-05
+617.9000000000723 5.51128109047382e-05
+618.0000000000723 5.513046872611053e-05
+618.1000000000723 5.513547715933567e-05
+618.2000000000724 5.514048556129594e-05
+618.3000000000724 5.514549393195647e-05
+618.4000000000724 5.5150502271345784e-05
+618.5000000000724 5.515551057942899e-05
+618.6000000000724 5.516051885636152e-05
+618.7000000000725 5.516552710204504e-05
+618.8000000000725 5.517053531657168e-05
+618.9000000000725 5.517554349996994e-05
+619.0000000000725 5.518055165221436e-05
+619.1000000000726 5.519833703025064e-05
+619.2000000000726 5.52161250617994e-05
+619.3000000000726 5.523391574702711e-05
+619.4000000000726 5.5251709086036704e-05
+619.5000000000726 5.526950507898579e-05
+619.6000000000727 5.527514197860099e-05
+619.7000000000727 5.5280779051907206e-05
+619.8000000000727 5.528641629887702e-05
+619.9000000000727 5.5292053719609875e-05
+620.0000000000728 5.529769131408541e-05
+620.1000000000728 5.531306766006657e-05
+620.2000000000728 5.532844519555473e-05
+620.3000000000728 5.53438239203945e-05
+620.4000000000729 5.535920383443045e-05
+620.5000000000729 5.5374584937625384e-05
+620.6000000000729 5.537779628561567e-05
+620.7000000000729 5.538100741099357e-05
+620.8000000000729 5.538421831386192e-05
+620.900000000073 5.5387428994196696e-05
+621.000000000073 5.539063945204067e-05
+621.100000000073 5.539848694289138e-05
+621.200000000073 5.540633502238257e-05
+621.300000000073 5.5414183690633845e-05
+621.4000000000731 5.5422032947637774e-05
+621.5000000000731 5.542988279358652e-05
+621.6000000000731 5.544991734553939e-05
+621.7000000000731 5.5469955937479125e-05
+621.8000000000732 5.5489998569801774e-05
+621.9000000000732 5.5510045242966975e-05
+622.0000000000732 5.553009595729807e-05
+622.1000000000732 5.553760694782773e-05
+622.2000000000733 5.554511853782284e-05
+622.3000000000733 5.5552630727289e-05
+622.4000000000733 5.556014351629548e-05
+622.5000000000733 5.556765690504797e-05
+622.6000000000734 5.558737180908227e-05
+622.7000000000734 5.560709061237208e-05
+622.8000000000734 5.5626813315396536e-05
+622.9000000000734 5.564653991857109e-05
+623.0000000000734 5.5666270422363876e-05
+623.1000000000735 5.5670736242427966e-05
+623.2000000000735 5.5675201932188125e-05
+623.3000000000735 5.567966749167537e-05
+623.4000000000735 5.568413292085699e-05
+623.5000000000736 5.568859821976391e-05
+623.6000000000736 5.569298538596911e-05
+623.7000000000736 5.569732226115456e-05
+623.8000000000736 5.570163477429177e-05
+623.9000000000736 5.570594694102265e-05
+624.0000000000737 5.5710280862432656e-05
+624.1000000000737 5.57286424907535e-05
+624.2000000000737 5.574706747061509e-05
+624.3000000000737 5.576557221393947e-05
+624.4000000000738 5.5784171230274954e-05
+624.5000000000738 5.580287712362194e-05
+624.6000000000738 5.5809477372370956e-05
+624.7000000000738 5.581620251045337e-05
+624.8000000000739 5.5823058557599956e-05
+624.9000000000739 5.583004966758932e-05
+625.0000000000739 5.583717812732614e-05
+625.1000000000739 5.5843646549923294e-05
+625.2000000000739 5.585025110091932e-05
+625.300000000074 5.585698845404391e-05
+625.400000000074 5.586385341168166e-05
+625.500000000074 5.587083890380927e-05
+625.600000000074 5.5890176499921464e-05
+625.700000000074 5.590961802290268e-05
+625.8000000000741 5.592915083563504e-05
+625.9000000000741 5.594876041106519e-05
+626.0000000000741 5.596843032875662e-05
+626.1000000000741 5.597588879334559e-05
+626.2000000000742 5.598336570453666e-05
+626.3000000000742 5.5990838944522364e-05
+626.4000000000742 5.5998284510184124e-05
+626.5000000000742 5.60056765119933e-05
+626.6000000000743 5.600073050022051e-05
+626.7000000000743 5.5995778676987834e-05
+626.8000000000743 5.599082141233378e-05
+626.9000000000743 5.598585913284882e-05
+627.0000000000744 5.5980892321766074e-05
+627.1000000000744 5.5877581263230006e-05
+627.2000000000744 5.577424215803629e-05
+627.3000000000744 5.5670875656421356e-05
+627.4000000000744 5.556748246017243e-05
+627.5000000000745 5.546406332192353e-05
+627.6000000000745 5.529925496536843e-05
+627.7000000000745 5.513440223163409e-05
+627.8000000000745 5.4969505882311724e-05
+627.9000000000746 5.480456661411364e-05
+628.0000000000746 5.463958506045842e-05
+628.1000000000746 5.471104942142786e-05
+628.2000000000746 5.4782539469456226e-05
+628.3000000000746 5.4854055688989655e-05
+628.4000000000747 5.492559851117624e-05
+628.5000000000747 5.4997168313663864e-05
+628.6000000000747 5.510579612284909e-05
+628.7000000000747 5.5214565091011314e-05
+628.8000000000748 5.532342451958584e-05
+628.9000000000748 5.543232707580813e-05
+629.0000000000748 5.5541228828832804e-05
+629.1000000000748 5.5545326709763306e-05
+629.2000000000749 5.554930817967604e-05
+629.3000000000749 5.5553140569634764e-05
+629.4000000000749 5.555679497880831e-05
+629.5000000000749 5.5560246275942914e-05
+629.6000000000749 5.557577723060647e-05
+629.700000000075 5.559106597748244e-05
+629.800000000075 5.560609929372017e-05
+629.900000000075 5.562086766743759e-05
+630.000000000075 5.563536530312291e-05
+630.100000000075 5.568816591181277e-05
+630.2000000000751 5.57407006398523e-05
+630.3000000000751 5.579297431705584e-05
+630.4000000000751 5.584499553442553e-05
+630.5000000000751 5.5896776661444814e-05
+630.6000000000752 5.593602128877548e-05
+630.7000000000752 5.5975064226589466e-05
+630.8000000000752 5.601393034768523e-05
+630.9000000000752 5.605264840620692e-05
+631.0000000000753 5.609125104992849e-05
+631.1000000000753 5.611997511950808e-05
+631.2000000000753 5.614866249486637e-05
+631.3000000000753 5.6177357581721965e-05
+631.4000000000754 5.620610869855696e-05
+631.5000000000754 5.623496808631107e-05
+631.6000000000754 5.62639919206149e-05
+631.7000000000754 5.62930225142956e-05
+631.8000000000754 5.632205950046533e-05
+631.9000000000755 5.6351102454514283e-05
+632.0000000000755 5.638015089357641e-05
+632.1000000000755 5.640971677488549e-05
+632.2000000000755 5.6439287621670546e-05
+632.3000000000756 5.646886277626261e-05
+632.4000000000756 5.649844152230159e-05
+632.5000000000756 5.652802308463802e-05
+632.6000000000756 5.654527897931175e-05
+632.7000000000756 5.656253853196423e-05
+632.8000000000757 5.6579800969258436e-05
+632.9000000000757 5.659706557426224e-05
+633.0000000000757 5.661433168647407e-05
+633.1000000000757 5.663177757670764e-05
+633.2000000000758 5.664922383314665e-05
+633.3000000000758 5.666666996530393e-05
+633.4000000000758 5.668411553941219e-05
+633.5000000000758 5.670156017883639e-05
+633.6000000000759 5.671892413718042e-05
+633.7000000000759 5.6736235453747306e-05
+633.8000000000759 5.675352030246507e-05
+633.9000000000759 5.677080298963484e-05
+634.0000000000759 5.678810595151621e-05
+634.100000000076 5.679090847868623e-05
+634.200000000076 5.6793768134506796e-05
+634.300000000076 5.679670166949996e-05
+634.400000000076 5.679972393677173e-05
+634.500000000076 5.680284789175668e-05
+634.6000000000761 5.681843374050367e-05
+634.7000000000761 5.683414295077157e-05
+634.8000000000761 5.684998286549065e-05
+634.9000000000761 5.6865958932474054e-05
+635.0000000000762 5.6882074701702e-05
+635.1000000000762 5.688504958398247e-05
+635.2000000000762 5.688816369052356e-05
+635.3000000000762 5.68914147657134e-05
+635.4000000000763 5.689479864917477e-05
+635.5000000000763 5.689830927487315e-05
+635.6000000000763 5.691429522622318e-05
+635.7000000000763 5.693038845319171e-05
+635.8000000000764 5.6946576276425735e-05
+635.9000000000764 5.69628440374596e-05
+636.0000000000764 5.697917509569833e-05
+636.1000000000764 5.6985333438994335e-05
+636.2000000000764 5.699151438051004e-05
+636.3000000000765 5.6997695315739837e-05
+636.4000000000765 5.700385166373816e-05
+636.5000000000765 5.7009956866560896e-05
+636.6000000000765 5.7028350280056605e-05
+636.7000000000766 5.7046746464824146e-05
+636.8000000000766 5.7065145420946325e-05
+636.9000000000766 5.708354714857049e-05
+637.0000000000766 5.7101951647769276e-05
+637.1000000000766 5.7107164997553815e-05
+637.2000000000767 5.711237844385681e-05
+637.3000000000767 5.711759198671825e-05
+637.4000000000767 5.712280562624265e-05
+637.5000000000767 5.712801936235055e-05
+637.6000000000768 5.714561309392593e-05
+637.7000000000768 5.716320918178853e-05
+637.8000000000768 5.7180807625986424e-05
+637.9000000000768 5.719840842663197e-05
+638.0000000000769 5.721601158369955e-05
+638.1000000000769 5.7221769986495225e-05
+638.2000000000769 5.7227528575566996e-05
+638.3000000000769 5.723328735089049e-05
+638.400000000077 5.723904631257034e-05
+638.500000000077 5.724480546052714e-05
+638.600000000077 5.7262956692003445e-05
+638.700000000077 5.728111060317847e-05
+638.800000000077 5.7299267194222695e-05
+638.9000000000771 5.731742646517737e-05
+639.0000000000771 5.733558841633415e-05
+639.1000000000771 5.734345214793382e-05
+639.2000000000771 5.735131644224478e-05
+639.3000000000771 5.735918129919477e-05
+639.4000000000772 5.736704671884085e-05
+639.5000000000772 5.737491270130468e-05
+639.6000000000772 5.738277924657873e-05
+639.7000000000772 5.7390646354655424e-05
+639.8000000000773 5.739851402572119e-05
+639.9000000000773 5.740638225963916e-05
+640.0000000000773 5.741425105660642e-05
+640.1000000000773 5.743576399553227e-05
+640.2000000000774 5.745728183831715e-05
+640.3000000000774 5.747880458570792e-05
+640.4000000000774 5.750033223845142e-05
+640.5000000000774 5.752186479728506e-05
+640.6000000000774 5.753097656606323e-05
+640.7000000000775 5.754008930598363e-05
+640.8000000000775 5.754920301715559e-05
+640.9000000000775 5.755831769962368e-05
+641.0000000000775 5.756743335356664e-05
+641.1000000000776 5.758247719669203e-05
+641.2000000000776 5.759752188082795e-05
+641.3000000000776 5.761256740584784e-05
+641.4000000000776 5.762761377162507e-05
+641.5000000000776 5.764266097795858e-05
+641.6000000000777 5.764527207288411e-05
+641.7000000000777 5.7647882881462334e-05
+641.8000000000777 5.765049340387327e-05
+641.9000000000777 5.765310364003775e-05
+642.0000000000778 5.765571359000695e-05
+642.1000000000778 5.7659253192915674e-05
+642.2000000000778 5.766279252526166e-05
+642.3000000000778 5.7666331587088224e-05
+642.4000000000779 5.766987037837394e-05
+642.5000000000779 5.767340889923675e-05
+642.6000000000779 5.768939093547344e-05
+642.7000000000779 5.770537422793615e-05
+642.800000000078 5.7721358776436435e-05
+642.900000000078 5.7737344580915484e-05
+643.000000000078 5.7753331641109974e-05
+643.100000000078 5.775658960491718e-05
+643.200000000078 5.7759847362900056e-05
+643.3000000000781 5.7763104915103354e-05
+643.4000000000781 5.7766362261571884e-05
+643.5000000000781 5.7769619402285595e-05
+643.6000000000781 5.7772876337354186e-05
+643.7000000000781 5.7776133066757534e-05
+643.8000000000782 5.77793895904757e-05
+643.9000000000782 5.7782645908618396e-05
+644.0000000000782 5.7785902021237695e-05
+644.1000000000782 5.779841370404799e-05
+644.2000000000783 5.7810924894723895e-05
+644.3000000000783 5.78234355930297e-05
+644.4000000000783 5.783594579859986e-05
+644.5000000000783 5.784845551125378e-05
+644.6000000000784 5.7848510799522647e-05
+644.7000000000784 5.784856557077275e-05
+644.8000000000784 5.7848619825030276e-05
+644.9000000000784 5.784867356251596e-05
+645.0000000000784 5.784872678313034e-05
+645.1000000000785 5.785404920432544e-05
+645.2000000000785 5.785937173131097e-05
+645.3000000000785 5.786469436412653e-05
+645.4000000000785 5.787001710274673e-05
+645.5000000000786 5.78753399472663e-05
+645.6000000000786 5.786820204454585e-05
+645.7000000000786 5.7861061955714045e-05
+645.8000000000786 5.785391968086494e-05
+645.9000000000786 5.784677521989798e-05
+646.0000000000787 5.783962857278094e-05
+646.1000000000787 5.7836848461716026e-05
+646.2000000000787 5.7834065257026835e-05
+646.3000000000787 5.783127895818234e-05
+646.4000000000788 5.782848956452165e-05
+646.5000000000788 5.782569707543883e-05
+646.6000000000788 5.781042352285492e-05
+646.7000000000788 5.7795142695279764e-05
+646.8000000000789 5.777985459141035e-05
+646.9000000000789 5.776455920987881e-05
+647.0000000000789 5.774925654945587e-05
+647.1000000000789 5.774506693409901e-05
+647.200000000079 5.774087448608279e-05
+647.300000000079 5.773667920506159e-05
+647.400000000079 5.773248109049457e-05
+647.500000000079 5.772828014203611e-05
+647.600000000079 5.7724076359275434e-05
+647.7000000000791 5.771986974173674e-05
+647.8000000000791 5.7715660289074494e-05
+647.9000000000791 5.7711448000812795e-05
+648.0000000000791 5.7707232876567546e-05
+648.1000000000791 5.773652600904261e-05
+648.2000000000792 5.7765822703188635e-05
+648.3000000000792 5.779512295892701e-05
+648.4000000000792 5.782442677604864e-05
+648.5000000000792 5.785373415439976e-05
+648.6000000000793 5.787061153572678e-05
+648.7000000000793 5.788753972151409e-05
+648.8000000000793 5.790449337397146e-05
+648.9000000000793 5.792144900650782e-05
+649.0000000000794 5.793838498590236e-05
+649.1000000000794 5.794171717182103e-05
+649.2000000000794 5.794499009326433e-05
+649.3000000000794 5.794818774782071e-05
+649.4000000000794 5.7951296011328304e-05
+649.5000000000795 5.795430263842815e-05
+649.6000000000795 5.7994755300118104e-05
+649.7000000000795 5.803509414865149e-05
+649.8000000000795 5.8075310747669345e-05
+649.9000000000796 5.811539864324898e-05
+650.0000000000796 5.815535337108971e-05
+650.1000000000796 5.8188351675486826e-05
+650.2000000000796 5.822121873167575e-05
+650.3000000000796 5.825395613540904e-05
+650.4000000000797 5.8286567497885995e-05
+650.5000000000797 5.831905845132649e-05
+650.6000000000797 5.8313844752174504e-05
+650.7000000000797 5.830851715951378e-05
+650.8000000000798 5.830308838973396e-05
+650.9000000000798 5.829757310785028e-05
+651.0000000000798 5.829198792606342e-05
+651.1000000000798 5.825781717823221e-05
+651.2000000000799 5.822361366491477e-05
+651.3000000000799 5.818939984374717e-05
+651.4000000000799 5.81552000685949e-05
+651.5000000000799 5.8121040583307326e-05
+651.60000000008 5.811203023576756e-05
+651.70000000008 5.8103015596767106e-05
+651.80000000008 5.809399764068979e-05
+651.90000000008 5.808497740008328e-05
+652.00000000008 5.8075955966190514e-05
+652.1000000000801 5.813103148387128e-05
+652.2000000000801 5.818611831099831e-05
+652.3000000000801 5.8241217726713564e-05
+652.4000000000801 5.829633107423077e-05
+652.5000000000801 5.8351459760970036e-05
+652.6000000000802 5.838150573123459e-05
+652.7000000000802 5.841155913699092e-05
+652.8000000000802 5.8441619597552306e-05
+652.9000000000802 5.8471686672105424e-05
+653.0000000000803 5.850175985940579e-05
+653.1000000000803 5.8508041277912135e-05
+653.2000000000803 5.851432356520023e-05
+653.3000000000803 5.85206060384721e-05
+653.4000000000804 5.85268879551031e-05
+653.5000000000804 5.853316851281316e-05
+653.6000000000804 5.8551929334679276e-05
+653.7000000000804 5.857064178094494e-05
+653.8000000000804 5.858933229517725e-05
+653.9000000000805 5.860802539276316e-05
+654.0000000000805 5.8626743657810134e-05
+654.1000000000805 5.861617396022629e-05
+654.2000000000805 5.860566472287358e-05
+654.3000000000806 5.8595232598973885e-05
+654.4000000000806 5.858489226826413e-05
+654.5000000000806 5.8574656438718824e-05
+654.6000000000806 5.8577106042612576e-05
+654.7000000000806 5.857968076292641e-05
+654.8000000000807 5.8582387488464996e-05
+654.9000000000807 5.858523114760732e-05
+655.0000000000807 5.858821470778835e-05
+655.1000000000807 5.859266595107816e-05
+655.2000000000808 5.859725731223212e-05
+655.3000000000808 5.8601985881794554e-05
+655.4000000000808 5.86068467864584e-05
+655.5000000000808 5.8611833188369045e-05
+655.6000000000809 5.8629515025718833e-05
+655.7000000000809 5.864730501991001e-05
+655.8000000000809 5.8665190492588346e-05
+655.9000000000809 5.868315678429284e-05
+656.000000000081 5.870118725105056e-05
+656.100000000081 5.872131614389069e-05
+656.200000000081 5.874147129259406e-05
+656.300000000081 5.8761630081733535e-05
+656.400000000081 5.878176789542373e-05
+656.5000000000811 5.880185811410572e-05
+656.6000000000811 5.882187211160868e-05
+656.7000000000811 5.884188984131319e-05
+656.8000000000811 5.8861911303576896e-05
+656.9000000000811 5.8881936498757395e-05
+657.0000000000812 5.890196542739758e-05
+657.1000000000812 5.890798647868877e-05
+657.2000000000812 5.891400776997415e-05
+657.3000000000812 5.892002930143354e-05
+657.4000000000813 5.892605107298447e-05
+657.5000000000813 5.893207308468598e-05
+657.6000000000813 5.8950702415806803e-05
+657.7000000000813 5.896933456366375e-05
+657.8000000000814 5.8987969528331665e-05
+657.9000000000814 5.900660731008229e-05
+658.0000000000814 5.902524790905367e-05
+658.1000000000814 5.904089385362387e-05
+658.2000000000814 5.905654087126539e-05
+658.3000000000815 5.907218896182302e-05
+658.4000000000815 5.9087838125272586e-05
+658.5000000000815 5.910348836139319e-05
+658.6000000000815 5.911913967009499e-05
+658.7000000000816 5.913479205135398e-05
+658.8000000000816 5.9150445504949156e-05
+658.9000000000816 5.91661000308564e-05
+659.0000000000816 5.918175562891451e-05
+659.1000000000816 5.919027183168692e-05
+659.2000000000817 5.919878881297897e-05
+659.3000000000817 5.9207306572812734e-05
+659.4000000000817 5.921582511127593e-05
+659.5000000000817 5.922434442846672e-05
+659.6000000000818 5.924549413298184e-05
+659.7000000000818 5.926664824998511e-05
+659.8000000000818 5.92878067800652e-05
+659.9000000000818 5.9308969723745e-05
+660.0000000000819 5.9330137081534474e-05
+660.1000000000819 5.9335295199927986e-05
+660.2000000000819 5.934045338841348e-05
+660.3000000000819 5.9345611647097976e-05
+660.400000000082 5.93507699760227e-05
+660.500000000082 5.9355928375173595e-05
+660.600000000082 5.9373730313536414e-05
+660.700000000082 5.9391534519612675e-05
+660.800000000082 5.940934099349092e-05
+660.9000000000821 5.942714973525964e-05
+661.0000000000821 5.9444960744865644e-05
+661.1000000000821 5.945062939570015e-05
+661.2000000000821 5.945629826621194e-05
+661.3000000000822 5.946196735644828e-05
+661.4000000000822 5.9467636666456566e-05
+661.5000000000822 5.9473306196294534e-05
+661.6000000000822 5.94916310471775e-05
+661.7000000000822 5.9509958530673795e-05
+661.8000000000823 5.9528288646907235e-05
+661.9000000000823 5.954662139613343e-05
+662.0000000000823 5.95649567784677e-05
+662.1000000000823 5.957303023642451e-05
+662.2000000000824 5.958110435687677e-05
+662.3000000000824 5.958917913983492e-05
+662.4000000000824 5.9597254585441316e-05
+662.5000000000824 5.960533069370656e-05
+662.6000000000824 5.9613407464707035e-05
+662.7000000000825 5.962148489845334e-05
+662.8000000000825 5.9629562995021934e-05
+662.9000000000825 5.9637641754489345e-05
+663.0000000000825 5.964572117693625e-05
+663.1000000000826 5.965866990670806e-05
+663.2000000000826 5.967161840664158e-05
+663.3000000000826 5.9684566676532786e-05
+663.4000000000826 5.9697514716243505e-05
+663.5000000000827 5.971046252555926e-05
+663.6000000000827 5.971081634268143e-05
+663.7000000000827 5.9711223607514264e-05
+663.8000000000827 5.971165649745965e-05
+663.9000000000827 5.9712089250223626e-05
+664.0000000000828 5.971249816378436e-05
+664.1000000000828 5.972177511127534e-05
+664.2000000000828 5.97309882828975e-05
+664.3000000000828 5.974012012181606e-05
+664.4000000000829 5.974915512295656e-05
+664.5000000000829 5.975807983494342e-05
+664.6000000000829 5.977956482922626e-05
+664.7000000000829 5.9800917722172686e-05
+664.800000000083 5.982213359938001e-05
+664.900000000083 5.9843209423333665e-05
+665.000000000083 5.9864144037138805e-05
+665.100000000083 5.986434299489509e-05
+665.200000000083 5.9864399818362765e-05
+665.3000000000831 5.986431915346088e-05
+665.4000000000831 5.9864107531060995e-05
+665.5000000000831 5.9863773366620214e-05
+665.6000000000831 5.986333436280448e-05
+665.7000000000832 5.986280006087615e-05
+665.8000000000832 5.986218206873678e-05
+665.9000000000832 5.986149406115727e-05
+666.0000000000832 5.986075177941822e-05
+666.1000000000832 5.987789466771083e-05
+666.2000000000833 5.9895023068635416e-05
+666.3000000000833 5.991215892750829e-05
+666.4000000000833 5.9929326284591707e-05
+666.5000000000833 5.994655127841922e-05
+666.6000000000834 5.995115816172701e-05
+666.7000000000834 5.995576155834101e-05
+666.8000000000834 5.996036046233154e-05
+666.9000000000834 5.9964953806628524e-05
+667.0000000000834 5.996954046292846e-05
+667.1000000000835 5.9972418106851314e-05
+667.2000000000835 5.997528652723077e-05
+667.3000000000835 5.997814441294856e-05
+667.4000000000835 5.9980990391444994e-05
+667.5000000000836 5.998382302911028e-05
+667.6000000000836 5.9999349863177355e-05
+667.7000000000836 6.001487174772238e-05
+667.8000000000836 6.003039008049445e-05
+667.9000000000837 6.004590638249854e-05
+668.0000000000837 6.006142229861299e-05
+668.1000000000837 6.006452293281609e-05
+668.2000000000837 6.0067625594021084e-05
+668.3000000000837 6.0070732296418755e-05
+668.4000000000838 6.007384517651336e-05
+668.5000000000838 6.00769664934267e-05
+668.6000000000838 6.008001687909145e-05
+668.7000000000838 6.008301775136045e-05
+668.8000000000839 6.008599589090217e-05
+668.9000000000839 6.008897601020977e-05
+669.0000000000839 6.009198075280555e-05
+669.1000000000839 6.010482186559398e-05
+669.200000000084 6.0117726676027756e-05
+669.300000000084 6.013071165616782e-05
+669.400000000084 6.014379121647094e-05
+669.500000000084 6.015697770296573e-05
+669.600000000084 6.0157563094894775e-05
+669.7000000000841 6.015827702959405e-05
+669.8000000000841 6.0159126572151283e-05
+669.9000000000841 6.0160116772241047e-05
+670.0000000000841 6.016125066418665e-05
+670.1000000000842 6.016866914279287e-05
+670.2000000000842 6.0176232113836264e-05
+670.3000000000842 6.018393660687464e-05
+670.4000000000842 6.0191777632966416e-05
+670.5000000000842 6.0199748183211645e-05
+670.6000000000843 6.0220568157277555e-05
+670.7000000000843 6.0241501042294495e-05
+670.8000000000843 6.0262533822640294e-05
+670.9000000000843 6.028365144403847e-05
+671.0000000000844 6.0304836809792e-05
+671.1000000000844 6.0306638082319256e-05
+671.2000000000844 6.030846215213701e-05
+671.3000000000844 6.031028577307329e-05
+671.4000000000844 6.031208367493496e-05
+671.5000000000845 6.031382856265426e-05
+671.6000000000845 6.0315491116647026e-05
+671.7000000000845 6.031715341496208e-05
+671.8000000000845 6.031881545772895e-05
+671.9000000000846 6.032047724501088e-05
+672.0000000000846 6.032213877682048e-05
+672.1000000000846 6.034236727448157e-05
+672.2000000000846 6.0362599506314264e-05
+672.3000000000847 6.0382835472751886e-05
+672.4000000000847 6.040307517416143e-05
+672.5000000000847 6.042331861096543e-05
+672.6000000000847 6.0430816666221535e-05
+672.7000000000847 6.043831529364529e-05
+672.8000000000848 6.0445814493441776e-05
+672.9000000000848 6.04533142655508e-05
+673.0000000000848 6.046081461010716e-05
+673.1000000000848 6.0463585932243236e-05
+673.2000000000849 6.046635709171334e-05
+673.3000000000849 6.046912808863699e-05
+673.4000000000849 6.0471898923000975e-05
+673.5000000000849 6.0474669594858514e-05
+673.600000000085 6.047744010419635e-05
+673.700000000085 6.0480210451067736e-05
+673.800000000085 6.048298063552582e-05
+673.900000000085 6.04857506576238e-05
+674.000000000085 6.048852051736034e-05
+674.1000000000851 6.050514955754224e-05
+674.2000000000851 6.0521780194221455e-05
+674.3000000000851 6.053841242742299e-05
+674.4000000000851 6.055504625710551e-05
+674.5000000000852 6.0571681683216765e-05
+674.6000000000852 6.057555251991978e-05
+674.7000000000852 6.0579423321588175e-05
+674.8000000000852 6.0583294088270886e-05
+674.9000000000852 6.0587164819950597e-05
+675.0000000000853 6.0591035516677025e-05
+675.1000000000853 6.059590428361404e-05
+675.2000000000853 6.060077313441565e-05
+675.3000000000853 6.060564206912689e-05
+675.4000000000854 6.0610511087792575e-05
+675.5000000000854 6.061538019039126e-05
+675.6000000000854 6.062024937703433e-05
+675.7000000000854 6.062511864770034e-05
+675.8000000000854 6.0629988002367824e-05
+675.9000000000855 6.063485744114822e-05
+676.0000000000855 6.0639726963965194e-05
+676.1000000000855 6.065810826808772e-05
+676.2000000000855 6.067649214943718e-05
+676.3000000000856 6.069487860820046e-05
+676.4000000000856 6.0713267644564504e-05
+676.5000000000856 6.073165925870525e-05
+676.6000000000856 6.073726665783885e-05
+676.7000000000857 6.074287427390962e-05
+676.8000000000857 6.074848210703639e-05
+676.9000000000857 6.075409015727132e-05
+677.0000000000857 6.075969842453076e-05
+677.1000000000857 6.0761791012739444e-05
+677.2000000000858 6.0763883381087146e-05
+677.3000000000858 6.076597552963337e-05
+677.4000000000858 6.076806745843764e-05
+677.5000000000858 6.077015916750397e-05
+677.6000000000859 6.078504481482733e-05
+677.7000000000859 6.0799931123072856e-05
+677.8000000000859 6.081481809215878e-05
+677.9000000000859 6.082970572180366e-05
+678.000000000086 6.084459401205119e-05
+678.100000000086 6.085076441861466e-05
+678.200000000086 6.085693513248708e-05
+678.300000000086 6.0863106153790066e-05
+678.400000000086 6.0869277482379064e-05
+678.5000000000861 6.0875449118442166e-05
+678.6000000000861 6.088162106196788e-05
+678.7000000000861 6.0887793312944783e-05
+678.8000000000861 6.089396587149449e-05
+678.9000000000862 6.090013873753899e-05
+679.0000000000862 6.090631191119692e-05
+679.1000000000862 6.0908899783038916e-05
+679.2000000000862 6.0911487477053136e-05
+679.3000000000862 6.091407499322828e-05
+679.4000000000863 6.091666233161968e-05
+679.5000000000863 6.091924949234914e-05
+679.6000000000863 6.0921836475272276e-05
+679.7000000000863 6.092442328057753e-05
+679.8000000000864 6.092700990818694e-05
+679.9000000000864 6.092959635822257e-05
+680.0000000000864 6.0932182630685245e-05
+680.1000000000864 6.0948902320558664e-05
+680.2000000000864 6.096562368120583e-05
+680.3000000000865 6.0982346712692966e-05
+680.4000000000865 6.0999071415019606e-05
+680.5000000000865 6.101579778824091e-05
+680.6000000000865 6.101970656639909e-05
+680.7000000000866 6.102361537328362e-05
+680.8000000000866 6.10275242087462e-05
+680.9000000000866 6.1031433072971634e-05
+681.0000000000866 6.103534196594703e-05
+681.1000000000867 6.104159598964578e-05
+681.2000000000867 6.10478503064156e-05
+681.3000000000867 6.10541049162382e-05
+681.4000000000867 6.106035981929528e-05
+681.5000000000867 6.106661501543525e-05
+681.6000000000868 6.107287050483979e-05
+681.7000000000868 6.107912628735732e-05
+681.8000000000868 6.108538236316958e-05
+681.9000000000868 6.109163873225837e-05
+682.0000000000869 6.109789539467063e-05
+682.1000000000869 6.110242696270368e-05
+682.2000000000869 6.11069586354076e-05
+682.3000000000869 6.11114904127676e-05
+682.400000000087 6.111602229490231e-05
+682.500000000087 6.112055428174135e-05
+682.600000000087 6.11379277780582e-05
+682.700000000087 6.115530328338423e-05
+682.800000000087 6.117268079796697e-05
+682.9000000000871 6.119006032178685e-05
+683.0000000000871 6.120744185494391e-05
+683.1000000000871 6.120884871492596e-05
+683.2000000000871 6.121025530856207e-05
+683.3000000000872 6.121166163585283e-05
+683.4000000000872 6.121306769686551e-05
+683.5000000000872 6.121447349166755e-05
+683.6000000000872 6.121596233057805e-05
+683.7000000000872 6.121750446512944e-05
+683.8000000000873 6.121907219629504e-05
+683.9000000000873 6.122063987435199e-05
+684.0000000000873 6.122218389929949e-05
+684.1000000000873 6.12264407904923e-05
+684.2000000000874 6.123063330555536e-05
+684.3000000000874 6.123474398422353e-05
+684.4000000000874 6.123875741438648e-05
+684.5000000000874 6.124266023306137e-05
+684.6000000000874 6.124644365119749e-05
+684.7000000000875 6.125009750541399e-05
+684.8000000000875 6.125361374554572e-05
+684.9000000000875 6.12569864358206e-05
+685.0000000000875 6.126021175525902e-05
+685.1000000000876 6.126124074776577e-05
+685.2000000000876 6.126212095054056e-05
+685.3000000000876 6.126285490598072e-05
+685.4000000000876 6.126344727331103e-05
+685.5000000000877 6.126390482846247e-05
+685.6000000000877 6.11999457552502e-05
+685.7000000000877 6.113586808774191e-05
+685.8000000000877 6.107168695842944e-05
+685.9000000000877 6.100741942172467e-05
+686.0000000000878 6.09430844430709e-05
+686.1000000000878 6.0358523528822826e-05
+686.2000000000878 5.97738049019902e-05
+686.3000000000878 5.918895317046752e-05
+686.4000000000879 5.860399390294923e-05
+686.5000000000879 5.801895353140066e-05
+686.6000000000879 5.655897538960585e-05
+686.7000000000879 5.509866353158817e-05
+686.800000000088 5.363801663593249e-05
+686.900000000088 5.217703351397239e-05
+687.000000000088 5.0715713103825106e-05
+687.100000000088 5.002028784854451e-05
+687.200000000088 4.9324875196009466e-05
+687.3000000000881 4.862947458901447e-05
+687.4000000000881 4.7934085543234245e-05
+687.5000000000881 4.7238707645876674e-05
+687.6000000000881 4.8036432450978624e-05
+687.7000000000882 4.8834144367022094e-05
+687.8000000000882 4.963184294450084e-05
+687.9000000000882 5.042952766166296e-05
+688.0000000000882 5.122719791987201e-05
+688.1000000000882 5.188452907876547e-05
+688.2000000000883 5.254187815031169e-05
+688.3000000000883 5.319924432825172e-05
+688.4000000000883 5.38566267205917e-05
+688.5000000000883 5.4514024345189134e-05
+688.6000000000884 5.4334651156142534e-05
+688.7000000000884 5.415522238997711e-05
+688.8000000000884 5.397576388267672e-05
+688.9000000000884 5.37962993850908e-05
+689.0000000000884 5.3616850592350375e-05
+689.1000000000885 5.361887354281094e-05
+689.2000000000885 5.362095543759639e-05
+689.3000000000885 5.362311274291084e-05
+689.4000000000885 5.362536018472434e-05
+689.5000000000886 5.362771074862512e-05
+689.6000000000886 5.3874827139637395e-05
+689.7000000000886 5.4122084848952017e-05
+689.8000000000886 5.4369491531582256e-05
+689.9000000000887 5.461705306605761e-05
+690.0000000000887 5.4864773511672013e-05
+690.1000000000887 5.507165432764096e-05
+690.2000000000887 5.527867407597904e-05
+690.3000000000887 5.548583081147823e-05
+690.4000000000888 5.569312061366142e-05
+690.5000000000888 5.590053755110218e-05
+690.6000000000888 5.613383492804042e-05
+690.7000000000888 5.636724603449054e-05
+690.8000000000889 5.6600759795204095e-05
+690.9000000000889 5.683436302580817e-05
+691.0000000000889 5.706804039295718e-05
+691.1000000000889 5.724050488881072e-05
+691.200000000089 5.741302077648798e-05
+691.300000000089 5.758556604473705e-05
+691.400000000089 5.7758116479044066e-05
+691.500000000089 5.7930645632811566e-05
+691.600000000089 5.8090235906036e-05
+691.7000000000891 5.824985265047116e-05
+691.8000000000891 5.840949586755129e-05
+691.9000000000891 5.856916555877697e-05
+692.0000000000891 5.872886172563401e-05
+692.1000000000892 5.887159573757647e-05
+692.2000000000892 5.901433397508632e-05
+692.3000000000892 5.915707643707935e-05
+692.4000000000892 5.929982312247097e-05
+692.5000000000892 5.9442574030287826e-05
+692.6000000000893 5.955954022671427e-05
+692.7000000000893 5.9676509848860446e-05
+692.8000000000893 5.979348289578408e-05
+692.9000000000893 5.991045936674336e-05
+693.0000000000894 6.002743926066299e-05
+693.1000000000894 6.0070493907607175e-05
+693.2000000000894 6.011355427335957e-05
+693.3000000000894 6.0156620358128065e-05
+693.4000000000894 6.0199692162120355e-05
+693.5000000000895 6.024276968550964e-05
+693.6000000000895 6.02471502624406e-05
+693.7000000000895 6.025153093090635e-05
+693.8000000000895 6.025591169095895e-05
+693.9000000000896 6.026029254258338e-05
+694.0000000000896 6.02646734859111e-05
+694.1000000000896 6.028282863916532e-05
+694.2000000000896 6.0300986222746205e-05
+694.3000000000897 6.0319146236811787e-05
+694.4000000000897 6.033730868145296e-05
+694.5000000000897 6.0355473556862466e-05
+694.6000000000897 6.041237502113277e-05
+694.7000000000897 6.0469285662155836e-05
+694.8000000000898 6.052620548055337e-05
+694.9000000000898 6.058313447667861e-05
+695.0000000000898 6.0640072651056485e-05
+695.1000000000898 6.066398758918378e-05
+695.2000000000899 6.068790071271446e-05
+695.3000000000899 6.071181202162561e-05
+695.4000000000899 6.073572151569325e-05
+695.5000000000899 6.07596291946701e-05
+695.60000000009 6.07577081900554e-05
+695.70000000009 6.075578700335802e-05
+695.80000000009 6.075386563473513e-05
+695.90000000009 6.075194408414278e-05
+696.00000000009 6.075002235188032e-05
+696.1000000000901 6.083142591396883e-05
+696.2000000000901 6.091283950972524e-05
+696.3000000000901 6.09942631393485e-05
+696.4000000000901 6.107569680290309e-05
+696.5000000000902 6.115714050046536e-05
+696.6000000000902 6.125151104162364e-05
+696.7000000000902 6.134589328662379e-05
+696.8000000000902 6.144028723553283e-05
+696.9000000000902 6.153469288848447e-05
+697.0000000000903 6.16291102453403e-05
+697.1000000000903 6.164477990222739e-05
+697.2000000000903 6.16604506665137e-05
+697.3000000000903 6.16761225382858e-05
+697.4000000000904 6.169179551749616e-05
+697.5000000000904 6.17074696040738e-05
+697.6000000000904 6.169729758503356e-05
+697.7000000000904 6.168712436847631e-05
+697.8000000000904 6.167694995449407e-05
+697.9000000000905 6.166677434304466e-05
+698.0000000000905 6.165659753419943e-05
+698.1000000000905 6.162344999986249e-05
+698.2000000000905 6.159029565473657e-05
+698.3000000000906 6.155713449818133e-05
+698.4000000000906 6.152396652982488e-05
+698.5000000000906 6.149079174907067e-05
+698.6000000000906 6.1431744158024e-05
+698.7000000000907 6.137268502791781e-05
+698.8000000000907 6.131361435798233e-05
+698.9000000000907 6.125453214731374e-05
+699.0000000000907 6.119543839525971e-05
+699.1000000000907 6.119164130851545e-05
+699.2000000000908 6.11878441527704e-05
+699.3000000000908 6.11840469281316e-05
+699.4000000000908 6.118024963477327e-05
+699.5000000000908 6.117645227275874e-05
+699.6000000000909 6.11985206580545e-05
+699.7000000000909 6.122058576335117e-05
+699.8000000000909 6.124264758871911e-05
+699.9000000000909 6.126470613409427e-05
+700.000000000091 6.128676139946486e-05
+700.100000000091 6.129210845817427e-05
+700.200000000091 6.12974557544545e-05
+700.300000000091 6.130280328842874e-05
+700.400000000091 6.130815106001884e-05
+700.5000000000911 6.131349906934806e-05
+700.6000000000911 6.13188473164726e-05
+700.7000000000911 6.13241958013143e-05
+700.8000000000911 6.132954452392932e-05
+700.9000000000912 6.133489348437377e-05
+701.0000000000912 6.134024268263693e-05
+701.1000000000912 6.134572663869778e-05
+701.2000000000912 6.135121081729925e-05
+701.3000000000912 6.135669521842349e-05
+701.4000000000913 6.136217984211979e-05
+701.5000000000913 6.136766468838208e-05
+701.6000000000913 6.138609767914221e-05
+701.7000000000913 6.140453320697233e-05
+701.8000000000914 6.142297127205373e-05
+701.9000000000914 6.144141187450047e-05
+702.0000000000914 6.14598550145441e-05
+702.1000000000914 6.14597765726784e-05
+702.2000000000914 6.145969795216801e-05
+702.3000000000915 6.145961915288422e-05
+702.4000000000915 6.145954017503462e-05
+702.5000000000915 6.145946101864868e-05
+702.6000000000915 6.148528658637888e-05
+702.7000000000916 6.15111119085306e-05
+702.8000000000916 6.153693698499994e-05
+702.9000000000916 6.156276181561588e-05
+703.0000000000916 6.158858640016517e-05
+703.1000000000917 6.164175650759343e-05
+703.2000000000917 6.169492877074312e-05
+703.3000000000917 6.174810318924128e-05
+703.4000000000917 6.180127976284912e-05
+703.5000000000917 6.18544584910789e-05
+703.6000000000918 6.185582297770506e-05
+703.7000000000918 6.185718733269703e-05
+703.8000000000918 6.185855155605012e-05
+703.9000000000918 6.185991564789433e-05
+704.0000000000919 6.18612796080933e-05
+704.1000000000919 6.186548389075038e-05
+704.2000000000919 6.186968824285791e-05
+704.3000000000919 6.187389266439818e-05
+704.400000000092 6.187809715535347e-05
+704.500000000092 6.188230171584061e-05
+704.600000000092 6.188650634590918e-05
+704.700000000092 6.189071104540697e-05
+704.800000000092 6.189491581451811e-05
+704.9000000000921 6.189912065315767e-05
+705.0000000000921 6.19033255614372e-05
+705.1000000000921 6.190176334200643e-05
+705.2000000000921 6.190020099960077e-05
+705.3000000000922 6.189863853423323e-05
+705.4000000000922 6.189707594591653e-05
+705.5000000000922 6.189551323481018e-05
+705.6000000000922 6.190691248468272e-05
+705.7000000000922 6.191831095714766e-05
+705.8000000000923 6.192970865219806e-05
+705.9000000000923 6.194110556975966e-05
+706.0000000000923 6.195250170989632e-05
+706.1000000000923 6.196758212151585e-05
+706.2000000000924 6.19826633306665e-05
+706.3000000000924 6.199774533734096e-05
+706.4000000000924 6.201282814159918e-05
+706.5000000000924 6.202791174329929e-05
+706.6000000000925 6.204299614250124e-05
+706.7000000000925 6.205808133913045e-05
+706.8000000000925 6.207316733324692e-05
+706.9000000000925 6.208825412464138e-05
+707.0000000000925 6.210334171343078e-05
+707.1000000000926 6.210721061327672e-05
+707.2000000000926 6.21110795605947e-05
+707.3000000000926 6.21149485555702e-05
+707.4000000000926 6.211881759818694e-05
+707.5000000000927 6.212268668836126e-05
+707.6000000000927 6.212655582621137e-05
+707.7000000000927 6.213042501178827e-05
+707.8000000000927 6.213429424500836e-05
+707.9000000000927 6.213816352598988e-05
+708.0000000000928 6.214203285472514e-05
+708.1000000000928 6.215516994388004e-05
+708.2000000000928 6.2168306929161e-05
+708.3000000000928 6.21814438105883e-05
+708.4000000000929 6.219458058811481e-05
+708.5000000000929 6.22077172615587e-05
+708.6000000000929 6.222085383094029e-05
+708.7000000000929 6.223399029614515e-05
+708.800000000093 6.22471266571935e-05
+708.900000000093 6.226026291390357e-05
+709.000000000093 6.227339906622011e-05
+709.100000000093 6.22777098475614e-05
+709.200000000093 6.228202074651525e-05
+709.3000000000931 6.228633176306916e-05
+709.4000000000931 6.229064289734552e-05
+709.5000000000931 6.229495414919734e-05
+709.6000000000931 6.229926551881425e-05
+709.7000000000932 6.230357700618394e-05
+709.8000000000932 6.230788861122669e-05
+709.9000000000932 6.231220033413234e-05
+710.0000000000932 6.231651217474881e-05
+710.1000000000932 6.231551205799594e-05
+710.2000000000933 6.231451181649661e-05
+710.3000000000933 6.231351145025964e-05
+710.4000000000933 6.231251095949602e-05
+710.5000000000933 6.231151034407977e-05
+710.6000000000934 6.231050960415451e-05
+710.7000000000934 6.230950873972906e-05
+710.8000000000934 6.230850775087959e-05
+710.9000000000934 6.230750663761492e-05
+711.0000000000935 6.230650540009517e-05
+711.1000000000935 6.23232269365539e-05
+711.2000000000935 6.233995009387585e-05
+711.3000000000935 6.2356674872144e-05
+711.4000000000935 6.237340127137414e-05
+711.5000000000936 6.239012929164922e-05
+711.6000000000936 6.24068589330523e-05
+711.7000000000936 6.242359019559912e-05
+711.8000000000936 6.244032307944004e-05
+711.9000000000937 6.245705758459076e-05
+712.0000000000937 6.24737937109733e-05
+712.1000000000937 6.246252102118639e-05
+712.2000000000937 6.245124753742772e-05
+712.3000000000937 6.243997325968498e-05
+712.4000000000938 6.242869818808064e-05
+712.5000000000938 6.241742232274937e-05
+712.6000000000938 6.241913611858958e-05
+712.7000000000938 6.242084983419664e-05
+712.8000000000939 6.242256346949661e-05
+712.9000000000939 6.242427702448289e-05
+713.0000000000939 6.242599049928689e-05
+713.1000000000939 6.243126559180454e-05
+713.200000000094 6.243654086843237e-05
+713.300000000094 6.244181632935334e-05
+713.400000000094 6.244709197448075e-05
+713.500000000094 6.24523678039302e-05
+713.600000000094 6.245772886324438e-05
+713.7000000000941 6.246314479825406e-05
+713.8000000000941 6.246858733936731e-05
+713.9000000000941 6.247403030274793e-05
+714.0000000000941 6.247944959075737e-05
+714.1000000000942 6.246736835516441e-05
+714.2000000000942 6.245522085389683e-05
+714.3000000000942 6.24429893245154e-05
+714.4000000000942 6.243065811271577e-05
+714.5000000000942 6.241821367009487e-05
+714.6000000000943 6.24056445548728e-05
+714.7000000000943 6.23929414241988e-05
+714.8000000000943 6.238009703539562e-05
+714.9000000000943 6.236710624409994e-05
+715.0000000000944 6.235396600222196e-05
+715.1000000000944 6.233842785070288e-05
+715.2000000000944 6.232274148901021e-05
+715.3000000000944 6.23069101608408e-05
+715.4000000000945 6.229093919682963e-05
+715.5000000000945 6.227483601194903e-05
+715.6000000000945 6.224560976636535e-05
+715.7000000000945 6.221627376524074e-05
+715.8000000000945 6.218684172173474e-05
+715.9000000000946 6.215732940915644e-05
+716.0000000000946 6.212775465584524e-05
+716.1000000000946 6.20092785901723e-05
+716.2000000000946 6.189078438967904e-05
+716.3000000000947 6.177229601854864e-05
+716.4000000000947 6.165383932750405e-05
+716.5000000000947 6.15354420337736e-05
+716.6000000000947 6.127418226729671e-05
+716.7000000000947 6.101293376243072e-05
+716.8000000000948 6.0751696522143844e-05
+716.9000000000948 6.0490470549195845e-05
+717.0000000000948 6.022925584655567e-05
+717.1000000000948 5.998338618450557e-05
+717.2000000000949 5.9737507943692784e-05
+717.3000000000949 5.9491621127389665e-05
+717.4000000000949 5.9245725738458905e-05
+717.5000000000949 5.8999821780294437e-05
+717.600000000095 5.8896862808513797e-05
+717.700000000095 5.8793900151638684e-05
+717.800000000095 5.86909338098908e-05
+717.900000000095 5.858796378342092e-05
+718.000000000095 5.848499007223227e-05
+718.1000000000951 5.830074270195286e-05
+718.2000000000951 5.8116509598099325e-05
+718.3000000000951 5.793229076047293e-05
+718.4000000000951 5.7748086189013625e-05
+718.5000000000952 5.7563895883860855e-05
+718.6000000000952 5.744468782164092e-05
+718.7000000000952 5.732548890897674e-05
+718.8000000000952 5.720629914672534e-05
+718.9000000000952 5.7087118535337596e-05
+719.0000000000953 5.6967947075641495e-05
+719.1000000000953 5.696483251144413e-05
+719.2000000000953 5.696171382566519e-05
+719.3000000000953 5.695859102016737e-05
+719.4000000000954 5.695546409680797e-05
+719.5000000000954 5.695233305726006e-05
+719.6000000000954 5.697513460939981e-05
+719.7000000000954 5.6997915867867206e-05
+719.8000000000955 5.702067761968803e-05
+719.9000000000955 5.7043420595282434e-05
+720.0000000000955 5.7066145468581095e-05
+720.1000000000955 5.719493143135269e-05
+720.2000000000955 5.732371565203108e-05
+720.3000000000956 5.745249863920245e-05
+720.4000000000956 5.758128084708977e-05
+720.5000000000956 5.771006267588813e-05
+720.6000000000956 5.803315668822508e-05
+720.7000000000957 5.835624903069492e-05
+720.8000000000957 5.867933841344849e-05
+720.9000000000957 5.900242357550092e-05
+721.0000000000957 5.932550328643139e-05
+721.1000000000957 5.963458255007718e-05
+721.2000000000958 5.994364353902942e-05
+721.3000000000958 6.0252685126152485e-05
+721.4000000000958 6.0561706222730244e-05
+721.5000000000958 6.087070577930631e-05
+721.6000000000959 6.0972467122490027e-05
+721.7000000000959 6.107421590764214e-05
+721.8000000000959 6.117595210289222e-05
+721.9000000000959 6.127767567671991e-05
+722.000000000096 6.137938659722935e-05
+722.100000000096 6.135290769087002e-05
+722.200000000096 6.132642291478186e-05
+722.300000000096 6.12999322773681e-05
+722.400000000096 6.127343578698097e-05
+722.5000000000961 6.124693345168074e-05
+722.6000000000961 6.103914652266349e-05
+722.7000000000961 6.083136088789087e-05
+722.8000000000961 6.062357759442187e-05
+722.9000000000962 6.041579773681262e-05
+723.0000000000962 6.0208022455827904e-05
+723.1000000000962 5.989649576356065e-05
+723.2000000000962 5.95849799334365e-05
+723.3000000000962 5.9273476217926055e-05
+723.4000000000963 5.8961985902569274e-05
+723.5000000000963 5.865051030438741e-05
+723.6000000000963 5.8610857272610236e-05
+723.7000000000963 5.857115708218225e-05
+723.8000000000964 5.853143597015489e-05
+723.9000000000964 5.849171808073925e-05
+724.0000000000964 5.845202547208407e-05
+724.1000000000964 5.8476088915134445e-05
+724.2000000000965 5.8500213031916406e-05
+724.3000000000965 5.852441391858222e-05
+724.4000000000965 5.854870567344682e-05
+724.5000000000965 5.857310039284883e-05
+724.6000000000965 5.86234962197731e-05
+724.7000000000966 5.867401541454266e-05
+724.8000000000966 5.872466520561649e-05
+724.9000000000966 5.877545087264292e-05
+725.0000000000966 5.882637573782628e-05
+725.1000000000967 5.887851870127667e-05
+725.2000000000967 5.893080348724789e-05
+725.3000000000967 5.898322750206982e-05
+725.4000000000967 5.9035786159705355e-05
+725.5000000000967 5.908847287329405e-05
+725.6000000000968 5.9193055170752434e-05
+725.7000000000968 5.929774830740233e-05
+725.8000000000968 5.9402539887350265e-05
+725.9000000000968 5.950741542557274e-05
+726.0000000000969 5.961235832999902e-05
+726.1000000000969 5.9611334691608076e-05
+726.2000000000969 5.9610333796806554e-05
+726.3000000000969 5.960933262803835e-05
+726.400000000097 5.9608306167995886e-05
+726.500000000097 5.960722739989042e-05
+726.600000000097 5.959312353626357e-05
+726.700000000097 5.957902010871309e-05
+726.800000000097 5.956491711737077e-05
+726.9000000000971 5.9550814562234325e-05
+727.0000000000971 5.953671244333453e-05
+727.1000000000971 5.941856313410131e-05
+727.2000000000971 5.9300420287625386e-05
+727.3000000000972 5.918228390435253e-05
+727.4000000000972 5.906415398459468e-05
+727.5000000000972 5.8946030529099344e-05
+727.6000000000972 5.893143824258206e-05
+727.7000000000972 5.891684661890711e-05
+727.8000000000973 5.890225565807222e-05
+727.9000000000973 5.888766536020932e-05
+728.0000000000973 5.8873075725802606e-05
+728.1000000000973 5.908264196365654e-05
+728.2000000000974 5.929222598712653e-05
+728.3000000000974 5.9501827796134806e-05
+728.4000000000974 5.971144739060272e-05
+728.5000000000974 5.992108476975543e-05
+728.6000000000975 5.989769372952147e-05
+728.7000000000975 5.987424804272265e-05
+728.8000000000975 5.985077489965209e-05
+728.9000000000975 5.9827299439382566e-05
+729.0000000000975 5.98038447538456e-05
+729.1000000000976 5.984269642385914e-05
+729.2000000000976 5.988161116038565e-05
+729.3000000000976 5.9920606187489435e-05
+729.4000000000976 5.995969676052767e-05
+729.5000000000977 5.99988961601397e-05
+729.6000000000977 6.0089995083544955e-05
+729.7000000000977 6.0181224501254994e-05
+729.8000000000977 6.0272592083009e-05
+729.9000000000977 6.0364103514929986e-05
+730.0000000000978 6.045576248451317e-05
+730.1000000000978 6.041795593118796e-05
+730.2000000000978 6.0380292715885914e-05
+730.3000000000978 6.0342769526665506e-05
+730.4000000000979 6.030538103518277e-05
+730.5000000000979 6.026811990282516e-05
+730.6000000000979 6.026981628812635e-05
+730.7000000000979 6.0271620080997636e-05
+730.800000000098 6.027351896200837e-05
+730.900000000098 6.027549852603524e-05
+731.000000000098 6.027754228228394e-05
+731.100000000098 6.031882956239435e-05
+731.200000000098 6.036014498879903e-05
+731.3000000000981 6.040146581502394e-05
+731.4000000000981 6.044276714246141e-05
+731.5000000000981 6.0484021913759055e-05
+731.6000000000981 6.057701434020852e-05
+731.7000000000982 6.067002087362705e-05
+731.8000000000982 6.0763040093845494e-05
+731.9000000000982 6.085607063385559e-05
+732.0000000000982 6.094911117999463e-05
+732.1000000000982 6.109446597400399e-05
+732.2000000000983 6.123983465384349e-05
+732.3000000000983 6.13852160676871e-05
+732.4000000000983 6.153060911561918e-05
+732.5000000000983 6.167601274968801e-05
+732.6000000000984 6.174367692765448e-05
+732.7000000000984 6.181134087219737e-05
+732.8000000000984 6.187900456258763e-05
+732.9000000000984 6.19466679781763e-05
+733.0000000000985 6.20143310981975e-05
+733.1000000000985 6.201725409207494e-05
+733.2000000000985 6.202017079368716e-05
+733.3000000000985 6.202308120224511e-05
+733.4000000000985 6.202598531737828e-05
+733.5000000000986 6.202888313863423e-05
+733.6000000000986 6.207075063875106e-05
+733.7000000000986 6.211267352298689e-05
+733.8000000000986 6.215462477603516e-05
+733.9000000000987 6.219657946121837e-05
+734.0000000000987 6.223851472780925e-05
+734.1000000000987 6.225295712777354e-05
+734.2000000000987 6.226733752115896e-05
+734.3000000000987 6.228163946218668e-05
+734.4000000000988 6.229584864463929e-05
+734.5000000000988 6.230995290465722e-05
+734.6000000000988 6.229800633378208e-05
+734.7000000000988 6.228592909704109e-05
+734.8000000000989 6.227371354791352e-05
+734.9000000000989 6.226135407311416e-05
+735.0000000000989 6.224884709023851e-05
+735.1000000000989 6.226367521037373e-05
+735.200000000099 6.227835556050633e-05
+735.300000000099 6.229289044535934e-05
+735.400000000099 6.230728420008663e-05
+735.500000000099 6.232154319237478e-05
+735.600000000099 6.230973505285519e-05
+735.7000000000991 6.229781367338426e-05
+735.8000000000991 6.22857927045767e-05
+735.9000000000991 6.227368787679073e-05
+736.0000000000991 6.226151699761732e-05
+736.1000000000992 6.224731926788362e-05
+736.2000000000992 6.22330981709227e-05
+736.3000000000992 6.221887773347113e-05
+736.4000000000992 6.22046840477938e-05
+736.5000000000992 6.219054526950877e-05
+736.6000000000993 6.220243091044697e-05
+736.7000000000993 6.221431602292012e-05
+736.8000000000993 6.222620060693656e-05
+736.9000000000993 6.223808466243744e-05
+737.0000000000994 6.22499681895273e-05
+737.1000000000994 6.229097965590539e-05
+737.2000000000994 6.233199367165521e-05
+737.3000000000994 6.237301023669986e-05
+737.4000000000995 6.241402935089514e-05
+737.5000000000995 6.245505101408405e-05
+737.6000000000995 6.248310385317796e-05
+737.7000000000995 6.251115836465736e-05
+737.8000000000995 6.253921454837793e-05
+737.9000000000996 6.25672724042625e-05
+738.0000000000996 6.259533193220413e-05
+738.1000000000996 6.259346742471314e-05
+738.2000000000996 6.259160287338337e-05
+738.3000000000997 6.258973827829032e-05
+738.4000000000997 6.258787363944207e-05
+738.5000000000997 6.258600895685972e-05
+738.6000000000997 6.259711503775132e-05
+738.7000000000997 6.260822030211749e-05
+738.8000000000998 6.261932474985501e-05
+738.9000000000998 6.263042838099492e-05
+739.0000000000998 6.264153119562668e-05
+739.1000000000998 6.264373842933687e-05
+739.2000000000999 6.2645945615229e-05
+739.3000000000999 6.264815275329471e-05
+739.4000000000999 6.265035984352568e-05
+739.5000000000999 6.265256688606092e-05
+739.6000000001 6.266774588377571e-05
+739.7000000001 6.268292574757721e-05
+739.8000000001 6.269810647747732e-05
+739.9000000001 6.271328807348798e-05
+740.0000000001 6.272847053568538e-05
+740.1000000001001 6.274078558390256e-05
+740.2000000001001 6.275310027799729e-05
+740.3000000001001 6.276541461790522e-05
+740.4000000001001 6.277772860362928e-05
+740.5000000001002 6.279004223510517e-05
+740.6000000001002 6.280235551240299e-05
+740.7000000001002 6.281466843539125e-05
+740.8000000001002 6.282698100420735e-05
+740.9000000001002 6.28392932187197e-05
+741.0000000001003 6.28516050789867e-05
+741.1000000001003 6.285222083301629e-05
+741.2000000001003 6.285283649679112e-05
+741.3000000001003 6.285345207044403e-05
+741.4000000001004 6.285406755390617e-05
+741.5000000001004 6.285468294725615e-05
+741.6000000001004 6.286827148029303e-05
+741.7000000001004 6.288186017717916e-05
+741.8000000001005 6.289544903797386e-05
+741.9000000001005 6.290903806266922e-05
+742.0000000001005 6.292262725104045e-05
+742.1000000001005 6.29210491740804e-05
+742.2000000001005 6.291947103499275e-05
+742.3000000001006 6.291789283391941e-05
+742.4000000001006 6.291631457086784e-05
+742.5000000001006 6.291473624584542e-05
+742.6000000001006 6.29131578589269e-05
+742.7000000001007 6.291157941018682e-05
+742.8000000001007 6.291000089963263e-05
+742.9000000001007 6.290842232727182e-05
+743.0000000001007 6.290684369325943e-05
+743.1000000001007 6.291844804914627e-05
+743.2000000001008 6.293005177980186e-05
+743.3000000001008 6.2941654885109e-05
+743.4000000001008 6.295325736515197e-05
+743.5000000001008 6.296485921986773e-05
+743.6000000001009 6.296349165601324e-05
+743.7000000001009 6.296212403026286e-05
+743.8000000001009 6.296075634262299e-05
+743.9000000001009 6.295938859316717e-05
+744.000000000101 6.295802078197124e-05
+744.100000000101 6.295899006127857e-05
+744.200000000101 6.295995923737451e-05
+744.300000000101 6.296092831038964e-05
+744.400000000101 6.296189728018582e-05
+744.5000000001011 6.296286614689359e-05
+744.6000000001011 6.296383491057638e-05
+744.7000000001011 6.296480357116319e-05
+744.8000000001011 6.296577212871741e-05
+744.9000000001012 6.296674058323531e-05
+745.0000000001012 6.296770893484668e-05
+745.1000000001012 6.296793833062384e-05
+745.2000000001012 6.296816763602332e-05
+745.3000000001012 6.296839685104519e-05
+745.4000000001013 6.296862597575667e-05
+745.5000000001013 6.296885501022503e-05
+745.6000000001013 6.296908395438315e-05
+745.7000000001013 6.296931280836542e-05
+745.8000000001014 6.296954157217194e-05
+745.9000000001014 6.296977024573555e-05
+746.0000000001014 6.296999882918852e-05
+746.1000000001014 6.296808760019023e-05
+746.2000000001015 6.296617633215377e-05
+746.3000000001015 6.29642650251543e-05
+746.4000000001015 6.296235367919976e-05
+746.5000000001015 6.296044229443244e-05
+746.6000000001015 6.295853087072591e-05
+746.7000000001016 6.295661940828956e-05
+746.8000000001016 6.295470790706419e-05
+746.9000000001016 6.295279636712486e-05
+747.0000000001016 6.295088478856422e-05
+747.1000000001017 6.296625408993063e-05
+747.2000000001017 6.298162434248023e-05
+747.3000000001017 6.299699554616138e-05
+747.4000000001017 6.30123677009895e-05
+747.5000000001017 6.302774080689973e-05
+747.6000000001018 6.303014569811892e-05
+747.7000000001018 6.303255055085399e-05
+747.8000000001018 6.303495536509595e-05
+747.9000000001018 6.30373601408357e-05
+748.0000000001019 6.303976487806e-05
+748.1000000001019 6.303798621872601e-05
+748.2000000001019 6.303620750984685e-05
+748.3000000001019 6.303442875156471e-05
+748.400000000102 6.303264994382015e-05
+748.500000000102 6.30308710866209e-05
+748.600000000102 6.302909218010907e-05
+748.700000000102 6.302731322429248e-05
+748.800000000102 6.3025534219246e-05
+748.9000000001021 6.302375516491023e-05
+749.0000000001021 6.302197606136217e-05
+749.1000000001021 6.302226672760302e-05
+749.2000000001021 6.302255730615273e-05
+749.3000000001022 6.302284779707829e-05
+749.4000000001022 6.30231382003795e-05
+749.5000000001022 6.302342851605621e-05
+749.6000000001022 6.302371874424252e-05
+749.7000000001022 6.302400888480398e-05
+749.8000000001023 6.302429893794189e-05
+749.9000000001023 6.302458890358887e-05
+750.0000000001023 6.302487878181111e-05
+750.1000000001023 6.302437107642329e-05
+750.2000000001024 6.302386328160646e-05
+750.3000000001024 6.302335539729659e-05
+750.4000000001024 6.302284742349682e-05
+750.5000000001024 6.302233936035783e-05
+750.6000000001025 6.303479866278152e-05
+750.7000000001025 6.304725766668448e-05
+750.8000000001025 6.30597163720624e-05
+750.9000000001025 6.307217477884386e-05
+751.0000000001025 6.308463288707811e-05
+751.1000000001026 6.308393184633567e-05
+751.2000000001026 6.308323072098361e-05
+751.3000000001026 6.308252951102567e-05
+751.4000000001026 6.308182821653298e-05
+751.5000000001027 6.308112683757652e-05
+751.6000000001027 6.3080425374093e-05
+751.7000000001027 6.307972382622057e-05
+751.8000000001027 6.307902219389594e-05
+751.9000000001028 6.307832047725728e-05
+752.0000000001028 6.307761867624124e-05
+752.1000000001028 6.307685204577885e-05
+752.2000000001028 6.307608533172472e-05
+752.3000000001028 6.3075318534083e-05
+752.4000000001029 6.307455165285777e-05
+752.5000000001029 6.307378468812029e-05
+752.6000000001029 6.307301763987473e-05
+752.7000000001029 6.307225050819228e-05
+752.800000000103 6.307148329314425e-05
+752.900000000103 6.307071599466763e-05
+753.000000000103 6.306994861284889e-05
+753.100000000103 6.308406706839086e-05
+753.200000000103 6.309818589958605e-05
+753.3000000001031 6.311230510634893e-05
+753.4000000001031 6.312642468866113e-05
+753.5000000001031 6.31405446464908e-05
+753.6000000001031 6.314161351061792e-05
+753.7000000001032 6.314262696837625e-05
+753.8000000001032 6.314361362327203e-05
+753.9000000001032 6.314459996166732e-05
+754.0000000001032 6.314561035262946e-05
+754.1000000001033 6.314483759892113e-05
+754.2000000001033 6.314413130656607e-05
+754.3000000001033 6.314350948484295e-05
+754.4000000001033 6.314298802326514e-05
+754.5000000001033 6.314258069237682e-05
+754.6000000001034 6.314229914648165e-05
+754.7000000001034 6.314215291720665e-05
+754.8000000001034 6.314214941775698e-05
+754.9000000001034 6.314229394301145e-05
+755.0000000001035 6.314258966957604e-05
+755.1000000001035 6.314275986416013e-05
+755.2000000001035 6.31430812392904e-05
+755.3000000001035 6.314355061537364e-05
+755.4000000001035 6.314416269456057e-05
+755.5000000001036 6.31449100607353e-05
+755.6000000001036 6.314578317682474e-05
+755.7000000001036 6.314677039100757e-05
+755.8000000001036 6.314785793271526e-05
+755.9000000001037 6.314902991249016e-05
+756.0000000001037 6.315026832163206e-05
+756.1000000001037 6.315237835346934e-05
+756.2000000001037 6.315451248853547e-05
+756.3000000001038 6.315664635943558e-05
+756.4000000001038 6.315875347744073e-05
+756.5000000001038 6.316080523237925e-05
+756.6000000001038 6.317574066073414e-05
+756.7000000001038 6.319067683984334e-05
+756.8000000001039 6.320561377039235e-05
+756.9000000001039 6.322055145312975e-05
+757.0000000001039 6.323548988858377e-05
+757.1000000001039 6.32363017722694e-05
+757.200000000104 6.323711355689046e-05
+757.300000000104 6.323792524309853e-05
+757.400000000104 6.323873683153759e-05
+757.500000000104 6.323954832291058e-05
+757.600000000104 6.324035972057781e-05
+757.7000000001041 6.324117102039023e-05
+757.8000000001041 6.324198222102667e-05
+757.9000000001041 6.324279332118026e-05
+758.0000000001041 6.324360431937081e-05
+758.1000000001042 6.319168745919563e-05
+758.2000000001042 6.313977051930166e-05
+758.3000000001042 6.308785349876728e-05
+758.4000000001042 6.303593639662385e-05
+758.5000000001043 6.298401921082949e-05
+758.6000000001043 6.240029325607001e-05
+758.7000000001043 6.181662017517958e-05
+758.8000000001043 6.123297070867663e-05
+758.9000000001043 6.0649318690064364e-05
+759.0000000001044 6.006564094422e-05
+759.1000000001044 5.773300516386424e-05
+759.2000000001044 5.5400106391878914e-05
+759.3000000001044 5.30669368738164e-05
+759.4000000001045 5.073349321946617e-05
+759.5000000001045 4.8399776009887556e-05
+759.6000000001045 4.498875828193905e-05
+759.7000000001045 4.157740554498973e-05
+759.8000000001045 3.816573526212442e-05
+759.9000000001046 3.475376766674524e-05
+760.0000000001046 3.134152519378183e-05
+760.1000000001046 2.9524297583678166e-05
+760.2000000001046 2.77070439058697e-05
+760.3000000001047 2.5889778526340826e-05
+760.4000000001047 2.4072516251879214e-05
+760.5000000001047 2.2255272029617686e-05
+760.6000000001047 2.244942532193837e-05
+760.7000000001048 2.2643529002790344e-05
+760.8000000001048 2.2837586997683857e-05
+760.9000000001048 2.3031604174066564e-05
+761.0000000001048 2.322558637706194e-05
+761.1000000001048 2.5068029181828308e-05
+761.2000000001049 2.691045667684872e-05
+761.3000000001049 2.875287783004893e-05
+761.4000000001049 3.059530547804485e-05
+761.5000000001049 3.2437756635085716e-05
+761.600000000105 3.4371078603839536e-05
+761.700000000105 3.6304404080773565e-05
+761.800000000105 3.823773305714742e-05
+761.900000000105 4.017106552421423e-05
+762.000000000105 4.2104401468632036e-05
+762.1000000001051 4.1830984676969774e-05
+762.2000000001051 4.1557580072733935e-05
+762.3000000001051 4.128418765664181e-05
+762.4000000001051 4.1010807429478755e-05
+762.5000000001052 4.0737439390418215e-05
+762.6000000001052 3.969865201745573e-05
+762.7000000001052 3.865991118926955e-05
+762.8000000001052 3.762121690862421e-05
+762.9000000001053 3.658256917828736e-05
+763.0000000001053 3.554396800333764e-05
+763.1000000001053 3.5556305420717434e-05
+763.2000000001053 3.5568642323318146e-05
+763.3000000001053 3.558097871119902e-05
+763.4000000001054 3.5593314584217816e-05
+763.5000000001054 3.56056499435723e-05
+763.6000000001054 3.618870267853116e-05
+763.7000000001054 3.677173450719578e-05
+763.8000000001055 3.7354745427198146e-05
+763.9000000001055 3.7937735435899895e-05
+764.0000000001055 3.852070453105643e-05
+764.1000000001055 3.922031949910703e-05
+764.2000000001055 3.991990723143719e-05
+764.3000000001056 4.0619467726038596e-05
+764.4000000001056 4.131900098076639e-05
+764.5000000001056 4.2018506993883856e-05
+764.6000000001056 4.2847669993909e-05
+764.7000000001057 4.367680071004961e-05
+764.8000000001057 4.4505899139824256e-05
+764.9000000001057 4.533496528081592e-05
+765.0000000001057 4.616399913038131e-05
+765.1000000001058 4.690289693040801e-05
+765.2000000001058 4.764178694521243e-05
+765.3000000001058 4.838066917169396e-05
+765.4000000001058 4.91195436066824e-05
+765.5000000001058 4.985841024684562e-05
+765.6000000001059 5.0441664981748445e-05
+765.7000000001059 5.102491354348224e-05
+765.8000000001059 5.1608155929532827e-05
+765.9000000001059 5.219139213751829e-05
+766.000000000106 5.277462216477413e-05
+766.100000000106 5.3279134021030225e-05
+766.200000000106 5.378362321795973e-05
+766.300000000106 5.428808975415985e-05
+766.400000000106 5.479253362822635e-05
+766.5000000001061 5.529695483871728e-05
+766.6000000001061 5.582728338091813e-05
+766.7000000001061 5.63575880970389e-05
+766.8000000001061 5.688786898549054e-05
+766.9000000001062 5.741812604474925e-05
+767.0000000001062 5.794835927290107e-05
+767.1000000001062 5.8298669518176884e-05
+767.2000000001062 5.864898311746165e-05
+767.3000000001063 5.8999300069120724e-05
+767.4000000001063 5.9349620371585385e-05
+767.5000000001063 5.9699944023122625e-05
+767.6000000001063 5.9894700372500446e-05
+767.7000000001063 6.0089458541285685e-05
+767.8000000001064 6.028421852880849e-05
+767.9000000001064 6.047898033406293e-05
+768.0000000001064 6.0673743956174246e-05
+768.1000000001064 6.0802082071954035e-05
+768.2000000001065 6.09304145599927e-05
+768.3000000001065 6.105874141998325e-05
+768.4000000001065 6.118706265161825e-05
+768.5000000001065 6.131537825448221e-05
+768.6000000001065 6.140471620373638e-05
+768.7000000001066 6.149399612182214e-05
+768.8000000001066 6.158324565782248e-05
+768.9000000001066 6.167249055396675e-05
+769.0000000001066 6.176175463078666e-05
+769.1000000001067 6.183951191098085e-05
+769.2000000001067 6.191733424869483e-05
+769.3000000001067 6.199523956334474e-05
+769.4000000001067 6.207324378139371e-05
+769.5000000001068 6.215136082360427e-05
+769.6000000001068 6.225552362532326e-05
+769.7000000001068 6.235981986581447e-05
+769.8000000001068 6.24642583945888e-05
+769.9000000001068 6.256884595433024e-05
+770.0000000001069 6.267358716294769e-05
+770.1000000001069 6.27395002001234e-05
+770.2000000001069 6.28055678328943e-05
+770.3000000001069 6.287178791869596e-05
+770.400000000107 6.293815613003297e-05
+770.500000000107 6.30046659430089e-05
+770.600000000107 6.303242093300803e-05
+770.700000000107 6.306029879690245e-05
+770.800000000107 6.30882844331093e-05
+770.9000000001071 6.311636066153606e-05
+771.0000000001071 6.31445082190178e-05
+771.1000000001071 6.315909776100851e-05
+771.2000000001071 6.317371259854503e-05
+771.3000000001072 6.318832719211828e-05
+771.4000000001072 6.320291392449955e-05
+771.5000000001072 6.321744309872187e-05
+771.6000000001072 6.321890973841152e-05
+771.7000000001073 6.322036820197482e-05
+771.8000000001073 6.322181935648844e-05
+771.9000000001073 6.322326400467381e-05
+772.0000000001073 6.322470288523088e-05
+772.1000000001073 6.322761401425613e-05
+772.2000000001074 6.323052074728002e-05
+772.3000000001074 6.323342363015813e-05
+772.4000000001074 6.323632314461506e-05
+772.5000000001074 6.323921970830006e-05
+772.6000000001075 6.324211628158579e-05
+772.7000000001075 6.324501582533847e-05
+772.8000000001075 6.324791875786329e-05
+772.9000000001075 6.325082556180611e-05
+773.0000000001075 6.32537367839765e-05
+773.1000000001076 6.326773379344414e-05
+773.2000000001076 6.328173680389256e-05
+773.3000000001076 6.329574655840435e-05
+773.4000000001076 6.330976386509267e-05
+773.5000000001077 6.332378959688698e-05
+773.6000000001077 6.332493448267683e-05
+773.7000000001077 6.332613749218263e-05
+773.8000000001077 6.332736890453085e-05
+773.9000000001078 6.33286010564837e-05
+774.0000000001078 6.332980834307447e-05
+774.1000000001078 6.333228565630011e-05
+774.2000000001078 6.333469315678312e-05
+774.3000000001078 6.333701140854447e-05
+774.4000000001079 6.333922303257063e-05
+774.5000000001079 6.334131270758882e-05
+774.6000000001079 6.334326717023207e-05
+774.7000000001079 6.334508243376788e-05
+774.800000000108 6.334675147549704e-05
+774.900000000108 6.334826946072427e-05
+775.000000000108 6.334963374296954e-05
+775.100000000108 6.335039312819361e-05
+775.200000000108 6.335100007552675e-05
+775.3000000001081 6.335145850747074e-05
+775.4000000001081 6.335177453517148e-05
+775.5000000001081 6.335195645843288e-05
+775.6000000001081 6.335201476548645e-05
+775.7000000001082 6.335195852535869e-05
+775.8000000001082 6.335180154180809e-05
+775.9000000001082 6.335155974234663e-05
+776.0000000001082 6.335125117812452e-05
+776.1000000001083 6.335054337501916e-05
+776.2000000001083 6.334981126262543e-05
+776.3000000001083 6.334907926174196e-05
+776.4000000001083 6.334837391559105e-05
+776.5000000001083 6.33477238898128e-05
+776.6000000001084 6.334715997234595e-05
+776.7000000001084 6.334659595089009e-05
+776.8000000001084 6.334603182544782e-05
+776.9000000001084 6.33454675960217e-05
+777.0000000001085 6.334490326268045e-05
+777.1000000001085 6.334340659836849e-05
+777.2000000001085 6.334190988442102e-05
+777.3000000001085 6.334041312104539e-05
+777.4000000001085 6.333891630818032e-05
+777.5000000001086 6.333741944589888e-05
+777.6000000001086 6.333592253420693e-05
+777.7000000001086 6.333442557317753e-05
+777.8000000001086 6.333292856281656e-05
+777.9000000001087 6.333143150312992e-05
+778.0000000001087 6.332993439412581e-05
+778.1000000001087 6.333062326130878e-05
+778.2000000001087 6.333131204125162e-05
+778.3000000001088 6.33320007338852e-05
+778.4000000001088 6.333268933927451e-05
+778.5000000001088 6.333337785755178e-05
+778.6000000001088 6.333406628858064e-05
+778.7000000001088 6.333475463249331e-05
+778.8000000001089 6.333544288928773e-05
+778.9000000001089 6.333613105896178e-05
+779.0000000001089 6.333681914159438e-05
+779.1000000001089 6.335016319110735e-05
+779.200000000109 6.336350730055882e-05
+779.300000000109 6.337685146980142e-05
+779.400000000109 6.3390195698889e-05
+779.500000000109 6.340353998772724e-05
+779.600000000109 6.340390503126327e-05
+779.7000000001091 6.340426998514765e-05
+779.8000000001091 6.340463484937971e-05
+779.9000000001091 6.340499962395865e-05
+780.0000000001091 6.340536430888153e-05
+780.1000000001092 6.340370366624088e-05
+780.2000000001092 6.340204296411114e-05
+780.3000000001092 6.340038220270038e-05
+780.4000000001092 6.339872138188095e-05
+780.5000000001093 6.339706050179363e-05
+780.6000000001093 6.339539956244507e-05
+780.7000000001093 6.33937385638419e-05
+780.8000000001093 6.339207750605774e-05
+780.9000000001093 6.339041638909923e-05
+781.0000000001094 6.338875521297524e-05
+781.1000000001094 6.338918383351671e-05
+781.2000000001094 6.338961236523641e-05
+781.3000000001094 6.339004080820035e-05
+781.4000000001095 6.339046916240761e-05
+781.5000000001095 6.33908974278572e-05
+781.6000000001095 6.339132560461516e-05
+781.7000000001095 6.339175369268062e-05
+781.8000000001095 6.339218169211961e-05
+781.9000000001096 6.339260960286404e-05
+782.0000000001096 6.339303742504561e-05
+782.1000000001096 6.339205153996879e-05
+782.2000000001096 6.33910655894434e-05
+782.3000000001097 6.339007957360792e-05
+782.4000000001097 6.338909349246655e-05
+782.5000000001097 6.33881073460907e-05
+782.6000000001097 6.33871211343504e-05
+782.7000000001098 6.338613485745123e-05
+782.8000000001098 6.33851485153303e-05
+782.9000000001098 6.338416210805891e-05
+783.0000000001098 6.338317563570872e-05
+783.1000000001098 6.338241256777073e-05
+783.2000000001099 6.338164940334383e-05
+783.3000000001099 6.338088614236429e-05
+783.4000000001099 6.338012278490259e-05
+783.5000000001099 6.337935933089496e-05
+783.60000000011 6.337859578054606e-05
+783.70000000011 6.337783213372504e-05
+783.80000000011 6.337706839050237e-05
+783.90000000011 6.337630455094853e-05
+784.00000000011 6.33755406150674e-05
+784.1000000001101 6.337532493731052e-05
+784.2000000001101 6.337510917864495e-05
+784.3000000001101 6.337489333893801e-05
+784.4000000001101 6.33746774183255e-05
+784.5000000001102 6.337446141674183e-05
+784.6000000001102 6.337424533438985e-05
+784.7000000001102 6.337402917106984e-05
+784.8000000001102 6.337381292698459e-05
+784.9000000001103 6.337359660206863e-05
+785.0000000001103 6.337338019639008e-05
+785.1000000001103 6.337277792929615e-05
+785.2000000001103 6.337217558792681e-05
+785.3000000001103 6.337157317248621e-05
+785.4000000001104 6.337097068291027e-05
+785.5000000001104 6.337036811926895e-05
+785.6000000001104 6.336976548156516e-05
+785.7000000001104 6.336916276986894e-05
+785.8000000001105 6.336855998411613e-05
+785.9000000001105 6.336795712444378e-05
+786.0000000001105 6.336735419077522e-05
+786.1000000001105 6.335538729310325e-05
+786.2000000001105 6.33434199050661e-05
+786.3000000001106 6.333145202673432e-05
+786.4000000001106 6.33194836581787e-05
+786.5000000001106 6.330751479955128e-05
+786.6000000001106 6.330851850783266e-05
+786.7000000001107 6.330952213748219e-05
+786.8000000001107 6.331052568849663e-05
+786.9000000001107 6.331152916080556e-05
+787.0000000001107 6.331253255452344e-05
+787.1000000001108 6.32985702146777e-05
+787.2000000001108 6.328460821611992e-05
+787.3000000001108 6.327064655905327e-05
+787.4000000001108 6.32566852434798e-05
+787.5000000001108 6.324272426948288e-05
+787.6000000001109 6.32417363009256e-05
+787.7000000001109 6.324074826878633e-05
+787.8000000001109 6.323976017300215e-05
+787.9000000001109 6.32387720136443e-05
+788.000000000111 6.323778379070347e-05
+788.100000000111 6.322468816255522e-05
+788.200000000111 6.321159247554276e-05
+788.300000000111 6.319849672975965e-05
+788.400000000111 6.31854009252997e-05
+788.5000000001111 6.317230506224219e-05
+788.6000000001111 6.314623744036362e-05
+788.7000000001111 6.312016981107795e-05
+788.8000000001111 6.309410217463922e-05
+788.9000000001112 6.306803453116748e-05
+789.0000000001112 6.304196688084868e-05
+789.1000000001112 6.301510283463994e-05
+789.2000000001112 6.298823948211863e-05
+789.3000000001113 6.296137682348715e-05
+789.4000000001113 6.293451485881397e-05
+789.5000000001113 6.290765358833043e-05
+789.6000000001113 6.290673393312537e-05
+789.7000000001113 6.290581421370592e-05
+789.8000000001114 6.290489443007599e-05
+789.9000000001114 6.290397458223942e-05
+790.0000000001114 6.290305467033468e-05
+790.1000000001114 6.2902517552431e-05
+790.2000000001115 6.290198036159697e-05
+790.3000000001115 6.290144309776815e-05
+790.4000000001115 6.290090576108127e-05
+790.5000000001115 6.290036835153899e-05
+790.6000000001115 6.289983086914383e-05
+790.7000000001116 6.289929331383147e-05
+790.8000000001116 6.289875568580566e-05
+790.9000000001116 6.289821798500187e-05
+791.0000000001116 6.289768021145254e-05
+791.1000000001117 6.292371824873776e-05
+791.2000000001117 6.294975628967036e-05
+791.3000000001117 6.297579433416695e-05
+791.4000000001117 6.300183238207698e-05
+791.5000000001118 6.302787043335515e-05
+791.6000000001118 6.302797105144445e-05
+791.7000000001118 6.302807158997954e-05
+791.8000000001118 6.302817204909488e-05
+791.9000000001118 6.302827242872371e-05
+792.0000000001119 6.302837272891894e-05
+792.1000000001119 6.301556652993994e-05
+792.2000000001119 6.300276018214234e-05
+792.3000000001119 6.298995368560324e-05
+792.400000000112 6.297714704039969e-05
+792.500000000112 6.296434024670474e-05
+792.600000000112 6.297747130736068e-05
+792.700000000112 6.299060235314465e-05
+792.800000000112 6.300373338384571e-05
+792.9000000001121 6.301686439952104e-05
+793.0000000001121 6.302999540025653e-05
+793.1000000001121 6.306874576707169e-05
+793.2000000001121 6.310749586195598e-05
+793.3000000001122 6.314624568475352e-05
+793.4000000001122 6.318499523530818e-05
+793.5000000001122 6.322374451359814e-05
+793.6000000001122 6.326249351940037e-05
+793.7000000001123 6.330124225269296e-05
+793.8000000001123 6.333999071331995e-05
+793.9000000001123 6.337873890105825e-05
+794.0000000001123 6.341748681584246e-05
+794.1000000001123 6.34174246054634e-05
+794.2000000001124 6.34173622898646e-05
+794.3000000001124 6.341729986904609e-05
+794.4000000001124 6.341723734307491e-05
+794.5000000001124 6.341717471193643e-05
+794.6000000001125 6.340414324110532e-05
+794.7000000001125 6.339111169093389e-05
+794.8000000001125 6.337808006144638e-05
+794.9000000001125 6.336504835280103e-05
+795.0000000001125 6.335201656493997e-05
+795.1000000001126 6.332559937039534e-05
+795.2000000001126 6.329918249640276e-05
+795.3000000001126 6.327276594304038e-05
+795.4000000001126 6.324634971038656e-05
+795.5000000001127 6.321993379854255e-05
+795.6000000001127 6.31546139281649e-05
+795.7000000001127 6.308929496898639e-05
+795.8000000001127 6.30239769212324e-05
+795.9000000001128 6.295865978519546e-05
+796.0000000001128 6.289334356121266e-05
+796.1000000001128 6.286763178323664e-05
+796.2000000001128 6.284191974085195e-05
+796.3000000001128 6.281620743427827e-05
+796.4000000001129 6.279049486360127e-05
+796.5000000001129 6.276478202912846e-05
+796.6000000001129 6.281687678797744e-05
+796.7000000001129 6.286897183537874e-05
+796.800000000113 6.292106717116067e-05
+796.900000000113 6.297316279528544e-05
+797.000000000113 6.302525870736403e-05
+797.100000000113 6.306304584154641e-05
+797.200000000113 6.310083153981699e-05
+797.3000000001131 6.313861580212669e-05
+797.4000000001131 6.317639862829249e-05
+797.5000000001131 6.321418001830307e-05
+797.6000000001131 6.322602640923914e-05
+797.7000000001132 6.323787228318647e-05
+797.8000000001132 6.324971764015397e-05
+797.9000000001132 6.326156248015062e-05
+798.0000000001132 6.327340680310462e-05
+798.1000000001133 6.32731176113813e-05
+798.2000000001133 6.327282834495324e-05
+798.3000000001133 6.327253900395624e-05
+798.4000000001133 6.327224958825787e-05
+798.5000000001133 6.327196009799389e-05
+798.6000000001134 6.327167053316592e-05
+798.7000000001134 6.327138089384274e-05
+798.8000000001134 6.327109117989195e-05
+798.9000000001134 6.327080139151631e-05
+799.0000000001135 6.327051152872038e-05
+799.1000000001135 6.327278924021321e-05
+799.2000000001135 6.327506691513494e-05
+799.3000000001135 6.32773445534776e-05
+799.4000000001136 6.327962215530042e-05
+799.5000000001136 6.328189972056603e-05
+799.6000000001136 6.325824111117147e-05
+799.7000000001136 6.323458059847849e-05
+799.8000000001136 6.321091818251198e-05
+799.9000000001137 6.318725386343113e-05
+800.0000000001137 6.316358764125764e-05
+800.1000000001137 6.313701000620709e-05
+800.2000000001137 6.311043283109061e-05
+800.3000000001138 6.308385611604517e-05
+800.4000000001138 6.30572798610739e-05
+800.5000000001138 6.303070406641031e-05
+800.6000000001138 6.303006703122798e-05
+800.7000000001138 6.302942993218418e-05
+800.8000000001139 6.302879276921478e-05
+800.9000000001139 6.30281555423896e-05
+801.0000000001139 6.302751825171307e-05
+801.1000000001139 6.302825152693022e-05
+801.200000000114 6.302898472728995e-05
+801.300000000114 6.30297178527903e-05
+801.400000000114 6.303045090349614e-05
+801.500000000114 6.303118387948729e-05
+801.600000000114 6.304488631084316e-05
+801.7000000001141 6.30585889689743e-05
+801.8000000001141 6.307229185400587e-05
+801.9000000001141 6.30859949657278e-05
+802.0000000001141 6.309969830418324e-05
+802.1000000001142 6.310030429423158e-05
+802.2000000001142 6.310091020988433e-05
+802.3000000001142 6.310151605107288e-05
+802.4000000001142 6.310212181792977e-05
+802.5000000001143 6.310272751038644e-05
+802.6000000001143 6.31033331285084e-05
+802.7000000001143 6.310393867236112e-05
+802.8000000001143 6.310454414187602e-05
+802.9000000001143 6.310514953711861e-05
+803.0000000001144 6.310575485816705e-05
+803.1000000001144 6.311741166933387e-05
+803.2000000001144 6.312906789055814e-05
+803.3000000001144 6.31407235217861e-05
+803.4000000001145 6.315237856303084e-05
+803.5000000001145 6.316403301422386e-05
+803.6000000001145 6.316271711831268e-05
+803.7000000001145 6.316140117283432e-05
+803.8000000001146 6.316008517779358e-05
+803.9000000001146 6.315876913319539e-05
+804.0000000001146 6.315745303918006e-05
+804.1000000001146 6.315748173536553e-05
+804.2000000001146 6.315751035701655e-05
+804.3000000001147 6.315753890413368e-05
+804.4000000001147 6.315756737671739e-05
+804.5000000001147 6.315759577486503e-05
+804.6000000001147 6.318356152107449e-05
+804.7000000001148 6.320952721611004e-05
+804.8000000001148 6.323549285975705e-05
+804.9000000001148 6.326145845206887e-05
+805.0000000001148 6.328742399296566e-05
+805.1000000001148 6.331403237600022e-05
+805.2000000001149 6.334064123523108e-05
+805.3000000001149 6.336725057071064e-05
+805.4000000001149 6.33938603822903e-05
+805.5000000001149 6.342047066992568e-05
+805.600000000115 6.342114231602476e-05
+805.700000000115 6.342181388863414e-05
+805.800000000115 6.342248538788607e-05
+805.900000000115 6.342315681377879e-05
+806.000000000115 6.342382816624174e-05
+806.1000000001151 6.342299072525302e-05
+806.2000000001151 6.34221532249977e-05
+806.3000000001151 6.342131566554625e-05
+806.4000000001151 6.342047804696893e-05
+806.5000000001152 6.341964036920224e-05
+806.6000000001152 6.341880263224938e-05
+806.7000000001152 6.341796483624786e-05
+806.8000000001152 6.341712698120095e-05
+806.9000000001153 6.341628906711202e-05
+807.0000000001153 6.341545109398615e-05
+807.1000000001153 6.341612168760622e-05
+807.2000000001153 6.341679220820074e-05
+807.3000000001153 6.341746265563409e-05
+807.4000000001154 6.341813303010541e-05
+807.5000000001154 6.341880333147896e-05
+807.6000000001154 6.341947355988694e-05
+807.7000000001154 6.342014371532767e-05
+807.8000000001155 6.342081379773229e-05
+807.9000000001155 6.342148380723307e-05
+808.0000000001155 6.342215374381369e-05
+808.1000000001155 6.341020375231559e-05
+808.2000000001156 6.339825328881059e-05
+808.3000000001156 6.338630235329182e-05
+808.4000000001156 6.337435094588643e-05
+808.5000000001156 6.336239906658743e-05
+808.6000000001156 6.335044671538805e-05
+808.7000000001157 6.333849389248231e-05
+808.8000000001157 6.332654059786337e-05
+808.9000000001157 6.33145868315914e-05
+809.0000000001157 6.33026325936577e-05
+809.1000000001158 6.328917328736636e-05
+809.2000000001158 6.327571411242721e-05
+809.3000000001158 6.32622550688465e-05
+809.4000000001158 6.324879615669747e-05
+809.5000000001158 6.323533737613533e-05
+809.6000000001159 6.323484997840424e-05
+809.7000000001159 6.323436251232337e-05
+809.8000000001159 6.3233874977962e-05
+809.9000000001159 6.323338737532237e-05
+810.000000000116 6.323289970447549e-05
+810.100000000116 6.323395088745791e-05
+810.200000000116 6.323500200413053e-05
+810.300000000116 6.323605305449027e-05
+810.400000000116 6.323710403860106e-05
+810.5000000001161 6.323815495636265e-05
+810.6000000001161 6.321326151843696e-05
+810.7000000001161 6.318836715206231e-05
+810.8000000001161 6.316347185744224e-05
+810.9000000001162 6.313857563464632e-05
+811.0000000001162 6.31136784836615e-05
+811.1000000001162 6.307539583396275e-05
+811.2000000001162 6.303711234051723e-05
+811.3000000001163 6.299882800338536e-05
+811.4000000001163 6.296054282269475e-05
+811.5000000001163 6.292225679872193e-05
+811.6000000001163 6.289694372342093e-05
+811.7000000001163 6.287163006666166e-05
+811.8000000001164 6.284631582850635e-05
+811.9000000001164 6.282100100901739e-05
+812.0000000001164 6.279568560827368e-05
+812.1000000001164 6.278461868781207e-05
+812.2000000001165 6.277355096132572e-05
+812.3000000001165 6.27624824289177e-05
+812.4000000001165 6.275141309049003e-05
+812.5000000001165 6.274034294603993e-05
+812.6000000001166 6.263843523459269e-05
+812.7000000001166 6.253652119917102e-05
+812.8000000001166 6.243460083995845e-05
+812.9000000001166 6.233267415700481e-05
+813.0000000001166 6.223074115024981e-05
+813.1000000001167 6.2034643883092e-05
+813.2000000001167 6.183855550829266e-05
+813.3000000001167 6.164247602621819e-05
+813.4000000001167 6.144640543730236e-05
+813.5000000001168 6.125034374218181e-05
+813.6000000001168 6.117107916996597e-05
+813.7000000001168 6.109181813109139e-05
+813.8000000001168 6.101256062569395e-05
+813.9000000001168 6.093330665397669e-05
+814.0000000001169 6.085405621619103e-05
+814.1000000001169 6.0816359291069114e-05
+814.2000000001169 6.077866075210015e-05
+814.3000000001169 6.074096059938122e-05
+814.400000000117 6.07032588329424e-05
+814.500000000117 6.066555545277448e-05
+814.600000000117 6.0537012498469734e-05
+814.700000000117 6.040846426073817e-05
+814.800000000117 6.0279910739999065e-05
+814.9000000001171 6.015135193633703e-05
+815.0000000001171 6.002278785015553e-05
+815.1000000001171 5.9880781734151156e-05
+815.2000000001171 5.973877197447068e-05
+815.3000000001172 5.959675857162837e-05
+815.4000000001172 5.9454741525937947e-05
+815.5000000001172 5.931272083806303e-05
+815.6000000001172 5.918367538447109e-05
+815.7000000001173 5.9054626614863324e-05
+815.8000000001173 5.8925574529615854e-05
+815.9000000001173 5.879651912917213e-05
+816.0000000001173 5.866746041410312e-05
+816.1000000001173 5.8590231725947614e-05
+816.2000000001174 5.851300126268948e-05
+816.3000000001174 5.843576902457665e-05
+816.4000000001174 5.835853501185742e-05
+816.5000000001174 5.828129922528573e-05
+816.6000000001175 5.84636694322453e-05
+816.7000000001175 5.864604360888616e-05
+816.8000000001175 5.882842175464817e-05
+816.9000000001175 5.901080386910436e-05
+817.0000000001176 5.919318995141309e-05
+817.1000000001176 5.9193243551519075e-05
+817.2000000001176 5.919329709263944e-05
+817.3000000001176 5.919335057477478e-05
+817.4000000001176 5.919340399785855e-05
+817.5000000001177 5.919345736141521e-05
+817.6000000001177 5.895985207187545e-05
+817.7000000001177 5.8726246302939944e-05
+817.8000000001177 5.849264005551212e-05
+817.9000000001178 5.825903333016094e-05
+818.0000000001178 5.8025426128681455e-05
+818.1000000001178 5.8207417858132576e-05
+818.2000000001178 5.8389411125291417e-05
+818.3000000001178 5.857140592953464e-05
+818.4000000001179 5.875340227030535e-05
+818.5000000001179 5.8935400146934295e-05
+818.6000000001179 5.907845529053736e-05
+818.7000000001179 5.9221511626077876e-05
+818.800000000118 5.93645691530852e-05
+818.900000000118 5.9507627871155104e-05
+819.000000000118 5.965068777939764e-05
+819.100000000118 5.966565907382542e-05
+819.200000000118 5.9680631226897356e-05
+819.3000000001181 5.969560423870843e-05
+819.4000000001181 5.9710578109219576e-05
+819.5000000001181 5.972555283844343e-05
+819.6000000001181 5.972754417769033e-05
+819.7000000001182 5.972953550985861e-05
+819.8000000001182 5.973152683501105e-05
+819.9000000001182 5.973351815314357e-05
+820.0000000001182 5.973550946501854e-05
+820.1000000001183 6.004554924146169e-05
+820.2000000001183 6.035557213182939e-05
+820.3000000001183 6.066557813573083e-05
+820.4000000001183 6.097556725270731e-05
+820.5000000001183 6.128553948214192e-05
+820.6000000001184 6.151759158423112e-05
+820.7000000001184 6.17496310124615e-05
+820.8000000001184 6.198165776640765e-05
+820.9000000001184 6.221367184577752e-05
+821.0000000001185 6.244567324970963e-05
+821.1000000001185 6.242260432103022e-05
+821.2000000001185 6.239953303102578e-05
+821.3000000001185 6.237645937962563e-05
+821.4000000001186 6.235338336675934e-05
+821.5000000001186 6.233030499215078e-05
+821.6000000001186 6.219034951303489e-05
+821.7000000001186 6.205038082930843e-05
+821.8000000001186 6.191039894070462e-05
+821.9000000001187 6.177040384682316e-05
+822.0000000001187 6.163039554647856e-05
+822.1000000001187 6.11117429450512e-05
+822.2000000001187 6.059307520050885e-05
+822.3000000001188 6.0074392314338196e-05
+822.4000000001188 5.955569428822894e-05
+822.5000000001188 5.9036981123199084e-05
+822.6000000001188 5.834938771923037e-05
+822.7000000001188 5.766177427980612e-05
+822.8000000001189 5.697414080704333e-05
+822.9000000001189 5.628648730292735e-05
+823.0000000001189 5.559881377188721e-05
+823.1000000001189 5.5896363730668816e-05
+823.200000000119 5.619390051446032e-05
+823.300000000119 5.6491424122729875e-05
+823.400000000119 5.678893455481065e-05
+823.500000000119 5.708643181095461e-05
+823.600000000119 5.776058713397699e-05
+823.7000000001191 5.8434712713993674e-05
+823.8000000001191 5.9108808549655035e-05
+823.9000000001191 5.9782874639542275e-05
+824.0000000001191 6.0456910981277086e-05
+824.1000000001192 6.071745327252566e-05
+824.2000000001192 6.097800228992773e-05
+824.3000000001192 6.123855803277144e-05
+824.4000000001192 6.149912050054517e-05
+824.5000000001193 6.175968969203642e-05
+824.6000000001193 6.182543754817752e-05
+824.7000000001193 6.189118704773436e-05
+824.8000000001193 6.195693819059477e-05
+824.9000000001193 6.202269097664656e-05
+825.0000000001194 6.208844540535422e-05
+825.1000000001194 6.202433397709579e-05
+825.2000000001194 6.196022073924017e-05
+825.3000000001194 6.189610569199985e-05
+825.4000000001195 6.183198883565477e-05
+825.5000000001195 6.176787017028334e-05
+825.6000000001195 6.170374969616534e-05
+825.7000000001195 6.16396274135805e-05
+825.8000000001196 6.157550332260733e-05
+825.9000000001196 6.15113774235257e-05
+826.0000000001196 6.144724971707991e-05
+826.1000000001196 6.160328369499107e-05
+826.2000000001196 6.175931832706838e-05
+826.3000000001197 6.191535361283544e-05
+826.4000000001197 6.20713895518154e-05
+826.5000000001197 6.222742614327327e-05
+826.6000000001197 6.227953425200499e-05
+826.7000000001198 6.233164253327791e-05
+826.8000000001198 6.23837509868662e-05
+826.9000000001198 6.243585961267808e-05
+827.0000000001198 6.248796840971636e-05
+827.1000000001198 6.217619595135869e-05
+827.2000000001199 6.18644232480951e-05
+827.3000000001199 6.155265030100636e-05
+827.4000000001199 6.124087711097295e-05
+827.5000000001199 6.0929103679432666e-05
+827.60000000012 6.0747242844377047e-05
+827.70000000012 6.056538184222273e-05
+827.80000000012 6.0383520673723315e-05
+827.90000000012 6.020165933943162e-05
+828.00000000012 6.00197978406594e-05
+828.1000000001201 6.013526487849265e-05
+828.2000000001201 6.025072617583111e-05
+828.3000000001201 6.036618173210817e-05
+828.4000000001201 6.0481631546890975e-05
+828.5000000001202 6.0597075619405495e-05
+828.6000000001202 6.059560923745974e-05
+828.7000000001202 6.059414277097218e-05
+828.8000000001202 6.059267622001432e-05
+828.9000000001203 6.059120958459062e-05
+829.0000000001203 6.0589742864902024e-05
+829.1000000001203 6.064006844964411e-05
+829.2000000001203 6.0690391119536305e-05
+829.3000000001203 6.074071087419702e-05
+829.4000000001204 6.079102771344564e-05
+829.5000000001204 6.084134163706137e-05
+829.6000000001204 6.096956902654722e-05
+829.7000000001204 6.109778931595753e-05
+829.8000000001205 6.122600250450051e-05
+829.9000000001205 6.135420859145103e-05
+830.0000000001205 6.148240757569096e-05
+830.1000000001205 6.150655824738329e-05
+830.2000000001206 6.153070719542446e-05
+830.3000000001206 6.155485441964897e-05
+830.4000000001206 6.15789999198243e-05
+830.5000000001206 6.160314369596165e-05
+830.6000000001206 6.171816230102248e-05
+830.7000000001207 6.18331738030691e-05
+830.8000000001207 6.19481782010161e-05
+830.9000000001207 6.20631754938447e-05
+831.0000000001207 6.217816568018089e-05
+831.1000000001208 6.216505271580176e-05
+831.2000000001208 6.215193953203691e-05
+831.3000000001208 6.21388261290743e-05
+831.4000000001208 6.212571250710213e-05
+831.5000000001208 6.211259866593495e-05
+831.6000000001209 6.195669732997091e-05
+831.7000000001209 6.180079639008427e-05
+831.8000000001209 6.164489584830318e-05
+831.9000000001209 6.148899570679061e-05
+832.000000000121 6.133309596821988e-05
+832.100000000121 6.143335820300542e-05
+832.200000000121 6.153360835448422e-05
+832.300000000121 6.163384642267857e-05
+832.400000000121 6.17340724078785e-05
+832.5000000001211 6.183428631028747e-05
+832.6000000001211 6.197341615513777e-05
+832.7000000001211 6.211252937652174e-05
+832.8000000001211 6.225162597468415e-05
+832.9000000001212 6.239070594986957e-05
+833.0000000001212 6.252976930178528e-05
+833.1000000001212 6.250140608557458e-05
+833.2000000001212 6.247304473048068e-05
+833.3000000001213 6.244468523655366e-05
+833.4000000001213 6.241632760417853e-05
+833.5000000001213 6.238797183351984e-05
+833.6000000001213 6.239861275574767e-05
+833.7000000001213 6.240930715819405e-05
+833.8000000001214 6.242002682213356e-05
+833.9000000001214 6.24307456022752e-05
+834.0000000001214 6.244143942889175e-05
+834.1000000001214 6.254241512663954e-05
+834.2000000001215 6.264331558740292e-05
+834.3000000001215 6.274412261498408e-05
+834.4000000001215 6.284482000504784e-05
+834.5000000001215 6.294539356211962e-05
+834.6000000001216 6.298101176021208e-05
+834.7000000001216 6.30164925312712e-05
+834.8000000001216 6.305182738752781e-05
+834.9000000001216 6.308701000193153e-05
+835.0000000001216 6.312203621444549e-05
+835.1000000001217 6.30920632254572e-05
+835.2000000001217 6.306194055099971e-05
+835.3000000001217 6.303167103270442e-05
+835.4000000001217 6.300125968392679e-05
+835.5000000001218 6.297071368422622e-05
+835.6000000001218 6.296594909703926e-05
+835.7000000001218 6.296106334486289e-05
+835.8000000001218 6.29560716730375e-05
+835.9000000001218 6.295099136945625e-05
+836.0000000001219 6.294584176385857e-05
+836.1000000001219 6.296805310497396e-05
+836.2000000001219 6.299023672551998e-05
+836.3000000001219 6.301241807644023e-05
+836.400000000122 6.303462469483488e-05
+836.500000000122 6.305688620799205e-05
+836.600000000122 6.307923953962962e-05
+836.700000000122 6.31015979711926e-05
+836.800000000122 6.312396064563879e-05
+836.9000000001221 6.314632676883653e-05
+837.0000000001221 6.316869560966238e-05
+837.1000000001221 6.317494678732426e-05
+837.2000000001221 6.318119998272129e-05
+837.3000000001222 6.31874546515147e-05
+837.4000000001222 6.319371031355159e-05
+837.5000000001222 6.31999665522834e-05
+837.6000000001222 6.319328422088156e-05
+837.7000000001223 6.318659928613049e-05
+837.8000000001223 6.317991133137446e-05
+837.9000000001223 6.317321987590385e-05
+838.0000000001223 6.316652437522069e-05
+838.1000000001223 6.318811482556643e-05
+838.2000000001224 6.320969602387247e-05
+838.3000000001224 6.323126722503013e-05
+838.4000000001224 6.325282761886379e-05
+838.5000000001224 6.327437632953678e-05
+838.6000000001225 6.32829869669059e-05
+838.7000000001225 6.329159295308445e-05
+838.8000000001225 6.330019534870659e-05
+838.9000000001225 6.330879527925762e-05
+839.0000000001226 6.331739393503831e-05
+839.1000000001226 6.331300147808349e-05
+839.2000000001226 6.330861209649961e-05
+839.3000000001226 6.330422717327314e-05
+839.4000000001226 6.329984815508828e-05
+839.5000000001227 6.329547655285756e-05
+839.6000000001227 6.330403049769903e-05
+839.7000000001227 6.331258607950709e-05
+839.8000000001227 6.332114288122665e-05
+839.9000000001228 6.332970042123894e-05
+840.0000000001228 6.333825815328195e-05
+840.1000000001228 6.331997163681642e-05
+840.2000000001228 6.33016881569292e-05
+840.3000000001228 6.328340697325183e-05
+840.4000000001229 6.326512728211852e-05
+840.5000000001229 6.324684821618904e-05
+840.6000000001229 6.322856884520464e-05
+840.7000000001229 6.321029177707414e-05
+840.800000000123 6.319201701106328e-05
+840.900000000123 6.317374454663387e-05
+841.000000000123 6.315547438294302e-05
+841.100000000123 6.316358428754847e-05
+841.200000000123 6.317169224563763e-05
+841.3000000001231 6.317979825659384e-05
+841.4000000001231 6.31879023198594e-05
+841.5000000001231 6.319600443473465e-05
+841.6000000001231 6.32041045979102e-05
+841.7000000001232 6.321220281335807e-05
+841.8000000001232 6.322029908234547e-05
+841.9000000001232 6.322839340622117e-05
+842.0000000001232 6.323648578634854e-05
+842.1000000001233 6.324299748939252e-05
+842.2000000001233 6.324950679380681e-05
+842.3000000001233 6.325601370098576e-05
+842.4000000001233 6.326251821267243e-05
+842.5000000001234 6.326902033014353e-05
+842.6000000001234 6.326263561078565e-05
+842.7000000001234 6.32562510990628e-05
+842.8000000001234 6.324986679434926e-05
+842.9000000001234 6.324348269607748e-05
+843.0000000001235 6.32370988035919e-05
+843.1000000001235 6.321924445333873e-05
+843.2000000001235 6.320139207309808e-05
+843.3000000001235 6.318354166241934e-05
+843.4000000001236 6.316569322058244e-05
+843.5000000001236 6.314784674702754e-05
+843.6000000001236 6.315557650484693e-05
+843.7000000001236 6.316319349995313e-05
+843.8000000001236 6.317075491685203e-05
+843.9000000001237 6.317831373096773e-05
+844.0000000001237 6.318591870530252e-05
+844.1000000001237 6.317863696217159e-05
+844.2000000001237 6.317148872110485e-05
+844.3000000001238 6.31645099728436e-05
+844.4000000001238 6.315773245581584e-05
+844.5000000001238 6.31511836589467e-05
+844.6000000001238 6.315774729298391e-05
+844.7000000001239 6.316457943830588e-05
+844.8000000001239 6.317169502605487e-05
+844.9000000001239 6.317910475626832e-05
+845.0000000001239 6.318681509639335e-05
+845.1000000001239 6.319744484192752e-05
+845.200000000124 6.32083762136599e-05
+845.300000000124 6.32196030021356e-05
+845.400000000124 6.323111475276039e-05
+845.500000000124 6.324289676198339e-05
+845.600000000124 6.324207598939533e-05
+845.7000000001241 6.32414835388087e-05
+845.8000000001241 6.324109181100236e-05
+845.9000000001241 6.324086896584531e-05
+846.0000000001241 6.324077892202589e-05
+846.1000000001242 6.322659015225966e-05
+846.2000000001242 6.321244985859858e-05
+846.3000000001242 6.319830923599994e-05
+846.4000000001242 6.318411528561634e-05
+846.5000000001243 6.316981081993789e-05
+846.6000000001243 6.318103871517056e-05
+846.7000000001243 6.319226554769664e-05
+846.8000000001243 6.320349131803056e-05
+846.9000000001244 6.321471602661653e-05
+847.0000000001244 6.322593967374515e-05
+847.1000000001244 6.322369126859239e-05
+847.2000000001244 6.322144239091907e-05
+847.3000000001244 6.321919304128794e-05
+847.4000000001245 6.32169432204529e-05
+847.5000000001245 6.321469292887813e-05
+847.6000000001245 6.319959411272827e-05
+847.7000000001245 6.318449574026336e-05
+847.8000000001246 6.316939781039509e-05
+847.9000000001246 6.315430032205067e-05
+848.0000000001246 6.313920327419186e-05
+848.1000000001246 6.313803915160095e-05
+848.2000000001246 6.313687448178951e-05
+848.3000000001247 6.313570926340403e-05
+848.4000000001247 6.313454349517273e-05
+848.5000000001247 6.31333771757724e-05
+848.6000000001247 6.313238225906383e-05
+848.7000000001248 6.313149732211176e-05
+848.8000000001248 6.313066518149363e-05
+848.9000000001248 6.312983289515898e-05
+849.0000000001248 6.312895176158332e-05
+849.1000000001249 6.312625088565922e-05
+849.2000000001249 6.312341659893536e-05
+849.3000000001249 6.312041293346061e-05
+849.4000000001249 6.311720816444019e-05
+849.5000000001249 6.31137748095502e-05
+849.600000000125 6.311008963094252e-05
+849.700000000125 6.310613362837016e-05
+849.800000000125 6.310189204192627e-05
+849.900000000125 6.309735435116136e-05
+850.000000000125 6.309251427349927e-05
+850.1000000001251 6.308751571246447e-05
+850.2000000001251 6.308221475537825e-05
+850.3000000001251 6.307661782310204e-05
+850.4000000001251 6.307073556803529e-05
+850.5000000001252 6.306458287200078e-05
+850.6000000001252 6.305817884402416e-05
+850.7000000001252 6.305154681423242e-05
+850.8000000001252 6.304471433729117e-05
+850.9000000001253 6.30377131873669e-05
+851.0000000001253 6.303057935543221e-05
+851.1000000001253 6.301065203530591e-05
+851.2000000001253 6.299067953217271e-05
+851.3000000001254 6.297071047138195e-05
+851.4000000001254 6.295079764222828e-05
+851.5000000001254 6.293099799200748e-05
+851.6000000001254 6.293700365107576e-05
+851.7000000001254 6.294300657860498e-05
+851.8000000001255 6.29490067759507e-05
+851.9000000001255 6.295500424448353e-05
+852.0000000001255 6.29609989855071e-05
+852.1000000001255 6.29534227426951e-05
+852.2000000001256 6.294584673002053e-05
+852.3000000001256 6.293827094891627e-05
+852.4000000001256 6.293069540076423e-05
+852.5000000001256 6.292312008704207e-05
+852.6000000001256 6.292834573301245e-05
+852.7000000001257 6.293356853179067e-05
+852.8000000001257 6.293878848306546e-05
+852.9000000001257 6.294400558625273e-05
+853.0000000001257 6.294921984087911e-05
+853.1000000001258 6.294355287135927e-05
+853.2000000001258 6.293788571397678e-05
+853.3000000001258 6.293221836815277e-05
+853.4000000001258 6.292655083317208e-05
+853.5000000001259 6.292088310843069e-05
+853.6000000001259 6.290225617140667e-05
+853.7000000001259 6.288352130532051e-05
+853.8000000001259 6.286473555603282e-05
+853.9000000001259 6.28459516871102e-05
+854.000000000126 6.282721818539312e-05
+854.100000000126 6.281876479746319e-05
+854.200000000126 6.281044407172722e-05
+854.300000000126 6.280229178487892e-05
+854.400000000126 6.279433948306064e-05
+854.5000000001261 6.278661448486659e-05
+854.6000000001261 6.279191285594585e-05
+854.7000000001261 6.279747757164814e-05
+854.8000000001261 6.28033234600516e-05
+854.9000000001262 6.28094611419783e-05
+855.0000000001262 6.281589702951116e-05
+855.1000000001262 6.280923261726838e-05
+855.2000000001262 6.280286904733637e-05
+855.3000000001263 6.279679990444e-05
+855.4000000001263 6.279101456487264e-05
+855.5000000001263 6.278549819796699e-05
+855.6000000001263 6.278023176496619e-05
+855.7000000001264 6.277519202354365e-05
+855.8000000001264 6.277035153151888e-05
+855.9000000001264 6.276567864556876e-05
+856.0000000001264 6.276113752253891e-05
+856.1000000001264 6.275929299199258e-05
+856.2000000001265 6.275749566995614e-05
+856.3000000001265 6.275569712074254e-05
+856.4000000001265 6.275384470601003e-05
+856.5000000001265 6.27518815852125e-05
+856.6000000001266 6.274974671706206e-05
+856.7000000001266 6.274761107458053e-05
+856.8000000001266 6.274547465829967e-05
+856.9000000001266 6.27433374688124e-05
+857.0000000001266 6.274119950676762e-05
+857.1000000001267 6.273519863106011e-05
+857.2000000001267 6.272919733674246e-05
+857.3000000001267 6.272319562447569e-05
+857.4000000001267 6.271719349484722e-05
+857.5000000001268 6.271119094858372e-05
+857.6000000001268 6.271793294593785e-05
+857.7000000001268 6.272467208554715e-05
+857.8000000001268 6.273140836576009e-05
+857.9000000001269 6.273814178500468e-05
+858.0000000001269 6.274487234171164e-05
+858.1000000001269 6.274196793964948e-05
+858.2000000001269 6.273906266787973e-05
+858.3000000001269 6.27361565250877e-05
+858.400000000127 6.27332495098429e-05
+858.500000000127 6.27303416208612e-05
+858.600000000127 6.27276037094715e-05
+858.700000000127 6.272497473392684e-05
+858.800000000127 6.272239787138044e-05
+858.9000000001271 6.271982051921478e-05
+859.0000000001271 6.27171942933545e-05
+859.1000000001271 6.271352983238514e-05
+859.2000000001271 6.270973249228082e-05
+859.3000000001272 6.270576654746623e-05
+859.4000000001272 6.270160048982722e-05
+859.5000000001272 6.269720702783312e-05
+859.6000000001272 6.269256308800322e-05
+859.7000000001273 6.268764980781437e-05
+859.8000000001273 6.268245253815874e-05
+859.9000000001273 6.267696084180905e-05
+860.0000000001273 6.267116849217062e-05
+860.1000000001274 6.266374980377677e-05
+860.2000000001274 6.26560307606321e-05
+860.3000000001274 6.264801777523747e-05
+860.4000000001274 6.263972146185728e-05
+860.5000000001274 6.26311566332676e-05
+860.6000000001275 6.262234229798963e-05
+860.7000000001275 6.261330165321016e-05
+860.8000000001275 6.260406208776558e-05
+860.9000000001275 6.259465517598755e-05
+861.0000000001276 6.258511667415517e-05
+861.1000000001276 6.257643679886159e-05
+861.2000000001276 6.256770909236657e-05
+861.3000000001276 6.255898183643417e-05
+861.4000000001276 6.255030748484816e-05
+861.5000000001277 6.25417426609824e-05
+861.6000000001277 6.253334815269282e-05
+861.7000000001277 6.252495359150377e-05
+861.8000000001277 6.251655897884304e-05
+861.9000000001278 6.250816431589001e-05
+862.0000000001278 6.249976960405218e-05
+862.1000000001278 6.25045076114406e-05
+862.2000000001278 6.250924222153206e-05
+862.3000000001279 6.251397343556274e-05
+862.4000000001279 6.251870125485015e-05
+862.5000000001279 6.252342568071028e-05
+862.6000000001279 6.25154660952961e-05
+862.700000000128 6.250750634629649e-05
+862.800000000128 6.249954643304668e-05
+862.900000000128 6.249158635500494e-05
+863.000000000128 6.248362611161761e-05
+863.100000000128 6.247218700299665e-05
+863.2000000001281 6.246074860517157e-05
+863.3000000001281 6.244931091761727e-05
+863.4000000001281 6.243787393954317e-05
+863.5000000001281 6.242643767048087e-05
+863.6000000001281 6.241483206098075e-05
+863.7000000001282 6.240311792018085e-05
+863.8000000001282 6.239135182814594e-05
+863.9000000001282 6.237958613916858e-05
+864.0000000001282 6.23678689854266e-05
+864.1000000001283 6.235972281914275e-05
+864.2000000001283 6.23517077111174e-05
+864.3000000001283 6.234385917838681e-05
+864.4000000001283 6.23362085389793e-05
+864.5000000001284 6.232878291460017e-05
+864.6000000001284 6.232160523667642e-05
+864.7000000001284 6.231469424645187e-05
+864.8000000001284 6.230806449513623e-05
+864.9000000001284 6.230172634900862e-05
+865.0000000001285 6.229568599213124e-05
+865.1000000001285 6.228754983986672e-05
+865.2000000001285 6.227971184500383e-05
+865.3000000001285 6.227216562415956e-05
+865.4000000001286 6.226490062080478e-05
+865.5000000001286 6.225790210827775e-05
+865.6000000001286 6.225115118872182e-05
+865.7000000001286 6.224462479768971e-05
+865.8000000001286 6.223829570925353e-05
+865.9000000001287 6.223213253426417e-05
+866.0000000001287 6.222609972287626e-05
+866.1000000001287 6.221896544342324e-05
+866.2000000001287 6.221187799045721e-05
+866.3000000001288 6.220478934158397e-05
+866.4000000001288 6.219764732512155e-05
+866.5000000001288 6.21903956226528e-05
+866.6000000001288 6.218297377218823e-05
+866.7000000001289 6.217555123146105e-05
+866.8000000001289 6.216812800107123e-05
+866.9000000001289 6.2160704081679e-05
+867.0000000001289 6.215327947400827e-05
+867.100000000129 6.214874708400381e-05
+867.200000000129 6.214421342687969e-05
+867.300000000129 6.213967850320552e-05
+867.400000000129 6.213514231341325e-05
+867.500000000129 6.213060485805634e-05
+867.6000000001291 6.21260661402997e-05
+867.7000000001291 6.212152615599561e-05
+867.8000000001291 6.211698490364425e-05
+867.9000000001291 6.211244238176062e-05
+868.0000000001291 6.210789858880636e-05
+868.1000000001292 6.210014294271796e-05
+868.2000000001292 6.209238645248843e-05
+868.3000000001292 6.208462911688548e-05
+868.4000000001292 6.207687093469256e-05
+868.5000000001293 6.206911190457883e-05
+868.6000000001293 6.206169010775111e-05
+868.7000000001293 6.205448468377489e-05
+868.8000000001293 6.204738315981603e-05
+868.9000000001294 6.204028144592127e-05
+869.0000000001294 6.203308382888389e-05
+869.1000000001294 6.202665238520577e-05
+869.2000000001294 6.201995851267581e-05
+869.3000000001294 6.201293158651372e-05
+869.4000000001295 6.200550933865346e-05
+869.5000000001295 6.199763785535318e-05
+869.6000000001295 6.200184545974596e-05
+869.7000000001295 6.20055174396127e-05
+869.8000000001296 6.200862458433447e-05
+869.9000000001296 6.201114600640315e-05
+870.0000000001296 6.201306914523379e-05
+870.1000000001296 6.200182440623648e-05
+870.2000000001296 6.198998580538964e-05
+870.3000000001297 6.197756612897763e-05
+870.4000000001297 6.196458647932423e-05
+870.5000000001297 6.195107626605978e-05
+870.6000000001297 6.193707319922588e-05
+870.7000000001298 6.192262326911128e-05
+870.8000000001298 6.1907780745568e-05
+870.9000000001298 6.189260816466718e-05
+871.0000000001298 6.187717631768551e-05
+871.1000000001299 6.185987638747417e-05
+871.2000000001299 6.184248463993073e-05
+871.3000000001299 6.182509656695978e-05
+871.4000000001299 6.180781586323292e-05
+871.50000000013 6.179075441652495e-05
+871.60000000013 6.177403484778924e-05
+871.70000000013 6.17573194394855e-05
+871.80000000013 6.174060734266116e-05
+871.90000000013 6.172389777175599e-05
+872.0000000001301 6.170719000458967e-05
+872.1000000001301 6.168960224726077e-05
+872.2000000001301 6.167201504091848e-05
+872.3000000001301 6.165442785353213e-05
+872.4000000001301 6.163684021617369e-05
+872.5000000001302 6.16192517230016e-05
+872.6000000001302 6.160165948934877e-05
+872.7000000001302 6.15840641495035e-05
+872.8000000001302 6.1566466333792e-05
+872.9000000001303 6.15488666721849e-05
+873.0000000001303 6.153126579385046e-05
+873.1000000001303 6.15152218347361e-05
+873.2000000001303 6.149917706053895e-05
+873.3000000001304 6.148313209901161e-05
+873.4000000001304 6.146708757743262e-05
+873.5000000001304 6.145104412247913e-05
+873.6000000001304 6.143475109272318e-05
+873.7000000001304 6.141829900000951e-05
+873.8000000001305 6.140177209111404e-05
+873.9000000001305 6.13852483504166e-05
+874.0000000001305 6.13687995066345e-05
+874.1000000001305 6.13503783955469e-05
+874.2000000001306 6.133215808298991e-05
+874.3000000001306 6.131419155122622e-05
+874.4000000001306 6.129652555226022e-05
+874.5000000001306 6.127920061758494e-05
+874.6000000001306 6.126225106713365e-05
+874.7000000001307 6.124570152473563e-05
+874.8000000001307 6.122957288992679e-05
+874.9000000001307 6.121387981626997e-05
+875.0000000001307 6.119863071915206e-05
+875.1000000001308 6.118556335096899e-05
+875.2000000001308 6.117293734601574e-05
+875.3000000001308 6.116074248731522e-05
+875.4000000001308 6.114896234626415e-05
+875.5000000001309 6.1137574287954e-05
+875.6000000001309 6.112654947598878e-05
+875.7000000001309 6.111585636349571e-05
+875.8000000001309 6.110545474752264e-05
+875.900000000131 6.109529829744322e-05
+876.000000000131 6.108533455916239e-05
+876.100000000131 6.107592925336002e-05
+876.200000000131 6.106659297801875e-05
+876.300000000131 6.105725493248579e-05
+876.4000000001311 6.104783820711881e-05
+876.5000000001311 6.103825978895053e-05
+876.6000000001311 6.102843056742868e-05
+876.7000000001311 6.101860034555767e-05
+876.8000000001311 6.100876912337271e-05
+876.9000000001312 6.099893690084525e-05
+877.0000000001312 6.098910367794303e-05
+877.1000000001312 6.097648139798165e-05
+877.2000000001312 6.0963858871429406e-05
+877.3000000001313 6.095123609837975e-05
+877.4000000001313 6.093861307886265e-05
+877.5000000001313 6.0925989812971546e-05
+877.6000000001313 6.0913366300736296e-05
+877.7000000001314 6.090074254218666e-05
+877.8000000001314 6.088811853735254e-05
+877.9000000001314 6.087549428632728e-05
+878.0000000001314 6.0862869789079026e-05
+878.1000000001314 6.085166317650432e-05
+878.2000000001315 6.0840455757721744e-05
+878.3000000001315 6.082924753279019e-05
+878.4000000001315 6.081803850164167e-05
+878.5000000001315 6.080682866439827e-05
+878.6000000001316 6.0795449661730366e-05
+878.7000000001316 6.0783961704666075e-05
+878.8000000001316 6.077242081457311e-05
+878.9000000001316 6.076087882647173e-05
+879.0000000001316 6.074938339257506e-05
+879.1000000001317 6.0737281905229715e-05
+879.2000000001317 6.0725309704865376e-05
+879.3000000001317 6.0713501915223e-05
+879.4000000001317 6.0701889492737116e-05
+879.5000000001318 6.0690499231302406e-05
+879.6000000001318 6.067935627582025e-05
+879.7000000001318 6.066847821190229e-05
+879.8000000001318 6.0657878538479154e-05
+879.9000000001319 6.064756667222572e-05
+880.0000000001319 6.063754795156339e-05
+880.1000000001319 6.062795291413553e-05
+880.2000000001319 6.061864943936951e-05
+880.300000000132 6.0609630654747265e-05
+880.400000000132 6.060088562332117e-05
+880.500000000132 6.0592399346793087e-05
+880.600000000132 6.058415276861861e-05
+880.700000000132 6.057612277640319e-05
+880.8000000001321 6.056828220456811e-05
+880.9000000001321 6.056059983706828e-05
+881.0000000001321 6.0553040409699486e-05
+881.1000000001321 6.054525890269893e-05
+881.2000000001321 6.0537517752849776e-05
+881.3000000001322 6.052976956713445e-05
+881.4000000001322 6.052196291640365e-05
+881.5000000001322 6.051404233827577e-05
+881.6000000001322 6.049368526376777e-05
+881.7000000001323 6.047332433687392e-05
+881.8000000001323 6.045296079470575e-05
+881.9000000001323 6.043259587260244e-05
+882.0000000001323 6.0412230804352725e-05
+882.1000000001324 6.0416408304051985e-05
+882.2000000001324 6.0420581212038886e-05
+882.3000000001324 6.042475075656516e-05
+882.4000000001324 6.042891816623354e-05
+882.5000000001324 6.0433084669727036e-05
+882.6000000001325 6.042501231417445e-05
+882.7000000001325 6.041694454114812e-05
+882.8000000001325 6.040887990195489e-05
+882.9000000001325 6.040081701047693e-05
+883.0000000001326 6.039275454280631e-05
+883.1000000001326 6.038394480110756e-05
+883.2000000001326 6.037513288924414e-05
+883.3000000001326 6.03663176702953e-05
+883.4000000001326 6.035749806922284e-05
+883.5000000001327 6.034867307338618e-05
+883.6000000001327 6.033975700311017e-05
+883.7000000001327 6.0330779268091346e-05
+883.8000000001327 6.032176723346554e-05
+883.9000000001328 6.0312746221261095e-05
+884.0000000001328 6.03037395119401e-05
+884.1000000001328 6.0294274202225076e-05
+884.2000000001328 6.0284863794629257e-05
+884.3000000001329 6.027552545411993e-05
+884.4000000001329 6.026627431096804e-05
+884.5000000001329 6.0257123462737195e-05
+884.6000000001329 6.024808397582436e-05
+884.700000000133 6.02391683254529e-05
+884.800000000133 6.023038453117441e-05
+884.900000000133 6.022173864771444e-05
+885.000000000133 6.021323476697892e-05
+885.100000000133 6.019353449265615e-05
+885.2000000001331 6.0173981270273304e-05
+885.3000000001331 6.0154573232791564e-05
+885.4000000001331 6.013530655944932e-05
+885.5000000001331 6.0116175479717425e-05
+885.6000000001332 6.009716979747019e-05
+885.7000000001332 6.007827388407772e-05
+885.8000000001332 6.0059474955285024e-05
+885.9000000001332 6.004075810871488e-05
+886.0000000001332 6.002210632693154e-05
+886.1000000001333 6.0012924033362434e-05
+886.2000000001333 6.000376420532553e-05
+886.3000000001333 5.999460350150513e-05
+886.4000000001333 5.998541646443393e-05
+886.5000000001334 5.9976175521982965e-05
+886.6000000001334 5.997902947315354e-05
+886.7000000001334 5.998188207533387e-05
+886.8000000001334 5.9984732717546624e-05
+886.9000000001334 5.9987580788576215e-05
+887.0000000001335 5.999042567733064e-05
+887.1000000001335 5.998192894556594e-05
+887.2000000001335 5.99734309710296e-05
+887.3000000001335 5.99649311430812e-05
+887.4000000001336 5.99564288513697e-05
+887.5000000001336 5.994792348581709e-05
+887.6000000001336 5.9927256343480816e-05
+887.7000000001336 5.990658836404644e-05
+887.8000000001337 5.98859189410233e-05
+887.9000000001337 5.9865247468855876e-05
+888.0000000001337 5.984457334293697e-05
+888.1000000001337 5.983586398360902e-05
+888.2000000001337 5.982714735306175e-05
+888.3000000001338 5.981842284490921e-05
+888.4000000001338 5.980968985332854e-05
+888.5000000001338 5.980094777296679e-05
+888.6000000001338 5.981704687605719e-05
+888.7000000001339 5.983349860816939e-05
+888.8000000001339 5.9850114065519885e-05
+888.9000000001339 5.986671827084748e-05
+889.0000000001339 5.9883150189083943e-05
+889.100000000134 5.9859449754514776e-05
+889.200000000134 5.9835309474682404e-05
+889.300000000134 5.981061138327163e-05
+889.400000000134 5.9785251817096104e-05
+889.500000000134 5.975914139127765e-05
+889.6000000001341 5.9744323498915965e-05
+889.7000000001341 5.9728608938842514e-05
+889.8000000001341 5.9711949438946264e-05
+889.9000000001341 5.969431081258907e-05
+890.0000000001342 5.967567294214587e-05
+890.1000000001342 5.964826757795479e-05
+890.2000000001342 5.961986876368843e-05
+890.3000000001342 5.959049885004526e-05
+890.4000000001342 5.9560194149730336e-05
+890.5000000001343 5.952900490074068e-05
+890.6000000001343 5.952116380485462e-05
+890.7000000001343 5.951256503520809e-05
+890.8000000001343 5.950329874565627e-05
+890.9000000001344 5.949346908300141e-05
+891.0000000001344 5.948319417223265e-05
+891.1000000001344 5.9448571335087995e-05
+891.2000000001344 5.941379933700645e-05
+891.3000000001344 5.937903814894409e-05
+891.4000000001345 5.9344461386114806e-05
+891.5000000001345 5.93102562730191e-05
+891.6000000001345 5.9276621166135875e-05
+891.7000000001345 5.9242991306906156e-05
+891.8000000001346 5.9209367304835644e-05
+891.9000000001346 5.9175749768055355e-05
+892.0000000001346 5.914213930342029e-05
+892.1000000001346 5.908892787024988e-05
+892.2000000001347 5.903574615654494e-05
+892.3000000001347 5.898259475629303e-05
+892.4000000001347 5.892947426149786e-05
+892.5000000001347 5.887638526180709e-05
+892.6000000001347 5.8775387572825456e-05
+892.7000000001348 5.8674469929475474e-05
+892.8000000001348 5.8573632891911536e-05
+892.9000000001348 5.8472877016251124e-05
+893.0000000001348 5.837220285482277e-05
+893.1000000001349 5.8312868905242116e-05
+893.2000000001349 5.82535704774413e-05
+893.3000000001349 5.819430814713775e-05
+893.4000000001349 5.813508248769943e-05
+893.500000000135 5.807589407039551e-05
+893.600000000135 5.80637622992097e-05
+893.700000000135 5.8051169837992815e-05
+893.800000000135 5.80383531757506e-05
+893.900000000135 5.802553106093539e-05
+894.0000000001351 5.8012904512532825e-05
+894.1000000001351 5.791222064234965e-05
+894.2000000001351 5.7812165753186826e-05
+894.3000000001351 5.7712884565406206e-05
+894.4000000001352 5.761450336382542e-05
+894.5000000001352 5.7517130156464286e-05
+894.6000000001352 5.734958359997569e-05
+894.7000000001352 5.7183269359199656e-05
+894.8000000001352 5.7018238136715806e-05
+894.9000000001353 5.6854522821063225e-05
+895.0000000001353 5.669213874088773e-05
+895.1000000001353 5.648886028862081e-05
+895.2000000001353 5.628688377508579e-05
+895.3000000001354 5.608617068814513e-05
+895.4000000001354 5.588666605871261e-05
+895.5000000001354 5.568829875884194e-05
+895.6000000001354 5.555021411042586e-05
+895.7000000001354 5.541306116724804e-05
+895.8000000001355 5.5276725377071496e-05
+895.9000000001355 5.5141076590870696e-05
+896.0000000001355 5.5005969261843996e-05
+896.1000000001355 5.4809999177355346e-05
+896.2000000001356 5.461425736855993e-05
+896.3000000001356 5.441855331757589e-05
+896.4000000001356 5.4222682839554625e-05
+896.5000000001356 5.402642838541096e-05
+896.6000000001357 5.3947894308929825e-05
+896.7000000001357 5.3869379042241484e-05
+896.8000000001357 5.379088203653012e-05
+896.9000000001357 5.371240274632542e-05
+897.0000000001357 5.363394063007492e-05
+897.1000000001358 5.375451360275073e-05
+897.2000000001358 5.387503738525273e-05
+897.3000000001358 5.399551140243888e-05
+897.4000000001358 5.411593507454462e-05
+897.5000000001359 5.4236307816943085e-05
+897.6000000001359 5.430937267746787e-05
+897.7000000001359 5.438240222803741e-05
+897.8000000001359 5.445539588856692e-05
+897.900000000136 5.452835307586394e-05
+898.000000000136 5.460127320267052e-05
+898.100000000136 5.414438321940515e-05
+898.200000000136 5.3687620345593493e-05
+898.300000000136 5.323098429128648e-05
+898.4000000001361 5.277447478534494e-05
+898.5000000001361 5.23180915746038e-05
+898.6000000001361 5.170906451331427e-05
+898.7000000001361 5.110055768192512e-05
+898.8000000001362 5.049237620628945e-05
+898.9000000001362 4.988434747476909e-05
+899.0000000001362 4.9276320308411245e-05
+899.1000000001362 4.9539186977088836e-05
+899.2000000001362 4.9801537850646765e-05
+899.3000000001363 5.006325283756535e-05
+899.4000000001363 5.032422305146094e-05
+899.5000000001363 5.058435116995372e-05
+899.6000000001363 5.096130181064459e-05
+899.7000000001364 5.133719215403358e-05
+899.8000000001364 5.171195372857825e-05
+899.9000000001364 5.208553070437871e-05
+900.0000000001364 5.245788040102097e-05
+900.1000000001364 5.230956361707271e-05
+900.2000000001365 5.216034059103048e-05
+900.3000000001365 5.201024035360808e-05
+900.4000000001365 5.185930567101654e-05
+900.5000000001365 5.170759283984188e-05
+900.6000000001366 5.173116347724008e-05
+900.7000000001366 5.175394141811965e-05
+900.8000000001366 5.177601701946104e-05
+900.9000000001366 5.179749465282339e-05
+901.0000000001367 5.181849272750372e-05
+901.1000000001367 5.192370425894779e-05
+901.2000000001367 5.202864196162688e-05
+901.3000000001367 5.2133466511401426e-05
+901.4000000001367 5.223835385776091e-05
+901.5000000001368 5.234349536441761e-05
+901.6000000001368 5.2297279004387665e-05
+901.7000000001368 5.225109158910192e-05
+901.8000000001368 5.220493238355232e-05
+901.9000000001369 5.2158800708402906e-05
+902.0000000001369 5.21126959390309e-05
+902.1000000001369 5.2016468568226176e-05
+902.2000000001369 5.192032011794671e-05
+902.300000000137 5.182425010183265e-05
+902.400000000137 5.1728258089119985e-05
+902.500000000137 5.163234370505681e-05
+902.600000000137 5.175734202935186e-05
+902.700000000137 5.188218974302601e-05
+902.8000000001371 5.2006886525035846e-05
+902.9000000001371 5.213143199829558e-05
+903.0000000001371 5.2255825729280674e-05
+903.1000000001371 5.263683017474096e-05
+903.2000000001372 5.301744783698262e-05
+903.3000000001372 5.339767806062834e-05
+903.4000000001372 5.3777520118121895e-05
+903.5000000001372 5.415697320723141e-05
+903.6000000001372 5.439709040445651e-05
+903.7000000001373 5.463685824805459e-05
+903.8000000001373 5.487632608086504e-05
+903.9000000001373 5.5115540498247955e-05
+904.0000000001373 5.535454526513529e-05
+904.1000000001374 5.5280992039674e-05
+904.2000000001374 5.520760721724116e-05
+904.3000000001374 5.513442295945968e-05
+904.4000000001374 5.506146762360772e-05
+904.5000000001374 5.4988765786963744e-05
+904.6000000001375 5.4904827827380736e-05
+904.7000000001375 5.482118597882294e-05
+904.8000000001375 5.473785165169075e-05
+904.9000000001375 5.465483246373823e-05
+905.0000000001376 5.4572132268662906e-05
+905.1000000001376 5.4546719406092345e-05
+905.2000000001376 5.452156990421595e-05
+905.3000000001376 5.449667729608832e-05
+905.4000000001377 5.447203141859928e-05
+905.5000000001377 5.4447618420110486e-05
+905.6000000001377 5.436613295761044e-05
+905.7000000001377 5.4284895263789464e-05
+905.8000000001377 5.420388082797167e-05
+905.9000000001378 5.4123061650894205e-05
+906.0000000001378 5.404240627053375e-05
+906.1000000001378 5.3743686166133526e-05
+906.2000000001378 5.3445255026709136e-05
+906.3000000001379 5.3147071153277644e-05
+906.4000000001379 5.284909022030259e-05
+906.5000000001379 5.255126537367398e-05
+906.6000000001379 5.2230734164667875e-05
+906.700000000138 5.1910474503347593e-05
+906.800000000138 5.159048637389462e-05
+906.900000000138 5.1270769760476384e-05
+907.000000000138 5.095132464774598e-05
+907.100000000138 5.082550481384241e-05
+907.2000000001381 5.069977960603984e-05
+907.3000000001381 5.057414902222124e-05
+907.4000000001381 5.044861306050563e-05
+907.5000000001381 5.0323171718930056e-05
+907.6000000001382 5.0265951428068194e-05
+907.7000000001382 5.020876302506137e-05
+907.8000000001382 5.015160650844481e-05
+907.9000000001382 5.009448187657419e-05
+908.0000000001382 5.003738912831702e-05
+908.1000000001383 5.005771243836226e-05
+908.2000000001383 5.007799281020006e-05
+908.3000000001383 5.0098230249674904e-05
+908.4000000001383 5.0118424762509484e-05
+908.5000000001384 5.013857635439063e-05
+908.6000000001384 5.013601764158696e-05
+908.7000000001384 5.013339474754759e-05
+908.8000000001384 5.013073038816146e-05
+908.9000000001384 5.012804559375241e-05
+909.0000000001385 5.012535970937008e-05
+909.1000000001385 5.0167979945330376e-05
+909.2000000001385 5.021058665446659e-05
+909.3000000001385 5.0253194310174973e-05
+909.4000000001386 5.02958157470306e-05
+909.5000000001386 5.0338462153531934e-05
+909.6000000001386 5.035865650260695e-05
+909.7000000001386 5.0378915285762266e-05
+909.8000000001387 5.039924455758696e-05
+909.9000000001387 5.0419648690261825e-05
+910.0000000001387 5.044013037000056e-05
+910.1000000001387 5.033756871940161e-05
+910.2000000001387 5.023520224360615e-05
+910.3000000001388 5.01330276864171e-05
+910.4000000001388 5.0031040135051745e-05
+910.5000000001388 4.992923303754818e-05
+910.6000000001388 5.00513916067565e-05
+910.7000000001389 5.017350444020734e-05
+910.8000000001389 5.029556122370197e-05
+910.9000000001389 5.041754984370581e-05
+911.0000000001389 5.053945636669326e-05
+911.100000000139 5.0583083371742236e-05
+911.200000000139 5.0626666263187836e-05
+911.300000000139 5.0670185530185576e-05
+911.400000000139 5.071361989306088e-05
+911.500000000139 5.075694629553377e-05
+911.6000000001391 5.0610794936608786e-05
+911.7000000001391 5.046475629148298e-05
+911.8000000001391 5.0318830370604926e-05
+911.9000000001391 5.017301718459509e-05
+912.0000000001392 5.0027316744559726e-05
+912.1000000001392 5.014907694904201e-05
+912.2000000001392 5.027070396896748e-05
+912.3000000001392 5.0392197786814245e-05
+912.4000000001392 5.0513558384944906e-05
+912.5000000001393 5.0634785744450004e-05
+912.6000000001393 5.033457722143573e-05
+912.7000000001393 5.003461896850245e-05
+912.8000000001393 4.973491101957635e-05
+912.9000000001394 4.9435453408414496e-05
+913.0000000001394 4.9136246168782636e-05
+913.1000000001394 4.8802602385512265e-05
+913.2000000001394 4.84692592009507e-05
+913.3000000001394 4.8136216637643054e-05
+913.4000000001395 4.7803474718191924e-05
+913.5000000001395 4.747103346668113e-05
+913.6000000001395 4.7712745928852675e-05
+913.7000000001395 4.795424115322645e-05
+913.8000000001396 4.819549791996701e-05
+913.9000000001396 4.843649619654119e-05
+914.0000000001396 4.8677217179754705e-05
+914.1000000001396 4.903696093987255e-05
+914.2000000001397 4.939624854984836e-05
+914.3000000001397 4.975506468040265e-05
+914.4000000001397 5.011339527767568e-05
+914.5000000001397 5.0471227623102426e-05
+914.6000000001397 5.033453433542135e-05
+914.7000000001398 5.019784948949782e-05
+914.8000000001398 5.0061168778863024e-05
+914.9000000001398 4.992448957744213e-05
+915.0000000001398 4.9787810915751665e-05
+915.1000000001399 4.922429427194912e-05
+915.2000000001399 4.866124637766819e-05
+915.3000000001399 4.80986740330478e-05
+915.4000000001399 4.753658544477228e-05
+915.50000000014 4.6974990137285334e-05
+915.60000000014 4.710175868889949e-05
+915.70000000014 4.722827875210563e-05
+915.80000000014 4.735455889401599e-05
+915.90000000014 4.7480609423682525e-05
+916.0000000001401 4.760644241481932e-05
+916.1000000001401 4.8124333305441605e-05
+916.2000000001401 4.8641600145147754e-05
+916.3000000001401 4.915826042206947e-05
+916.4000000001402 4.967433410195601e-05
+916.5000000001402 5.018984371425315e-05
+916.6000000001402 5.0194506960279245e-05
+916.7000000001402 5.019912935038367e-05
+916.8000000001402 5.0203710883859096e-05
+916.9000000001403 5.0208251560197814e-05
+917.0000000001403 5.0212751377762594e-05
+917.1000000001403 4.982611080840021e-05
+917.2000000001403 4.943988440356146e-05
+917.3000000001404 4.9054072252992274e-05
+917.4000000001404 4.866867444619285e-05
+917.5000000001404 4.8283691073049614e-05
+917.6000000001404 4.8115029914643905e-05
+917.7000000001404 4.7946532633688184e-05
+917.8000000001405 4.7778200043795414e-05
+917.9000000001405 4.761003299561045e-05
+918.0000000001405 4.7442032377314524e-05
+918.1000000001405 4.7707009330077186e-05
+918.2000000001406 4.7971672837378225e-05
+918.3000000001406 4.8236023970313395e-05
+918.4000000001406 4.8500063872225996e-05
+918.5000000001406 4.8763793760276034e-05
+918.6000000001407 4.903801889432023e-05
+918.7000000001407 4.9311964697905925e-05
+918.8000000001407 4.9585608450560084e-05
+918.9000000001407 4.985892858520208e-05
+919.0000000001407 5.01319047347898e-05
+919.1000000001408 5.0188617284015625e-05
+919.2000000001408 5.024517668626703e-05
+919.3000000001408 5.030156737839008e-05
+919.4000000001408 5.035777541938947e-05
+919.5000000001409 5.0413788499781784e-05
+919.6000000001409 5.038419692356329e-05
+919.7000000001409 5.035449293021515e-05
+919.8000000001409 5.0324671312288515e-05
+919.900000000141 5.029472856392065e-05
+920.000000000141 5.026466287660819e-05
+920.100000000141 5.0385778279165174e-05
+920.200000000141 5.050660327703064e-05
+920.300000000141 5.062714002975755e-05
+920.4000000001411 5.074739243332558e-05
+920.5000000001411 5.086736613982109e-05
+920.6000000001411 5.082786665818576e-05
+920.7000000001411 5.078828663306229e-05
+920.8000000001412 5.074863786766213e-05
+920.9000000001412 5.070893383300808e-05
+921.0000000001412 5.0669189661299726e-05
+921.1000000001412 5.050544902661807e-05
+921.2000000001412 5.034188479003693e-05
+921.3000000001413 5.017851693694312e-05
+921.4000000001413 5.001536687565859e-05
+921.5000000001413 4.9852457410877624e-05
+921.6000000001413 4.9805783126949385e-05
+921.7000000001414 4.975913217823231e-05
+921.8000000001414 4.971250559515739e-05
+921.9000000001414 4.9665904252918637e-05
+922.0000000001414 4.961932887202788e-05
+922.1000000001414 4.970098795991751e-05
+922.2000000001415 4.978249694871115e-05
+922.3000000001415 4.986385616461256e-05
+922.4000000001415 4.994506578317664e-05
+922.5000000001415 5.002612582732988e-05
+922.6000000001416 4.998140834229898e-05
+922.7000000001416 4.993671982011732e-05
+922.8000000001416 4.989205852903286e-05
+922.9000000001416 4.98474227939714e-05
+923.0000000001417 4.9802810996372944e-05
+923.1000000001417 4.972791063671989e-05
+923.2000000001417 4.965307111670352e-05
+923.3000000001417 4.957829097993217e-05
+923.4000000001417 4.950356882889387e-05
+923.5000000001418 4.9428903324697705e-05
+923.6000000001418 4.933376413900516e-05
+923.7000000001418 4.923887861272776e-05
+923.8000000001418 4.914415541816647e-05
+923.9000000001419 4.904951056222377e-05
+924.0000000001419 4.8954867321388286e-05
+924.1000000001419 4.8871482093201324e-05
+924.2000000001419 4.8787948549428774e-05
+924.300000000142 4.870421121108214e-05
+924.400000000142 4.862022156948548e-05
+924.500000000142 4.853593803143551e-05
+924.600000000142 4.849264494452488e-05
+924.700000000142 4.844894137972879e-05
+924.8000000001421 4.840480796162205e-05
+924.9000000001421 4.836023194500274e-05
+925.0000000001421 4.831520718763198e-05
+925.1000000001421 4.8340420581759e-05
+925.2000000001422 4.836508480598731e-05
+925.3000000001422 4.838921141307112e-05
+925.4000000001422 4.841281855672782e-05
+925.5000000001422 4.84359310080465e-05
+925.6000000001422 4.8438074948111166e-05
+925.7000000001423 4.8439819854513734e-05
+925.8000000001423 4.8441207687484987e-05
+925.9000000001423 4.84422868973037e-05
+926.0000000001423 4.844311242485241e-05
+926.1000000001424 4.842184364707984e-05
+926.2000000001424 4.8400484957123224e-05
+926.3000000001424 4.837911074995626e-05
+926.4000000001424 4.8357801769206295e-05
+926.5000000001424 4.83366450953025e-05
+926.6000000001425 4.8346234492609975e-05
+926.7000000001425 4.835575125627846e-05
+926.8000000001425 4.836519527771662e-05
+926.9000000001425 4.837456634942834e-05
+927.0000000001426 4.838386416403869e-05
+927.1000000001426 4.80893717926184e-05
+927.2000000001426 4.7795325170898914e-05
+927.3000000001426 4.7501723471741274e-05
+927.4000000001427 4.7208565787092415e-05
+927.5000000001427 4.691585113053298e-05
+927.6000000001427 4.6522772629496975e-05
+927.7000000001427 4.613031453950683e-05
+927.8000000001427 4.5738476359920444e-05
+927.9000000001428 4.53472576419891e-05
+928.0000000001428 4.4956657987787114e-05
+928.1000000001428 4.485595931328784e-05
+928.2000000001428 4.475538525022358e-05
+928.3000000001429 4.465493579649283e-05
+928.4000000001429 4.4554610995022427e-05
+928.5000000001429 4.4454410933098074e-05
+928.6000000001429 4.43046771250078e-05
+928.700000000143 4.415534706075563e-05
+928.800000000143 4.400631877436824e-05
+928.900000000143 4.3857498978187725e-05
+929.000000000143 4.3708802935507364e-05
+929.100000000143 4.3473427407455065e-05
+929.2000000001431 4.32381625564041e-05
+929.3000000001431 4.3002950287503445e-05
+929.4000000001431 4.276774099541177e-05
+929.5000000001431 4.253249336758957e-05
+929.6000000001432 4.211887054166407e-05
+929.7000000001432 4.170546814287873e-05
+929.8000000001432 4.129227573729803e-05
+929.9000000001432 4.087929063984984e-05
+930.0000000001432 4.046651756898806e-05
+930.1000000001433 4.009392585250681e-05
+930.2000000001433 3.972149125986846e-05
+930.3000000001433 3.934923735370697e-05
+930.4000000001433 3.897719380336783e-05
+930.5000000001434 3.860539607708399e-05
+930.6000000001434 3.8243700345605375e-05
+930.7000000001434 3.7882316925944954e-05
+930.8000000001434 3.752129551201328e-05
+930.9000000001435 3.716069046989022e-05
+931.0000000001435 3.6800560543265416e-05
+931.1000000001435 3.639927228947097e-05
+931.2000000001435 3.599872604003622e-05
+931.3000000001435 3.559899169091641e-05
+931.4000000001436 3.520014201080503e-05
+931.5000000001436 3.4802252323800475e-05
+931.6000000001436 3.4084940633931796e-05
+931.7000000001436 3.3369115797861566e-05
+931.8000000001437 3.265477727167855e-05
+931.9000000001437 3.194192439666685e-05
+932.0000000001437 3.123055640803229e-05
+932.1000000001437 3.0945491528109775e-05
+932.2000000001437 3.066099170500813e-05
+932.3000000001438 3.0377056696129187e-05
+932.4000000001438 3.009368618938644e-05
+932.5000000001438 2.9810879806887857e-05
+932.6000000001438 2.9836028190040285e-05
+932.7000000001439 2.9861071917336145e-05
+932.8000000001439 2.9886011096643703e-05
+932.9000000001439 2.9910845835640728e-05
+933.0000000001439 2.9935576241121467e-05
+933.100000000144 2.972082295635342e-05
+933.200000000144 2.9506495255188996e-05
+933.300000000144 2.9292592715337467e-05
+933.400000000144 2.9079114914895034e-05
+933.500000000144 2.8866061430748954e-05
+933.6000000001441 2.8159289793404147e-05
+933.7000000001441 2.745397226880578e-05
+933.8000000001441 2.675014969196571e-05
+933.9000000001441 2.604785634694827e-05
+934.0000000001442 2.5347120348200203e-05
+934.1000000001442 2.5072618051091276e-05
+934.2000000001442 2.479877169346122e-05
+934.3000000001442 2.4525599071862148e-05
+934.4000000001442 2.4253114558271218e-05
+934.5000000001443 2.39813292472287e-05
+934.6000000001443 2.4724794319688613e-05
+934.7000000001443 2.546671550836012e-05
+934.8000000001443 2.6207118401959036e-05
+934.9000000001444 2.6946026875800877e-05
+935.0000000001444 2.768346270882629e-05
+935.1000000001444 2.7890247275510908e-05
+935.2000000001444 2.8096794110150494e-05
+935.3000000001445 2.8303104001464524e-05
+935.4000000001445 2.8509174700977928e-05
+935.5000000001445 2.8715000816239144e-05
+935.6000000001445 2.8455613908799103e-05
+935.7000000001445 2.819682765698863e-05
+935.8000000001446 2.793861852399266e-05
+935.9000000001446 2.768096086446836e-05
+936.0000000001446 2.742382705200403e-05
+936.1000000001446 2.7498080563646998e-05
+936.2000000001447 2.757217164857348e-05
+936.3000000001447 2.764606771243685e-05
+936.4000000001447 2.7719732971224192e-05
+936.5000000001447 2.7793128413774995e-05
+936.6000000001447 2.7617569596021035e-05
+936.7000000001448 2.7442318990709135e-05
+936.8000000001448 2.7267376743332943e-05
+936.9000000001448 2.709274299204009e-05
+937.0000000001448 2.6918417869179687e-05
+937.1000000001449 2.7174029588699866e-05
+937.2000000001449 2.742905293645398e-05
+937.3000000001449 2.768348856065146e-05
+937.4000000001449 2.793733712000163e-05
+937.500000000145 2.8190599283268578e-05
+937.600000000145 2.8270118974163284e-05
+937.700000000145 2.834942046843628e-05
+937.800000000145 2.8428504212597424e-05
+937.900000000145 2.8507370656558713e-05
+938.0000000001451 2.8586020253407045e-05
+938.1000000001451 2.868278974456028e-05
+938.2000000001451 2.8779306146154963e-05
+938.3000000001451 2.887556994489993e-05
+938.4000000001452 2.8971581631446945e-05
+938.5000000001452 2.9067341702345037e-05
+938.6000000001452 2.9820726720670263e-05
+938.7000000001452 3.057217741977841e-05
+938.8000000001452 3.1321817261126924e-05
+938.9000000001453 3.206977259025588e-05
+939.0000000001453 3.281617130060918e-05
+939.1000000001453 3.3595176742137005e-05
+939.2000000001453 3.437271811835449e-05
+939.3000000001454 3.5148921706262755e-05
+939.4000000001454 3.5923910419388846e-05
+939.5000000001454 3.669780245873504e-05
+939.6000000001454 3.654308470422277e-05
+939.7000000001455 3.63894105840056e-05
+939.8000000001455 3.623681288476956e-05
+939.9000000001455 3.6085311601174975e-05
+940.0000000001455 3.5934914194503124e-05
+940.1000000001455 3.546999160054962e-05
+940.2000000001456 3.50066373750681e-05
+940.3000000001456 3.454480073924497e-05
+940.4000000001456 3.4084420505182786e-05
+940.5000000001456 3.3625425841462926e-05
+940.6000000001457 3.357448472489428e-05
+940.7000000001457 3.352418428913777e-05
+940.8000000001457 3.3474448993167426e-05
+940.9000000001457 3.342519246751879e-05
+941.0000000001457 3.337631759116985e-05
+941.1000000001458 3.359960813481827e-05
+941.2000000001458 3.3822675942668234e-05
+941.3000000001458 3.404539192929632e-05
+941.4000000001458 3.4267612010664114e-05
+941.5000000001459 3.448917674649386e-05
+941.6000000001459 3.44113703255256e-05
+941.7000000001459 3.4333638110118996e-05
+941.8000000001459 3.425597975120155e-05
+941.900000000146 3.417839490318396e-05
+942.000000000146 3.410088322208582e-05
+942.100000000146 3.3425974119536234e-05
+942.200000000146 3.275211103100207e-05
+942.300000000146 3.207929369349015e-05
+942.4000000001461 3.140752187194813e-05
+942.5000000001461 3.07367953597793e-05
+942.6000000001461 3.023265299318722e-05
+942.7000000001461 2.972928659478745e-05
+942.8000000001462 2.9226695992148887e-05
+942.9000000001462 2.872488103316405e-05
+943.0000000001462 2.8223841588650993e-05
+943.1000000001462 2.857432255966966e-05
+943.2000000001462 2.8924199663877316e-05
+943.3000000001463 2.9273472422226446e-05
+943.4000000001463 2.9622140341467745e-05
+943.5000000001463 2.997020291214075e-05
+943.6000000001463 2.963470489227323e-05
+943.7000000001464 2.9299580426160113e-05
+943.8000000001464 2.8964900043601595e-05
+943.9000000001464 2.863072642480691e-05
+944.0000000001464 2.829711469118662e-05
+944.1000000001465 2.799940336707435e-05
+944.2000000001465 2.7702268341970846e-05
+944.3000000001465 2.7405744536490606e-05
+944.4000000001465 2.710986064405645e-05
+944.5000000001465 2.6814639389228108e-05
+944.6000000001466 2.749755784490043e-05
+944.7000000001466 2.8179713604248367e-05
+944.8000000001466 2.88611458573735e-05
+944.9000000001466 2.9541890376521234e-05
+945.0000000001467 3.0221978932283974e-05
+945.1000000001467 3.0321126829249844e-05
+945.2000000001467 3.0420469247819855e-05
+945.3000000001467 3.052000242613089e-05
+945.4000000001467 3.0619717295041234e-05
+945.5000000001468 3.071959939302942e-05
+945.6000000001468 3.030015154074665e-05
+945.7000000001468 2.9881467555189858e-05
+945.8000000001468 2.9463503490621204e-05
+945.9000000001469 2.904621242328692e-05
+946.0000000001469 2.8629544796958814e-05
+946.1000000001469 2.8763964730373623e-05
+946.2000000001469 2.8898233765462557e-05
+946.300000000147 2.9032295803480532e-05
+946.400000000147 2.916608881663725e-05
+946.500000000147 2.929954474337144e-05
+946.600000000147 2.9678000753961485e-05
+946.700000000147 3.0055919360680497e-05
+946.8000000001471 3.0433299823031065e-05
+946.9000000001471 3.0810141358413335e-05
+947.0000000001471 3.118644313931507e-05
+947.1000000001471 3.1114471841038464e-05
+947.2000000001472 3.104255539066832e-05
+947.3000000001472 3.097069349716093e-05
+947.4000000001472 3.089888584101621e-05
+947.5000000001472 3.082713207308538e-05
+947.6000000001472 3.0276322885309787e-05
+947.7000000001473 2.9726232299319683e-05
+947.8000000001473 2.9176861481912302e-05
+947.9000000001473 2.8628211591893147e-05
+948.0000000001473 2.8080283779818558e-05
+948.1000000001474 2.8286107071482526e-05
+948.2000000001474 2.849159366025763e-05
+948.3000000001474 2.8696743961658687e-05
+948.4000000001474 2.8901558438768643e-05
+948.5000000001475 2.910603760472994e-05
+948.6000000001475 2.9852693970775723e-05
+948.7000000001475 3.0598250277232736e-05
+948.8000000001475 3.134269356673355e-05
+948.9000000001475 3.2086010561315654e-05
+949.0000000001476 3.282818778250406e-05
+949.1000000001476 3.239922649637505e-05
+949.2000000001476 3.197075172177382e-05
+949.3000000001476 3.1542756123692735e-05
+949.4000000001477 3.111523385720892e-05
+949.5000000001477 3.0688180496668544e-05
+949.6000000001477 3.008753285647823e-05
+949.7000000001477 2.9487583967271614e-05
+949.8000000001477 2.888833505731269e-05
+949.9000000001478 2.828978855158964e-05
+950.0000000001478 2.7691947975104427e-05
+950.1000000001478 2.8094846358831508e-05
+950.2000000001478 2.849710390973488e-05
+950.3000000001479 2.8898718629572076e-05
+950.4000000001479 2.9299689571108722e-05
+950.5000000001479 2.9700016904456452e-05
+950.6000000001479 3.0429021650436072e-05
+950.700000000148 3.115693797593949e-05
+950.800000000148 3.188376740581278e-05
+950.900000000148 3.260951315997674e-05
+951.000000000148 3.333418027106148e-05
+951.100000000148 3.320059121491232e-05
+951.2000000001481 3.306715084831985e-05
+951.3000000001481 3.2933871593260494e-05
+951.4000000001481 3.280076678275953e-05
+951.5000000001481 3.2667850636727334e-05
+951.6000000001482 3.184064000006011e-05
+951.7000000001482 3.1014716565256084e-05
+951.8000000001482 3.0190081633680187e-05
+951.9000000001482 2.9366736472511624e-05
+952.0000000001482 2.8544682316303443e-05
+952.1000000001483 2.8318723654842744e-05
+952.2000000001483 2.8093075733910808e-05
+952.3000000001483 2.786773906774763e-05
+952.4000000001483 2.7642714161433604e-05
+952.5000000001484 2.7418001512622046e-05
+952.6000000001484 2.7833926681368677e-05
+952.7000000001484 2.8249146449537745e-05
+952.8000000001484 2.866366104792681e-05
+952.9000000001485 2.9077470717122808e-05
+953.0000000001485 2.9490575705102867e-05
+953.1000000001485 2.974269437445188e-05
+953.2000000001485 2.9994386027559132e-05
+953.3000000001485 3.0245650951589563e-05
+953.4000000001486 3.049648942099862e-05
+953.5000000001486 3.0746901695585054e-05
+953.6000000001486 3.079590431728784e-05
+953.7000000001486 3.084484227914229e-05
+953.8000000001487 3.0893687011040854e-05
+953.9000000001487 3.094241182982944e-05
+954.0000000001487 3.099099195514524e-05
+954.1000000001487 3.087110376347637e-05
+954.2000000001487 3.075128568703871e-05
+954.3000000001488 3.0631520322461466e-05
+954.4000000001488 3.051179258786987e-05
+954.5000000001488 3.0392089681818947e-05
+954.6000000001488 3.0416059999779184e-05
+954.7000000001489 3.043980950450266e-05
+954.8000000001489 3.0463330747244787e-05
+954.9000000001489 3.048661829268247e-05
+955.0000000001489 3.0509668726008344e-05
+955.100000000149 3.0373272835909083e-05
+955.200000000149 3.0236902435816246e-05
+955.300000000149 3.0100562657183723e-05
+955.400000000149 2.9964260567181472e-05
+955.500000000149 2.9828005122617597e-05
+955.6000000001491 2.968389265512869e-05
+955.7000000001491 2.95398662542837e-05
+955.8000000001491 2.9395940411287612e-05
+955.9000000001491 2.9252131367708453e-05
+956.0000000001492 2.91084570665045e-05
+956.1000000001492 2.912040699461465e-05
+956.2000000001492 2.9132255931388544e-05
+956.3000000001492 2.914402652225642e-05
+956.4000000001492 2.91557434453453e-05
+956.5000000001493 2.916743341438359e-05
+956.6000000001493 2.9218344432475824e-05
+956.7000000001493 2.9269101629235776e-05
+956.8000000001493 2.931970466196142e-05
+956.9000000001494 2.937015318585972e-05
+957.0000000001494 2.9420446855395066e-05
+957.1000000001494 2.987728954074161e-05
+957.2000000001494 3.0333226848639038e-05
+957.3000000001495 3.078825799728451e-05
+957.4000000001495 3.12423821865341e-05
+957.5000000001495 3.169559859694998e-05
+957.6000000001495 3.171273883471003e-05
+957.7000000001495 3.172978124486725e-05
+957.8000000001496 3.174672643456795e-05
+957.9000000001496 3.1763575012268236e-05
+958.0000000001496 3.178032758687687e-05
+958.1000000001496 3.152937388056085e-05
+958.2000000001497 3.1278783140182756e-05
+958.3000000001497 3.1028556279487224e-05
+958.4000000001497 3.077869419172866e-05
+958.5000000001497 3.052919775010026e-05
+958.6000000001497 3.0303219260495476e-05
+958.7000000001498 3.007759400482988e-05
+958.8000000001498 2.985230768286947e-05
+958.9000000001498 2.9627347418079784e-05
+959.0000000001498 2.9402701717631e-05
+959.1000000001499 2.9230387425150195e-05
+959.2000000001499 2.9058298260784443e-05
+959.3000000001499 2.888642630838156e-05
+959.4000000001499 2.8714764824263e-05
+959.50000000015 2.8543308208619146e-05
+959.60000000015 2.8761439964760744e-05
+959.70000000015 2.897904999346217e-05
+959.80000000015 2.9196133698553384e-05
+959.90000000015 2.9412687335674984e-05
+960.0000000001501 2.9628708046845982e-05
+960.1000000001501 2.9834042115443124e-05
+960.2000000001501 3.0038818080467575e-05
+960.3000000001501 3.0243036116425712e-05
+960.4000000001502 3.0446697416673555e-05
+960.5000000001502 3.064980422511455e-05
+960.6000000001502 3.077676242122236e-05
+960.7000000001502 3.090333467768122e-05
+960.8000000001502 3.102952667244299e-05
+960.9000000001503 3.115534527184255e-05
+961.0000000001503 3.1280798551532366e-05
+961.1000000001503 3.140996627596656e-05
+961.2000000001503 3.153882002681616e-05
+961.3000000001504 3.166737148620862e-05
+961.4000000001504 3.179563363400948e-05
+961.5000000001504 3.192362076764776e-05
+961.6000000001504 3.173689809998011e-05
+961.7000000001505 3.155045144113883e-05
+961.8000000001505 3.1364280805735604e-05
+961.9000000001505 3.1178386181600585e-05
+962.0000000001505 3.099276753008785e-05
+962.1000000001505 3.067048938261498e-05
+962.2000000001506 3.034879673550691e-05
+962.3000000001506 3.0027689503724765e-05
+962.4000000001506 2.9707167586692528e-05
+962.5000000001506 2.9387230871278423e-05
+962.6000000001507 2.9601642888124897e-05
+962.7000000001507 2.981554360578607e-05
+962.8000000001507 3.002893335004675e-05
+962.9000000001507 3.024181249188852e-05
+963.0000000001507 3.04541814487528e-05
+963.1000000001508 3.066822737004159e-05
+963.2000000001508 3.088179458152868e-05
+963.3000000001508 3.109488354388811e-05
+963.4000000001508 3.130749476808612e-05
+963.5000000001509 3.151962881552522e-05
+963.6000000001509 3.140836451093303e-05
+963.7000000001509 3.129727504816905e-05
+963.8000000001509 3.118634580737392e-05
+963.900000000151 3.107556339105562e-05
+964.000000000151 3.0964915605203015e-05
+964.100000000151 3.093794260008389e-05
+964.200000000151 3.091091729369956e-05
+964.300000000151 3.088383056892648e-05
+964.4000000001511 3.08566743499125e-05
+964.5000000001511 3.0829441598225644e-05
+964.6000000001511 3.091107039894829e-05
+964.7000000001511 3.09923682963344e-05
+964.8000000001512 3.107333107598662e-05
+964.9000000001512 3.1153955538701744e-05
+965.0000000001512 3.123423951442974e-05
+965.1000000001512 3.1380412584253276e-05
+965.2000000001512 3.152610821635677e-05
+965.3000000001513 3.1671326905460305e-05
+965.4000000001513 3.181607025287623e-05
+965.5000000001513 3.196034098941852e-05
+965.6000000001513 3.1795309884751726e-05
+965.7000000001514 3.163050716657989e-05
+965.8000000001514 3.146594110224923e-05
+965.9000000001514 3.130162082430587e-05
+966.0000000001514 3.113755630385605e-05
+966.1000000001515 3.085626326808452e-05
+966.2000000001515 3.0575450305279235e-05
+966.3000000001515 3.02951299996388e-05
+966.4000000001515 3.0015315469966397e-05
+966.5000000001515 2.97360203272977e-05
+966.6000000001516 2.9833916031902493e-05
+966.7000000001516 2.9931544440146736e-05
+966.8000000001516 3.002890470742909e-05
+966.9000000001516 3.0125996010350236e-05
+967.0000000001517 3.0222817548385096e-05
+967.1000000001517 3.0671122111263096e-05
+967.2000000001517 3.1118385104429156e-05
+967.3000000001517 3.1564605600548595e-05
+967.4000000001517 3.200978267131405e-05
+967.5000000001518 3.245391538884778e-05
+967.6000000001518 3.2580550263466435e-05
+967.7000000001518 3.270682454325908e-05
+967.8000000001518 3.2832737630273736e-05
+967.9000000001519 3.29582889534895e-05
+968.0000000001519 3.3083477968582134e-05
+968.1000000001519 3.291041545770806e-05
+968.2000000001519 3.2737671730509814e-05
+968.300000000152 3.2565246574979385e-05
+968.400000000152 3.239313981785775e-05
+968.500000000152 3.2221351324456955e-05
+968.600000000152 3.227234621515783e-05
+968.700000000152 3.232314306570713e-05
+968.8000000001521 3.2373728599867976e-05
+968.9000000001521 3.242409054918223e-05
+969.0000000001521 3.2474217662339664e-05
+969.1000000001521 3.252743189243497e-05
+969.2000000001522 3.258040249096651e-05
+969.3000000001522 3.2633121233535916e-05
+969.4000000001522 3.268558094583903e-05
+969.5000000001522 3.273777551240378e-05
+969.6000000001522 3.263169649105952e-05
+969.7000000001523 3.2525703243755876e-05
+969.8000000001523 3.241979196759154e-05
+969.9000000001523 3.231396000366082e-05
+970.0000000001523 3.220820581933221e-05
+970.1000000001524 3.214514118495591e-05
+970.2000000001524 3.208205246761297e-05
+970.3000000001524 3.20189410982028e-05
+970.4000000001524 3.195580957435164e-05
+970.5000000001525 3.189266145005922e-05
+970.6000000001525 3.1938178156999087e-05
+970.7000000001525 3.1983440758783334e-05
+970.8000000001525 3.202845615769861e-05
+970.9000000001525 3.2073232311814394e-05
+971.0000000001526 3.211777824097645e-05
+971.1000000001526 3.200979466163271e-05
+971.2000000001526 3.1901968988146074e-05
+971.3000000001526 3.179431355111247e-05
+971.4000000001527 3.1686841516223845e-05
+971.5000000001527 3.1579566867908154e-05
+971.6000000001527 3.151276902695496e-05
+971.7000000001527 3.144604216757039e-05
+971.8000000001527 3.1379386484804486e-05
+971.9000000001528 3.1312802203682775e-05
+972.0000000001528 3.124628957923331e-05
+972.1000000001528 3.119203727814966e-05
+972.2000000001528 3.1137825339707904e-05
+972.3000000001529 3.108365411078855e-05
+972.4000000001529 3.102952396738684e-05
+972.5000000001529 3.097543531406809e-05
+972.6000000001529 3.0855147394080626e-05
+972.700000000153 3.0735073042121e-05
+972.800000000153 3.0615211708236104e-05
+972.900000000153 3.049556281953096e-05
+973.000000000153 3.037612578081979e-05
+973.100000000153 3.028578639002972e-05
+973.2000000001531 3.0195572372524276e-05
+973.3000000001531 3.0105483102793457e-05
+973.4000000001531 3.0015517932625732e-05
+973.5000000001531 2.992567619172313e-05
+973.6000000001532 2.9868657708832373e-05
+973.7000000001532 2.9811682800793702e-05
+973.8000000001532 2.975475168198089e-05
+973.9000000001532 2.96978645955544e-05
+974.0000000001532 2.964102181281457e-05
+974.1000000001533 2.9546622081321302e-05
+974.2000000001533 2.945235651158311e-05
+974.3000000001533 2.935822549442851e-05
+974.4000000001533 2.9264229446036724e-05
+974.5000000001534 2.9170368807407947e-05
+974.6000000001534 2.907664284282555e-05
+974.7000000001534 2.8983050826496078e-05
+974.8000000001534 2.888959320671001e-05
+974.9000000001535 2.8796270397255297e-05
+975.0000000001535 2.8703082778167567e-05
+975.1000000001535 2.8690696002154474e-05
+975.2000000001535 2.8678241903891092e-05
+975.3000000001535 2.8665720730774565e-05
+975.4000000001536 2.865313270055563e-05
+975.5000000001536 2.8640478001352967e-05
+975.6000000001536 2.8576740653022785e-05
+975.7000000001536 2.8513074805059123e-05
+975.8000000001537 2.8449479754304854e-05
+975.9000000001537 2.8385954832711517e-05
+976.0000000001537 2.8322499407102282e-05
+976.1000000001537 2.834822996542518e-05
+976.2000000001538 2.8373792756035768e-05
+976.3000000001538 2.8399187247771694e-05
+976.4000000001538 2.8424412936538663e-05
+976.5000000001538 2.8449469345837072e-05
+976.6000000001538 2.858762418210943e-05
+976.7000000001539 2.8725305546754324e-05
+976.8000000001539 2.8862513021743308e-05
+976.9000000001539 2.8999246211478636e-05
+977.0000000001539 2.9135504743057766e-05
+977.100000000154 2.9180254124783267e-05
+977.200000000154 2.9224787199291524e-05
+977.300000000154 2.9269103624836065e-05
+977.400000000154 2.931320308812054e-05
+977.500000000154 2.935708530419199e-05
+977.6000000001541 2.9257875949008787e-05
+977.7000000001541 2.9158811358840568e-05
+977.8000000001541 2.9059892411008813e-05
+977.9000000001541 2.8961120001565064e-05
+978.0000000001542 2.8862495044841348e-05
+978.1000000001542 2.8794027558960396e-05
+978.2000000001542 2.8725634849946657e-05
+978.3000000001542 2.8657317853480817e-05
+978.4000000001543 2.8589077525613577e-05
+978.5000000001543 2.8520914842478683e-05
+978.6000000001543 2.8477359100473687e-05
+978.7000000001543 2.8433815310178068e-05
+978.8000000001543 2.8390283568003274e-05
+978.9000000001544 2.8346763940926756e-05
+979.0000000001544 2.8303256466589095e-05
+979.1000000001544 2.82386324077049e-05
+979.2000000001544 2.8174083324689896e-05
+979.3000000001545 2.8109609152196588e-05
+979.4000000001545 2.8045209796766917e-05
+979.5000000001545 2.798088513741816e-05
+979.6000000001545 2.7983159646159685e-05
+979.7000000001545 2.7985317049902768e-05
+979.8000000001546 2.7987357564423184e-05
+979.9000000001546 2.7989281348551823e-05
+980.0000000001546 2.7991088504124673e-05
+980.1000000001546 2.7995596868882158e-05
+980.2000000001547 2.7999987489242934e-05
+980.3000000001547 2.8004260252186895e-05
+980.4000000001547 2.8008414987633453e-05
+980.5000000001547 2.8012451468634523e-05
+980.6000000001548 2.8123736998976097e-05
+980.7000000001548 2.823461631270156e-05
+980.8000000001548 2.8345088671756363e-05
+980.9000000001548 2.845515335627897e-05
+981.0000000001548 2.856480966485929e-05
+981.1000000001549 2.85753354229864e-05
+981.2000000001549 2.8585728985927695e-05
+981.3000000001549 2.8595989765165067e-05
+981.4000000001549 2.860611720055054e-05
+981.500000000155 2.8616110760110714e-05
+981.600000000155 2.854944329488251e-05
+981.700000000155 2.8482838933631544e-05
+981.800000000155 2.8416298122538592e-05
+981.900000000155 2.834982127517746e-05
+982.0000000001551 2.8283408772988457e-05
+982.1000000001551 2.8200737116670325e-05
+982.2000000001551 2.8118185684627644e-05
+982.3000000001551 2.8035754732153952e-05
+982.4000000001552 2.7953444483264334e-05
+982.5000000001552 2.787125513105921e-05
+982.6000000001552 2.7824011528927745e-05
+982.7000000001552 2.7776787726485413e-05
+982.8000000001553 2.7729583900424866e-05
+982.9000000001553 2.7682400254330422e-05
+983.0000000001553 2.763523701878238e-05
+983.1000000001553 2.7675773494935716e-05
+983.2000000001553 2.7716077449638415e-05
+983.3000000001554 2.77561492145136e-05
+983.4000000001554 2.779598915108325e-05
+983.5000000001554 2.783559765104456e-05
+983.6000000001554 2.7846455486323576e-05
+983.7000000001555 2.7857212185812677e-05
+983.8000000001555 2.7867842065538662e-05
+983.9000000001555 2.7878321246584923e-05
+984.0000000001555 2.788862765950213e-05
+984.1000000001555 2.7822230221861834e-05
+984.2000000001556 2.7755841056212167e-05
+984.3000000001556 2.7689444209583046e-05
+984.4000000001556 2.7623025713556392e-05
+984.5000000001556 2.7556573561878752e-05
+984.6000000001557 2.748443983258525e-05
+984.7000000001557 2.741227383411869e-05
+984.8000000001557 2.734006991102142e-05
+984.9000000001557 2.7267824363164386e-05
+985.0000000001558 2.7195535421125543e-05
+985.1000000001558 2.718854237624473e-05
+985.2000000001558 2.7181316705366416e-05
+985.3000000001558 2.7173861331705885e-05
+985.4000000001558 2.7166181059115492e-05
+985.5000000001559 2.715828256933595e-05
+985.6000000001559 2.716684235971123e-05
+985.7000000001559 2.7175148842546554e-05
+985.8000000001559 2.7183214446248276e-05
+985.900000000156 2.7191053416880254e-05
+986.000000000156 2.7198681819701084e-05
+986.100000000156 2.7166712601031254e-05
+986.200000000156 2.713469427228094e-05
+986.300000000156 2.7102648358883836e-05
+986.4000000001561 2.7070598076550473e-05
+986.5000000001561 2.7038568320805243e-05
+986.6000000001561 2.6984706916829325e-05
+986.7000000001561 2.6930890175387444e-05
+986.8000000001562 2.6877117698810798e-05
+986.9000000001562 2.682338911969801e-05
+987.0000000001562 2.6769704100611512e-05
+987.1000000001562 2.6717410765246783e-05
+987.2000000001563 2.6665153019171135e-05
+987.3000000001563 2.661293062132031e-05
+987.4000000001563 2.6560743359473094e-05
+987.5000000001563 2.6508591049935016e-05
+987.6000000001563 2.647801241851717e-05
+987.7000000001564 2.6447398950071684e-05
+987.8000000001564 2.6416750474278227e-05
+987.9000000001564 2.6386066794717955e-05
+988.0000000001564 2.6355347689215324e-05
+988.1000000001565 2.6336611045767146e-05
+988.2000000001565 2.631780494738773e-05
+988.3000000001565 2.629892908701267e-05
+988.4000000001565 2.6279983131766152e-05
+988.5000000001565 2.626096672305828e-05
+988.6000000001566 2.622063387384858e-05
+988.7000000001566 2.6180275124937243e-05
+988.8000000001566 2.6139902880303757e-05
+988.9000000001566 2.6099528618550217e-05
+989.0000000001567 2.605916289921659e-05
+989.1000000001567 2.600989213095547e-05
+989.2000000001567 2.5960675676933243e-05
+989.3000000001567 2.591152133579406e-05
+989.4000000001568 2.5862436004002864e-05
+989.5000000001568 2.5813425683772474e-05
+989.6000000001568 2.5759278950358335e-05
+989.7000000001568 2.5705231318536698e-05
+989.8000000001568 2.5651285270731905e-05
+989.9000000001569 2.559744238044019e-05
+990.0000000001569 2.5543703321536325e-05
+990.1000000001569 2.550712664890985e-05
+990.2000000001569 2.5470597745327744e-05
+990.300000000157 2.543411477021692e-05
+990.400000000157 2.5397675012987743e-05
+990.500000000157 2.5361274899394162e-05
+990.600000000157 2.5330040652132962e-05
+990.700000000157 2.529882097942517e-05
+990.8000000001571 2.526761019689198e-05
+990.9000000001571 2.523640179926439e-05
+991.0000000001571 2.5205188465894034e-05
+991.1000000001571 2.516690023035868e-05
+991.2000000001572 2.512861332809579e-05
+991.3000000001572 2.5090318021689097e-05
+991.4000000001572 2.5052003791293227e-05
+991.5000000001572 2.5013659341128925e-05
+991.6000000001573 2.4980323217216753e-05
+991.7000000001573 2.494696345066078e-05
+991.8000000001573 2.4913580036858886e-05
+991.9000000001573 2.488017297131281e-05
+992.0000000001573 2.4846742249375894e-05
+992.1000000001574 2.4800955561579434e-05
+992.2000000001574 2.4755187168041885e-05
+992.3000000001574 2.4709437067836862e-05
+992.4000000001574 2.4663705260114917e-05
+992.5000000001575 2.461799174394939e-05
+992.6000000001575 2.4572296518439215e-05
+992.7000000001575 2.4526619582734143e-05
+992.8000000001575 2.4480960935932615e-05
+992.9000000001575 2.443532057715837e-05
+993.0000000001576 2.438969850549717e-05
+993.1000000001576 2.43523902087566e-05
+993.2000000001576 2.4315069593566146e-05
+993.3000000001576 2.427773666277145e-05
+993.4000000001577 2.4240391419243404e-05
+993.5000000001577 2.4203033865885602e-05
+993.6000000001577 2.4170516937703232e-05
+993.7000000001577 2.4137949540377915e-05
+993.8000000001578 2.410534269829504e-05
+993.9000000001578 2.4072706568174706e-05
+994.0000000001578 2.4040050444272234e-05
+994.1000000001578 2.4001282898797764e-05
+994.2000000001578 2.396253579165664e-05
+994.3000000001579 2.392381583207949e-05
+994.4000000001579 2.388512888270521e-05
+994.5000000001579 2.3846479966031595e-05
+994.6000000001579 2.3807872288019384e-05
+994.700000000158 2.376930956594619e-05
+994.800000000158 2.3730794670202307e-05
+994.900000000158 2.3692329631037038e-05
+995.000000000158 2.365391564519128e-05
+995.100000000158 2.361454357942678e-05
+995.2000000001581 2.357522588727727e-05
+995.3000000001581 2.353596129817188e-05
+995.4000000001581 2.3496747735181884e-05
+995.5000000001581 2.3457582321745917e-05
+995.6000000001582 2.341846332347621e-05
+995.7000000001582 2.3379385585239093e-05
+995.8000000001582 2.3340343224610527e-05
+995.9000000001582 2.330132963838993e-05
+996.0000000001583 2.326233750894088e-05
+996.1000000001583 2.3221664009968246e-05
+996.2000000001583 2.3181003369367008e-05
+996.3000000001583 2.3140346164740084e-05
+996.4000000001583 2.3099682287680618e-05
+996.5000000001584 2.305900095026767e-05
+996.6000000001584 2.301828879020857e-05
+996.7000000001584 2.2977577667147387e-05
+996.8000000001584 2.2936867912245625e-05
+996.9000000001585 2.2896159831223583e-05
+997.0000000001585 2.28554537043363e-05
+997.1000000001585 2.2817769657524933e-05
+997.2000000001585 2.27800751793625e-05
+997.3000000001585 2.274237047385068e-05
+997.4000000001586 2.2704655720593974e-05
+997.5000000001586 2.266693107501537e-05
+997.6000000001586 2.2629197602599458e-05
+997.7000000001586 2.2591456361807147e-05
+997.8000000001587 2.2553707495851088e-05
+997.9000000001587 2.2515951169826896e-05
+998.0000000001587 2.247818757049514e-05
+998.1000000001587 2.2439662797002385e-05
+998.2000000001588 2.2401136368846402e-05
+998.3000000001588 2.2362608537187387e-05
+998.4000000001588 2.232407957408803e-05
+998.5000000001588 2.2285549772269993e-05
+998.6000000001588 2.224704977733593e-05
+998.7000000001589 2.22085664151892e-05
+998.8000000001589 2.2170089155807577e-05
+998.9000000001589 2.213160826264993e-05
+999.0000000001589 2.2093114786431492e-05
+999.100000000159 2.2051578036323467e-05
+999.200000000159 2.201002390570226e-05
+999.300000000159 2.1968445782573633e-05
+999.400000000159 2.1926837820371636e-05
+999.500000000159 2.1885194931097276e-05
+999.6000000001591 2.1843512778549068e-05
+999.7000000001591 2.1801790259871935e-05
+999.8000000001591 2.1760025238330362e-05
+999.9000000001591 2.1718216347201013e-05
+1000.0000000001592 2.167636298264158e-05
+1000.1000000001592 2.164394019008421e-05
+1000.2000000001592 2.1611443197949532e-05
+1000.3000000001592 2.1578873576151408e-05
+1000.4000000001593 2.1546233632270587e-05
+1000.5000000001593 2.151352640606368e-05
+1000.6000000001593 2.1472095814584037e-05
+1000.7000000001593 2.143063492695522e-05
+1000.8000000001593 2.1389148640074273e-05
+1000.9000000001594 2.1347642531407695e-05
+1001.0000000001594 2.1306122852097208e-05
+1001.1000000001594 2.1259383062486713e-05
+1001.2000000001594 2.1212663267023823e-05
+1001.3000000001595 2.1165971695652636e-05
+1001.4000000001595 2.1119317215352116e-05
+1001.5000000001595 2.1072709322387818e-05
+1001.6000000001595 2.1026158134716854e-05
+1001.7000000001595 2.0979634865786634e-05
+1001.8000000001596 2.0933139519233922e-05
+1001.9000000001596 2.0886672098760516e-05
+1002.0000000001596 2.084023260806261e-05
+1002.1000000001596 2.0804204298314352e-05
+1002.2000000001597 2.0768165288415298e-05
+1002.3000000001597 2.0732115581785876e-05
+1002.4000000001597 2.0696055181846668e-05
+1002.5000000001597 2.0659984092117542e-05
+1002.6000000001598 2.0632250384066296e-05
+1002.7000000001598 2.0604473401794126e-05
+1002.8000000001598 2.057665315555149e-05
+1002.9000000001598 2.054878965558895e-05
+1003.0000000001598 2.0520882912140287e-05
+1003.1000000001599 2.0482437354565454e-05
+1003.2000000001599 2.044399019263308e-05
+1003.3000000001599 2.0405541426386237e-05
+1003.4000000001599 2.036709105591036e-05
+1003.50000000016 2.0328639081290813e-05
+1003.60000000016 2.029021316255429e-05
+1003.70000000016 2.025180328270735e-05
+1003.80000000016 2.0213400178344304e-05
+1003.90000000016 2.017499533312146e-05
+1004.0000000001601 2.013658097130353e-05
+1004.1000000001601 2.0099621500786255e-05
+1004.2000000001601 2.006263630141817e-05
+1004.3000000001601 2.0025619774780873e-05
+1004.4000000001602 1.9988567035974533e-05
+1004.5000000001602 1.9951473907483635e-05
+1004.6000000001602 1.991433773475912e-05
+1004.7000000001602 1.9877155438918362e-05
+1004.8000000001603 1.983992465217684e-05
+1004.9000000001603 1.9802643711571352e-05
+1005.0000000001603 1.976531165253785e-05
+1005.1000000001603 1.9724648078481264e-05
+1005.2000000001603 1.9683946466394483e-05
+1005.3000000001604 1.9643207930390403e-05
+1005.4000000001604 1.9602434256021695e-05
+1005.5000000001604 1.9561627893262697e-05
+1005.6000000001604 1.952079033712059e-05
+1005.7000000001605 1.947992592994326e-05
+1005.8000000001605 1.9439039613076736e-05
+1005.9000000001605 1.9398136920090865e-05
+1006.0000000001605 1.9357223970176953e-05
+1006.1000000001605 1.9320153251995222e-05
+1006.2000000001606 1.928307355761705e-05
+1006.3000000001606 1.9245992725317467e-05
+1006.4000000001606 1.9208919159230187e-05
+1006.5000000001606 1.91718618233584e-05
+1006.6000000001607 1.9138693538058125e-05
+1006.7000000001607 1.9105511147783602e-05
+1006.8000000001607 1.9072314377086585e-05
+1006.9000000001607 1.903910297159765e-05
+1007.0000000001608 1.9005876697946995e-05
+1007.1000000001608 1.8964849100053638e-05
+1007.2000000001608 1.8923836692577707e-05
+1007.3000000001608 1.8882839304583386e-05
+1007.4000000001608 1.8841856785728626e-05
+1007.5000000001609 1.880088900602343e-05
+1007.6000000001609 1.876372190701056e-05
+1007.7000000001609 1.872655278360456e-05
+1007.8000000001609 1.868938151756734e-05
+1007.900000000161 1.865220797277107e-05
+1008.000000000161 1.8615031995162454e-05
+1008.100000000161 1.857114853109476e-05
+1008.200000000161 1.8527290695792915e-05
+1008.300000000161 1.8483458276399623e-05
+1008.4000000001611 1.843965104341262e-05
+1008.5000000001611 1.8395868750749696e-05
+1008.6000000001611 1.835206107990294e-05
+1008.7000000001611 1.8308248033844336e-05
+1008.8000000001612 1.8264446710857415e-05
+1008.9000000001612 1.82206728425465e-05
+1009.0000000001612 1.8176940808450442e-05
+1009.1000000001612 1.8136732668693694e-05
+1009.2000000001613 1.8096578075959653e-05
+1009.3000000001613 1.8056487478917463e-05
+1009.4000000001613 1.8016470039897587e-05
+1009.5000000001613 1.797653364839444e-05
+1009.6000000001613 1.794394747957339e-05
+1009.7000000001614 1.791142259233866e-05
+1009.8000000001614 1.787896289705132e-05
+1009.9000000001614 1.7846571037529198e-05
+1010.0000000001614 1.7814248402358052e-05
+1010.1000000001615 1.778541862207117e-05
+1010.2000000001615 1.775664313012079e-05
+1010.3000000001615 1.7727919664226502e-05
+1010.4000000001615 1.7699244748754007e-05
+1010.5000000001615 1.7670613704612874e-05
+1010.6000000001616 1.7638463105141244e-05
+1010.7000000001616 1.7606359772693e-05
+1010.8000000001616 1.757429524764181e-05
+1010.9000000001616 1.7542259969073476e-05
+1011.0000000001617 1.7510243285433073e-05
+1011.1000000001617 1.7473839334096204e-05
+1011.2000000001617 1.7437450300764212e-05
+1011.3000000001617 1.740106232952899e-05
+1011.4000000001618 1.7364660531447706e-05
+1011.5000000001618 1.7328228996822153e-05
+1011.6000000001618 1.7288263138857686e-05
+1011.7000000001618 1.7248311540985722e-05
+1011.8000000001618 1.7208374454635802e-05
+1011.9000000001619 1.7168452111490497e-05
+1012.0000000001619 1.7128544723842025e-05
+1012.1000000001619 1.709343337129422e-05
+1012.2000000001619 1.7058317139421175e-05
+1012.300000000162 1.7023196182782624e-05
+1012.400000000162 1.698807063749643e-05
+1012.500000000162 1.695294062131727e-05
+1012.600000000162 1.6921221222225986e-05
+1012.700000000162 1.6889484759372228e-05
+1012.8000000001621 1.6857731337513526e-05
+1012.9000000001621 1.6825961077645404e-05
+1013.0000000001621 1.679417411686715e-05
+1013.1000000001621 1.6758815429626777e-05
+1013.2000000001622 1.672345524882123e-05
+1013.3000000001622 1.6688093760357226e-05
+1013.4000000001622 1.6652731165458378e-05
+1013.5000000001622 1.661736768039797e-05
+1013.6000000001623 1.6582026144928668e-05
+1013.7000000001623 1.6546696713748282e-05
+1013.8000000001623 1.6511371526399176e-05
+1013.9000000001623 1.6476043325716474e-05
+1014.0000000001623 1.6440705452058577e-05
+1014.1000000001624 1.6404938184921218e-05
+1014.2000000001624 1.636915453301936e-05
+1014.3000000001624 1.63333495968778e-05
+1014.4000000001624 1.629751905192311e-05
+1014.5000000001625 1.6261659142713158e-05
+1014.6000000001625 1.622576667711478e-05
+1014.7000000001625 1.6189840868134145e-05
+1014.8000000001625 1.615388016263418e-05
+1014.9000000001625 1.6117883581129156e-05
+1015.0000000001626 1.608185071169583e-05
+1015.1000000001626 1.6048380095050245e-05
+1015.2000000001626 1.6014865892130173e-05
+1015.3000000001626 1.5981309337184037e-05
+1015.4000000001627 1.5947712208077326e-05
+1015.5000000001627 1.591407682038264e-05
+1015.6000000001627 1.588040602160566e-05
+1015.7000000001627 1.5846702281525746e-05
+1015.8000000001628 1.5812969234316965e-05
+1015.9000000001628 1.577921101464216e-05
+1016.0000000001628 1.5745432251970476e-05
+1016.1000000001628 1.5710421748537797e-05
+1016.2000000001628 1.5675406780174108e-05
+1016.3000000001629 1.5640393426409207e-05
+1016.4000000001629 1.5605388236711386e-05
+1016.5000000001629 1.5570398224611478e-05
+1016.6000000001629 1.5535430861865706e-05
+1016.700000000163 1.5500464875037276e-05
+1016.800000000163 1.546550026421919e-05
+1016.900000000163 1.5430537029504443e-05
+1017.000000000163 1.5395575170969227e-05
+1017.100000000163 1.5360058192551318e-05
+1017.2000000001631 1.5324545050990894e-05
+1017.3000000001631 1.5289035746721645e-05
+1017.4000000001631 1.5253530280193067e-05
+1017.5000000001631 1.5218028651822977e-05
+1017.6000000001632 1.5182530862076474e-05
+1017.7000000001632 1.514703691135566e-05
+1017.8000000001632 1.5111546800109845e-05
+1017.9000000001632 1.5076060528788176e-05
+1018.0000000001633 1.5040578097812206e-05
+1018.1000000001633 1.5007358567481195e-05
+1018.2000000001633 1.497413579295707e-05
+1018.3000000001633 1.4940909774575678e-05
+1018.4000000001633 1.490768051267291e-05
+1018.5000000001634 1.4874448007579716e-05
+1018.6000000001634 1.4838220079750442e-05
+1018.7000000001634 1.480200231222075e-05
+1018.8000000001634 1.4765794707313669e-05
+1018.9000000001635 1.472959726732126e-05
+1019.0000000001635 1.4693409994524741e-05
+1019.1000000001635 1.466006395095935e-05
+1019.2000000001635 1.462671855331755e-05
+1019.3000000001635 1.4593373801675986e-05
+1019.4000000001636 1.4560029696096093e-05
+1019.5000000001636 1.4526686236644091e-05
+1019.6000000001636 1.4496268417000403e-05
+1019.7000000001636 1.4465837785617964e-05
+1019.8000000001637 1.443539434293881e-05
+1019.9000000001637 1.4404938089434959e-05
+1020.0000000001637 1.4374469025542815e-05
+1020.1000000001637 1.4340498525962986e-05
+1020.2000000001638 1.4306531426215013e-05
+1020.3000000001638 1.4272567726468872e-05
+1020.4000000001638 1.4238607426923977e-05
+1020.5000000001638 1.4204650527720704e-05
+1020.6000000001638 1.4170697029043643e-05
+1020.7000000001639 1.4136746931062597e-05
+1020.8000000001639 1.4102800233947383e-05
+1020.9000000001639 1.4068856937882343e-05
+1021.0000000001639 1.4034917043024947e-05
+1021.100000000164 1.4002391089413296e-05
+1021.200000000164 1.3969861844274821e-05
+1021.300000000164 1.393732930781255e-05
+1021.400000000164 1.3904793480171724e-05
+1021.500000000164 1.3872254361555277e-05
+1021.6000000001641 1.3839711952122894e-05
+1021.7000000001641 1.380716625206302e-05
+1021.8000000001641 1.377461726153543e-05
+1021.9000000001641 1.3742064980728502e-05
+1022.0000000001642 1.3709509409815827e-05
+1022.1000000001642 1.3676675344402764e-05
+1022.2000000001642 1.3643842747615396e-05
+1022.3000000001642 1.3611011619544926e-05
+1022.4000000001643 1.3578181960197865e-05
+1022.5000000001643 1.354535376964668e-05
+1022.6000000001643 1.3509802748145545e-05
+1022.7000000001643 1.3474266431517421e-05
+1022.8000000001643 1.343874481894649e-05
+1022.9000000001644 1.3403237909575062e-05
+1023.0000000001644 1.3367745702592661e-05
+1023.1000000001644 1.3335651908630743e-05
+1023.2000000001644 1.3303559615732258e-05
+1023.3000000001645 1.3271468823955796e-05
+1023.4000000001645 1.3239379533359811e-05
+1023.5000000001645 1.3207291743970903e-05
+1023.6000000001645 1.3172564441082944e-05
+1023.7000000001646 1.3137863008735699e-05
+1023.8000000001646 1.3103181415379365e-05
+1023.9000000001646 1.306851413126643e-05
+1024.0000000001646 1.303385612254119e-05
+1024.1000000001645 1.3005351155403302e-05
+1024.2000000001647 1.2976816940067922e-05
+1024.3000000001648 1.294824986978485e-05
+1024.4000000001647 1.2919646804353791e-05
+1024.5000000001646 1.2891005065398612e-05
+1024.6000000001648 1.2862322962514586e-05
+1024.700000000165 1.2833598534064083e-05
+1024.8000000001648 1.2804830280728567e-05
+1024.9000000001647 1.2776017160522841e-05
+1025.0000000001648 1.2747158583900659e-05
+1025.100000000165 1.270304729811134e-05
+1025.200000000165 1.2658911978552009e-05
+1025.3000000001648 1.2614753472212951e-05
+1025.400000000165 1.2570573053674822e-05
+1025.500000000165 1.2526372417435913e-05
+1025.600000000165 1.2482152639334803e-05
+1025.700000000165 1.2437916608687544e-05
+1025.800000000165 1.2393667581408258e-05
+1025.9000000001652 1.2349409172808403e-05
+1026.000000000165 1.2305145350412075e-05
+1026.100000000165 1.226143209353789e-05
+1026.2000000001651 1.2217718456290007e-05
+1026.3000000001653 1.2174009420246508e-05
+1026.4000000001652 1.2130310291431181e-05
+1026.500000000165 1.2086626693206866e-05
+1026.6000000001652 1.2042965554127176e-05
+1026.7000000001653 1.1999310139420239e-05
+1026.8000000001653 1.1955660267937404e-05
+1026.9000000001652 1.1912015773009906e-05
+1027.0000000001653 1.1868376502280718e-05
+1027.1000000001654 1.1827038475550363e-05
+1027.2000000001653 1.17856989545596e-05
+1027.3000000001653 1.1744357829862662e-05
+1027.4000000001654 1.1703015005338219e-05
+1027.5000000001655 1.1661670397980184e-05
+1027.6000000001654 1.1620323457986055e-05
+1027.7000000001653 1.1578973643309712e-05
+1027.8000000001655 1.1537620884156486e-05
+1027.9000000001656 1.149626510017096e-05
+1028.0000000001655 1.1454906200596763e-05
+1028.1000000001654 1.1412462028985617e-05
+1028.2000000001656 1.1370027587088548e-05
+1028.3000000001657 1.1327602752573615e-05
+1028.4000000001656 1.1285187393584871e-05
+1028.5000000001655 1.1242781369003091e-05
+1028.6000000001657 1.1200353979089915e-05
+1028.7000000001658 1.1157917553987693e-05
+1028.8000000001657 1.1115482588455125e-05
+1028.9000000001656 1.1073058688354016e-05
+1029.0000000001658 1.1030654584619633e-05
+1029.100000000166 1.0991084843048052e-05
+1029.2000000001658 1.0951539254889392e-05
+1029.3000000001657 1.0912024035557681e-05
+1029.4000000001658 1.08725445877174e-05
+1029.500000000166 1.083310551443928e-05
+1029.600000000166 1.0795886337905752e-05
+1029.7000000001658 1.0758697018860035e-05
+1029.800000000166 1.0721539673095264e-05
+1029.900000000166 1.0684415640740794e-05
+1030.000000000166 1.064732549919993e-05
+1030.100000000166 1.060770518688713e-05
+1030.200000000166 1.0568136627406872e-05
+1030.3000000001662 1.0528618152653547e-05
+1030.400000000166 1.0489147385343034e-05
+1030.500000000166 1.0449721252640941e-05
+1030.6000000001661 1.0410336860016649e-05
+1030.7000000001663 1.0370990060195044e-05
+1030.8000000001662 1.0331675651706323e-05
+1030.900000000166 1.0292387824945492e-05
+1031.0000000001662 1.0253120175101322e-05
+1031.1000000001663 1.0215382600845023e-05
+1031.2000000001663 1.0177655179445633e-05
+1031.3000000001662 1.0139929798255024e-05
+1031.4000000001663 1.0102197796085194e-05
+1031.5000000001664 1.0064449975743212e-05
+1031.6000000001663 1.0026675788186041e-05
+1031.7000000001663 9.988902951504616e-06
+1031.8000000001664 9.951131617174386e-06
+1031.9000000001665 9.913361924496083e-06
+1032.0000000001664 9.875594000821469e-06
+1032.1000000001663 9.839109631130254e-06
+1032.2000000001665 9.802617565804554e-06
+1032.3000000001666 9.766117896461407e-06
+1032.4000000001665 9.729610703569752e-06
+1032.5000000001664 9.693096056605595e-06
+1032.6000000001666 9.656574412906426e-06
+1032.7000000001667 9.62004622293322e-06
+1032.8000000001666 9.5835115444066e-06
+1032.9000000001665 9.54697044381071e-06
+1033.0000000001667 9.510422996137707e-06
+1033.1000000001668 9.474047545418402e-06
+1033.2000000001667 9.43767552776858e-06
+1033.3000000001666 9.401307043428262e-06
+1033.4000000001668 9.364942200501674e-06
+1033.500000000167 9.328581114675175e-06
+1033.6000000001668 9.292236578475989e-06
+1033.7000000001667 9.255903009712846e-06
+1033.8000000001668 9.21957597338811e-06
+1033.900000000167 9.183251402057195e-06
+1034.000000000167 9.146925589914999e-06
+1034.1000000001668 9.111924812961315e-06
+1034.200000000167 9.076911569043042e-06
+1034.300000000167 9.04188319593569e-06
+1034.400000000167 9.006837367939033e-06
+1034.500000000167 8.971772090120871e-06
+1034.600000000167 8.936685692698866e-06
+1034.7000000001672 8.90157784119429e-06
+1034.800000000167 8.866447784513009e-06
+1034.900000000167 8.831295092775804e-06
+1035.0000000001671 8.796119651288308e-06
+1035.1000000001673 8.762673255286509e-06
+1035.2000000001672 8.72920220799659e-06
+1035.300000000167 8.695707291378136e-06
+1035.4000000001672 8.662189578873717e-06
+1035.5000000001673 8.628650429556704e-06
+1035.6000000001673 8.595091482379047e-06
+1035.7000000001672 8.561514162013026e-06
+1035.8000000001673 8.527920512277715e-06
+1035.9000000001674 8.494312832938978e-06
+1036.0000000001673 8.460693674049323e-06
+1036.1000000001673 8.426636331242126e-06
+1036.2000000001674 8.392582407619868e-06
+1036.3000000001675 8.358535169339446e-06
+1036.4000000001674 8.324498109497093e-06
+1036.5000000001673 8.290474942446306e-06
+1036.6000000001675 8.256469598113772e-06
+1036.7000000001676 8.22247072801763e-06
+1036.8000000001675 8.188478331756105e-06
+1036.9000000001674 8.154492408952812e-06
+1037.0000000001676 8.12051295923409e-06
+1037.1000000001677 8.088249296658591e-06
+1037.2000000001676 8.05598386799721e-06
+1037.3000000001675 8.023716673394244e-06
+1037.4000000001677 7.991447712985741e-06
+1037.5000000001678 7.959176986932706e-06
+1037.6000000001677 7.92690449536311e-06
+1037.7000000001676 7.894630238437683e-06
+1037.8000000001678 7.862354216300643e-06
+1037.900000000168 7.83007642908018e-06
+1038.0000000001678 7.79779687694707e-06
+1038.1000000001677 7.766726758887035e-06
+1038.2000000001678 7.735656570479537e-06
+1038.300000000168 7.704586311803257e-06
+1038.400000000168 7.673515982912954e-06
+1038.5000000001678 7.64244558389508e-06
+1038.600000000168 7.611375114812257e-06
+1038.700000000168 7.580304575735184e-06
+1038.800000000168 7.549233966750171e-06
+1038.900000000168 7.518163287912065e-06
+1039.000000000168 7.4870925392981395e-06
+1039.1000000001682 7.455407741350623e-06
+1039.200000000168 7.423728032838796e-06
+1039.300000000168 7.3920534133066024e-06
+1039.4000000001681 7.360383882328686e-06
+1039.5000000001683 7.3287194394644465e-06
+1039.6000000001682 7.29706008426577e-06
+1039.700000000168 7.265405816307041e-06
+1039.8000000001682 7.233756635132537e-06
+1039.9000000001683 7.202112540309255e-06
+1040.0000000001683 7.170473531407509e-06
+1040.1000000001682 7.140872680526062e-06
+1040.2000000001683 7.111271474045463e-06
+1040.3000000001684 7.081669912177433e-06
+1040.4000000001683 7.052067995126284e-06
+1040.5000000001683 7.022465723088919e-06
+1040.6000000001684 6.9928630962840275e-06
+1040.7000000001685 6.963260114901399e-06
+1040.8000000001684 6.933656779159726e-06
+1040.9000000001683 6.904053089255895e-06
+1041.0000000001685 6.874449045400496e-06
+1041.1000000001686 6.84447705438998e-06
+1041.2000000001685 6.814507914685866e-06
+1041.3000000001684 6.784541626219082e-06
+1041.4000000001686 6.754578188920553e-06
+1041.5000000001687 6.724617602721323e-06
+1041.6000000001686 6.694659867559362e-06
+1041.7000000001685 6.6647049833585904e-06
+1041.8000000001687 6.634752950049901e-06
+1041.9000000001688 6.604803767571142e-06
+1042.0000000001687 6.574857435848805e-06
+1042.1000000001686 6.54630773957147e-06
+1042.2000000001688 6.5177609045133055e-06
+1042.300000000169 6.489216930615188e-06
+1042.4000000001688 6.460675817838123e-06
+1042.5000000001687 6.4321375661294375e-06
+1042.6000000001688 6.403602175429833e-06
+1042.700000000169 6.375069645686825e-06
+1042.800000000169 6.346539976854468e-06
+1042.9000000001688 6.318013168886547e-06
+1043.000000000169 6.2894892217176515e-06
+1043.100000000169 6.26121481509314e-06
+1043.200000000169 6.2329410368971284e-06
+1043.300000000169 6.204667887204614e-06
+1043.400000000169 6.176395366103444e-06
+1043.5000000001692 6.1481234736688074e-06
+1043.600000000169 6.1198605526926185e-06
+1043.700000000169 6.0916035218820465e-06
+1043.8000000001691 6.063349558587441e-06
+1043.9000000001693 6.035096094049185e-06
+1044.0000000001692 6.00684080862376e-06
+1044.100000000169 5.979544261123495e-06
+1044.2000000001692 5.952245984447164e-06
+1044.3000000001693 5.924944373697422e-06
+1044.4000000001693 5.897638053162153e-06
+1044.5000000001692 5.870325871706573e-06
+1044.6000000001693 5.841830300079793e-06
+1044.7000000001694 5.813338380271004e-06
+1044.8000000001693 5.784849530640745e-06
+1044.9000000001693 5.756363383467613e-06
+1045.0000000001694 5.727879780036815e-06
+1045.1000000001695 5.701098217887233e-06
+1045.2000000001694 5.674303230685805e-06
+1045.3000000001693 5.6474952495835165e-06
+1045.4000000001695 5.620674895762086e-06
+1045.5000000001696 5.593842975819996e-06
+1045.6000000001695 5.567000017289526e-06
+1045.7000000001694 5.540147353727976e-06
+1045.8000000001696 5.513286475765588e-06
+1045.9000000001697 5.48641902677372e-06
+1046.0000000001696 5.459546798449186e-06
+1046.1000000001695 5.434008536195175e-06
+1046.2000000001697 5.408470111294342e-06
+1046.3000000001698 5.382933733910775e-06
+1046.4000000001697 5.35740174738316e-06
+1046.5000000001696 5.331876624120963e-06
+1046.6000000001698 5.30636139981464e-06
+1046.70000000017 5.280848681256859e-06
+1046.8000000001698 5.255338386558877e-06
+1046.9000000001697 5.229830440554095e-06
+1047.0000000001698 5.204324774652991e-06
+1047.10000000017 5.179246669074374e-06
+1047.20000000017 5.1541733577480905e-06
+1047.3000000001698 5.129104790572611e-06
+1047.40000000017 5.104040923482075e-06
+1047.50000000017 5.078981718356134e-06
+1047.60000000017 5.0539269342436995e-06
+1047.70000000017 5.0288763348730455e-06
+1047.80000000017 5.003829890146433e-06
+1047.9000000001702 4.978787565569529e-06
+1048.00000000017 4.953749322368656e-06
+1048.10000000017 4.929238905329861e-06
+1048.2000000001701 4.904727204417159e-06
+1048.3000000001703 4.880214169377377e-06
+1048.4000000001702 4.855699746150632e-06
+1048.50000000017 4.831183877013528e-06
+1048.6000000001702 4.8056908608502134e-06
+1048.7000000001703 4.780202583692228e-06
+1048.8000000001703 4.754721352531563e-06
+1048.9000000001702 4.729249272452854e-06
+1049.0000000001703 4.70378825082646e-06
+1049.1000000001704 4.680428889436764e-06
+1049.2000000001703 4.657076556519202e-06
+1049.3000000001703 4.633732599555235e-06
+1049.4000000001704 4.610398187219861e-06
+1049.5000000001705 4.587074313196212e-06
+1049.6000000001704 4.563761799988364e-06
+1049.7000000001703 4.540460784275665e-06
+1049.8000000001705 4.517171613881108e-06
+1049.9000000001706 4.493894470813385e-06
+1050.0000000001705 4.470629375301944e-06
+1050.1000000001704 4.448024812746186e-06
+1050.2000000001706 4.425432389138791e-06
+1050.3000000001707 4.402851667944141e-06
+1050.4000000001706 4.380282066687064e-06
+1050.5000000001705 4.357722860844504e-06
+1050.6000000001707 4.335173187738708e-06
+1050.7000000001708 4.3126322964873415e-06
+1050.8000000001707 4.290099127906557e-06
+1050.9000000001706 4.267572499148526e-06
+1051.0000000001708 4.245051107491332e-06
+1051.100000000171 4.222586772828746e-06
+1051.2000000001708 4.2001241612810105e-06
+1051.3000000001707 4.177661633059851e-06
+1051.4000000001708 4.1551974434912425e-06
+1051.500000000171 4.132729746804492e-06
+1051.600000000171 4.110256599913572e-06
+1051.7000000001708 4.087783670535623e-06
+1051.800000000171 4.0653109587342505e-06
+1051.900000000171 4.0428384645857905e-06
+1052.000000000171 4.020366188150896e-06
+1052.100000000171 3.9985665319825455e-06
+1052.200000000171 3.9767747506903e-06
+1052.3000000001712 3.954990844701989e-06
+1052.400000000171 3.933214814433038e-06
+1052.500000000171 3.911446660316387e-06
+1052.6000000001711 3.890472336762628e-06
+1052.7000000001713 3.869497415485206e-06
+1052.8000000001712 3.848521896530224e-06
+1052.900000000171 3.827545779963769e-06
+1053.0000000001712 3.8065690658447447e-06
+1053.1000000001713 3.7861040738408664e-06
+1053.2000000001713 3.765640530837368e-06
+1053.3000000001712 3.7451784368902446e-06
+1053.4000000001713 3.724717792055459e-06
+1053.5000000001714 3.7042585963929017e-06
+1053.6000000001713 3.6838008499547177e-06
+1053.7000000001713 3.6633445527968217e-06
+1053.8000000001714 3.642889704978887e-06
+1053.9000000001715 3.622436306560573e-06
+1054.0000000001714 3.6019843575867566e-06
+1054.1000000001713 3.5816770866763423e-06
+1054.2000000001715 3.561377291019802e-06
+1054.3000000001716 3.54108497120296e-06
+1054.4000000001715 3.5208001278187276e-06
+1054.5000000001714 3.5005227614534897e-06
+1054.6000000001716 3.4809568073294034e-06
+1054.7000000001717 3.461390417787727e-06
+1054.8000000001716 3.4418235931500495e-06
+1054.9000000001715 3.4222563337449826e-06
+1055.0000000001717 3.402688639884473e-06
+1055.1000000001718 3.3837657113066203e-06
+1055.2000000001717 3.3648429843555828e-06
+1055.3000000001716 3.3459204592348642e-06
+1055.4000000001718 3.3269981361444264e-06
+1055.500000000172 3.308076015283144e-06
+1055.6000000001718 3.2884889494173357e-06
+1055.7000000001717 3.2689097390467994e-06
+1055.8000000001718 3.249338384254261e-06
+1055.900000000172 3.2297748851155186e-06
+1056.000000000172 3.210219241711648e-06
+1056.1000000001718 3.1919000963152646e-06
+1056.200000000172 3.1735824899435904e-06
+1056.300000000172 3.155266422561168e-06
+1056.400000000172 3.136951894129283e-06
+1056.500000000172 3.118638904611369e-06
+1056.600000000172 3.099699857328704e-06
+1056.7000000001722 3.0807697618145684e-06
+1056.800000000172 3.0618486170981357e-06
+1056.900000000172 3.0429364222085487e-06
+1057.0000000001721 3.024033176183805e-06
+1057.1000000001723 3.0066096098382036e-06
+1057.2000000001722 2.989185619956158e-06
+1057.300000000172 2.9717612065898426e-06
+1057.4000000001722 2.9543363697852922e-06
+1057.5000000001723 2.9369111095999502e-06
+1057.6000000001723 2.918893838359683e-06
+1057.7000000001722 2.9008832060983578e-06
+1057.8000000001723 2.882879213118629e-06
+1057.9000000001724 2.8648818597382488e-06
+1058.0000000001723 2.8468911462648347e-06
+1058.1000000001723 2.8300352096331234e-06
+1058.2000000001724 2.8131805691070414e-06
+1058.3000000001725 2.796327224692185e-06
+1058.4000000001724 2.77947517638244e-06
+1058.5000000001723 2.7626244241832434e-06
+1058.6000000001725 2.745774968088457e-06
+1058.7000000001726 2.7289268081035024e-06
+1058.8000000001725 2.712079944228019e-06
+1058.9000000001724 2.695234376458752e-06
+1059.0000000001726 2.6783901047968024e-06
+1059.1000000001727 2.6624219453175247e-06
+1059.2000000001726 2.646461000849021e-06
+1059.3000000001725 2.630507270825536e-06
+1059.4000000001727 2.6145607546730334e-06
+1059.5000000001728 2.598621451823932e-06
+1059.6000000001727 2.583213872135444e-06
+1059.7000000001726 2.567807248111668e-06
+1059.8000000001728 2.552401579766738e-06
+1059.900000000173 2.536996867106879e-06
+1060.0000000001728 2.521593110149082e-06
+1060.1000000001727 2.5062803407174554e-06
+1060.2000000001728 2.490967423869912e-06
+1060.300000000173 2.4756543596598463e-06
+1060.400000000173 2.4603411481380267e-06
+1060.5000000001728 2.445027789351751e-06
+1060.600000000173 2.4292209403567585e-06
+1060.700000000173 2.4134201629436008e-06
+1060.800000000173 2.397625457254531e-06
+1060.900000000173 2.381836823429168e-06
+1061.000000000173 2.366054261611215e-06
+1061.1000000001732 2.3512295935846833e-06
+1061.200000000173 2.3364075598789993e-06
+1061.300000000173 2.3215881602291395e-06
+1061.4000000001731 2.3067713943724877e-06
+1061.5000000001733 2.2919572620416774e-06
+1061.6000000001732 2.277145762971788e-06
+1061.700000000173 2.2623368969002045e-06
+1061.8000000001732 2.247530663561925e-06
+1061.9000000001733 2.232727062692024e-06
+1062.0000000001733 2.2179260940277954e-06
+1062.1000000001732 2.2043977622100986e-06
+1062.2000000001733 2.190873190992188e-06
+1062.3000000001734 2.177352381306963e-06
+1062.4000000001733 2.163835334085049e-06
+1062.5000000001733 2.1503220502578065e-06
+1062.6000000001734 2.1372473725394646e-06
+1062.7000000001735 2.1241711391308805e-06
+1062.8000000001734 2.111093350011551e-06
+1062.9000000001733 2.098014005165351e-06
+1063.0000000001735 2.0849331045735505e-06
+1063.1000000001736 2.071628054977874e-06
+1063.2000000001735 2.0583242891922898e-06
+1063.3000000001734 2.0450218071562093e-06
+1063.4000000001736 2.0317206088154473e-06
+1063.5000000001737 2.018420694108748e-06
+1063.6000000001736 2.0047141032514096e-06
+1063.7000000001735 1.991014206839892e-06
+1063.8000000001737 1.97732100402763e-06
+1063.9000000001738 1.963634493976482e-06
+1064.0000000001737 1.949954675849112e-06
+1064.1000000001736 1.9379406545249262e-06
+1064.2000000001738 1.9259292958485023e-06
+1064.300000000174 1.913920599461915e-06
+1064.4000000001738 1.9019145650112854e-06
+1064.5000000001737 1.8899111921387195e-06
+1064.6000000001738 1.8779104804922798e-06
+1064.700000000174 1.8659124297122246e-06
+1064.800000000174 1.8539170394447453e-06
+1064.9000000001738 1.8419243093359624e-06
+1065.000000000174 1.8299342390287306e-06
+1065.100000000174 1.8182763117596102e-06
+1065.200000000174 1.8066167575975639e-06
+1065.300000000174 1.7949555764856834e-06
+1065.400000000174 1.7832927683651616e-06
+1065.5000000001742 1.7716283331754068e-06
+1065.600000000174 1.75996227086139e-06
+1065.700000000174 1.7482945813624752e-06
+1065.8000000001741 1.7366252646198907e-06
+1065.9000000001743 1.7249543205749311e-06
+1066.0000000001742 1.7132817491728101e-06
+1066.100000000174 1.702827418006113e-06
+1066.2000000001742 1.6923736945373594e-06
+1066.3000000001744 1.6819205787811014e-06
+1066.4000000001743 1.6714680707501013e-06
+1066.5000000001742 1.6610161704570698e-06
+1066.6000000001743 1.6505648779147188e-06
+1066.7000000001744 1.640114193137512e-06
+1066.8000000001744 1.6296641161364664e-06
+1066.9000000001743 1.6192146469259746e-06
+1067.0000000001744 1.6087657855170353e-06
+1067.1000000001745 1.5983250235323838e-06
+1067.2000000001744 1.5878847720762117e-06
+1067.3000000001744 1.5774450311554785e-06
+1067.4000000001745 1.5670058007820954e-06
+1067.5000000001746 1.5565670809630562e-06
+1067.6000000001745 1.5461288717086243e-06
+1067.7000000001744 1.535691173025763e-06
+1067.8000000001746 1.525253984923073e-06
+1067.9000000001747 1.5148173074107774e-06
+1068.0000000001746 1.5043811405004295e-06
+1068.1000000001745 1.4956293165009158e-06
+1068.2000000001747 1.4868743334611972e-06
+1068.3000000001748 1.4781161917064965e-06
+1068.4000000001747 1.4693548915620246e-06
+1068.5000000001746 1.4605904333514202e-06
+1068.6000000001748 1.4518228174013764e-06
+1068.700000000175 1.4430520440355693e-06
+1068.8000000001748 1.434278113579198e-06
+1068.9000000001747 1.42550102635741e-06
+1069.0000000001749 1.4167207826946167e-06
+1069.100000000175 1.4083653143736376e-06
+1069.200000000175 1.4000101033621865e-06
+1069.3000000001748 1.3916551496744839e-06
+1069.400000000175 1.3833004533262208e-06
+1069.500000000175 1.3749460143364796e-06
+1069.600000000175 1.3668695952836624e-06
+1069.700000000175 1.3587900377154362e-06
+1069.800000000175 1.3507073418047542e-06
+1069.9000000001752 1.3426215077218142e-06
+1070.000000000175 1.3345325356410338e-06
+1070.100000000175 1.326429837156015e-06
+1070.2000000001751 1.318324130422912e-06
+1070.3000000001753 1.310215415685576e-06
+1070.4000000001752 1.3021036931892415e-06
+1070.500000000175 1.2939889631804482e-06
+1070.6000000001752 1.2858712259030205e-06
+1070.7000000001754 1.277750481602182e-06
+1070.8000000001753 1.2696267305231475e-06
+1070.9000000001752 1.2614999729097822e-06
+1071.0000000001753 1.253370209010535e-06
+1071.1000000001754 1.2463527224709845e-06
+1071.2000000001754 1.2393358440669755e-06
+1071.3000000001753 1.2323195737792013e-06
+1071.4000000001754 1.2253039115857814e-06
+1071.5000000001755 1.2182888574674254e-06
+1071.6000000001754 1.2112744114022976e-06
+1071.7000000001754 1.2042605733723104e-06
+1071.8000000001755 1.1972473433555866e-06
+1071.9000000001756 1.1902347213315443e-06
+1072.0000000001755 1.18322270728094e-06
+1072.1000000001754 1.1769710440486802e-06
+1072.2000000001756 1.1707192467599023e-06
+1072.3000000001757 1.1644673154367649e-06
+1072.4000000001756 1.1582152501038592e-06
+1072.5000000001755 1.1519630507849356e-06
+1072.6000000001757 1.1459428777295545e-06
+1072.7000000001758 1.1399200368047392e-06
+1072.8000000001757 1.1338945279563061e-06
+1072.9000000001756 1.1278663511229547e-06
+1073.0000000001758 1.121835506247976e-06
+1073.100000000176 1.1157146713566842e-06
+1073.2000000001758 1.1095921199454705e-06
+1073.3000000001757 1.1034678524716211e-06
+1073.4000000001759 1.097341869391199e-06
+1073.500000000176 1.0912141711575942e-06
+1073.600000000176 1.0848653719061652e-06
+1073.7000000001758 1.0785174258359797e-06
+1073.800000000176 1.0721703328839367e-06
+1073.900000000176 1.0658240929880967e-06
+1074.000000000176 1.0594787060867802e-06
+1074.100000000176 1.0532838291373759e-06
+1074.200000000176 1.0470954728159472e-06
+1074.3000000001762 1.0409136375447613e-06
+1074.400000000176 1.034738323741693e-06
+1074.500000000176 1.0285695318292566e-06
+1074.6000000001761 1.0232373066823374e-06
+1074.7000000001763 1.0179026144760941e-06
+1074.8000000001762 1.0125654550969243e-06
+1074.900000000176 1.0072258284290965e-06
+1075.0000000001762 1.0018837343606236e-06
+1075.1000000001764 9.96870843511694e-07
+1075.2000000001763 9.918517107726649e-07
+1075.3000000001762 9.868263371868982e-07
+1075.4000000001763 9.817947237956236e-07
+1075.5000000001764 9.767568716403705e-07
+1075.6000000001764 9.713204083448754e-07
+1075.7000000001763 9.658822595309502e-07
+1075.8000000001764 9.604424255268816e-07
+1075.9000000001765 9.550009066599385e-07
+1076.0000000001764 9.495577032550741e-07
+1076.1000000001764 9.439306438564749e-07
+1076.2000000001765 9.383040754860902e-07
+1076.3000000001766 9.326779981280981e-07
+1076.4000000001765 9.27052411771513e-07
+1076.5000000001764 9.214273163985538e-07
+1076.6000000001766 9.152482401255467e-07
+1076.7000000001767 9.090764650401675e-07
+1076.8000000001766 9.029119902351531e-07
+1076.9000000001765 8.967548148060798e-07
+1077.0000000001767 8.906049378489002e-07
+1077.1000000001768 8.851989343465127e-07
+1077.2000000001767 8.797988162562713e-07
+1077.3000000001766 8.744045836433173e-07
+1077.4000000001768 8.690162365764052e-07
+1077.500000000177 8.636337751239751e-07
+1077.6000000001768 8.591290575345461e-07
+1077.7000000001767 8.546203708924068e-07
+1077.8000000001769 8.501077151810349e-07
+1077.900000000177 8.455910903857177e-07
+1078.000000000177 8.41070496488218e-07
+1078.1000000001768 8.360315419501992e-07
+1078.200000000177 8.309856569227899e-07
+1078.300000000177 8.259328410866284e-07
+1078.400000000177 8.208730941215319e-07
+1078.500000000177 8.158064157076186e-07
+1078.600000000177 8.104065404620656e-07
+1078.7000000001772 8.050049210802531e-07
+1078.800000000177 7.996011806023284e-07
+1078.900000000177 7.941949785485722e-07
+1079.0000000001771 7.88786010014767e-07
+1079.1000000001773 7.838365272285397e-07
+1079.2000000001772 7.788870144598543e-07
+1079.300000000177 7.739372663003811e-07
+1079.4000000001772 7.689871088235599e-07
+1079.5000000001774 7.64036398755094e-07
+1079.6000000001773 7.584722082553832e-07
+1079.7000000001772 7.529152430777765e-07
+1079.8000000001773 7.473654595727227e-07
+1079.9000000001774 7.418228404504348e-07
+1080.0000000001774 7.362873938726261e-07
+1080.1000000001773 7.309318020842635e-07
+1080.2000000001774 7.255811131041975e-07
+1080.3000000001775 7.202354061279109e-07
+1080.4000000001774 7.148947822999644e-07
+1080.5000000001774 7.095593638453474e-07
+1080.6000000001775 7.048021866710709e-07
+1080.7000000001776 7.000425502214331e-07
+1080.8000000001775 6.952806340953307e-07
+1080.9000000001774 6.905166361850854e-07
+1081.0000000001776 6.857507718972196e-07
+1081.1000000001777 6.815676725509749e-07
+1081.2000000001776 6.773846925399073e-07
+1081.3000000001775 6.732020948446554e-07
+1081.4000000001777 6.690201578161424e-07
+1081.5000000001778 6.648391745005756e-07
+1081.6000000001777 6.610619387468986e-07
+1081.7000000001776 6.572799893690922e-07
+1081.8000000001778 6.534933034263063e-07
+1081.900000000178 6.497018591511927e-07
+1082.0000000001778 6.459056359353704e-07
+1082.1000000001777 6.419496651004743e-07
+1082.2000000001779 6.379908822091254e-07
+1082.300000000178 6.340292702077996e-07
+1082.400000000178 6.300648131441546e-07
+1082.5000000001778 6.260974961463545e-07
+1082.600000000178 6.213734906082884e-07
+1082.700000000178 6.16656850339627e-07
+1082.800000000178 6.119475799872584e-07
+1082.900000000178 6.072456846839824e-07
+1083.000000000178 6.025511700265084e-07
+1083.1000000001782 5.971966478506213e-07
+1083.200000000178 5.918503082013195e-07
+1083.300000000178 5.865121589118187e-07
+1083.4000000001781 5.811822081533868e-07
+1083.5000000001783 5.758604644118636e-07
+1083.6000000001782 5.71360227040527e-07
+1083.700000000178 5.668539062272072e-07
+1083.8000000001782 5.623417797007536e-07
+1083.9000000001784 5.578240985515187e-07
+1084.0000000001783 5.533010879438615e-07
+1084.1000000001782 5.501309447185599e-07
+1084.2000000001783 5.469577297246616e-07
+1084.3000000001784 5.437816007404957e-07
+1084.4000000001784 5.406026939944047e-07
+1084.5000000001783 5.3742112467454e-07
+1084.6000000001784 5.338046694246592e-07
+1084.7000000001785 5.301913390486177e-07
+1084.8000000001784 5.265811678027915e-07
+1084.9000000001784 5.229741702640265e-07
+1085.0000000001785 5.19370341950111e-07
+1085.1000000001786 5.146747928146843e-07
+1085.2000000001785 5.099892302597261e-07
+1085.3000000001784 5.053135881562512e-07
+1085.4000000001786 5.006477843295816e-07
+1085.5000000001787 4.959917213529253e-07
+1085.6000000001786 4.907442533651292e-07
+1085.7000000001785 4.855164456773332e-07
+1085.8000000001787 4.803081636486821e-07
+1085.9000000001788 4.75119261408217e-07
+1086.0000000001787 4.69949582686952e-07
+1086.1000000001786 4.663518484974441e-07
+1086.2000000001788 4.6275709846900643e-07
+1086.300000000179 4.5916515098409626e-07
+1086.4000000001788 4.5557581467054756e-07
+1086.5000000001787 4.5198888899380925e-07
+1086.6000000001789 4.4951522202509674e-07
+1086.700000000179 4.4702753853459634e-07
+1086.800000000179 4.4452583863766823e-07
+1086.9000000001788 4.420101224511739e-07
+1087.000000000179 4.3948039009047916e-07
+1087.100000000179 4.368188503451244e-07
+1087.200000000179 4.341450474159745e-07
+1087.300000000179 4.314589838647043e-07
+1087.400000000179 4.287606622518424e-07
+1087.5000000001792 4.260500851363497e-07
+1087.600000000179 4.2281402745461593e-07
+1087.700000000179 4.19574202463832e-07
+1087.8000000001791 4.1633061099516123e-07
+1087.9000000001793 4.1308325388144455e-07
+1088.0000000001792 4.09832131952876e-07
+1088.100000000179 4.0610534895176406e-07
+1088.2000000001792 4.0238291034257607e-07
+1088.3000000001794 3.98664815897144e-07
+1088.4000000001793 3.9495106538687105e-07
+1088.5000000001792 3.9124165858311255e-07
+1088.6000000001793 3.8730110613892084e-07
+1088.7000000001794 3.833691108458161e-07
+1088.8000000001794 3.7944567223997195e-07
+1088.9000000001793 3.7553078985672187e-07
+1089.0000000001794 3.7162446323373777e-07
+1089.1000000001795 3.6795830443987205e-07
+1089.2000000001794 3.6429635468620697e-07
+1089.3000000001794 3.606386139777959e-07
+1089.4000000001795 3.569850823200331e-07
+1089.5000000001796 3.533357597173004e-07
+1089.6000000001795 3.4976212831837816e-07
+1089.7000000001794 3.4619130428324106e-07
+1089.8000000001796 3.4262328761930564e-07
+1089.9000000001797 3.390580783336236e-07
+1090.0000000001796 3.3549567643498794e-07
+1090.1000000001795 3.3252218391550407e-07
+1090.2000000001797 3.295525948020588e-07
+1090.3000000001798 3.265869081152459e-07
+1090.4000000001797 3.2362512287580214e-07
+1090.5000000001796 3.2066723810791466e-07
+1090.6000000001798 3.1843132264030143e-07
+1090.70000000018 3.161868481412839e-07
+1090.8000000001798 3.139338170264988e-07
+1090.9000000001797 3.116722317115634e-07
+1091.0000000001799 3.094020946114971e-07
+1091.10000000018 3.0698003013319743e-07
+1091.20000000018 3.0455211102268115e-07
+1091.3000000001798 3.021183364124084e-07
+1091.40000000018 2.996787054345402e-07
+1091.50000000018 2.972332172185072e-07
+1091.60000000018 2.937674393638268e-07
+1091.70000000018 2.903147488074478e-07
+1091.80000000018 2.86875147642446e-07
+1091.9000000001802 2.834486379630974e-07
+1092.00000000018 2.800352218627692e-07
+1092.10000000018 2.7665439588735287e-07
+1092.2000000001801 2.732864584030351e-07
+1092.3000000001803 2.699314062739311e-07
+1092.4000000001802 2.665892363631157e-07
+1092.50000000018 2.632599455387185e-07
+1092.6000000001802 2.6080838748736687e-07
+1092.7000000001804 2.58351635033699e-07
+1092.8000000001803 2.558896895405537e-07
+1092.9000000001802 2.534225523694825e-07
+1093.0000000001803 2.509502248834351e-07
+1093.1000000001804 2.4874192701592215e-07
+1093.2000000001804 2.465225666551014e-07
+1093.3000000001803 2.442921448380694e-07
+1093.4000000001804 2.420506626021774e-07
+1093.5000000001805 2.3979812098289944e-07
+1093.6000000001804 2.3705025084581187e-07
+1093.7000000001804 2.3430254996308192e-07
+1093.8000000001805 2.3155501833441633e-07
+1093.9000000001806 2.2880765596026398e-07
+1094.0000000001805 2.2606046284013742e-07
+1094.1000000001804 2.2359785334771757e-07
+1094.2000000001806 2.2114270499675094e-07
+1094.3000000001807 2.1869501823862895e-07
+1094.4000000001806 2.1625479352468198e-07
+1094.5000000001805 2.1382203130777832e-07
+1094.6000000001807 2.117897439320537e-07
+1094.7000000001808 2.0975737714984215e-07
+1094.8000000001807 2.0772493096999293e-07
+1094.9000000001806 2.056924054017896e-07
+1095.0000000001808 2.036598004539645e-07
+1095.100000000181 2.015649992546871e-07
+1095.2000000001808 1.9947138161817066e-07
+1095.3000000001807 1.9737894730659298e-07
+1095.4000000001809 1.9528769608278622e-07
+1095.500000000181 1.9319762770849627e-07
+1095.600000000181 1.9095093126031333e-07
+1095.7000000001808 1.8870880062848647e-07
+1095.800000000181 1.864712347421419e-07
+1095.900000000181 1.842382325309308e-07
+1096.000000000181 1.820097929257157e-07
+1096.100000000181 1.8028571386506773e-07
+1096.200000000181 1.7855493067989928e-07
+1096.3000000001812 1.7681744343125301e-07
+1096.400000000181 1.7507325218042136e-07
+1096.500000000181 1.7332235698868416e-07
+1096.6000000001811 1.715295145410334e-07
+1096.7000000001813 1.6973080759076685e-07
+1096.8000000001812 1.6792623619239255e-07
+1096.900000000181 1.6611580040134916e-07
+1097.0000000001812 1.6429950027040552e-07
+1097.1000000001814 1.6194358084075672e-07
+1097.2000000001813 1.595953254218338e-07
+1097.3000000001812 1.5725473347584005e-07
+1097.4000000001813 1.5492180446495935e-07
+1097.5000000001814 1.5259653785169363e-07
+1097.6000000001814 1.503720619551358e-07
+1097.7000000001813 1.481527259934648e-07
+1097.8000000001814 1.4593852960902405e-07
+1097.9000000001815 1.4372947244415697e-07
+1098.0000000001814 1.4152555414307116e-07
+1098.1000000001814 1.401112115967981e-07
+1098.2000000001815 1.3869815464804677e-07
+1098.3000000001816 1.372863830886157e-07
+1098.4000000001815 1.3587589671032086e-07
+1098.5000000001814 1.5171784097603962e-07
+1098.6000000001816 1.615702232721661e-07
+1098.7000000001817 1.6537896964062437e-07
+1098.8000000001816 1.6338587586193406e-07
+1098.9000000001815 1.5624305512174176e-07
+1099.0000000001817 0.0
+1099.1000000001818 0.0
+1099.2000000001817 0.0
+1099.3000000001816 0.0
+1099.4000000001818 0.0
+1099.500000000182 0.0
+1099.6000000001818 0.0
+1099.7000000001817 0.0
+1099.8000000001819 0.0
+1099.900000000182 0.0
+1100.000000000182 0.0
+1100.1000000001818 0.0
+1100.200000000182 0.0
+1100.300000000182 0.0
+1100.400000000182 0.0
+1100.500000000182 0.0
+1100.600000000182 0.0
+1100.7000000001822 0.0
+1100.800000000182 -0.0
+1100.900000000182 -0.0
+1101.0000000001821 -0.0
+1101.1000000001823 -0.0
+1101.2000000001822 -0.0
+1101.300000000182 -0.0
+1101.4000000001822 -0.0
+1101.5000000001824 0.0
+1101.6000000001823 0.0
+1101.7000000001822 0.0
+1101.8000000001823 0.0
+1101.9000000001824 0.0
+1102.0000000001824 0.0
+1102.1000000001823 0.0
+1102.2000000001824 0.0
+1102.3000000001825 0.0
+1102.4000000001824 0.0
+1102.5000000001824 0.0
+1102.6000000001825 0.0
+1102.7000000001826 0.0
+1102.8000000001825 0.0
+1102.9000000001824 0.0
+1103.0000000001826 0.0
+1103.1000000001827 0.0
+1103.2000000001826 0.0
+1103.3000000001825 0.0
+1103.4000000001827 0.0
+1103.5000000001828 0.0
+1103.6000000001827 0.0
+1103.7000000001826 0.0
+1103.8000000001828 0.0
+1103.900000000183 0.0
+1104.0000000001828 0.0
+1104.1000000001827 0.0
+1104.2000000001829 0.0
+1104.300000000183 0.0
+1104.400000000183 0.0
+1104.5000000001828 0.0
+1104.600000000183 0.0
+1104.700000000183 0.0
+1104.800000000183 0.0
+1104.900000000183 0.0
+1105.000000000183 0.0
+1105.1000000001832 0.0
+1105.200000000183 0.0
+1105.300000000183 0.0
+1105.4000000001831 0.0
+1105.5000000001833 0.0
+1105.6000000001832 0.0
+1105.700000000183 0.0
+1105.8000000001832 0.0
+1105.9000000001834 0.0
+1106.0000000001833 0.0
+1106.1000000001832 0.0
+1106.2000000001833 0.0
+1106.3000000001834 0.0
+1106.4000000001834 0.0
+1106.5000000001833 0.0
+1106.6000000001834 0.0
+1106.7000000001835 0.0
+1106.8000000001834 0.0
+1106.9000000001834 0.0
+1107.0000000001835 0.0
+1107.1000000001836 0.0
+1107.2000000001835 0.0
+1107.3000000001834 0.0
+1107.4000000001836 0.0
+1107.5000000001837 0.0
+1107.6000000001836 0.0
+1107.7000000001835 0.0
+1107.8000000001837 0.0
+1107.9000000001838 0.0
+1108.0000000001837 0.0
+1108.1000000001836 0.0
+1108.2000000001838 0.0
+1108.300000000184 0.0
+1108.4000000001838 0.0
+1108.5000000001837 0.0
+1108.6000000001839 0.0
+1108.700000000184 0.0
+1108.800000000184 0.0
+1108.9000000001838 0.0
+1109.000000000184 0.0
+1109.100000000184 0.0
+1109.200000000184 0.0
+1109.300000000184 0.0
+1109.400000000184 0.0
+1109.5000000001842 0.0
+1109.600000000184 0.0
+1109.700000000184 0.0
+1109.8000000001841 0.0
+1109.9000000001843 0.0
+1110.0000000001842 0.0
+1110.100000000184 0.0
+1110.2000000001842 0.0
+1110.3000000001844 0.0
+1110.4000000001843 0.0
+1110.5000000001842 0.0
+1110.6000000001843 0.0
+1110.7000000001844 0.0
+1110.8000000001844 0.0
+1110.9000000001843 0.0
+1111.0000000001844 0.0
+1111.1000000001845 0.0
+1111.2000000001844 0.0
+1111.3000000001844 0.0
+1111.4000000001845 0.0
+1111.5000000001846 0.0
+1111.6000000001845 0.0
+1111.7000000001844 0.0
+1111.8000000001846 0.0
+1111.9000000001847 0.0
+1112.0000000001846 0.0
+1112.1000000001845 0.0
+1112.2000000001847 0.0
+1112.3000000001848 0.0
+1112.4000000001847 0.0
+1112.5000000001846 0.0
+1112.6000000001848 0.0
+1112.700000000185 0.0
+1112.8000000001848 0.0
+1112.9000000001847 0.0
+1113.0000000001849 0.0
+1113.100000000185 0.0
+1113.200000000185 0.0
+1113.3000000001848 0.0
+1113.400000000185 0.0
+1113.500000000185 0.0
+1113.600000000185 0.0
+1113.700000000185 0.0
+1113.800000000185 0.0
+1113.9000000001852 0.0
+1114.000000000185 0.0
+1114.100000000185 0.0
+1114.2000000001851 0.0
+1114.3000000001853 0.0
+1114.4000000001852 0.0
+1114.500000000185 0.0
+1114.6000000001852 0.0
+1114.7000000001854 0.0
+1114.8000000001853 0.0
+1114.9000000001852 0.0
+1115.0000000001853 0.0
+1115.1000000001854 0.0
+1115.2000000001854 0.0
+1115.3000000001853 0.0
+1115.4000000001854 0.0
+1115.5000000001855 0.0
+1115.6000000001854 0.0
+1115.7000000001854 0.0
+1115.8000000001855 0.0
+1115.9000000001856 0.0
+1116.0000000001855 0.0
+1116.1000000001854 0.0
+1116.2000000001856 0.0
+1116.3000000001857 0.0
+1116.4000000001856 0.0
+1116.5000000001855 0.0
+1116.6000000001857 0.0
+1116.7000000001858 0.0
+1116.8000000001857 0.0
+1116.9000000001856 0.0
+1117.0000000001858 0.0
+1117.100000000186 0.0
+1117.2000000001858 0.0
+1117.3000000001857 0.0
+1117.4000000001859 0.0
+1117.500000000186 0.0
+1117.600000000186 0.0
+1117.7000000001858 0.0
+1117.800000000186 0.0
+1117.900000000186 0.0
+1118.000000000186 0.0
+1118.100000000186 0.0
+1118.200000000186 0.0
+1118.3000000001862 0.0
+1118.400000000186 0.0
+1118.500000000186 0.0
+1118.6000000001861 0.0
+1118.7000000001863 0.0
+1118.8000000001862 0.0
+1118.900000000186 0.0
+1119.0000000001862 0.0
+1119.1000000001864 0.0
+1119.2000000001863 0.0
+1119.3000000001862 0.0
+1119.4000000001863 0.0
+1119.5000000001864 0.0
+1119.6000000001864 0.0
+1119.7000000001863 0.0
+1119.8000000001864 0.0
+1119.9000000001865 0.0
+1120.0000000001864 0.0
+1120.1000000001864 0.0
+1120.2000000001865 0.0
+1120.3000000001866 0.0
+1120.4000000001865 0.0
+1120.5000000001864 0.0
+1120.6000000001866 0.0
+1120.7000000001867 0.0
+1120.8000000001866 0.0
+1120.9000000001865 0.0
+1121.0000000001867 0.0
+1121.1000000001868 0.0
+1121.2000000001867 0.0
+1121.3000000001866 0.0
+1121.4000000001868 0.0
+1121.500000000187 0.0
+1121.6000000001868 0.0
+1121.7000000001867 0.0
+1121.8000000001869 0.0
+1121.900000000187 0.0
+1122.000000000187 0.0
+1122.1000000001868 0.0
+1122.200000000187 0.0
+1122.300000000187 0.0
+1122.400000000187 0.0
+1122.500000000187 0.0
+1122.600000000187 0.0
+1122.7000000001872 0.0
+1122.800000000187 0.0
+1122.900000000187 0.0
+1123.0000000001871 0.0
+1123.1000000001873 0.0
+1123.2000000001872 0.0
+1123.300000000187 0.0
+1123.4000000001872 0.0
+1123.5000000001874 0.0
+1123.6000000001873 0.0
+1123.7000000001872 0.0
+1123.8000000001873 0.0
+1123.9000000001874 0.0
+1124.0000000001874 0.0
+1124.1000000001873 0.0
+1124.2000000001874 0.0
+1124.3000000001875 0.0
+1124.4000000001874 0.0
+1124.5000000001874 0.0
+1124.6000000001875 0.0
+1124.7000000001876 0.0
+1124.8000000001875 0.0
+1124.9000000001874 0.0
+1125.0000000001876 0.0
+1125.1000000001877 0.0
+1125.2000000001876 0.0
+1125.3000000001875 0.0
+1125.4000000001877 0.0
+1125.5000000001878 0.0
+1125.6000000001877 0.0
+1125.7000000001876 0.0
+1125.8000000001878 0.0
+1125.900000000188 0.0
+1126.0000000001878 0.0
+1126.1000000001877 0.0
+1126.2000000001879 0.0
+1126.300000000188 0.0
+1126.400000000188 0.0
+1126.5000000001878 0.0
+1126.600000000188 0.0
+1126.700000000188 0.0
+1126.800000000188 0.0
+1126.900000000188 0.0
+1127.000000000188 0.0
+1127.1000000001882 0.0
+1127.200000000188 0.0
+1127.300000000188 0.0
+1127.4000000001881 0.0
+1127.5000000001883 0.0
+1127.6000000001882 0.0
+1127.700000000188 0.0
+1127.8000000001882 0.0
+1127.9000000001884 0.0
+1128.0000000001883 0.0
+1128.1000000001882 0.0
+1128.2000000001883 0.0
+1128.3000000001884 0.0
+1128.4000000001884 0.0
+1128.5000000001883 0.0
+1128.6000000001884 0.0
+1128.7000000001885 0.0
+1128.8000000001884 0.0
+1128.9000000001884 0.0
+1129.0000000001885 0.0
+1129.1000000001886 0.0
+1129.2000000001885 0.0
+1129.3000000001884 0.0
+1129.4000000001886 0.0
+1129.5000000001887 0.0
+1129.6000000001886 0.0
+1129.7000000001885 0.0
+1129.8000000001887 0.0
+1129.9000000001888 0.0
+1130.0000000001887 0.0
+1130.1000000001886 0.0
+1130.2000000001888 0.0
+1130.300000000189 0.0
+1130.4000000001888 0.0
+1130.5000000001887 0.0
+1130.6000000001889 0.0
+1130.700000000189 0.0
+1130.800000000189 0.0
+1130.9000000001888 0.0
+1131.000000000189 0.0
+1131.100000000189 0.0
+1131.200000000189 0.0
+1131.300000000189 0.0
+1131.400000000189 0.0
+1131.5000000001892 0.0
+1131.600000000189 0.0
+1131.700000000189 0.0
+1131.8000000001891 0.0
+1131.9000000001893 0.0
+1132.0000000001892 0.0
+1132.100000000189 0.0
+1132.2000000001892 0.0
+1132.3000000001894 0.0
+1132.4000000001893 0.0
+1132.5000000001892 0.0
+1132.6000000001893 0.0
+1132.7000000001894 0.0
+1132.8000000001894 0.0
+1132.9000000001893 0.0
+1133.0000000001894 0.0
+1133.1000000001895 0.0
+1133.2000000001894 0.0
+1133.3000000001894 0.0
+1133.4000000001895 0.0
+1133.5000000001896 0.0
+1133.6000000001895 0.0
+1133.7000000001894 0.0
+1133.8000000001896 0.0
+1133.9000000001897 0.0
+1134.0000000001896 0.0
+1134.1000000001895 0.0
+1134.2000000001897 0.0
+1134.3000000001898 0.0
+1134.4000000001897 0.0
+1134.5000000001896 0.0
+1134.6000000001898 0.0
+1134.70000000019 0.0
+1134.8000000001898 0.0
+1134.9000000001897 0.0
+1135.0000000001899 0.0
+1135.10000000019 0.0
+1135.20000000019 0.0
+1135.3000000001898 0.0
+1135.40000000019 0.0
+1135.50000000019 0.0
+1135.60000000019 0.0
+1135.70000000019 0.0
+1135.80000000019 0.0
+1135.9000000001902 0.0
+1136.00000000019 0.0
+1136.10000000019 0.0
+1136.2000000001901 0.0
+1136.3000000001903 0.0
+1136.4000000001902 0.0
+1136.50000000019 0.0
+1136.6000000001902 0.0
+1136.7000000001904 0.0
+1136.8000000001903 0.0
+1136.9000000001902 0.0
+1137.0000000001903 0.0
+1137.1000000001904 0.0
+1137.2000000001904 0.0
+1137.3000000001903 0.0
+1137.4000000001904 0.0
+1137.5000000001905 0.0
+1137.6000000001904 0.0
+1137.7000000001904 0.0
+1137.8000000001905 0.0
+1137.9000000001906 0.0
+1138.0000000001905 0.0
+1138.1000000001904 0.0
+1138.2000000001906 0.0
+1138.3000000001907 0.0
+1138.4000000001906 0.0
+1138.5000000001905 0.0
+1138.6000000001907 0.0
+1138.7000000001908 0.0
+1138.8000000001907 0.0
+1138.9000000001906 0.0
+1139.0000000001908 0.0
+1139.100000000191 0.0
+1139.2000000001908 0.0
+1139.3000000001907 0.0
+1139.4000000001909 0.0
+1139.500000000191 0.0
+1139.600000000191 0.0
+1139.7000000001908 0.0
+1139.800000000191 0.0
+1139.900000000191 0.0
+1140.000000000191 0.0
+1140.100000000191 0.0
+1140.200000000191 0.0
+1140.3000000001912 0.0
+1140.400000000191 0.0
+1140.500000000191 0.0
+1140.6000000001911 0.0
+1140.7000000001913 0.0
+1140.8000000001912 0.0
+1140.900000000191 0.0
+1141.0000000001912 0.0
+1141.1000000001914 0.0
+1141.2000000001913 0.0
+1141.3000000001912 0.0
+1141.4000000001913 0.0
+1141.5000000001914 0.0
+1141.6000000001914 0.0
+1141.7000000001913 0.0
+1141.8000000001914 0.0
+1141.9000000001915 0.0
+1142.0000000001914 0.0
+1142.1000000001914 0.0
+1142.2000000001915 0.0
+1142.3000000001916 0.0
+1142.4000000001915 0.0
+1142.5000000001914 0.0
+1142.6000000001916 0.0
+1142.7000000001917 0.0
+1142.8000000001916 0.0
+1142.9000000001915 0.0
+1143.0000000001917 0.0
+1143.1000000001918 0.0
+1143.2000000001917 0.0
+1143.3000000001916 0.0
+1143.4000000001918 0.0
+1143.500000000192 0.0
+1143.6000000001918 0.0
+1143.7000000001917 0.0
+1143.8000000001919 0.0
+1143.900000000192 0.0
+1144.000000000192 0.0
+1144.1000000001918 0.0
+1144.200000000192 0.0
+1144.300000000192 0.0
+1144.400000000192 0.0
+1144.500000000192 0.0
+1144.600000000192 0.0
+1144.7000000001922 0.0
+1144.800000000192 0.0
+1144.900000000192 0.0
+1145.0000000001921 0.0
+1145.1000000001923 0.0
+1145.2000000001922 0.0
+1145.300000000192 0.0
+1145.4000000001922 0.0
+1145.5000000001924 0.0
+1145.6000000001923 0.0
+1145.7000000001922 0.0
+1145.8000000001923 0.0
+1145.9000000001924 0.0
+1146.0000000001924 0.0
+1146.1000000001923 0.0
+1146.2000000001924 0.0
+1146.3000000001925 0.0
+1146.4000000001924 0.0
+1146.5000000001924 0.0
+1146.6000000001925 0.0
+1146.7000000001926 0.0
+1146.8000000001925 0.0
+1146.9000000001924 0.0
+1147.0000000001926 0.0
+1147.1000000001927 0.0
+1147.2000000001926 0.0
+1147.3000000001925 0.0
+1147.4000000001927 0.0
+1147.5000000001928 0.0
+1147.6000000001927 0.0
+1147.7000000001926 0.0
+1147.8000000001928 0.0
+1147.900000000193 0.0
+1148.0000000001928 0.0
+1148.1000000001927 0.0
+1148.2000000001929 0.0
+1148.300000000193 0.0
+1148.400000000193 0.0
+1148.5000000001928 0.0
+1148.600000000193 0.0
+1148.700000000193 0.0
+1148.800000000193 0.0
+1148.900000000193 0.0
+1149.000000000193 0.0
+1149.1000000001932 0.0
+1149.200000000193 0.0
+1149.300000000193 0.0
+1149.4000000001931 0.0
+1149.5000000001933 0.0
+1149.6000000001932 0.0
+1149.700000000193 0.0
+1149.8000000001932 0.0
+1149.9000000001934 0.0
+1150.0000000001933 0.0
diff --git a/filt_func/rubin/y.dat b/filt_func/rubin/y.dat
new file mode 100755
index 00000000..522c8cec
--- /dev/null
+++ b/filt_func/rubin/y.dat
@@ -0,0 +1,8508 @@
+# LSST Throughputs files created from syseng_throughputs repo
+# Version 1.9
+# sha1 fcc05772f99427e4a45cd1b9da1628dded9a06d5
+# Aerosols added to atmosphere
+# Wavelen_cutoff_BLUE 907.50
+# Wavelen_cutoff_RED 1100.00
+# Wavelength(nm) Throughput(0-1)
+300.0 0.0
+300.1 0.0
+300.20000000000005 0.0
+300.30000000000007 0.0
+300.4000000000001 0.0
+300.5000000000001 0.0
+300.60000000000014 0.0
+300.70000000000016 0.0
+300.8000000000002 0.0
+300.9000000000002 0.0
+301.0000000000002 0.0
+301.10000000000025 0.0
+301.2000000000003 0.0
+301.3000000000003 0.0
+301.4000000000003 0.0
+301.50000000000034 0.0
+301.60000000000036 0.0
+301.7000000000004 0.0
+301.8000000000004 0.0
+301.90000000000043 0.0
+302.00000000000045 0.0
+302.1000000000005 0.0
+302.2000000000005 0.0
+302.3000000000005 0.0
+302.40000000000055 0.0
+302.50000000000057 0.0
+302.6000000000006 0.0
+302.7000000000006 0.0
+302.80000000000064 0.0
+302.90000000000066 0.0
+303.0000000000007 0.0
+303.1000000000007 0.0
+303.2000000000007 0.0
+303.30000000000075 0.0
+303.4000000000008 0.0
+303.5000000000008 0.0
+303.6000000000008 0.0
+303.70000000000084 0.0
+303.80000000000086 0.0
+303.9000000000009 0.0
+304.0000000000009 0.0
+304.10000000000093 0.0
+304.20000000000095 0.0
+304.300000000001 0.0
+304.400000000001 0.0
+304.500000000001 0.0
+304.60000000000105 0.0
+304.70000000000107 0.0
+304.8000000000011 0.0
+304.9000000000011 0.0
+305.00000000000114 0.0
+305.10000000000116 0.0
+305.2000000000012 0.0
+305.3000000000012 0.0
+305.4000000000012 0.0
+305.50000000000125 0.0
+305.6000000000013 0.0
+305.7000000000013 0.0
+305.8000000000013 0.0
+305.90000000000134 0.0
+306.00000000000136 0.0
+306.1000000000014 0.0
+306.2000000000014 0.0
+306.30000000000143 0.0
+306.40000000000146 0.0
+306.5000000000015 0.0
+306.6000000000015 0.0
+306.7000000000015 0.0
+306.80000000000155 0.0
+306.90000000000157 0.0
+307.0000000000016 0.0
+307.1000000000016 0.0
+307.20000000000164 0.0
+307.30000000000166 0.0
+307.4000000000017 0.0
+307.5000000000017 0.0
+307.6000000000017 0.0
+307.70000000000175 0.0
+307.8000000000018 0.0
+307.9000000000018 0.0
+308.0000000000018 0.0
+308.10000000000184 0.0
+308.20000000000186 0.0
+308.3000000000019 0.0
+308.4000000000019 0.0
+308.50000000000193 0.0
+308.60000000000196 0.0
+308.700000000002 0.0
+308.800000000002 0.0
+308.900000000002 0.0
+309.00000000000205 0.0
+309.10000000000207 0.0
+309.2000000000021 0.0
+309.3000000000021 0.0
+309.40000000000214 0.0
+309.50000000000216 0.0
+309.6000000000022 0.0
+309.7000000000022 0.0
+309.8000000000022 0.0
+309.90000000000225 0.0
+310.0000000000023 0.0
+310.1000000000023 0.0
+310.2000000000023 0.0
+310.30000000000234 0.0
+310.40000000000236 0.0
+310.5000000000024 0.0
+310.6000000000024 0.0
+310.70000000000243 0.0
+310.80000000000246 0.0
+310.9000000000025 0.0
+311.0000000000025 0.0
+311.1000000000025 0.0
+311.20000000000255 0.0
+311.30000000000257 0.0
+311.4000000000026 0.0
+311.5000000000026 0.0
+311.60000000000264 0.0
+311.70000000000266 0.0
+311.8000000000027 0.0
+311.9000000000027 0.0
+312.00000000000273 0.0
+312.10000000000275 0.0
+312.2000000000028 0.0
+312.3000000000028 0.0
+312.4000000000028 0.0
+312.50000000000284 0.0
+312.60000000000286 0.0
+312.7000000000029 0.0
+312.8000000000029 0.0
+312.90000000000293 0.0
+313.00000000000296 0.0
+313.100000000003 0.0
+313.200000000003 0.0
+313.300000000003 0.0
+313.40000000000305 0.0
+313.50000000000307 0.0
+313.6000000000031 0.0
+313.7000000000031 0.0
+313.80000000000314 0.0
+313.90000000000316 0.0
+314.0000000000032 0.0
+314.1000000000032 0.0
+314.20000000000323 0.0
+314.30000000000325 0.0
+314.4000000000033 0.0
+314.5000000000033 0.0
+314.6000000000033 0.0
+314.70000000000334 0.0
+314.80000000000337 0.0
+314.9000000000034 0.0
+315.0000000000034 0.0
+315.10000000000343 0.0
+315.20000000000346 0.0
+315.3000000000035 0.0
+315.4000000000035 0.0
+315.5000000000035 0.0
+315.60000000000355 0.0
+315.70000000000357 0.0
+315.8000000000036 0.0
+315.9000000000036 0.0
+316.00000000000364 0.0
+316.10000000000366 0.0
+316.2000000000037 0.0
+316.3000000000037 0.0
+316.40000000000373 0.0
+316.50000000000375 0.0
+316.6000000000038 0.0
+316.7000000000038 0.0
+316.8000000000038 0.0
+316.90000000000384 0.0
+317.00000000000387 0.0
+317.1000000000039 0.0
+317.2000000000039 0.0
+317.30000000000393 0.0
+317.40000000000396 0.0
+317.500000000004 0.0
+317.600000000004 0.0
+317.700000000004 0.0
+317.80000000000405 0.0
+317.90000000000407 0.0
+318.0000000000041 0.0
+318.1000000000041 0.0
+318.20000000000414 0.0
+318.30000000000416 0.0
+318.4000000000042 0.0
+318.5000000000042 0.0
+318.60000000000423 0.0
+318.70000000000425 0.0
+318.8000000000043 0.0
+318.9000000000043 0.0
+319.0000000000043 0.0
+319.10000000000434 0.0
+319.20000000000437 0.0
+319.3000000000044 0.0
+319.4000000000044 0.0
+319.50000000000443 0.0
+319.60000000000446 0.0
+319.7000000000045 0.0
+319.8000000000045 0.0
+319.9000000000045 0.0
+320.00000000000455 2.608869266023373e-22
+320.10000000000457 6.862571085041226e-12
+320.2000000000046 1.626854545004664e-11
+320.3000000000046 2.8687964396523257e-11
+320.40000000000464 4.4634300768670185e-11
+320.50000000000466 6.466582158962241e-11
+320.6000000000047 8.95330049259959e-11
+320.7000000000047 1.1983661519473885e-10
+320.80000000000473 1.5630415958495064e-10
+320.90000000000475 1.9971726550069323e-10
+321.0000000000048 2.5091327577556116e-10
+321.1000000000048 3.183320768183344e-10
+321.2000000000048 3.971737395177138e-10
+321.30000000000484 4.884235764642338e-10
+321.40000000000487 5.930860373510596e-10
+321.5000000000049 7.121847181240911e-10
+321.6000000000049 8.411202203716658e-10
+321.70000000000493 9.84627031075741e-10
+321.80000000000496 1.1434568914988235e-09
+321.900000000005 1.3183565778659266e-09
+322.000000000005 1.5100677600778475e-09
+322.100000000005 1.741790698738026e-09
+322.20000000000505 1.9963220538734223e-09
+322.30000000000507 2.274774326228702e-09
+322.4000000000051 2.5782652359155363e-09
+322.5000000000051 2.9079176786460683e-09
+322.60000000000514 3.292382071261634e-09
+322.70000000000516 3.7118313248415742e-09
+322.8000000000052 4.168173709952787e-09
+322.9000000000052 4.6633644813881795e-09
+323.00000000000523 5.199406274653162e-09
+323.10000000000525 5.9708311151900165e-09
+323.2000000000053 6.8211456286571045e-09
+323.3000000000053 7.75520703256862e-09
+323.4000000000053 8.778006281576449e-09
+323.50000000000534 9.894668789753337e-09
+323.60000000000537 1.10417566835276e-08
+323.7000000000054 1.2278641310758627e-08
+323.8000000000054 1.3609307211476378e-08
+323.90000000000543 1.5037801651615337e-08
+324.00000000000546 1.6568234787969987e-08
+324.1000000000055 1.851528927503892e-08
+324.2000000000055 2.0607310945604746e-08
+324.3000000000055 2.2849211707462818e-08
+324.40000000000555 2.5245869669339028e-08
+324.50000000000557 2.7802128838206408e-08
+324.6000000000056 3.050822952062498e-08
+324.7000000000056 3.3380677269803465e-08
+324.80000000000564 3.64239396781661e-08
+324.90000000000566 3.9642437399147384e-08
+325.0000000000057 4.304054404806238e-08
+325.1000000000057 4.723823481464026e-08
+325.20000000000573 5.171314597926598e-08
+325.30000000000575 5.647563743726436e-08
+325.4000000000058 6.15362061908306e-08
+325.5000000000058 6.690548768160693e-08
+325.6000000000058 7.290360781187837e-08
+325.70000000000584 7.92812240310507e-08
+325.80000000000587 8.605325108999668e-08
+325.9000000000059 9.323488852946361e-08
+326.0000000000059 1.0084162390549472e-07
+326.10000000000593 1.0774586375278682e-07
+326.20000000000596 1.1498683350247573e-07
+326.300000000006 1.2257491299906895e-07
+326.400000000006 1.3052065366013176e-07
+326.500000000006 1.3883478192066855e-07
+326.60000000000605 1.4681109724046835e-07
+326.70000000000607 1.5509788743375283e-07
+326.8000000000061 1.6370185365572512e-07
+326.9000000000061 1.726297404331781e-07
+327.00000000000614 1.8188833578184155e-07
+327.10000000000616 1.938645298374479e-07
+327.2000000000062 2.063446021867002e-07
+327.3000000000062 2.1933797368633066e-07
+327.40000000000623 2.3285399983346025e-07
+327.50000000000625 2.4690197023417943e-07
+327.6000000000063 2.617256292430431e-07
+327.7000000000063 2.77127882946725e-07
+327.8000000000063 2.931195230243034e-07
+327.90000000000634 3.09711321084252e-07
+328.00000000000637 3.2691402836177847e-07
+328.1000000000064 3.443056057978998e-07
+328.2000000000064 3.6235995772587894e-07
+328.30000000000643 3.810931070857026e-07
+328.40000000000646 4.005212705074333e-07
+328.5000000000065 4.206608590523559e-07
+328.6000000000065 4.4249615658281534e-07
+328.7000000000065 4.651617521923471e-07
+328.80000000000655 4.886786443392147e-07
+328.90000000000657 5.13068132818508e-07
+329.0000000000066 5.383518194962324e-07
+329.1000000000066 5.645058192529429e-07
+329.20000000000664 5.9156473092298e-07
+329.30000000000666 6.195483807912428e-07
+329.4000000000067 6.484768179735613e-07
+329.5000000000067 6.783703131738169e-07
+329.60000000000673 7.068782183592938e-07
+329.70000000000675 7.361956573270905e-07
+329.8000000000068 7.663352963921719e-07
+329.9000000000068 7.973098458200418e-07
+330.0000000000068 8.291320557816061e-07
+330.10000000000684 8.609489073360979e-07
+330.20000000000687 8.93553959238348e-07
+330.3000000000069 9.269560073011085e-07
+330.4000000000069 9.611637770452618e-07
+330.50000000000693 9.9618591721217e-07
+330.60000000000696 1.0333423837495973e-06
+330.700000000007 1.0714281062989098e-06
+330.800000000007 1.1104551588925565e-06
+330.900000000007 1.1504355750694133e-06
+331.00000000000705 1.191381339018585e-06
+331.10000000000707 1.2244006409490044e-06
+331.2000000000071 1.258092216354064e-06
+331.3000000000071 1.292464670749971e-06
+331.40000000000714 1.3275265805147979e-06
+331.50000000000716 1.363286484432577e-06
+331.6000000000072 1.4026738950893548e-06
+331.7000000000072 1.4429190714202516e-06
+331.80000000000723 1.4840348669762222e-06
+331.90000000000725 1.5260342437644325e-06
+332.0000000000073 1.5689302722807557e-06
+332.1000000000073 1.6181922826434363e-06
+332.2000000000073 1.6685818857949504e-06
+332.30000000000734 1.720115915220796e-06
+332.40000000000737 1.7728113329832594e-06
+332.5000000000074 1.8266852295672382e-06
+332.6000000000074 1.877971641402541e-06
+332.70000000000744 1.9302668829804456e-06
+332.80000000000746 1.9835828504630803e-06
+332.9000000000075 2.037931502648968e-06
+333.0000000000075 2.093324861445553e-06
+333.1000000000075 2.1365808382738607e-06
+333.20000000000755 2.180417839808241e-06
+333.30000000000757 2.2248393634141458e-06
+333.4000000000076 2.2698488990171777e-06
+333.5000000000076 2.3154499292609065e-06
+333.60000000000764 2.364499178815764e-06
+333.70000000000766 2.4142584525916262e-06
+333.8000000000077 2.464737705691354e-06
+333.9000000000077 2.5159469281146056e-06
+334.00000000000773 2.56789612307389e-06
+334.10000000000775 2.6195022369161514e-06
+334.2000000000078 2.671901809868677e-06
+334.3000000000078 2.7251067936740967e-06
+334.4000000000078 2.779129084388929e-06
+334.50000000000784 2.8339804956003956e-06
+334.60000000000787 2.890820553066841e-06
+334.7000000000079 2.9485512669110734e-06
+334.8000000000079 3.007184805586025e-06
+334.90000000000794 3.0667331427434433e-06
+335.00000000000796 3.1272080217455936e-06
+335.100000000008 3.179693425840954e-06
+335.200000000008 3.2328748614881067e-06
+335.300000000008 3.2867591268322075e-06
+335.40000000000805 3.341352597493915e-06
+335.5000000000081 3.39666118863705e-06
+335.6000000000081 3.44867584465491e-06
+335.7000000000081 3.5012999049159026e-06
+335.80000000000814 3.554535708736146e-06
+335.90000000000816 3.608384967199923e-06
+336.0000000000082 3.6628487219606776e-06
+336.1000000000082 3.716155037389912e-06
+336.20000000000823 3.770000472360646e-06
+336.30000000000825 3.824382291821672e-06
+336.4000000000083 3.879296911213236e-06
+336.5000000000083 3.9347398513209234e-06
+336.6000000000083 3.9907053617835004e-06
+336.70000000000834 4.047217441667936e-06
+336.80000000000837 4.104279063484093e-06
+336.9000000000084 4.1618931959356266e-06
+337.0000000000084 4.220062803289128e-06
+337.10000000000844 4.2708953598451736e-06
+337.20000000000846 4.322175348780332e-06
+337.3000000000085 4.373905329854475e-06
+337.4000000000085 4.426087861020346e-06
+337.5000000000085 4.478725497875668e-06
+337.60000000000855 4.5406001768508836e-06
+337.7000000000086 4.603136335279485e-06
+337.8000000000086 4.666339091808079e-06
+337.9000000000086 4.730213596366683e-06
+338.00000000000864 4.794765030587987e-06
+338.10000000000866 4.856167436952302e-06
+338.2000000000087 4.918179208258169e-06
+338.3000000000087 4.9808047544757665e-06
+338.40000000000873 5.044048513255453e-06
+338.50000000000875 5.107914950353962e-06
+338.6000000000088 5.166551195431679e-06
+338.7000000000088 5.225702473868994e-06
+338.8000000000088 5.285369566753142e-06
+338.90000000000884 5.3455533308761345e-06
+339.00000000000887 5.406254706177254e-06
+339.1000000000089 5.469790612668221e-06
+339.2000000000089 5.533876127282153e-06
+339.30000000000894 5.598512610697885e-06
+339.40000000000896 5.6637015358438115e-06
+339.500000000009 5.729444496740806e-06
+339.600000000009 5.791396953970292e-06
+339.700000000009 5.853814020797747e-06
+339.80000000000905 5.916696884188974e-06
+339.9000000000091 5.980046908129608e-06
+340.0000000000091 6.043865644074657e-06
+340.1000000000091 6.087877061804044e-06
+340.20000000000914 6.132120523654098e-06
+340.30000000000916 6.176597077290599e-06
+340.4000000000092 6.221307995421351e-06
+340.5000000000092 6.266254783579946e-06
+340.60000000000923 6.3161542349053355e-06
+340.70000000000925 6.366353543160706e-06
+340.8000000000093 6.41685533368861e-06
+340.9000000000093 6.4676624896662606e-06
+341.0000000000093 6.518778161136373e-06
+341.10000000000935 6.5781825200921615e-06
+341.20000000000937 6.6380010261954824e-06
+341.3000000000094 6.698238334444041e-06
+341.4000000000094 6.75889942027753e-06
+341.50000000000944 6.819989591165666e-06
+341.60000000000946 6.881514782339727e-06
+341.7000000000095 6.943467845022935e-06
+341.8000000000095 7.0058508369104665e-06
+341.9000000000095 7.068665819794019e-06
+342.00000000000955 7.131914859541107e-06
+342.1000000000096 7.189212575026496e-06
+342.2000000000096 7.246866870464701e-06
+342.3000000000096 7.304879262654031e-06
+342.40000000000964 7.363251270429033e-06
+342.50000000000966 7.4219844145994095e-06
+342.6000000000097 7.475625547687881e-06
+342.7000000000097 7.529556169433841e-06
+342.80000000000973 7.583777252714121e-06
+342.90000000000975 7.638289770156885e-06
+343.0000000000098 7.69309469423005e-06
+343.1000000000098 7.732485648398493e-06
+343.2000000000098 7.772029552244526e-06
+343.30000000000985 7.81172672957991e-06
+343.40000000000987 7.851577503115324e-06
+343.5000000000099 7.89158219447525e-06
+343.6000000000099 7.931762375360303e-06
+343.70000000000994 7.972111512602596e-06
+343.80000000000996 8.01262313654927e-06
+343.90000000001 8.053291176645909e-06
+344.00000000001 8.094109973744466e-06
+344.10000000001 8.130034078404173e-06
+344.20000000001005 8.166065550688739e-06
+344.3000000000101 8.202199969618953e-06
+344.4000000000101 8.238433386212764e-06
+344.5000000000101 8.274762334984361e-06
+344.60000000001014 8.3171915491089e-06
+344.70000000001016 8.359754675478758e-06
+344.8000000000102 8.402449604661342e-06
+344.9000000000102 8.445274748101414e-06
+345.00000000001023 8.488229052084405e-06
+345.10000000001025 8.53903253535376e-06
+345.2000000000103 8.590032439764371e-06
+345.3000000000103 8.641229611072122e-06
+345.4000000000103 8.692625490809122e-06
+345.50000000001035 8.744222133575776e-06
+345.60000000001037 8.792884150439356e-06
+345.7000000000104 8.841722591250905e-06
+345.8000000000104 8.890741328461433e-06
+345.90000000001044 8.939944913154781e-06
+346.00000000001046 8.98933859228902e-06
+346.1000000000105 9.030617906549303e-06
+346.2000000000105 9.072035699801238e-06
+346.3000000000105 9.113599150644943e-06
+346.40000000001055 9.155316176542167e-06
+346.5000000000106 9.197195448795986e-06
+346.6000000000106 9.239246027374077e-06
+346.7000000000106 9.281443942136885e-06
+346.80000000001064 9.32378973311264e-06
+346.90000000001066 9.366283944161686e-06
+347.0000000000107 9.408927122954091e-06
+347.1000000000107 9.4674971438245e-06
+347.20000000001073 9.526346311285065e-06
+347.30000000001075 9.58547574725234e-06
+347.4000000000108 9.644886580140536e-06
+347.5000000000108 9.70457994497283e-06
+347.6000000000108 9.764557385459772e-06
+347.70000000001085 9.82481935398841e-06
+347.80000000001087 9.885366699444355e-06
+347.9000000000109 9.946200270146657e-06
+348.0000000000109 1.00073209137997e-05
+348.10000000001094 1.0045919719737389e-05
+348.20000000001096 1.0084632926964535e-05
+348.300000000011 1.0123460666331087e-05
+348.400000000011 1.0162403067435823e-05
+348.500000000011 1.0201460258443225e-05
+348.60000000001105 1.0244252248883742e-05
+348.7000000000111 1.0287209014539156e-05
+348.8000000000111 1.0330317095016903e-05
+348.9000000000111 1.037356383894039e-05
+349.00000000001114 1.0416937423475558e-05
+349.10000000001116 1.0462750915636139e-05
+349.2000000000112 1.0508685557625524e-05
+349.3000000000112 1.0554732158300822e-05
+349.40000000001123 1.0600882429428517e-05
+349.50000000001125 1.0647129007599035e-05
+349.6000000000113 1.0693465476373465e-05
+349.7000000000113 1.0739886999954756e-05
+349.8000000000113 1.0786389312388918e-05
+349.90000000001135 1.0832969176951633e-05
+350.00000000001137 1.0879624409417736e-05
+350.1000000000114 1.0917899566196507e-05
+350.2000000000114 1.0956196251829091e-05
+350.30000000001144 1.0994515590973334e-05
+350.40000000001146 1.103285984830713e-05
+350.5000000000115 1.107123244806707e-05
+350.6000000000115 1.1113467583078412e-05
+350.7000000000115 1.1155764688053837e-05
+350.80000000001155 1.1198130612268451e-05
+350.9000000000116 1.12405734409056e-05
+351.0000000000116 1.1283102516881774e-05
+351.1000000000116 1.1313759770829463e-05
+351.20000000001164 1.1344463573653673e-05
+351.30000000001166 1.1375227012957347e-05
+351.4000000000117 1.1406064463577656e-05
+351.5000000000117 1.143699160390317e-05
+351.60000000001173 1.1471958697738875e-05
+351.70000000001176 1.1507005006493728e-05
+351.8000000000118 1.1542130485685188e-05
+351.9000000000118 1.157733510076365e-05
+352.0000000000118 1.1612618827131356e-05
+352.10000000001185 1.1643602921582543e-05
+352.20000000001187 1.167464236933035e-05
+352.3000000000119 1.1705737118179907e-05
+352.4000000000119 1.173688712681782e-05
+352.50000000001194 1.1768092364793353e-05
+352.60000000001196 1.1795342547778418e-05
+352.700000000012 1.1822634208794398e-05
+352.800000000012 1.1849967655087328e-05
+352.900000000012 1.1877343184448582e-05
+353.00000000001205 1.1904761085022194e-05
+353.1000000000121 1.1946981689064835e-05
+353.2000000000121 1.1989315804305873e-05
+353.3000000000121 1.2031763858295185e-05
+353.40000000001214 1.2074326269649397e-05
+353.50000000001216 1.2117003447943504e-05
+353.6000000000122 1.215567451599046e-05
+353.7000000000122 1.2194427300177516e-05
+353.80000000001223 1.2233267370513295e-05
+353.90000000001226 1.2272199956669158e-05
+354.0000000000123 1.231122994172527e-05
+354.1000000000123 1.2342034109406575e-05
+354.2000000000123 1.2372906984692496e-05
+354.30000000001235 1.2403852257384663e-05
+354.40000000001237 1.243487323708201e-05
+354.5000000000124 1.2465972848018584e-05
+354.6000000000124 1.249715362420958e-05
+354.70000000001244 1.2528416991759039e-05
+354.80000000001246 1.2559764473236699e-05
+354.9000000000125 1.2591197170639618e-05
+355.0000000000125 1.2622715760002336e-05
+355.1000000000125 1.2653958581369233e-05
+355.20000000001255 1.268528605536798e-05
+355.3000000000126 1.2716697542925588e-05
+355.4000000000126 1.2748191957351961e-05
+355.5000000000126 1.2779767758726863e-05
+355.60000000001264 1.2811422948409573e-05
+355.70000000001266 1.2843156524536649e-05
+355.8000000000127 1.2874965995916796e-05
+355.9000000000127 1.2906848426352168e-05
+356.00000000001273 1.2938800429197509e-05
+356.10000000001276 1.2976216570053914e-05
+356.2000000000128 1.3013717763984459e-05
+356.3000000000128 1.3051299292008593e-05
+356.4000000000128 1.3088955954371249e-05
+356.50000000001285 1.3126682064245738e-05
+356.60000000001287 1.3168843567289379e-05
+356.7000000000129 1.3211107933975908e-05
+356.8000000000129 1.3253475331954902e-05
+356.90000000001294 1.329594592894552e-05
+357.00000000001296 1.3338519892852986e-05
+357.100000000013 1.336904290722115e-05
+357.200000000013 1.3399614928638698e-05
+357.30000000001303 1.3430236001678422e-05
+357.40000000001305 1.346090617103364e-05
+357.5000000000131 1.3491625481327373e-05
+357.6000000000131 1.3522393977183788e-05
+357.7000000000131 1.3553211703252167e-05
+357.80000000001314 1.3584078704182964e-05
+357.90000000001316 1.3614995024603714e-05
+358.0000000000132 1.3645960709190998e-05
+358.1000000000132 1.367541455210703e-05
+358.20000000001323 1.3704912313429546e-05
+358.30000000001326 1.3734454029672387e-05
+358.4000000000133 1.3764039737350326e-05
+358.5000000000133 1.3793669473051377e-05
+358.6000000000133 1.3818795793840727e-05
+358.70000000001335 1.3843940895028042e-05
+358.80000000001337 1.3869110807904812e-05
+358.9000000000134 1.389431115702272e-05
+359.0000000000134 1.3919547156029188e-05
+359.10000000001344 1.3954535723649702e-05
+359.20000000001346 1.3989603126696512e-05
+359.3000000000135 1.4024753415697324e-05
+359.4000000000135 1.4059990224344444e-05
+359.50000000001353 1.4095316763761654e-05
+359.60000000001355 1.4130734653834673e-05
+359.7000000000136 1.4166246651973703e-05
+359.8000000000136 1.4201855051694914e-05
+359.9000000000136 1.4237561676727436e-05
+360.00000000001364 1.4273367874977509e-05
+360.10000000001367 1.4297940021785393e-05
+360.2000000000137 1.4322574272051483e-05
+360.3000000000137 1.4347270367387045e-05
+360.40000000001373 1.4372027551321832e-05
+360.50000000001376 1.4396844565185229e-05
+360.6000000000138 1.4426401094031185e-05
+360.7000000000138 1.4456026936907698e-05
+360.8000000000138 1.4485719145226397e-05
+360.90000000001385 1.4515474259582822e-05
+361.00000000001387 1.4545288304574855e-05
+361.1000000000139 1.4582313635269094e-05
+361.2000000000139 1.4619416631207756e-05
+361.30000000001394 1.465659179532619e-05
+361.40000000001396 1.469383308219811e-05
+361.500000000014 1.473113389140597e-05
+361.600000000014 1.4768487061440504e-05
+361.70000000001403 1.4805911810596997e-05
+361.80000000001405 1.4843407984172423e-05
+361.9000000000141 1.4880975410022736e-05
+362.0000000000141 1.4918613898257428e-05
+362.1000000000141 1.494847142701184e-05
+362.20000000001414 1.4978371488255006e-05
+362.30000000001417 1.5008313790481113e-05
+362.4000000000142 1.5038298024346415e-05
+362.5000000000142 1.50683238625093e-05
+362.60000000001423 1.5103236399138269e-05
+362.70000000001426 1.5138207761690693e-05
+362.8000000000143 1.5173238110822619e-05
+362.9000000000143 1.5208327623428416e-05
+363.0000000000143 1.524347649300503e-05
+363.10000000001435 1.5280914193288568e-05
+363.20000000001437 1.5318420858925385e-05
+363.3000000000144 1.5355996753140815e-05
+363.4000000000144 1.5393642156550133e-05
+363.50000000001444 1.5431357367435423e-05
+363.60000000001446 1.546421087569476e-05
+363.7000000000145 1.549711571211672e-05
+363.8000000000145 1.5530072139873938e-05
+363.90000000001453 1.5563080408287576e-05
+364.00000000001455 1.559614075248105e-05
+364.1000000000146 1.562532461925476e-05
+364.2000000000146 1.5654546784240782e-05
+364.3000000000146 1.5683807414470612e-05
+364.40000000001464 1.5713106662046424e-05
+364.50000000001467 1.574244466410372e-05
+364.6000000000147 1.5771822840358108e-05
+364.7000000000147 1.580124083979737e-05
+364.80000000001473 1.5830698324904415e-05
+364.90000000001476 1.5860194971419283e-05
+365.0000000000148 1.5889730468614805e-05
+365.1000000000148 1.592734501243466e-05
+365.2000000000148 1.5965027526811746e-05
+365.30000000001485 1.6002777796867752e-05
+365.40000000001487 1.604059562118373e-05
+365.5000000000149 1.607848081206083e-05
+365.6000000000149 1.612152234077044e-05
+365.70000000001494 1.616465083564594e-05
+365.80000000001496 1.6207866631392567e-05
+365.900000000015 1.6251170048566022e-05
+366.000000000015 1.6294561393583144e-05
+366.10000000001503 1.6326694719804795e-05
+366.20000000001505 1.635887263274054e-05
+366.3000000000151 1.639109530870656e-05
+366.4000000000151 1.642336290854171e-05
+366.5000000000151 1.6455675577364668e-05
+366.60000000001514 1.6482861272653964e-05
+366.70000000001517 1.651008026274694e-05
+366.8000000000152 1.653733246100636e-05
+366.9000000000152 1.656461781353164e-05
+367.00000000001523 1.659193629962904e-05
+367.10000000001526 1.6636040158924852e-05
+367.2000000000153 1.6680236878200106e-05
+367.3000000000153 1.6724526654585063e-05
+367.4000000000153 1.6768909719912627e-05
+367.50000000001535 1.6813386341085408e-05
+367.60000000001537 1.6857956820643307e-05
+367.7000000000154 1.690261957583202e-05
+367.8000000000154 1.694737439996128e-05
+367.90000000001544 1.6992221082808947e-05
+368.00000000001546 1.7037159410628228e-05
+368.1000000000155 1.7065671973804197e-05
+368.2000000000155 1.709421765308752e-05
+368.30000000001553 1.7122796121105116e-05
+368.40000000001555 1.715140704816991e-05
+368.5000000000156 1.7180050102303513e-05
+368.6000000000156 1.721412123507476e-05
+368.7000000000156 1.7248269670665906e-05
+368.80000000001564 1.7282480720758656e-05
+368.90000000001567 1.7316740737924766e-05
+369.0000000000157 1.735103712662236e-05
+369.1000000000157 1.7376466048772705e-05
+369.20000000001573 1.7401885563669112e-05
+369.30000000001576 1.7427286336021938e-05
+369.4000000000158 1.745266014393552e-05
+369.5000000000158 1.7477999887429803e-05
+369.6000000000158 1.7508716897786295e-05
+369.70000000001585 1.7539399325631785e-05
+369.80000000001587 1.757004283331306e-05
+369.9000000000159 1.7600644196184248e-05
+370.0000000000159 1.763120131248701e-05
+370.10000000001594 1.7663064658026495e-05
+370.20000000001596 1.7694887619758544e-05
+370.300000000016 1.77266715137918e-05
+370.400000000016 1.7758418819493137e-05
+370.50000000001603 1.7790133189798838e-05
+370.60000000001605 1.7816340662629043e-05
+370.7000000000161 1.7842514290732315e-05
+370.8000000000161 1.7868660862308893e-05
+370.9000000000161 1.7894788403323687e-05
+371.00000000001614 1.7920906186318642e-05
+371.10000000001617 1.7968264807819225e-05
+371.2000000000162 1.801570747751678e-05
+371.3000000000162 1.806324738655347e-05
+371.40000000001623 1.8110899076120635e-05
+371.50000000001626 1.8158678454284687e-05
+371.6000000000163 1.8201028434745292e-05
+371.7000000000163 1.824345215506399e-05
+371.8000000000163 1.8285950063085764e-05
+371.90000000001635 1.8328522609996282e-05
+372.00000000001637 1.8371170250607226e-05
+372.1000000000164 1.841243865467914e-05
+372.2000000000164 1.8453777812661428e-05
+372.30000000001644 1.8495188180613224e-05
+372.40000000001646 1.8536670218007954e-05
+372.5000000000165 1.8578224387716203e-05
+372.6000000000165 1.8614179362843264e-05
+372.70000000001653 1.8650189913229002e-05
+372.80000000001655 1.8686255973368434e-05
+372.9000000000166 1.8722377514788688e-05
+373.0000000000166 1.8758554546230793e-05
+373.1000000000166 1.8797205503470957e-05
+373.20000000001664 1.883591874120341e-05
+373.30000000001667 1.887469439261338e-05
+373.4000000000167 1.8913532629726904e-05
+373.5000000000167 1.895243366390032e-05
+373.60000000001673 1.898558442668899e-05
+373.70000000001676 1.901874529858066e-05
+373.8000000000168 1.9051933477463165e-05
+373.9000000000168 1.9085164967448974e-05
+374.0000000000168 1.9118454567805972e-05
+374.10000000001685 1.914829749144096e-05
+374.20000000001687 1.9178211979357843e-05
+374.3000000000169 1.920820910014685e-05
+374.4000000000169 1.9238298665572794e-05
+374.50000000001694 1.926848922070223e-05
+374.60000000001696 1.9292962692399696e-05
+374.700000000017 1.9317542304005702e-05
+374.800000000017 1.9342232782249245e-05
+374.90000000001703 1.9367037621455806e-05
+375.00000000001705 1.9391959075906486e-05
+375.1000000000171 1.9431095793892222e-05
+375.2000000000171 1.9470388482111627e-05
+375.3000000000171 1.9509835885136792e-05
+375.40000000001714 1.9549435466959047e-05
+375.50000000001717 1.958918339803428e-05
+375.6000000000172 1.962317299532624e-05
+375.7000000000172 1.9657279110714743e-05
+375.80000000001723 1.9691493732823253e-05
+375.90000000001726 1.9725807434185825e-05
+376.0000000000173 1.976020935912083e-05
+376.1000000000173 1.980667929769783e-05
+376.2000000000173 1.9853251520364646e-05
+376.30000000001735 1.9899910888720212e-05
+376.40000000001737 1.9946640746867658e-05
+376.5000000000174 1.9993422904749018e-05
+376.6000000000174 2.0034242789255217e-05
+376.70000000001744 2.007513175979748e-05
+376.80000000001746 2.0116089769636127e-05
+376.9000000000175 2.0157116811798827e-05
+377.0000000000175 2.0198212919490126e-05
+377.10000000001753 2.0241545018463488e-05
+377.20000000001755 2.028495267762355e-05
+377.3000000000176 2.0328436063875424e-05
+377.4000000000176 2.0371995386079488e-05
+377.5000000000176 2.041563089545982e-05
+377.60000000001764 2.0453248354359077e-05
+377.70000000001767 2.049092148758719e-05
+377.8000000000177 2.0528649941794764e-05
+377.9000000000177 2.056643336050447e-05
+378.00000000001774 2.0604271384362656e-05
+378.10000000001776 2.0643732739863592e-05
+378.2000000000178 2.0683251205670413e-05
+378.3000000000178 2.0722826416028003e-05
+378.4000000000178 2.076245800196915e-05
+378.50000000001785 2.080214559140077e-05
+378.60000000001787 2.0835706226592793e-05
+378.7000000000179 2.086930711067144e-05
+378.8000000000179 2.090294911856089e-05
+378.90000000001794 2.0936633130568745e-05
+379.00000000001796 2.0970360032469326e-05
+379.100000000018 2.10037564745713e-05
+379.200000000018 2.1037196795987033e-05
+379.30000000001803 2.1070681897857112e-05
+379.40000000001805 2.1104212686763654e-05
+379.5000000000181 2.1137790074883258e-05
+379.6000000000181 2.1177677730047705e-05
+379.7000000000181 2.121762818799579e-05
+379.80000000001814 2.1257641395142977e-05
+379.90000000001817 2.1297717275357015e-05
+380.0000000000182 2.1337855729819323e-05
+380.1000000000182 2.1378113986145763e-05
+380.20000000001824 2.1418437014727612e-05
+380.30000000001826 2.145882465571892e-05
+380.4000000000183 2.1499276725598096e-05
+380.5000000000183 2.1539793017262512e-05
+380.6000000000183 2.1586727056667722e-05
+380.70000000001835 2.163374444379126e-05
+380.8000000000184 2.1680845229763925e-05
+380.9000000000184 2.172802942126209e-05
+381.0000000000184 2.1775296980061474e-05
+381.10000000001844 2.181099088842809e-05
+381.20000000001846 2.184673258773423e-05
+381.3000000000185 2.1882521839990986e-05
+381.4000000000185 2.1918358361015283e-05
+381.50000000001853 2.195424182009871e-05
+381.60000000001855 2.1996620488375044e-05
+381.7000000000186 2.2039066276946713e-05
+381.8000000000186 2.2081578893320542e-05
+381.9000000000186 2.212415808685472e-05
+382.00000000001864 2.2166803649452606e-05
+382.10000000001867 2.2203320515093437e-05
+382.2000000000187 2.2239887009770404e-05
+382.3000000000187 2.2276503029464364e-05
+382.40000000001874 2.231316851442639e-05
+382.50000000001876 2.2349883449440193e-05
+382.6000000000188 2.239318036280376e-05
+382.7000000000188 2.243654203494862e-05
+382.8000000000188 2.2479968839362763e-05
+382.90000000001885 2.2523461129156653e-05
+383.0000000000189 2.2567019236887852e-05
+383.1000000000189 2.2609053671156827e-05
+383.2000000000189 2.2651151218276755e-05
+383.30000000001894 2.2693312144198907e-05
+383.40000000001896 2.273553669338593e-05
+383.500000000019 2.2777825088533495e-05
+383.600000000019 2.2820209425568936e-05
+383.70000000001903 2.2862679946208562e-05
+383.80000000001905 2.2905226665847413e-05
+383.9000000000191 2.294784031512389e-05
+384.0000000000191 2.299051234673622e-05
+384.1000000000191 2.30323040434305e-05
+384.20000000001914 2.307413678965306e-05
+384.30000000001917 2.311600424694316e-05
+384.4000000000192 2.315790082843036e-05
+384.5000000000192 2.3199821705827495e-05
+384.60000000001924 2.324849760714321e-05
+384.70000000001926 2.329720821315857e-05
+384.8000000000193 2.334595021221088e-05
+384.9000000000193 2.339472102398001e-05
+385.0000000000193 2.3443518807051565e-05
+385.10000000001935 2.348143462756311e-05
+385.2000000000194 2.3519343932689843e-05
+385.3000000000194 2.355724716819614e-05
+385.4000000000194 2.3595145548135803e-05
+385.50000000001944 2.3633041060915077e-05
+385.60000000001946 2.3677765943611484e-05
+385.7000000000195 2.3722514901031898e-05
+385.8000000000195 2.3767293082133024e-05
+385.90000000001953 2.381210649502557e-05
+386.00000000001955 2.3856962014865298e-05
+386.1000000000196 2.3892739802757633e-05
+386.2000000000196 2.3928552715403467e-05
+386.3000000000196 2.3964410241053093e-05
+386.40000000001965 2.4000322750823172e-05
+386.50000000001967 2.403630150522752e-05
+386.6000000000197 2.40723586604352e-05
+386.7000000000197 2.4108460722205775e-05
+386.80000000001974 2.4144607735757082e-05
+386.90000000001976 2.41807997462683e-05
+387.0000000000198 2.421703679895774e-05
+387.1000000000198 2.4272570433578862e-05
+387.2000000000198 2.4328208433368226e-05
+387.30000000001985 2.4383950953122495e-05
+387.4000000000199 2.4439798147697634e-05
+387.5000000000199 2.4495750172194155e-05
+387.6000000000199 2.4544786362000324e-05
+387.70000000001994 2.4593903616690747e-05
+387.80000000001996 2.464310204284335e-05
+387.90000000002 2.4692381747217266e-05
+388.00000000002 2.4741742836675752e-05
+388.10000000002003 2.478071583840783e-05
+388.20000000002005 2.481973976678201e-05
+388.3000000000201 2.4858814675174358e-05
+388.4000000000201 2.4897940616965806e-05
+388.5000000000201 2.493711764573368e-05
+388.60000000002015 2.4983435814760864e-05
+388.70000000002017 2.5029801565153676e-05
+388.8000000000202 2.507622616635729e-05
+388.9000000000202 2.5122720132275905e-05
+389.00000000002024 2.5169293213557766e-05
+389.10000000002026 2.5207842952173173e-05
+389.2000000000203 2.524646828465661e-05
+389.3000000000203 2.528517656338383e-05
+389.4000000000203 2.5323974339075003e-05
+389.50000000002035 2.5362867354592227e-05
+389.6000000000204 2.5401860538862505e-05
+389.7000000000204 2.544095800003384e-05
+389.8000000000204 2.5480163019341126e-05
+389.90000000002044 2.5519478044769847e-05
+390.00000000002046 2.555890468452496e-05
+390.1000000000205 2.5610273955391853e-05
+390.2000000000205 2.5661789015233534e-05
+390.30000000002053 2.5713449054362308e-05
+390.40000000002055 2.576525239364338e-05
+390.5000000000206 2.581719647576014e-05
+390.6000000000206 2.5861963952485977e-05
+390.7000000000206 2.5906843146476786e-05
+390.80000000002065 2.5951828741185963e-05
+390.90000000002067 2.5996914513557716e-05
+391.0000000000207 2.604209332653277e-05
+391.1000000000207 2.6078050145395486e-05
+391.20000000002074 2.6114058712556136e-05
+391.30000000002076 2.6150109063890516e-05
+391.4000000000208 2.618619030573869e-05
+391.5000000000208 2.6222290608860748e-05
+391.6000000000208 2.6258396123171382e-05
+391.70000000002085 2.6294542782642792e-05
+391.8000000000209 2.6330730984173183e-05
+391.9000000000209 2.636696110012466e-05
+392.0000000000209 2.640323347791115e-05
+392.10000000002094 2.645156348874647e-05
+392.20000000002096 2.6499966474321063e-05
+392.300000000021 2.654844275359119e-05
+392.400000000021 2.6596992620390286e-05
+392.50000000002103 2.6645616343108593e-05
+392.60000000002105 2.6686822164949987e-05
+392.7000000000211 2.6728084762531835e-05
+392.8000000000211 2.676940357083722e-05
+392.9000000000211 2.6810778048159106e-05
+393.00000000002115 2.6852207676377278e-05
+393.10000000002117 2.6897261490560393e-05
+393.2000000000212 2.6942379194991925e-05
+393.3000000000212 2.6987560359347903e-05
+393.40000000002124 2.7032804577243928e-05
+393.50000000002126 2.7078111466695233e-05
+393.6000000000213 2.713103714223e-05
+393.7000000000213 2.7184020702985746e-05
+393.8000000000213 2.7237074751358935e-05
+393.90000000002135 2.729021104874214e-05
+394.0000000000214 2.7343440506573095e-05
+394.1000000000214 2.7382006252395245e-05
+394.2000000000214 2.7420644646704217e-05
+394.30000000002144 2.7459363876873673e-05
+394.40000000002146 2.7498171229686466e-05
+394.5000000000215 2.7537073084828205e-05
+394.6000000000215 2.7576076041309488e-05
+394.70000000002153 2.761518581210992e-05
+394.80000000002156 2.765440611046752e-05
+394.9000000000216 2.7693739772912755e-05
+395.0000000000216 2.773318875327367e-05
+395.1000000000216 2.776866398776337e-05
+395.20000000002165 2.7804246224469213e-05
+395.30000000002167 2.7839934687725126e-05
+395.4000000000217 2.787572769490194e-05
+395.5000000000217 2.7911622650701792e-05
+395.60000000002174 2.7947652774274378e-05
+395.70000000002176 2.79837974556189e-05
+395.8000000000218 2.8020038224147117e-05
+395.9000000000218 2.8056356457836247e-05
+396.0000000000218 2.809273338249166e-05
+396.10000000002185 2.814887406259066e-05
+396.2000000000219 2.8205088300692545e-05
+396.3000000000219 2.8261356868330977e-05
+396.4000000000219 2.8317660328065563e-05
+396.50000000002194 2.8373979032183975e-05
+396.60000000002196 2.8422461738121306e-05
+396.700000000022 2.8470979548028448e-05
+396.800000000022 2.851951608615767e-05
+396.90000000002203 2.8568056802465727e-05
+397.00000000002206 2.861658898892838e-05
+397.1000000000221 2.8660602977305514e-05
+397.2000000000221 2.870457693975038e-05
+397.3000000000221 2.8748503821907503e-05
+397.40000000002215 2.8792378479693808e-05
+397.50000000002217 2.8836197693641835e-05
+397.6000000000222 2.887996018403752e-05
+397.7000000000222 2.892366498455723e-05
+397.80000000002224 2.896731424795183e-05
+397.90000000002226 2.9010912078697784e-05
+398.0000000000223 2.9054464547078573e-05
+398.1000000000223 2.9094153450314148e-05
+398.2000000000223 2.91338056225787e-05
+398.30000000002235 2.9173433132151185e-05
+398.4000000000224 2.9213050063543246e-05
+398.5000000000224 2.9252672531147004e-05
+398.6000000000224 2.930038597897535e-05
+398.70000000002244 2.934810747024751e-05
+398.80000000002246 2.9395843373228082e-05
+398.9000000000225 2.9443601110702178e-05
+399.0000000000225 2.9491389168350302e-05
+399.10000000002253 2.9531960102535844e-05
+399.20000000002256 2.957256612237817e-05
+399.3000000000226 2.9613218932381805e-05
+399.4000000000226 2.9653931320763854e-05
+399.5000000000226 2.969471716705905e-05
+399.60000000002265 2.973559144896847e-05
+399.70000000002267 2.9776512816891664e-05
+399.8000000000227 2.9817481314805055e-05
+399.9000000000227 2.9858496986760608e-05
+400.00000000002274 2.9899559876928835e-05
+400.10000000002276 2.9936151788032734e-05
+400.2000000000228 2.997278107243919e-05
+400.3000000000228 3.000944776103308e-05
+400.4000000000228 3.004615188480682e-05
+400.50000000002285 3.0082893474772925e-05
+400.6000000000229 3.0119672561919993e-05
+400.7000000000229 3.0156489177256516e-05
+400.8000000000229 3.019334335185507e-05
+400.90000000002294 3.023023511680828e-05
+401.00000000002296 3.0267164503186985e-05
+401.100000000023 3.0313906338484846e-05
+401.200000000023 3.0360705554518182e-05
+401.30000000002303 3.0407562206565338e-05
+401.40000000002306 3.0454476349856458e-05
+401.5000000000231 3.0501448039704118e-05
+401.6000000000231 3.0540158029366634e-05
+401.7000000000231 3.057890910132018e-05
+401.80000000002315 3.061770129097988e-05
+401.90000000002317 3.065653463369572e-05
+402.0000000000232 3.0695409164974746e-05
+402.1000000000232 3.0733340048296133e-05
+402.20000000002324 3.077131016621498e-05
+402.30000000002326 3.080931955173716e-05
+402.4000000000233 3.084736823789031e-05
+402.5000000000233 3.08854562577686e-05
+402.60000000002333 3.092358364444319e-05
+402.70000000002335 3.096175043105187e-05
+402.8000000000234 3.0999956650709434e-05
+402.9000000000234 3.103820233659741e-05
+403.0000000000234 3.10764875218744e-05
+403.10000000002344 3.111553361129934e-05
+403.20000000002346 3.11546209958817e-05
+403.3000000000235 3.119374971142995e-05
+403.4000000000235 3.1232919793867524e-05
+403.50000000002353 3.127213127905232e-05
+403.60000000002356 3.131138420286688e-05
+403.7000000000236 3.135067860121828e-05
+403.8000000000236 3.139001451012903e-05
+403.9000000000236 3.142939196551038e-05
+404.00000000002365 3.146881100343383e-05
+404.10000000002367 3.150598759081247e-05
+404.2000000000237 3.154320073935427e-05
+404.3000000000237 3.158045047801279e-05
+404.40000000002374 3.161773683585048e-05
+404.50000000002376 3.165505984194957e-05
+404.6000000000238 3.170098272974114e-05
+404.7000000000238 3.174695790109813e-05
+404.80000000002383 3.179298540212816e-05
+404.90000000002385 3.183906527924388e-05
+405.0000000000239 3.1885197578702345e-05
+405.1000000000239 3.191787224420935e-05
+405.2000000000239 3.1950574675322205e-05
+405.30000000002394 3.198330489119136e-05
+405.40000000002397 3.2016062910885594e-05
+405.500000000024 3.204884875362197e-05
+405.600000000024 3.208166243853595e-05
+405.70000000002403 3.2114503984819404e-05
+405.80000000002406 3.214737341158233e-05
+405.9000000000241 3.218027073812954e-05
+406.0000000000241 3.221319598354698e-05
+406.1000000000241 3.22521194909163e-05
+406.20000000002415 3.229108217048171e-05
+406.30000000002417 3.2330084053974735e-05
+406.4000000000242 3.2369125173285746e-05
+406.5000000000242 3.240820556018593e-05
+406.60000000002424 3.244732524655907e-05
+406.70000000002426 3.248648426426249e-05
+406.8000000000243 3.252568264526642e-05
+406.9000000000243 3.256492042146807e-05
+407.00000000002433 3.260419762478214e-05
+407.10000000002435 3.263345833967162e-05
+407.2000000000244 3.26627404504279e-05
+407.3000000000244 3.269204396961428e-05
+407.4000000000244 3.272136890961273e-05
+407.50000000002444 3.275071528299772e-05
+407.60000000002447 3.278008310230275e-05
+407.7000000000245 3.280947237997328e-05
+407.8000000000245 3.283888312860082e-05
+407.90000000002453 3.286831536064206e-05
+408.00000000002456 3.2897769088702155e-05
+408.1000000000246 3.293677766928142e-05
+408.2000000000246 3.297582505943727e-05
+408.3000000000246 3.3014911290745257e-05
+408.40000000002465 3.305403639475412e-05
+408.50000000002467 3.3093200403127046e-05
+408.6000000000247 3.3132403347359e-05
+408.7000000000247 3.317164525920083e-05
+408.80000000002474 3.321092617023507e-05
+408.90000000002476 3.325024611220622e-05
+409.0000000000248 3.3289605116735995e-05
+409.1000000000248 3.332440141112673e-05
+409.20000000002483 3.335922783515035e-05
+409.30000000002485 3.339408440973277e-05
+409.4000000000249 3.342897115600102e-05
+409.5000000000249 3.3463888094856086e-05
+409.6000000000249 3.3498835247447646e-05
+409.70000000002494 3.3533812634746684e-05
+409.80000000002497 3.356882027778286e-05
+409.900000000025 3.360385819769236e-05
+410.000000000025 3.3638926415480115e-05
+410.10000000002503 3.367529015598009e-05
+410.20000000002506 3.3711686401730576e-05
+410.3000000000251 3.374811517595761e-05
+410.4000000000251 3.3784576501995665e-05
+410.5000000000251 3.382107040300265e-05
+410.60000000002515 3.386658723614479e-05
+410.70000000002517 3.391215132787972e-05
+410.8000000000252 3.395776271588941e-05
+410.9000000000252 3.400342143787803e-05
+411.00000000002524 3.404912753152016e-05
+411.10000000002526 3.4080883435186597e-05
+411.2000000000253 3.41126637119918e-05
+411.3000000000253 3.414446837700997e-05
+411.40000000002533 3.417629744527425e-05
+411.50000000002535 3.42081509318732e-05
+411.6000000000254 3.424002885190264e-05
+411.7000000000254 3.427193122041734e-05
+411.8000000000254 3.4303858052479146e-05
+411.90000000002544 3.433580936320549e-05
+412.00000000002547 3.436778516772173e-05
+412.1000000000255 3.4402609739482165e-05
+412.2000000000255 3.443746335601896e-05
+412.30000000002553 3.447234603665892e-05
+412.40000000002556 3.450725780073859e-05
+412.5000000000256 3.4542198667555696e-05
+412.6000000000256 3.4577168656514845e-05
+412.7000000000256 3.461216778688457e-05
+412.80000000002565 3.4647196077991634e-05
+412.90000000002567 3.468225354931858e-05
+413.0000000000257 3.471734022011325e-05
+413.1000000000257 3.474849410489817e-05
+413.20000000002574 3.4779670866810414e-05
+413.30000000002576 3.481087051921901e-05
+413.4000000000258 3.484209307559665e-05
+413.5000000000258 3.4873338549422054e-05
+413.60000000002583 3.4904606954180136e-05
+413.70000000002585 3.493589830331296e-05
+413.8000000000259 3.496721261026857e-05
+413.9000000000259 3.499854988855007e-05
+414.0000000000259 3.502991015161841e-05
+414.10000000002594 3.506433118775191e-05
+414.20000000002597 3.50987801458798e-05
+414.300000000026 3.513325704412173e-05
+414.400000000026 3.516776190080316e-05
+414.50000000002603 3.52022947340619e-05
+414.60000000002606 3.5236855562143354e-05
+414.7000000000261 3.5271444403252724e-05
+414.8000000000261 3.530606127565362e-05
+414.9000000000261 3.5340706197618873e-05
+415.00000000002615 3.537537918737992e-05
+415.10000000002617 3.540571066928163e-05
+415.2000000000262 3.543606320188179e-05
+415.3000000000262 3.546643679667575e-05
+415.40000000002624 3.54968314652626e-05
+415.50000000002626 3.55272472191472e-05
+415.6000000000263 3.5557684069888624e-05
+415.7000000000263 3.5588142028951546e-05
+415.80000000002633 3.561862110795406e-05
+415.90000000002635 3.564912131841986e-05
+416.0000000000264 3.5679642671927355e-05
+416.1000000000264 3.5711876518065314e-05
+416.2000000000264 3.574413411786349e-05
+416.30000000002644 3.5776415485225995e-05
+416.40000000002647 3.580872063396336e-05
+416.5000000000265 3.584104957804163e-05
+416.6000000000265 3.5873402331333424e-05
+416.70000000002653 3.590577890771734e-05
+416.80000000002656 3.593817932117796e-05
+416.9000000000266 3.597060358555624e-05
+417.0000000000266 3.600305171484802e-05
+417.1000000000266 3.603185489930329e-05
+417.20000000002665 3.606067651832466e-05
+417.30000000002667 3.608951658115385e-05
+417.4000000000267 3.611837509698595e-05
+417.5000000000267 3.614725207511975e-05
+417.60000000002674 3.6176147524757086e-05
+417.70000000002676 3.620506145510334e-05
+417.8000000000268 3.6233993875367114e-05
+417.9000000000268 3.62629447948609e-05
+418.00000000002683 3.6291914222799754e-05
+418.10000000002685 3.6319354507742026e-05
+418.2000000000269 3.6346811173801246e-05
+418.3000000000269 3.6374284228654435e-05
+418.4000000000269 3.640177367972951e-05
+418.50000000002694 3.64292795347086e-05
+418.60000000002697 3.6456801801074995e-05
+418.700000000027 3.6484340486364795e-05
+418.800000000027 3.6511895598267887e-05
+418.90000000002703 3.653946714422457e-05
+419.00000000002706 3.656705513188063e-05
+419.1000000000271 3.659916206857007e-05
+419.2000000000271 3.663129214488931e-05
+419.3000000000271 3.6663445374282936e-05
+419.40000000002715 3.6695621770100325e-05
+419.50000000002717 3.672782134584874e-05
+419.6000000000272 3.676004411499093e-05
+419.7000000000272 3.6792290090843514e-05
+419.80000000002724 3.682455928698268e-05
+419.90000000002726 3.685685171683852e-05
+420.0000000000273 3.688916739389701e-05
+420.1000000000273 3.691804724899571e-05
+420.20000000002733 3.694694506275061e-05
+420.30000000002735 3.697586084375584e-05
+420.4000000000274 3.700479460065934e-05
+420.5000000000274 3.7033746342061e-05
+420.6000000000274 3.706271607656379e-05
+420.70000000002744 3.709170381292657e-05
+420.80000000002747 3.712070955965621e-05
+420.9000000000275 3.714973332546666e-05
+421.0000000000275 3.717877511897231e-05
+421.10000000002753 3.720647709956427e-05
+421.20000000002756 3.72341953423448e-05
+421.3000000000276 3.726192985473868e-05
+421.4000000000276 3.728968064396843e-05
+421.5000000000276 3.731744771751475e-05
+421.60000000002765 3.73452310827073e-05
+421.70000000002767 3.7373030746826834e-05
+421.8000000000277 3.740084671736139e-05
+421.9000000000277 3.7428679001596514e-05
+422.00000000002774 3.74565276069216e-05
+422.10000000002776 3.7480822203241174e-05
+422.2000000000278 3.7505128778456344e-05
+422.3000000000278 3.7529447337010946e-05
+422.40000000002783 3.7553777883298544e-05
+422.50000000002785 3.757812042191947e-05
+422.6000000000279 3.7602474957269644e-05
+422.7000000000279 3.7626841493900455e-05
+422.8000000000279 3.765122003621012e-05
+422.90000000002794 3.7675610588700925e-05
+423.00000000002797 3.7700013155875405e-05
+423.100000000028 3.7721109545092093e-05
+423.200000000028 3.774221522756983e-05
+423.30000000002804 3.776333020629207e-05
+423.40000000002806 3.778445448434621e-05
+423.5000000000281 3.7805588064771495e-05
+423.6000000000281 3.7836442563227075e-05
+423.7000000000281 3.786731723137001e-05
+423.80000000002815 3.789821207945202e-05
+423.9000000000282 3.792912711767686e-05
+424.0000000000282 3.796006235630293e-05
+424.1000000000282 3.798812514330622e-05
+424.20000000002824 3.801620420198809e-05
+424.30000000002826 3.804429953961822e-05
+424.4000000000283 3.8072411163416794e-05
+424.5000000000283 3.8100539080502485e-05
+424.60000000002833 3.8128683298151864e-05
+424.70000000002835 3.8156843823591844e-05
+424.8000000000284 3.818502066394778e-05
+424.9000000000284 3.8213213826451033e-05
+425.0000000000284 3.8241423318335655e-05
+425.10000000002844 3.8270926780295293e-05
+425.20000000002847 3.830044847696084e-05
+425.3000000000285 3.8329988417230494e-05
+425.4000000000285 3.8359546609953714e-05
+425.50000000002854 3.838912306403523e-05
+425.60000000002856 3.841871778833091e-05
+425.7000000000286 3.844833079180426e-05
+425.8000000000286 3.8477962083265374e-05
+425.9000000000286 3.850761167168437e-05
+426.00000000002865 3.853727956587635e-05
+426.1000000000287 3.8561929168458204e-05
+426.2000000000287 3.858659065763861e-05
+426.3000000000287 3.861126403780289e-05
+426.40000000002874 3.863594931312811e-05
+426.50000000002876 3.866064648784462e-05
+426.6000000000288 3.86853555662886e-05
+426.7000000000288 3.8710076552692496e-05
+426.80000000002883 3.873480945134227e-05
+426.90000000002885 3.875955426647233e-05
+427.0000000000289 3.8784311002372e-05
+427.1000000000289 3.881368372839951e-05
+427.2000000000289 3.8843073951997955e-05
+427.30000000002894 3.887248168111432e-05
+427.40000000002897 3.8901906923645496e-05
+427.500000000029 3.8931349687540626e-05
+427.600000000029 3.895091140094507e-05
+427.70000000002904 3.897048070532037e-05
+427.80000000002906 3.899005760274822e-05
+427.9000000000291 3.900964209546887e-05
+428.0000000000291 3.9029234185569864e-05
+428.1000000000291 3.906572459232184e-05
+428.20000000002915 3.910223743260479e-05
+428.3000000000292 3.913877271620399e-05
+428.4000000000292 3.9175330452960335e-05
+428.5000000000292 3.9211910652608986e-05
+428.60000000002924 3.923856944010467e-05
+428.70000000002926 3.92652422333641e-05
+428.8000000000293 3.929192903789298e-05
+428.9000000000293 3.931862985935728e-05
+429.00000000002933 3.934534470326498e-05
+429.10000000002935 3.9369219753613054e-05
+429.2000000000294 3.939310556354446e-05
+429.3000000000294 3.941700213660797e-05
+429.4000000000294 3.9440909476459294e-05
+429.50000000002944 3.946482758664583e-05
+429.60000000002947 3.947877447971038e-05
+429.7000000000295 3.9492725095627476e-05
+429.8000000000295 3.950667943509147e-05
+429.90000000002954 3.952063749895621e-05
+430.00000000002956 3.953459928786709e-05
+430.1000000000296 3.956148192015986e-05
+430.2000000000296 3.9588378729660224e-05
+430.3000000000296 3.9615289722007133e-05
+430.40000000002965 3.964221490294758e-05
+430.5000000000297 3.9669154278283456e-05
+430.6000000000297 3.9696107853658636e-05
+430.7000000000297 3.9723075634825096e-05
+430.80000000002974 3.975005762753652e-05
+430.90000000002976 3.9777053837548286e-05
+431.0000000000298 3.980406427056215e-05
+431.1000000000298 3.982444965851846e-05
+431.20000000002983 3.984484217115324e-05
+431.30000000002985 3.986524181013615e-05
+431.4000000000299 3.9885648577297346e-05
+431.5000000000299 3.990606247436033e-05
+431.6000000000299 3.992648350310243e-05
+431.70000000002995 3.994691166524772e-05
+431.80000000002997 3.996734696257397e-05
+431.90000000003 3.9987789396805845e-05
+432.00000000003 4.000823896977691e-05
+432.10000000003004 4.0034809892369786e-05
+432.20000000003006 4.006139429923737e-05
+432.3000000000301 4.008799219544684e-05
+432.4000000000301 4.0114603586066574e-05
+432.5000000000301 4.014122847627039e-05
+432.60000000003015 4.0157776977393044e-05
+432.7000000000302 4.0174330669834645e-05
+432.8000000000302 4.0190889554778e-05
+432.9000000000302 4.02074536334063e-05
+433.00000000003024 4.022402290695838e-05
+433.10000000003026 4.0246329816592135e-05
+433.2000000000303 4.026864555890698e-05
+433.3000000000303 4.029097013627387e-05
+433.40000000003033 4.031330355127926e-05
+433.50000000003035 4.033564580640245e-05
+433.6000000000304 4.035805323970618e-05
+433.7000000000304 4.0380505816495374e-05
+433.8000000000304 4.040298484652615e-05
+433.90000000003045 4.0425472988057114e-05
+434.00000000003047 4.044795425115576e-05
+434.1000000000305 4.046459908464079e-05
+434.2000000000305 4.0481205444300306e-05
+434.30000000003054 4.049776144244838e-05
+434.40000000003056 4.051425656495893e-05
+434.5000000000306 4.0530681674476496e-05
+434.6000000000306 4.0557187845438604e-05
+434.7000000000306 4.058361587536808e-05
+434.80000000003065 4.0609961811725225e-05
+434.9000000000307 4.0636223007384906e-05
+435.0000000000307 4.066239812484678e-05
+435.1000000000307 4.0686212269785045e-05
+435.20000000003074 4.070993915946148e-05
+435.30000000003076 4.0733581425704604e-05
+435.4000000000308 4.075714302605393e-05
+435.5000000000308 4.078062924769439e-05
+435.60000000003083 4.080405006200488e-05
+435.70000000003085 4.082741223539799e-05
+435.8000000000309 4.085072395507538e-05
+435.9000000000309 4.0873994833161365e-05
+436.0000000000309 4.089723591061588e-05
+436.10000000003095 4.091600136299388e-05
+436.20000000003097 4.0934759423378225e-05
+436.300000000031 4.0953525441175215e-05
+436.400000000031 4.0972316203823874e-05
+436.50000000003104 4.0991149939782034e-05
+436.60000000003106 4.101004463810368e-05
+436.7000000000311 4.1028942867328634e-05
+436.8000000000311 4.104784435578365e-05
+436.9000000000311 4.1066748789856715e-05
+437.00000000003115 4.108565581379188e-05
+437.1000000000312 4.110828135630223e-05
+437.2000000000312 4.113091197131553e-05
+437.3000000000312 4.1153547176242044e-05
+437.40000000003124 4.117618644571039e-05
+437.50000000003126 4.119882921155857e-05
+437.6000000000313 4.12214765554078e-05
+437.7000000000313 4.12441319018591e-05
+437.80000000003133 4.12667953771969e-05
+437.90000000003135 4.1289467191464264e-05
+438.0000000000314 4.13121476388571e-05
+438.1000000000314 4.132377168311236e-05
+438.2000000000314 4.1335398583880206e-05
+438.30000000003145 4.134702888561418e-05
+438.40000000003147 4.1358663217299865e-05
+438.5000000000315 4.13703022923627e-05
+438.6000000000315 4.139217033527845e-05
+438.70000000003154 4.1414008649534465e-05
+438.80000000003156 4.143583599758957e-05
+438.9000000000316 4.1457669756582456e-05
+439.0000000000316 4.1479525914382736e-05
+439.1000000000316 4.1489230657239465e-05
+439.20000000003165 4.149897912397253e-05
+439.3000000000317 4.1508783062688175e-05
+439.4000000000317 4.1518652805025915e-05
+439.5000000000317 4.152859726449693e-05
+439.60000000003174 4.154893128565846e-05
+439.70000000003176 4.156936096897371e-05
+439.8000000000318 4.158989173039515e-05
+439.9000000000318 4.16105276077676e-05
+440.00000000003183 4.163127125719519e-05
+440.10000000003186 4.165222493443393e-05
+440.2000000000319 4.1673287579683685e-05
+440.3000000000319 4.1694457684024005e-05
+440.4000000000319 4.1715732342971994e-05
+440.50000000003195 4.173710725270611e-05
+440.60000000003197 4.175857670631114e-05
+440.700000000032 4.178013121921962e-05
+440.800000000032 4.1801761566220306e-05
+440.90000000003204 4.182345706429396e-05
+441.00000000003206 4.184520556881904e-05
+441.1000000000321 4.186424893500382e-05
+441.2000000000321 4.188331424902309e-05
+441.3000000000321 4.190238495734325e-05
+441.40000000003215 4.192144303418407e-05
+441.5000000000322 4.1940468978194287e-05
+441.6000000000322 4.1959441809352337e-05
+441.7000000000322 4.197842007952046e-05
+441.80000000003224 4.1997403789850316e-05
+441.90000000003226 4.201639294132869e-05
+442.0000000000323 4.203538753505384e-05
+442.1000000000323 4.2058732312154814e-05
+442.20000000003233 4.208208641983611e-05
+442.30000000003236 4.2105449860803e-05
+442.4000000000324 4.2128822637761175e-05
+442.5000000000324 4.215220475341348e-05
+442.6000000000324 4.216521069053258e-05
+442.70000000003245 4.217821956341848e-05
+442.80000000003247 4.2191231372535493e-05
+442.9000000000325 4.220424611840335e-05
+443.0000000000325 4.2217263801543116e-05
+443.10000000003254 4.22340851241764e-05
+443.20000000003256 4.2250910101673776e-05
+443.3000000000326 4.226773873442135e-05
+443.4000000000326 4.228457102297085e-05
+443.5000000000326 4.2301406967818854e-05
+443.60000000003265 4.231824656940671e-05
+443.7000000000327 4.233508982817586e-05
+443.8000000000327 4.2351936744678064e-05
+443.9000000000327 4.23687873192996e-05
+444.00000000003274 4.238564155259113e-05
+444.10000000003276 4.239889597895989e-05
+444.2000000000328 4.241215338237226e-05
+444.3000000000328 4.242541376332981e-05
+444.40000000003283 4.243867712238944e-05
+444.50000000003286 4.2451943460052925e-05
+444.6000000000329 4.246521277676692e-05
+444.7000000000329 4.247848507303346e-05
+444.8000000000329 4.249176034941018e-05
+444.90000000003295 4.250503860628866e-05
+445.00000000003297 4.2518319844285146e-05
+445.100000000033 4.254034577453524e-05
+445.200000000033 4.256237966277791e-05
+445.30000000003304 4.258442151108008e-05
+445.40000000003306 4.260647132145372e-05
+445.5000000000331 4.262852909596644e-05
+445.6000000000331 4.265059483668637e-05
+445.7000000000331 4.2672668545626344e-05
+445.80000000003315 4.2694750224855046e-05
+445.9000000000332 4.271683987638609e-05
+446.0000000000332 4.273893750234682e-05
+446.1000000000332 4.276833654779162e-05
+446.20000000003324 4.279774491247749e-05
+446.30000000003326 4.282716259795943e-05
+446.4000000000333 4.285658960601496e-05
+446.5000000000333 4.2886025938303476e-05
+446.60000000003333 4.2894496292718435e-05
+446.70000000003336 4.2902967689780314e-05
+446.8000000000334 4.2911440129597986e-05
+446.9000000000334 4.2919913612336046e-05
+447.0000000000334 4.292838813821866e-05
+447.10000000003345 4.294823652102547e-05
+447.20000000003347 4.2968090877522995e-05
+447.3000000000335 4.2987951208987614e-05
+447.4000000000335 4.30078175165846e-05
+447.50000000003354 4.302768980164289e-05
+447.60000000003356 4.303705840522819e-05
+447.7000000000336 4.304642841251172e-05
+447.8000000000336 4.305579982361793e-05
+447.90000000003363 4.30651726388387e-05
+448.00000000003365 4.307454685835752e-05
+448.1000000000337 4.309315310103692e-05
+448.2000000000337 4.311176424187926e-05
+448.3000000000337 4.313038028186897e-05
+448.40000000003374 4.314900122182316e-05
+448.50000000003376 4.316762706255908e-05
+448.6000000000338 4.318631457429608e-05
+448.7000000000338 4.320504354799011e-05
+448.80000000003383 4.3223795139021306e-05
+448.90000000003386 4.3242551870286466e-05
+449.0000000000339 4.326129763484753e-05
+449.1000000000339 4.328004580921102e-05
+449.2000000000339 4.3298754921274064e-05
+449.30000000003395 4.3317412993601136e-05
+449.40000000003397 4.333600943128538e-05
+449.500000000034 4.3354535025392945e-05
+449.600000000034 4.337298551894441e-05
+449.70000000003404 4.339135321503361e-05
+449.80000000003406 4.3409631897597016e-05
+449.9000000000341 4.342781683428003e-05
+450.0000000000341 4.3445904780003714e-05
+450.10000000003413 4.3458424400478176e-05
+450.20000000003415 4.347084316288125e-05
+450.3000000000342 4.3483162340870134e-05
+450.4000000000342 4.34953847065929e-05
+450.5000000000342 4.3507514532600814e-05
+450.60000000003424 4.353013164013725e-05
+450.70000000003427 4.35526739257142e-05
+450.8000000000343 4.357515071783519e-05
+450.9000000000343 4.359757282087356e-05
+451.00000000003433 4.361995251886658e-05
+451.10000000003436 4.363540105190117e-05
+451.2000000000344 4.365083097965454e-05
+451.3000000000344 4.366625904827318e-05
+451.4000000000344 4.368170348725019e-05
+451.50000000003445 4.36971840118317e-05
+451.60000000003447 4.370212737077675e-05
+451.7000000000345 4.370706887705272e-05
+451.8000000000345 4.3712009259960946e-05
+451.90000000003454 4.3716949293405696e-05
+452.00000000003456 4.3721889795870716e-05
+452.1000000000346 4.3742146743010215e-05
+452.2000000000346 4.376241185026081e-05
+452.30000000003463 4.3782686074521686e-05
+452.40000000003465 4.3802970418830876e-05
+452.5000000000347 4.382326593247145e-05
+452.6000000000347 4.3843573711324325e-05
+452.7000000000347 4.386388991653825e-05
+452.80000000003474 4.3884214263889206e-05
+452.90000000003477 4.39045464242865e-05
+453.0000000000348 4.392488602338129e-05
+453.1000000000348 4.393126500163302e-05
+453.20000000003483 4.393764480900176e-05
+453.30000000003486 4.394402493429641e-05
+453.4000000000349 4.395040482158277e-05
+453.5000000000349 4.395678386992769e-05
+453.6000000000349 4.3973733760459233e-05
+453.70000000003495 4.399064865768983e-05
+453.80000000003497 4.400754836126754e-05
+453.900000000035 4.402445123170783e-05
+454.000000000035 4.4041374187413565e-05
+454.10000000003504 4.405592405044251e-05
+454.20000000003506 4.40705219378806e-05
+454.3000000000351 4.4085180414973355e-05
+454.4000000000351 4.4099910591005694e-05
+454.50000000003513 4.41147221171671e-05
+454.60000000003515 4.412962318390166e-05
+454.7000000000352 4.41446205189374e-05
+454.8000000000352 4.415971938422797e-05
+454.9000000000352 4.4174923573550545e-05
+455.00000000003524 4.419023541015255e-05
+455.10000000003527 4.4198117192706974e-05
+455.2000000000353 4.42061051708265e-05
+455.3000000000353 4.421419718753504e-05
+455.40000000003533 4.422238960750678e-05
+455.50000000003536 4.4230677315296075e-05
+455.6000000000354 4.424971372719293e-05
+455.7000000000354 4.4268834825592265e-05
+455.8000000000354 4.4288031097656446e-05
+455.90000000003545 4.430729153376768e-05
+456.00000000003547 4.432660362447936e-05
+456.1000000000355 4.4334448528167216e-05
+456.2000000000355 4.4342311133851644e-05
+456.30000000003554 4.435017441162832e-05
+456.40000000003556 4.4358019837781006e-05
+456.5000000000356 4.436582739333345e-05
+456.6000000000356 4.438425512360872e-05
+456.70000000003563 4.440268736337785e-05
+456.80000000003565 4.442112411329151e-05
+456.9000000000357 4.443956537400049e-05
+457.0000000000357 4.4458011146211965e-05
+457.1000000000357 4.447589260089733e-05
+457.20000000003574 4.4493778151162154e-05
+457.30000000003577 4.4511667797544606e-05
+457.4000000000358 4.452956154058311e-05
+457.5000000000358 4.454745938092545e-05
+457.60000000003583 4.45546639207714e-05
+457.70000000003586 4.456186909920666e-05
+457.8000000000359 4.4569074916251364e-05
+457.9000000000359 4.45762813720957e-05
+458.0000000000359 4.458348846681698e-05
+458.10000000003595 4.459163907323839e-05
+458.20000000003597 4.459979059159423e-05
+458.300000000036 4.4607943021989424e-05
+458.400000000036 4.4616096364585664e-05
+458.50000000003604 4.4624250619491894e-05
+458.60000000003606 4.464318423744179e-05
+458.7000000000361 4.466216286009235e-05
+458.8000000000361 4.4681165777370314e-05
+458.90000000003613 4.4700173782587986e-05
+459.00000000003615 4.471916917554068e-05
+459.1000000000362 4.4735612703409924e-05
+459.2000000000362 4.4752010910614596e-05
+459.3000000000362 4.476835064650104e-05
+459.40000000003624 4.478462028282872e-05
+459.50000000003627 4.4800809716858116e-05
+459.6000000000363 4.4806174672294496e-05
+459.7000000000363 4.481143891400243e-05
+459.80000000003633 4.481659823158929e-05
+459.90000000003636 4.4821649865017055e-05
+460.0000000000364 4.482659250568304e-05
+460.1000000000364 4.484463914838796e-05
+460.2000000000364 4.486258246237515e-05
+460.30000000003645 4.4880425406713935e-05
+460.40000000003647 4.489817240036465e-05
+460.5000000000365 4.4915829325228655e-05
+460.6000000000365 4.492266017467205e-05
+460.70000000003654 4.492941626507047e-05
+460.80000000003656 4.493610670465648e-05
+460.9000000000366 4.4942742155081454e-05
+461.0000000000366 4.4949334832048026e-05
+461.10000000003663 4.496089500623486e-05
+461.20000000003665 4.4972441235603456e-05
+461.3000000000367 4.4983990406531614e-05
+461.4000000000367 4.499556097249603e-05
+461.5000000000367 4.5007172956356056e-05
+461.60000000003674 4.5008091480333135e-05
+461.70000000003677 4.500900758675304e-05
+461.8000000000368 4.500992097940377e-05
+461.9000000000368 4.501083131618237e-05
+462.00000000003683 4.5011738209605904e-05
+462.10000000003686 4.502573550011887e-05
+462.2000000000369 4.503973011512797e-05
+462.3000000000369 4.505372152598888e-05
+462.4000000000369 4.506770915781075e-05
+462.50000000003695 4.5081692389326237e-05
+462.60000000003697 4.5095672406363744e-05
+462.700000000037 4.510965295930039e-05
+462.800000000037 4.512363418445666e-05
+462.90000000003704 4.5137616309686836e-05
+463.00000000003706 4.5151599654581295e-05
+463.1000000000371 4.516057310408697e-05
+463.2000000000371 4.516954833921179e-05
+463.30000000003713 4.5178525955211655e-05
+463.40000000003715 4.518750663964785e-05
+463.5000000000372 4.5196491171974416e-05
+463.6000000000372 4.521619324910267e-05
+463.7000000000372 4.523585944672013e-05
+463.80000000003724 4.525551029007419e-05
+463.90000000003727 4.527516478228905e-05
+464.0000000000373 4.529484040058775e-05
+464.1000000000373 4.5300141334488414e-05
+464.20000000003733 4.5305488509443645e-05
+464.30000000003736 4.53108947476911e-05
+464.4000000000374 4.531637131777048e-05
+464.5000000000374 4.532192793350172e-05
+464.6000000000374 4.5338365032358336e-05
+464.70000000003745 4.535490224663736e-05
+464.80000000003747 4.537154545286902e-05
+464.9000000000375 4.538829901962458e-05
+465.0000000000375 4.540516580462936e-05
+465.10000000003754 4.5418451178067174e-05
+465.20000000003756 4.543184870717662e-05
+465.3000000000376 4.544535667339152e-05
+465.4000000000376 4.545897183695963e-05
+465.50000000003763 4.547268943460483e-05
+465.60000000003765 4.548650317709943e-05
+465.7000000000377 4.550040266204719e-05
+465.8000000000377 4.551437777831304e-05
+465.9000000000377 4.552841683465194e-05
+466.00000000003774 4.554250655695346e-05
+466.10000000003777 4.556032144205821e-05
+466.2000000000378 4.557815811364742e-05
+466.3000000000378 4.559599853463661e-05
+466.40000000003783 4.56138230689533e-05
+466.50000000003786 4.5631610478425086e-05
+466.6000000000379 4.5638523103726255e-05
+466.7000000000379 4.564543626396494e-05
+466.8000000000379 4.565234995920881e-05
+466.90000000003795 4.565926418958284e-05
+467.00000000003797 4.5666178955158376e-05
+467.100000000038 4.568250602767295e-05
+467.200000000038 4.5698835891880644e-05
+467.30000000003804 4.571516854806212e-05
+467.40000000003806 4.5731503996326254e-05
+467.5000000000381 4.574784223694957e-05
+467.6000000000381 4.575335407381466e-05
+467.70000000003813 4.575886609422493e-05
+467.80000000003815 4.576437829822498e-05
+467.9000000000382 4.576989068585956e-05
+468.0000000000382 4.577540325717773e-05
+468.1000000000382 4.5792178416724874e-05
+468.20000000003824 4.580895667109063e-05
+468.30000000003827 4.582573802051523e-05
+468.4000000000383 4.5842522465296245e-05
+468.5000000000383 4.5859310005669785e-05
+468.60000000003834 4.586525779146929e-05
+468.70000000003836 4.587120586111539e-05
+468.8000000000384 4.5877154214714235e-05
+468.9000000000384 4.588310285231463e-05
+469.0000000000384 4.588905177402622e-05
+469.10000000003845 4.590365952396377e-05
+469.2000000000385 4.591826901201229e-05
+469.3000000000385 4.593288023820029e-05
+469.4000000000385 4.594749320261364e-05
+469.50000000003854 4.596210790533412e-05
+469.60000000003856 4.5965870539965206e-05
+469.7000000000386 4.596963313610998e-05
+469.8000000000386 4.59733956938923e-05
+469.90000000003863 4.5977158213378925e-05
+470.00000000003865 4.598092069469868e-05
+470.1000000000387 4.599701578902464e-05
+470.2000000000387 4.6013113426669846e-05
+470.3000000000387 4.602921360764293e-05
+470.40000000003874 4.604531633212494e-05
+470.50000000003877 4.606142160018191e-05
+470.6000000000388 4.6077529411937384e-05
+470.7000000000388 4.609363976745729e-05
+470.80000000003884 4.61097526668651e-05
+470.90000000003886 4.612586811028415e-05
+471.0000000000389 4.6141986097775935e-05
+471.1000000000389 4.6146709640492414e-05
+471.2000000000389 4.615143326007214e-05
+471.30000000003895 4.615615695657035e-05
+471.400000000039 4.616088073004224e-05
+471.500000000039 4.616560458066232e-05
+471.600000000039 4.618120491091029e-05
+471.70000000003904 4.619680754411302e-05
+471.80000000003906 4.6212412480309936e-05
+471.9000000000391 4.622801971977071e-05
+472.0000000000391 4.624362926253087e-05
+472.10000000003913 4.624913403451979e-05
+472.20000000003915 4.625463897636003e-05
+472.3000000000392 4.626014408803703e-05
+472.4000000000392 4.626564936970888e-05
+472.5000000000392 4.627115482142301e-05
+472.60000000003924 4.6287549069119163e-05
+472.70000000003927 4.6303946078004126e-05
+472.8000000000393 4.632034584816974e-05
+472.9000000000393 4.6336748379822954e-05
+473.00000000003934 4.635315367316543e-05
+473.10000000003936 4.635610242689744e-05
+473.2000000000394 4.635905098007965e-05
+473.3000000000394 4.63619993328343e-05
+473.4000000000394 4.636494748522599e-05
+473.50000000003945 4.636789543726606e-05
+473.6000000000395 4.6381741154615547e-05
+473.7000000000395 4.639558805731449e-05
+473.8000000000395 4.640943614532933e-05
+473.90000000003954 4.642328541856874e-05
+474.00000000003956 4.643713587693803e-05
+474.1000000000396 4.644237142539062e-05
+474.2000000000396 4.644760714919783e-05
+474.30000000003963 4.6452843048358806e-05
+474.40000000003965 4.6458079123045716e-05
+474.5000000000397 4.6463315373257815e-05
+474.6000000000397 4.6468551799052045e-05
+474.7000000000397 4.647378840060067e-05
+474.80000000003974 4.647902517796072e-05
+474.90000000003977 4.648426213118938e-05
+475.0000000000398 4.6489499260348126e-05
+475.1000000000398 4.650609251381035e-05
+475.20000000003984 4.652268854867531e-05
+475.30000000003986 4.653928736508512e-05
+475.4000000000399 4.655588896306655e-05
+475.5000000000399 4.6572493342815006e-05
+475.6000000000399 4.657817947757678e-05
+475.70000000003995 4.65838657278963e-05
+475.80000000004 4.658955209379341e-05
+475.90000000004 4.6595238575288035e-05
+476.00000000004 4.660092517240312e-05
+476.10000000004004 4.661412577335538e-05
+476.20000000004006 4.662732718998863e-05
+476.3000000000401 4.6640529422302616e-05
+476.4000000000401 4.6653732470181475e-05
+476.50000000004013 4.666693633356273e-05
+476.60000000004015 4.666921145462689e-05
+476.7000000000402 4.6671486325484536e-05
+476.8000000000402 4.667376094632892e-05
+476.9000000000402 4.6676035317122184e-05
+477.00000000004025 4.667830943805888e-05
+477.10000000004027 4.668350073018063e-05
+477.2000000000403 4.6688692164586935e-05
+477.3000000000403 4.669388374127173e-05
+477.40000000004034 4.6699075460344524e-05
+477.50000000004036 4.67042673218615e-05
+477.6000000000404 4.672039830939833e-05
+477.7000000000404 4.673653187135912e-05
+477.8000000000404 4.6752668008050455e-05
+477.90000000004045 4.676880671954781e-05
+478.0000000000405 4.6784948006094956e-05
+478.1000000000405 4.6788419819159274e-05
+478.2000000000405 4.679189151279791e-05
+478.30000000004054 4.679536308695543e-05
+478.40000000004056 4.6798834541807806e-05
+478.5000000000406 4.680230587741536e-05
+478.6000000000406 4.6805777093838486e-05
+478.70000000004063 4.6809248191137535e-05
+478.80000000004065 4.681271916948867e-05
+478.9000000000407 4.681619002883659e-05
+479.0000000000407 4.681966076935729e-05
+479.1000000000407 4.682244244501201e-05
+479.20000000004075 4.682522390375841e-05
+479.30000000004077 4.682800514566384e-05
+479.4000000000408 4.683078617085353e-05
+479.5000000000408 4.683356697939499e-05
+479.60000000004084 4.683634757129776e-05
+479.70000000004086 4.683912794680296e-05
+479.8000000000409 4.684190810586232e-05
+479.9000000000409 4.6844688048659145e-05
+480.0000000000409 4.684746777515003e-05
+480.10000000004095 4.686206041303265e-05
+480.200000000041 4.687665461655455e-05
+480.300000000041 4.689125038571209e-05
+480.400000000041 4.690584772044381e-05
+480.50000000004104 4.692044662079941e-05
+480.60000000004106 4.692408351580917e-05
+480.7000000000411 4.692772027694094e-05
+480.8000000000411 4.693135690424858e-05
+480.90000000004113 4.6934993397843885e-05
+481.00000000004115 4.693862975772672e-05
+481.1000000000412 4.695169524836021e-05
+481.2000000000412 4.696476146277791e-05
+481.3000000000412 4.697782840097475e-05
+481.40000000004125 4.699089606288781e-05
+481.50000000004127 4.70039644483916e-05
+481.6000000000413 4.7006063647590884e-05
+481.7000000000413 4.700816259054292e-05
+481.80000000004134 4.701026127738671e-05
+481.90000000004136 4.701235970820324e-05
+482.0000000000414 4.7014457883020996e-05
+482.1000000000414 4.70297736514211e-05
+482.2000000000414 4.704509138288338e-05
+482.30000000004145 4.7060411077439416e-05
+482.4000000000415 4.707573273506273e-05
+482.5000000000415 4.7091056355780265e-05
+482.6000000000415 4.709540398997391e-05
+482.70000000004154 4.709975156042298e-05
+482.80000000004156 4.7104099067226964e-05
+482.9000000000416 4.7108446510427316e-05
+483.0000000000416 4.711279389007017e-05
+483.10000000004163 4.7128086213660634e-05
+483.20000000004165 4.714338051838446e-05
+483.3000000000417 4.715867680424663e-05
+483.4000000000417 4.7173975071367924e-05
+483.5000000000417 4.7189275319753295e-05
+483.60000000004175 4.720463967044849e-05
+483.70000000004177 4.722004599087099e-05
+483.8000000000418 4.723547365055038e-05
+483.9000000000418 4.7250903523696416e-05
+484.00000000004184 4.726631799170939e-05
+484.10000000004186 4.726829119687319e-05
+484.2000000000419 4.727021604417549e-05
+484.3000000000419 4.7272079503658496e-05
+484.4000000000419 4.727387007580998e-05
+484.50000000004195 4.727557779186311e-05
+484.600000000042 4.7288188910514366e-05
+484.700000000042 4.730070253564771e-05
+484.800000000042 4.7313113221044206e-05
+484.90000000004204 4.7325417049097336e-05
+485.00000000004206 4.733761163319297e-05
+485.1000000000421 4.733898597057655e-05
+485.2000000000421 4.734025037162774e-05
+485.30000000004213 4.7341407127417526e-05
+485.40000000004216 4.734246006429902e-05
+485.5000000000422 4.734341454433178e-05
+485.6000000000422 4.7355278869490945e-05
+485.7000000000422 4.736706293794416e-05
+485.80000000004225 4.737877537447832e-05
+485.90000000004227 4.739042644531725e-05
+486.0000000000423 4.7402028060130165e-05
+486.1000000000423 4.7413064511196184e-05
+486.20000000004234 4.742408008500687e-05
+486.30000000004236 4.743509163375964e-05
+486.4000000000424 4.744611766043008e-05
+486.5000000000424 4.7457178320775385e-05
+486.6000000000424 4.745729330662423e-05
+486.70000000004245 4.745739928932654e-05
+486.8000000000425 4.745749723016193e-05
+486.9000000000425 4.7457588090405166e-05
+487.0000000000425 4.7457672831564555e-05
+487.10000000004254 4.747373313677766e-05
+487.20000000004256 4.7489791880447295e-05
+487.3000000000426 4.750585002101771e-05
+487.4000000000426 4.7521908518276026e-05
+487.50000000004263 4.753796833352088e-05
+487.60000000004266 4.754302901035267e-05
+487.7000000000427 4.754809310559404e-05
+487.8000000000427 4.7553160283186704e-05
+487.9000000000427 4.755823030339898e-05
+488.00000000004275 4.7563303022648456e-05
+488.10000000004277 4.7563979588604276e-05
+488.2000000000428 4.756465855065325e-05
+488.3000000000428 4.756534005376657e-05
+488.40000000004284 4.756602433914722e-05
+488.50000000004286 4.756671174470687e-05
+488.6000000000429 4.7567336167637605e-05
+488.7000000000429 4.7567916489480567e-05
+488.8000000000429 4.7568473868714216e-05
+488.90000000004295 4.756902782673435e-05
+489.000000000043 4.756959624785861e-05
+489.100000000043 4.7581227496487405e-05
+489.200000000043 4.759290436714368e-05
+489.30000000004304 4.7604639872393766e-05
+489.40000000004306 4.7616445397554924e-05
+489.5000000000431 4.762833069868035e-05
+489.6000000000431 4.76292913477375e-05
+489.70000000004313 4.763035131699897e-05
+489.80000000004316 4.7631516987698194e-05
+489.9000000000432 4.7632793197444264e-05
+490.0000000000432 4.763418324022478e-05
+490.1000000000432 4.764716375952023e-05
+490.20000000004325 4.766026099178993e-05
+490.30000000004327 4.767347368132235e-05
+490.4000000000433 4.768679902471541e-05
+490.5000000000433 4.770023266906188e-05
+490.60000000004334 4.7702751907408676e-05
+490.70000000004336 4.770535945131347e-05
+490.8000000000434 4.7708044629847416e-05
+490.9000000000434 4.7710795125951336e-05
+491.0000000000434 4.771359697585395e-05
+491.10000000004345 4.7726179970600546e-05
+491.2000000000435 4.773878217565444e-05
+491.3000000000435 4.775138468313977e-05
+491.4000000000435 4.7763966919407765e-05
+491.50000000004354 4.7776506643014696e-05
+491.60000000004356 4.777795849869425e-05
+491.7000000000436 4.7779410082856254e-05
+491.8000000000436 4.778086139553701e-05
+491.90000000004363 4.778231243688911e-05
+492.00000000004366 4.778376320695412e-05
+492.1000000000437 4.779716143653817e-05
+492.2000000000437 4.781056055108645e-05
+492.3000000000437 4.782396055055859e-05
+492.40000000004375 4.783736143485609e-05
+492.50000000004377 4.785076320393371e-05
+492.6000000000438 4.785313978868672e-05
+492.7000000000438 4.78555161629798e-05
+492.80000000004384 4.785789232689223e-05
+492.90000000004386 4.78602682805614e-05
+493.0000000000439 4.786264402400861e-05
+493.1000000000439 4.786568143401042e-05
+493.20000000004393 4.7868718654223726e-05
+493.30000000004395 4.787175568465558e-05
+493.400000000044 4.7874792525487615e-05
+493.500000000044 4.7877829176673614e-05
+493.600000000044 4.7891898095893084e-05
+493.70000000004404 4.7905968224871145e-05
+493.80000000004407 4.792003956350896e-05
+493.9000000000441 4.793411211176595e-05
+494.0000000000441 4.794818586965434e-05
+494.10000000004413 4.795010437947554e-05
+494.20000000004416 4.795202262661979e-05
+494.3000000000442 4.795394061111461e-05
+494.4000000000442 4.7955858333103755e-05
+494.5000000000442 4.795777579267286e-05
+494.60000000004425 4.79596929898494e-05
+494.70000000004427 4.796160992483545e-05
+494.8000000000443 4.796352659760029e-05
+494.9000000000443 4.7965443008287795e-05
+495.00000000004434 4.796735915704673e-05
+495.10000000004436 4.798000257678413e-05
+495.2000000000444 4.799264641002094e-05
+495.3000000000444 4.8005290656699845e-05
+495.40000000004443 4.8017935316589e-05
+495.50000000004445 4.803058038968437e-05
+495.6000000000445 4.8032183994330504e-05
+495.7000000000445 4.8033787274729504e-05
+495.8000000000445 4.8035390230966e-05
+495.90000000004454 4.8036992863008327e-05
+496.00000000004457 4.8038595171115865e-05
+496.1000000000446 4.804014101664564e-05
+496.2000000000446 4.80416865922468e-05
+496.30000000004463 4.80432318979541e-05
+496.40000000004466 4.8044776933977016e-05
+496.5000000000447 4.804632170029194e-05
+496.6000000000447 4.804786619705015e-05
+496.7000000000447 4.804941042428633e-05
+496.80000000004475 4.805095438221003e-05
+496.90000000004477 4.805249807079773e-05
+497.0000000000448 4.80540414902646e-05
+497.1000000000448 4.806820687336472e-05
+497.20000000004484 4.808237354120664e-05
+497.30000000004486 4.809654149366221e-05
+497.4000000000449 4.811071073083637e-05
+497.5000000000449 4.812488125259596e-05
+497.60000000004493 4.812800185304009e-05
+497.70000000004495 4.8131122305047624e-05
+497.800000000045 4.8134242608570884e-05
+497.900000000045 4.8137362763737035e-05
+498.000000000045 4.814048277067332e-05
+498.10000000004504 4.814378917051842e-05
+498.20000000004507 4.8147095415438935e-05
+498.3000000000451 4.81504015055563e-05
+498.4000000000451 4.815370744087556e-05
+498.50000000004513 4.815701322145998e-05
+498.60000000004516 4.816031884737275e-05
+498.7000000000452 4.816362431873563e-05
+498.8000000000452 4.8166929635553575e-05
+498.9000000000452 4.817023479789003e-05
+499.00000000004525 4.817353980587113e-05
+499.10000000004527 4.818676082963822e-05
+499.2000000000453 4.8199982603342995e-05
+499.3000000000453 4.8213205126863995e-05
+499.40000000004534 4.822642840013814e-05
+499.50000000004536 4.8239652422980546e-05
+499.6000000000454 4.8241812559589093e-05
+499.7000000000454 4.824397245482186e-05
+499.80000000004543 4.824613210887812e-05
+499.90000000004545 4.8248291521782344e-05
+500.0000000000455 4.825045069366989e-05
+500.1000000000455 4.8240394807645255e-05
+500.2000000000455 4.823033818427971e-05
+500.30000000004554 4.8220280823903556e-05
+500.40000000004557 4.821022272673045e-05
+500.5000000000456 4.820016389309577e-05
+500.6000000000456 4.8201172330700465e-05
+500.70000000004563 4.8202180495395665e-05
+500.80000000004566 4.820318838728487e-05
+500.9000000000457 4.820419600647149e-05
+501.0000000000457 4.820520335311767e-05
+501.1000000000457 4.820697162053707e-05
+501.20000000004575 4.820873965327924e-05
+501.30000000004577 4.821050745143512e-05
+501.4000000000458 4.821227501515391e-05
+501.5000000000458 4.821404234435149e-05
+501.60000000004584 4.821580943929385e-05
+501.70000000004586 4.821757630001355e-05
+501.8000000000459 4.8219342926543214e-05
+501.9000000000459 4.8221109319032076e-05
+502.00000000004593 4.822287547757106e-05
+502.10000000004595 4.8224328841675384e-05
+502.200000000046 4.822578194710326e-05
+502.300000000046 4.822723479395082e-05
+502.400000000046 4.8228687382372525e-05
+502.50000000004604 4.823013971240106e-05
+502.60000000004607 4.822051679182655e-05
+502.7000000000461 4.8210892946364414e-05
+502.8000000000461 4.820126817621258e-05
+502.90000000004613 4.819164248168558e-05
+503.00000000004616 4.818201586310432e-05
+503.1000000000462 4.818590612228544e-05
+503.2000000000462 4.8189796266396734e-05
+503.3000000000462 4.81936862954335e-05
+503.40000000004625 4.819757620950771e-05
+503.50000000004627 4.8201466008668043e-05
+503.6000000000463 4.81943394439912e-05
+503.7000000000463 4.818725302026164e-05
+503.80000000004634 4.8180184965198834e-05
+503.90000000004636 4.817311513037739e-05
+504.0000000000464 4.8166024990315575e-05
+504.1000000000464 4.8176091384501685e-05
+504.20000000004643 4.8186106466880135e-05
+504.30000000004645 4.819605650450625e-05
+504.4000000000465 4.820592936557236e-05
+504.5000000000465 4.8215714521133394e-05
+504.6000000000465 4.8225403045948965e-05
+504.70000000004654 4.8234987622417935e-05
+504.80000000004657 4.824446254099464e-05
+504.9000000000466 4.825382370207396e-05
+505.0000000000466 4.8263068617372216e-05
+505.10000000004663 4.8264555752796665e-05
+505.20000000004666 4.826592734793807e-05
+505.3000000000467 4.826718581245612e-05
+505.4000000000467 4.826833517121613e-05
+505.5000000000467 4.826938106455822e-05
+505.60000000004675 4.827033074955998e-05
+505.70000000004677 4.827119309770237e-05
+505.8000000000468 4.8271978596468195e-05
+505.9000000000468 4.827269934939421e-05
+506.00000000004684 4.8273369076120465e-05
+506.10000000004686 4.828636913663872e-05
+506.2000000000469 4.8299351341392326e-05
+506.3000000000469 4.831233425911863e-05
+506.40000000004693 4.832533809587493e-05
+506.50000000004695 4.833838469739939e-05
+506.600000000047 4.835149954084034e-05
+506.700000000047 4.836461628660392e-05
+506.800000000047 4.837773427367322e-05
+506.90000000004704 4.8390852889261646e-05
+507.00000000004707 4.8403971568816905e-05
+507.1000000000471 4.840343346694176e-05
+507.2000000000471 4.840289356217199e-05
+507.30000000004713 4.84023514373495e-05
+507.40000000004716 4.840180672448026e-05
+507.5000000000472 4.8401259104739285e-05
+507.6000000000472 4.8411792687218126e-05
+507.7000000000472 4.8422320055463514e-05
+507.80000000004725 4.8432842359352586e-05
+507.90000000004727 4.844336070095994e-05
+508.0000000000473 4.845387613397119e-05
+508.1000000000473 4.845448554813418e-05
+508.20000000004734 4.845509421062472e-05
+508.30000000004736 4.845570303042477e-05
+508.4000000000474 4.845631286761438e-05
+508.5000000000474 4.8456924533370324e-05
+508.60000000004743 4.846856362557459e-05
+508.70000000004745 4.848016521625313e-05
+508.8000000000475 4.8491751180783815e-05
+508.9000000000475 4.8503341793639364e-05
+509.0000000000475 4.851495572633376e-05
+509.10000000004754 4.852529527560401e-05
+509.20000000004757 4.853569014233205e-05
+509.3000000000476 4.85461541717367e-05
+509.4000000000476 4.855669959673339e-05
+509.50000000004763 4.856733703656561e-05
+509.60000000004766 4.856698714156572e-05
+509.7000000000477 4.8566742999892476e-05
+509.8000000000477 4.8566609488228356e-05
+509.9000000000477 4.856658980946913e-05
+510.00000000004775 4.856668549268075e-05
+510.10000000004777 4.8579064545104935e-05
+510.2000000000478 4.8591557637195036e-05
+510.3000000000478 4.860416135885819e-05
+510.40000000004784 4.86168706205308e-05
+510.50000000004786 4.862967865101261e-05
+510.6000000000479 4.863148657641615e-05
+510.7000000000479 4.863337934598379e-05
+510.80000000004793 4.8635346711557025e-05
+510.90000000004795 4.863737684527645e-05
+511.000000000048 4.863945633915722e-05
+511.100000000048 4.865374121314056e-05
+511.200000000048 4.86680454301995e-05
+511.30000000004804 4.8682350839179525e-05
+511.40000000004807 4.869663768750394e-05
+511.5000000000481 4.871088461881958e-05
+511.6000000000481 4.8713972093959994e-05
+511.70000000004814 4.871705943906799e-05
+511.80000000004816 4.87201466542799e-05
+511.9000000000482 4.8723233739673674e-05
+512.0000000000482 4.872632069526765e-05
+512.1000000000482 4.87271246144787e-05
+512.2000000000482 4.872792831185991e-05
+512.3000000000483 4.8728731787580326e-05
+512.4000000000483 4.872953504175053e-05
+512.5000000000483 4.8730338074428034e-05
+512.6000000000483 4.87422413734239e-05
+512.7000000000484 4.875414481676258e-05
+512.8000000000484 4.876604840447223e-05
+512.9000000000484 4.8777952136405645e-05
+513.0000000000484 4.8789856012586325e-05
+513.1000000000485 4.8792070636043946e-05
+513.2000000000485 4.8794285055403016e-05
+513.3000000000485 4.8796499270808526e-05
+513.4000000000485 4.8798713282288515e-05
+513.5000000000485 4.88009270898711e-05
+513.6000000000486 4.880314069375965e-05
+513.7000000000486 4.8805354093923925e-05
+513.8000000000486 4.8807567290508916e-05
+513.9000000000486 4.880978028348426e-05
+514.0000000000487 4.881199307305911e-05
+514.1000000000487 4.8825562602897945e-05
+514.2000000000487 4.883913310162435e-05
+514.3000000000487 4.885270456911568e-05
+514.4000000000487 4.8866277005424515e-05
+514.5000000000488 4.887985041053964e-05
+514.6000000000488 4.8882315167285496e-05
+514.7000000000488 4.888477977241489e-05
+514.8000000000488 4.8887244226133466e-05
+514.9000000000489 4.8889708528412894e-05
+515.0000000000489 4.889217267940051e-05
+515.1000000000489 4.88948919154517e-05
+515.2000000000489 4.8897611057633613e-05
+515.300000000049 4.8900330105919693e-05
+515.400000000049 4.890304906045882e-05
+515.500000000049 4.8905767921282986e-05
+515.600000000049 4.890848668848262e-05
+515.700000000049 4.8911205362148165e-05
+515.8000000000491 4.8913923942311674e-05
+515.9000000000491 4.891664242912216e-05
+516.0000000000491 4.8919360822616e-05
+516.1000000000491 4.893109529346484e-05
+516.2000000000492 4.894282983003691e-05
+516.3000000000492 4.895456443224927e-05
+516.4000000000492 4.896629910013606e-05
+516.5000000000492 4.897803383355035e-05
+516.6000000000492 4.8978649756280915e-05
+516.7000000000493 4.897926546500779e-05
+516.8000000000493 4.89798809597279e-05
+516.9000000000493 4.898049624055511e-05
+517.0000000000493 4.898111130766246e-05
+517.1000000000494 4.898286783263817e-05
+517.2000000000494 4.898462417457572e-05
+517.3000000000494 4.89863803335152e-05
+517.4000000000494 4.8988136309613776e-05
+517.5000000000495 4.898989210291156e-05
+517.6000000000495 4.899164771344866e-05
+517.7000000000495 4.899340314144084e-05
+517.8000000000495 4.8995158386811155e-05
+517.9000000000495 4.899691344977536e-05
+518.0000000000496 4.899866833031576e-05
+518.1000000000496 4.900175671329744e-05
+518.2000000000496 4.900484498716011e-05
+518.3000000000496 4.900793315210272e-05
+518.4000000000497 4.9011021208090116e-05
+518.5000000000497 4.9014109155262745e-05
+518.6000000000497 4.9017196993702575e-05
+518.7000000000497 4.902028472337448e-05
+518.8000000000497 4.902337234441901e-05
+518.9000000000498 4.902645985691816e-05
+519.0000000000498 4.9029547260900646e-05
+519.1000000000498 4.9043143461577075e-05
+519.2000000000498 4.9056740676186385e-05
+519.3000000000499 4.9070338904874165e-05
+519.4000000000499 4.908393814761033e-05
+519.5000000000499 4.909753840441776e-05
+519.6000000000499 4.910000588707134e-05
+519.70000000005 4.910247326480084e-05
+519.80000000005 4.910494053764216e-05
+519.90000000005 4.910740770574833e-05
+520.00000000005 4.910987476915552e-05
+520.10000000005 4.9112782946700935e-05
+520.2000000000501 4.9115691050756223e-05
+520.3000000000501 4.91185990813532e-05
+520.4000000000501 4.9121507038582425e-05
+520.5000000000501 4.91244149224758e-05
+520.6000000000502 4.912732273318237e-05
+520.7000000000502 4.913023047079278e-05
+520.8000000000502 4.913313813528037e-05
+520.9000000000502 4.9136045726794305e-05
+521.0000000000502 4.913895324536554e-05
+521.1000000000503 4.913971331679797e-05
+521.2000000000503 4.914047318140755e-05
+521.3000000000503 4.9141232839248075e-05
+521.4000000000503 4.914199229043187e-05
+521.5000000000504 4.914275153512996e-05
+521.6000000000504 4.9143510573337475e-05
+521.7000000000504 4.914426940516677e-05
+521.8000000000504 4.9145028030730316e-05
+521.9000000000505 4.9145786450140415e-05
+522.0000000000505 4.914654466345188e-05
+522.1000000000505 4.9149297260065345e-05
+522.2000000000505 4.9152049761200965e-05
+522.3000000000505 4.9154802166949894e-05
+522.4000000000506 4.9157554477344576e-05
+522.5000000000506 4.916030669241758e-05
+522.6000000000506 4.916305881231865e-05
+522.7000000000506 4.9165810837138976e-05
+522.8000000000507 4.916856276685248e-05
+522.9000000000507 4.9171314601609006e-05
+523.0000000000507 4.917406634149942e-05
+523.1000000000507 4.917605836301819e-05
+523.2000000000507 4.917805024361874e-05
+523.3000000000508 4.918004198340052e-05
+523.4000000000508 4.9182033582345656e-05
+523.5000000000508 4.918402504061238e-05
+523.6000000000508 4.9186016358300185e-05
+523.7000000000509 4.918800753544995e-05
+523.8000000000509 4.9189998572161225e-05
+523.9000000000509 4.9191989468474925e-05
+524.0000000000509 4.919398022449095e-05
+524.100000000051 4.919669679754904e-05
+524.200000000051 4.91994132976841e-05
+524.300000000051 4.920212972504917e-05
+524.400000000051 4.920484607968006e-05
+524.500000000051 4.920756236161246e-05
+524.6000000000511 4.9210278570940876e-05
+524.7000000000511 4.921299470775971e-05
+524.8000000000511 4.921571077210478e-05
+524.9000000000511 4.921842676412928e-05
+525.0000000000512 4.922114268386213e-05
+525.1000000000512 4.921031792080412e-05
+525.2000000000512 4.919949281319835e-05
+525.3000000000512 4.9188667361409594e-05
+525.4000000000513 4.917784156550921e-05
+525.5000000000513 4.9167015425808965e-05
+525.6000000000513 4.9167350656671484e-05
+525.7000000000513 4.916768569624606e-05
+525.8000000000513 4.916802054470992e-05
+525.9000000000514 4.9168355202122856e-05
+526.0000000000514 4.916868966854554e-05
+526.1000000000514 4.9170777013550885e-05
+526.2000000000514 4.9172864231644164e-05
+526.3000000000515 4.9174951322748855e-05
+526.4000000000515 4.917703828714047e-05
+526.5000000000515 4.917912512474246e-05
+526.6000000000515 4.91812118356544e-05
+526.7000000000515 4.918329842009312e-05
+526.8000000000516 4.918538487798216e-05
+526.9000000000516 4.918747120942107e-05
+527.0000000000516 4.918955741456954e-05
+527.1000000000516 4.9194450618517805e-05
+527.2000000000517 4.9199344006394694e-05
+527.3000000000517 4.9204237578286456e-05
+527.4000000000517 4.9209131334103216e-05
+527.5000000000517 4.921402527410741e-05
+527.6000000000518 4.921891939820918e-05
+527.7000000000518 4.922381370655363e-05
+527.8000000000518 4.922870819916844e-05
+527.9000000000518 4.9233602876139975e-05
+528.0000000000518 4.92384977374942e-05
+528.1000000000519 4.9239992343113864e-05
+528.2000000000519 4.9241486800021346e-05
+528.3000000000519 4.9242981108381746e-05
+528.4000000000519 4.924447526818387e-05
+528.500000000052 4.9245969279651544e-05
+528.600000000052 4.9247463142714885e-05
+528.700000000052 4.9248956857538983e-05
+528.800000000052 4.9250450424230206e-05
+528.900000000052 4.9251943842836156e-05
+529.0000000000521 4.9253437113405595e-05
+529.1000000000521 4.925706289708e-05
+529.2000000000521 4.9260688697341884e-05
+529.3000000000521 4.9264314514221946e-05
+529.4000000000522 4.9267940347868455e-05
+529.5000000000522 4.927156619825338e-05
+529.6000000000522 4.9275192065466265e-05
+529.7000000000522 4.927881794959669e-05
+529.8000000000523 4.928244385073423e-05
+529.9000000000523 4.928606976890968e-05
+530.0000000000523 4.928969570421245e-05
+530.1000000000523 4.929271331569933e-05
+530.2000000000523 4.92957308860558e-05
+530.3000000000524 4.9298748415375526e-05
+530.4000000000524 4.930176590369352e-05
+530.5000000000524 4.930478335104469e-05
+530.6000000000524 4.930780075758167e-05
+530.7000000000525 4.931081812333944e-05
+530.8000000000525 4.9313835448353016e-05
+530.9000000000525 4.93168527327751e-05
+531.0000000000525 4.93198699765808e-05
+531.1000000000525 4.932090770470303e-05
+531.2000000000526 4.932194526837221e-05
+531.3000000000526 4.9322982667699626e-05
+531.4000000000526 4.9324019902737774e-05
+531.5000000000526 4.932505697353912e-05
+531.6000000000527 4.9326093880273837e-05
+531.7000000000527 4.932713062293555e-05
+531.8000000000527 4.932816720169444e-05
+531.9000000000527 4.9329203616603e-05
+532.0000000000528 4.933023986771375e-05
+532.1000000000528 4.933129555048751e-05
+532.2000000000528 4.9332351062348796e-05
+532.3000000000528 4.9333406403349284e-05
+532.4000000000528 4.933446157359965e-05
+532.5000000000529 4.933551657321052e-05
+532.6000000000529 4.933657140217484e-05
+532.7000000000529 4.933762606066208e-05
+532.8000000000529 4.933868054872407e-05
+532.900000000053 4.933973486647146e-05
+533.000000000053 4.93407890139626e-05
+533.100000000053 4.935421054821675e-05
+533.200000000053 4.936763299473962e-05
+533.300000000053 4.9381056353504654e-05
+533.4000000000531 4.939448062454412e-05
+533.5000000000531 4.9407905807884405e-05
+533.6000000000531 4.941012779297504e-05
+533.7000000000531 4.941234968266645e-05
+533.8000000000532 4.941457147711851e-05
+533.9000000000532 4.941679317631445e-05
+534.0000000000532 4.941901478047417e-05
+534.1000000000532 4.942345866704261e-05
+534.2000000000533 4.942790269859004e-05
+534.3000000000533 4.9432346875268225e-05
+534.4000000000533 4.943679119705246e-05
+534.5000000000533 4.944123566410057e-05
+534.6000000000533 4.945689244883994e-05
+534.7000000000534 4.947255139471272e-05
+534.8000000000534 4.948821250184758e-05
+534.9000000000534 4.95038757703731e-05
+535.0000000000534 4.951954120058771e-05
+535.1000000000535 4.952209280320606e-05
+535.2000000000535 4.9524644309358e-05
+535.3000000000535 4.952719571902136e-05
+535.4000000000535 4.9529747032350915e-05
+535.5000000000535 4.953229824933063e-05
+535.6000000000536 4.954606904145595e-05
+535.7000000000536 4.95598408930659e-05
+535.8000000000536 4.9573613804068e-05
+535.9000000000536 4.9587387774546656e-05
+536.0000000000537 4.960116280446297e-05
+536.1000000000537 4.9605055427085e-05
+536.2000000000537 4.960894811380161e-05
+536.3000000000537 4.961284086470534e-05
+536.4000000000538 4.961673367988855e-05
+536.5000000000538 4.962062655932587e-05
+536.6000000000538 4.962451950310985e-05
+536.7000000000538 4.9628412511391893e-05
+536.8000000000538 4.9632305584146666e-05
+536.9000000000539 4.9636198721407796e-05
+537.0000000000539 4.964009192338584e-05
+537.1000000000539 4.964407392065432e-05
+537.2000000000539 4.964805600884324e-05
+537.300000000054 4.9652038187929833e-05
+537.400000000054 4.96560204581272e-05
+537.500000000054 4.966000281935965e-05
+537.600000000054 4.967522146752307e-05
+537.700000000054 4.969044200901615e-05
+537.8000000000541 4.9705664443871714e-05
+537.9000000000541 4.9720888772299604e-05
+538.0000000000541 4.973611499432629e-05
+538.1000000000541 4.973943926020663e-05
+538.2000000000542 4.9742763506013715e-05
+538.3000000000542 4.974608773183905e-05
+538.4000000000542 4.9749411937714985e-05
+538.5000000000542 4.975273612379208e-05
+538.6000000000543 4.9756129938114795e-05
+538.7000000000543 4.975956851896075e-05
+538.8000000000543 4.976302871345473e-05
+538.9000000000543 4.9766489078344885e-05
+539.0000000000543 4.9769929880439404e-05
+539.1000000000544 4.977269982926532e-05
+539.2000000000544 4.977541583631573e-05
+539.3000000000544 4.977806330508106e-05
+539.4000000000544 4.9780629352287706e-05
+539.5000000000545 4.9783102808543316e-05
+539.6000000000545 4.978547217031659e-05
+539.7000000000545 4.978773042939757e-05
+539.8000000000545 4.9789872242759865e-05
+539.9000000000545 4.9791893933279056e-05
+540.0000000000546 4.979379349006162e-05
+540.1000000000546 4.979690229372672e-05
+540.2000000000546 4.979989003392894e-05
+540.3000000000546 4.980275969114898e-05
+540.4000000000547 4.980551591404374e-05
+540.5000000000547 4.9808165019913426e-05
+540.6000000000547 4.97994583352164e-05
+540.7000000000547 4.979066106268495e-05
+540.8000000000548 4.978178458129619e-05
+540.9000000000548 4.977284192840341e-05
+541.0000000000548 4.9763847798341205e-05
+541.1000000000548 4.976492217612368e-05
+541.2000000000548 4.976598037862772e-05
+541.3000000000549 4.9767042064062174e-05
+541.4000000000549 4.976812855889415e-05
+541.5000000000549 4.9769262858347824e-05
+541.6000000000549 4.977046962771134e-05
+541.700000000055 4.9771678913664e-05
+541.800000000055 4.977289038827181e-05
+541.900000000055 4.977410367320753e-05
+542.000000000055 4.977531833944886e-05
+542.100000000055 4.97797037686114e-05
+542.2000000000551 4.978408985503082e-05
+542.3000000000551 4.978847601810626e-05
+542.4000000000551 4.979286162652281e-05
+542.5000000000551 4.979724599829259e-05
+542.6000000000552 4.981289778786161e-05
+542.7000000000552 4.982855296017971e-05
+542.8000000000552 4.98442108342102e-05
+542.9000000000552 4.9859870778404994e-05
+543.0000000000553 4.987553221095494e-05
+543.1000000000553 4.987566868191289e-05
+543.2000000000553 4.987580334341223e-05
+543.3000000000553 4.987593576532412e-05
+543.4000000000553 4.987606556800704e-05
+543.5000000000554 4.987619242236858e-05
+543.6000000000554 4.987624620539086e-05
+543.7000000000554 4.987625163292432e-05
+543.8000000000554 4.987623175136633e-05
+543.9000000000555 4.9876207938253606e-05
+544.0000000000555 4.987619990241602e-05
+544.1000000000555 4.987668824105594e-05
+544.2000000000555 4.987722674874376e-05
+544.3000000000555 4.98778301296424e-05
+544.4000000000556 4.987851141925486e-05
+544.5000000000556 4.987928198470713e-05
+544.6000000000556 4.9880151524551434e-05
+544.7000000000556 4.9881128066692836e-05
+544.8000000000557 4.988221797167428e-05
+544.9000000000557 4.9883425931079384e-05
+545.0000000000557 4.988475496723936e-05
+545.1000000000557 4.98872821043193e-05
+545.2000000000558 4.9889931438923254e-05
+545.3000000000558 4.989270099249216e-05
+545.4000000000558 4.989558711575053e-05
+545.5000000000558 4.989858448851016e-05
+545.6000000000558 4.990168611872778e-05
+545.7000000000559 4.990488050304951e-05
+545.8000000000559 4.990815646852006e-05
+545.9000000000559 4.991150111783812e-05
+546.0000000000559 4.991489982848435e-05
+546.100000000056 4.991968984133576e-05
+546.200000000056 4.992449969938009e-05
+546.300000000056 4.9929309600697444e-05
+546.400000000056 4.993409801293982e-05
+546.500000000056 4.9938841673075015e-05
+546.6000000000561 4.9943515586317326e-05
+546.7000000000561 4.994818968944358e-05
+546.8000000000561 4.995286398243429e-05
+546.9000000000561 4.995753846544761e-05
+547.0000000000562 4.996221313846929e-05
+547.1000000000562 4.99762607058737e-05
+547.2000000000562 4.9990309457170474e-05
+547.3000000000562 5.00043593924032e-05
+547.4000000000563 5.00184105116747e-05
+547.5000000000563 5.003246281490373e-05
+547.6000000000563 5.0035221669715425e-05
+547.7000000000563 5.003798046308685e-05
+547.8000000000563 5.00407391950561e-05
+547.9000000000564 5.004349786566135e-05
+548.0000000000564 5.004625647505966e-05
+548.1000000000564 5.004955105741905e-05
+548.2000000000564 5.0052845615418984e-05
+548.3000000000565 5.005614014897537e-05
+548.4000000000565 5.005943465824141e-05
+548.5000000000565 5.0062729143251605e-05
+548.6000000000565 5.006602360404053e-05
+548.7000000000565 5.006931804070212e-05
+548.8000000000566 5.007261245327094e-05
+548.9000000000566 5.007590684184092e-05
+549.0000000000566 5.0079201206387597e-05
+549.1000000000566 5.008283522932321e-05
+549.2000000000567 5.008646928043152e-05
+549.3000000000567 5.0090103359748416e-05
+549.4000000000567 5.0093737467309824e-05
+549.5000000000567 5.0097371603276706e-05
+549.6000000000568 5.0112315249663245e-05
+549.7000000000568 5.012726056527298e-05
+549.8000000000568 5.0142207550147894e-05
+549.9000000000568 5.015715620438908e-05
+550.0000000000568 5.017210652797329e-05
+550.1000000000569 5.0176690583707815e-05
+550.2000000000569 5.018127477934155e-05
+550.3000000000569 5.018585911490593e-05
+550.4000000000569 5.0190443590491805e-05
+550.500000000057 5.0195028206071176e-05
+550.600000000057 5.0199612961794364e-05
+550.700000000057 5.020419785769279e-05
+550.800000000057 5.020878289379805e-05
+550.900000000057 5.0213368070141635e-05
+551.0000000000571 5.021795338681448e-05
+551.1000000000571 5.022243746156168e-05
+551.2000000000571 5.022692169573954e-05
+551.3000000000571 5.023140608944678e-05
+551.4000000000572 5.0235890642782286e-05
+551.5000000000572 5.024037535572605e-05
+551.6000000000572 5.0244860228376875e-05
+551.7000000000572 5.024934526083368e-05
+551.8000000000573 5.0253830453135954e-05
+551.9000000000573 5.0258315805382596e-05
+552.0000000000573 5.026280131755189e-05
+552.1000000000573 5.026398311299942e-05
+552.2000000000573 5.026516470684061e-05
+552.3000000000574 5.026634609918697e-05
+552.4000000000574 5.026752729015017e-05
+552.5000000000574 5.0268708279723006e-05
+552.6000000000574 5.0269889068017025e-05
+552.7000000000575 5.027106965508445e-05
+552.8000000000575 5.027225004103696e-05
+552.9000000000575 5.027343022586724e-05
+553.0000000000575 5.027461020980854e-05
+553.1000000000575 5.028038430065593e-05
+553.2000000000576 5.0286158729356074e-05
+553.3000000000576 5.029193349594589e-05
+553.4000000000576 5.0297708600521755e-05
+553.5000000000576 5.030348404318015e-05
+553.6000000000577 5.0309259823898517e-05
+553.7000000000577 5.03150359427734e-05
+553.8000000000577 5.0320812399901304e-05
+553.9000000000577 5.0326589195259746e-05
+554.0000000000578 5.033236632888512e-05
+554.1000000000578 5.0336852715166795e-05
+554.2000000000578 5.0341339216715e-05
+554.3000000000578 5.034582583362291e-05
+554.4000000000578 5.0350312565924136e-05
+554.5000000000579 5.0354799413777965e-05
+554.6000000000579 5.037064134584357e-05
+554.7000000000579 5.038648541694464e-05
+554.8000000000579 5.040233162729594e-05
+554.900000000058 5.041817997699322e-05
+555.000000000058 5.043403046606553e-05
+555.100000000058 5.043764318432672e-05
+555.200000000058 5.0441255916223306e-05
+555.300000000058 5.044486866190852e-05
+555.4000000000581 5.044848142147598e-05
+555.5000000000581 5.04520941948407e-05
+555.6000000000581 5.0455706982155914e-05
+555.7000000000581 5.045931978351535e-05
+555.8000000000582 5.0462932598834006e-05
+555.9000000000582 5.0466545428324834e-05
+556.0000000000582 5.047015827189611e-05
+556.1000000000582 5.0462271045466635e-05
+556.2000000000583 5.045438224890517e-05
+556.3000000000583 5.04464918823244e-05
+556.4000000000583 5.043859994577744e-05
+556.5000000000583 5.043070643938359e-05
+556.6000000000583 5.043418321946358e-05
+556.7000000000584 5.043765999766994e-05
+556.8000000000584 5.04411367740373e-05
+556.9000000000584 5.044461354854078e-05
+557.0000000000584 5.044809032133504e-05
+557.1000000000585 5.045283850518441e-05
+557.2000000000585 5.045758684916255e-05
+557.3000000000585 5.0462335353304675e-05
+557.4000000000585 5.04670840177058e-05
+557.5000000000585 5.04718328424012e-05
+557.6000000000586 5.047658182742628e-05
+557.7000000000586 5.048133097281636e-05
+557.8000000000586 5.0486080278726176e-05
+557.9000000000586 5.0490829745071865e-05
+558.0000000000587 5.049557937200755e-05
+558.1000000000587 5.0499311321393394e-05
+558.2000000000587 5.050304326565403e-05
+558.3000000000587 5.0506775205000446e-05
+558.4000000000588 5.051050713928553e-05
+558.5000000000588 5.0514239068720344e-05
+558.6000000000588 5.051797099333677e-05
+558.7000000000588 5.05217029131072e-05
+558.8000000000588 5.052543482812326e-05
+558.9000000000589 5.052916673841703e-05
+559.0000000000589 5.0532898644079896e-05
+559.1000000000589 5.053604280055793e-05
+559.2000000000589 5.053918692035072e-05
+559.300000000059 5.0542331003494916e-05
+559.400000000059 5.054547505014682e-05
+559.500000000059 5.0548619060216986e-05
+559.600000000059 5.054036466564641e-05
+559.700000000059 5.053210881692182e-05
+559.8000000000591 5.0523851514063664e-05
+559.9000000000591 5.051559275721218e-05
+560.0000000000591 5.050733254639773e-05
+560.1000000000591 5.0515536819409935e-05
+560.2000000000592 5.0523742008473643e-05
+560.3000000000592 5.0531948113803804e-05
+560.4000000000592 5.054015513549591e-05
+560.5000000000592 5.0548363073585585e-05
+560.6000000000593 5.055657192828799e-05
+560.7000000000593 5.056478169963879e-05
+560.8000000000593 5.057299238779345e-05
+560.9000000000593 5.058120399284749e-05
+561.0000000000593 5.058941651489267e-05
+561.1000000000594 5.059089892572592e-05
+561.2000000000594 5.0592381094090495e-05
+561.3000000000594 5.0593863019916214e-05
+561.4000000000594 5.059534470337233e-05
+561.5000000000595 5.0596826144441805e-05
+561.6000000000595 5.058688560353718e-05
+561.7000000000595 5.05769441517412e-05
+561.8000000000595 5.056700178946704e-05
+561.9000000000595 5.055705851676873e-05
+562.0000000000596 5.0547114334008246e-05
+562.1000000000596 5.055156556102542e-05
+562.2000000000596 5.055601688951305e-05
+562.3000000000596 5.056046831968267e-05
+562.4000000000597 5.056491985144652e-05
+562.5000000000597 5.056937148495637e-05
+562.6000000000597 5.057382322024423e-05
+562.7000000000597 5.0578275057342194e-05
+562.8000000000598 5.058272699628226e-05
+562.9000000000598 5.058717903709654e-05
+563.0000000000598 5.059163117987748e-05
+563.1000000000598 5.059691729826425e-05
+563.2000000000598 5.0602203664686814e-05
+563.3000000000599 5.060749027912217e-05
+563.4000000000599 5.0612777141667136e-05
+563.5000000000599 5.06180642523587e-05
+563.6000000000599 5.0623351611233815e-05
+563.70000000006 5.062863921838944e-05
+563.80000000006 5.0633927073862585e-05
+563.90000000006 5.063921517769028e-05
+564.00000000006 5.064450352990144e-05
+564.10000000006 5.0636161712920704e-05
+564.2000000000601 5.0627818411938664e-05
+564.3000000000601 5.061947362700709e-05
+564.4000000000601 5.061112735829799e-05
+564.5000000000601 5.060277960587018e-05
+564.6000000000602 5.060587966383396e-05
+564.7000000000602 5.060897964107145e-05
+564.8000000000602 5.061207953755836e-05
+564.9000000000602 5.0615179353330326e-05
+565.0000000000603 5.061827908848531e-05
+565.1000000000603 5.062512015309487e-05
+565.2000000000603 5.063196182515184e-05
+565.3000000000603 5.063880410466808e-05
+565.4000000000603 5.064564699171543e-05
+565.5000000000604 5.065249048642576e-05
+565.6000000000604 5.065933458893114e-05
+565.7000000000604 5.066617929924341e-05
+565.8000000000604 5.067302461749461e-05
+565.9000000000605 5.067987054375675e-05
+566.0000000000605 5.0686717078100175e-05
+566.1000000000605 5.069066622594297e-05
+566.2000000000605 5.069461534787842e-05
+566.3000000000605 5.069856444381578e-05
+566.4000000000606 5.070251351384472e-05
+566.5000000000606 5.070646255799473e-05
+566.6000000000606 5.071041157641556e-05
+566.7000000000606 5.071436056901655e-05
+566.8000000000607 5.07183095358874e-05
+566.9000000000607 5.0722258477117795e-05
+567.0000000000607 5.072620739267823e-05
+567.1000000000607 5.073164888934772e-05
+567.2000000000608 5.073709065336786e-05
+567.3000000000608 5.0742532684774935e-05
+567.4000000000608 5.074797498366532e-05
+567.5000000000608 5.075341755007537e-05
+567.6000000000608 5.075886038398126e-05
+567.7000000000609 5.0764303485539634e-05
+567.8000000000609 5.076974685472669e-05
+567.9000000000609 5.077519049163906e-05
+568.0000000000609 5.078063439630502e-05
+568.100000000061 5.077281936125576e-05
+568.200000000061 5.076500265534681e-05
+568.300000000061 5.0757184278580604e-05
+568.400000000061 5.0749364231019916e-05
+568.500000000061 5.074154251272739e-05
+568.6000000000611 5.0733719123765964e-05
+568.7000000000611 5.07258940641382e-05
+568.8000000000611 5.071806733396714e-05
+568.9000000000611 5.071023893325556e-05
+569.0000000000612 5.070240886207509e-05
+569.1000000000612 5.070881397122196e-05
+569.2000000000612 5.071521952543075e-05
+569.3000000000612 5.072162552475003e-05
+569.4000000000613 5.0728031969228384e-05
+569.5000000000613 5.073443885891434e-05
+569.6000000000613 5.074084619397705e-05
+569.7000000000613 5.074725397434459e-05
+569.8000000000613 5.0753662200125965e-05
+569.9000000000614 5.0760070871430105e-05
+570.0000000000614 5.076647998825069e-05
+570.1000000000614 5.0781543489413996e-05
+570.2000000000614 5.0796608577401214e-05
+570.3000000000615 5.0811675252146006e-05
+570.4000000000615 5.082674351376287e-05
+570.5000000000615 5.0841813362298916e-05
+570.6000000000615 5.0845368293012785e-05
+570.7000000000616 5.084892320027734e-05
+570.8000000000616 5.0852478084187324e-05
+570.9000000000616 5.085603294477739e-05
+571.0000000000616 5.085958778208335e-05
+571.1000000000616 5.086530800984137e-05
+571.2000000000617 5.087102851799481e-05
+571.3000000000617 5.087674930639696e-05
+571.4000000000617 5.0882470375202986e-05
+571.5000000000617 5.088819172450756e-05
+571.6000000000618 5.0893913354224414e-05
+571.7000000000618 5.0899635264508744e-05
+571.8000000000618 5.090535745533469e-05
+571.9000000000618 5.091107992679707e-05
+572.0000000000618 5.091680267886947e-05
+572.1000000000619 5.092158640862337e-05
+572.2000000000619 5.0926370247768594e-05
+572.3000000000619 5.093115419639564e-05
+572.4000000000619 5.093593825447431e-05
+572.500000000062 5.094072242209526e-05
+572.600000000062 5.094550669928865e-05
+572.700000000062 5.09502910860848e-05
+572.800000000062 5.0955075582574354e-05
+572.900000000062 5.0959860188727225e-05
+573.0000000000621 5.096464490464224e-05
+573.1000000000621 5.0982527774315496e-05
+573.2000000000621 5.100041396258233e-05
+573.3000000000621 5.101830346995012e-05
+573.4000000000622 5.103619629662396e-05
+573.5000000000622 5.1054092443043606e-05
+573.6000000000622 5.1060439773933336e-05
+573.7000000000622 5.1066787552970316e-05
+573.8000000000623 5.107313578020275e-05
+573.9000000000623 5.1079484455799814e-05
+574.0000000000623 5.1085833579690174e-05
+574.1000000000623 5.109462652932976e-05
+574.2000000000623 5.1103420541409424e-05
+574.3000000000624 5.111221561598601e-05
+574.4000000000624 5.1121011753237544e-05
+574.5000000000624 5.112980895322091e-05
+574.6000000000624 5.113860721617476e-05
+574.7000000000625 5.114740654209546e-05
+574.8000000000625 5.115620693122185e-05
+574.9000000000625 5.1165008383671506e-05
+575.0000000000625 5.1173810899506376e-05
+575.1000000000626 5.1190449989808595e-05
+575.2000000000626 5.120709152639913e-05
+575.3000000000626 5.122373550957073e-05
+575.4000000000626 5.124038193937349e-05
+575.5000000000626 5.125703081591109e-05
+575.6000000000627 5.126209748463932e-05
+575.7000000000627 5.126716431035542e-05
+575.8000000000627 5.1272231293151684e-05
+575.9000000000627 5.127729843299915e-05
+576.0000000000628 5.1282365729998e-05
+576.1000000000628 5.1299848274632955e-05
+576.2000000000628 5.1317333812344544e-05
+576.3000000000628 5.133482234349289e-05
+576.4000000000628 5.135231386825607e-05
+576.5000000000629 5.136980838704773e-05
+576.6000000000629 5.137570867458928e-05
+576.7000000000629 5.138160929268326e-05
+576.8000000000629 5.1387510241433124e-05
+576.900000000063 5.139341152088158e-05
+577.000000000063 5.139931313101819e-05
+577.100000000063 5.141694454803286e-05
+577.200000000063 5.1434579035673775e-05
+577.300000000063 5.145221659419105e-05
+577.4000000000631 5.146985722389551e-05
+577.5000000000631 5.148750092502998e-05
+577.6000000000631 5.14935369793372e-05
+577.7000000000631 5.14995733834965e-05
+577.8000000000632 5.150561013754964e-05
+577.9000000000632 5.1511647241599206e-05
+578.0000000000632 5.151768469569181e-05
+578.1000000000632 5.153140079119576e-05
+578.2000000000633 5.154511752929949e-05
+578.3000000000633 5.1558834909746485e-05
+578.4000000000633 5.157255293240182e-05
+578.5000000000633 5.1586271597183915e-05
+578.6000000000633 5.1588371901166236e-05
+578.7000000000634 5.159047190101413e-05
+578.8000000000634 5.159257159670528e-05
+578.9000000000634 5.1594670988278206e-05
+579.0000000000634 5.159677007589632e-05
+579.1000000000635 5.160386201907617e-05
+579.2000000000635 5.161095154988568e-05
+579.3000000000635 5.161803866831014e-05
+579.4000000000635 5.1625123374334845e-05
+579.5000000000636 5.1632205667755494e-05
+579.6000000000636 5.16276707746605e-05
+579.7000000000636 5.162313550961379e-05
+579.8000000000636 5.1618599872820606e-05
+579.9000000000636 5.1614063864485976e-05
+580.0000000000637 5.1609527484881824e-05
+580.1000000000637 5.1614509812886864e-05
+580.2000000000637 5.161949228169204e-05
+580.3000000000637 5.1624474891329405e-05
+580.4000000000638 5.162945764183104e-05
+580.5000000000638 5.1634440533236464e-05
+580.6000000000638 5.165104098369536e-05
+580.7000000000638 5.166764381733064e-05
+580.8000000000638 5.1684249034179165e-05
+580.9000000000639 5.170085663446003e-05
+581.0000000000639 5.1717466618264955e-05
+581.1000000000639 5.1724893473583484e-05
+581.2000000000639 5.1732320977567623e-05
+581.300000000064 5.1739749130217786e-05
+581.400000000064 5.1747177931595196e-05
+581.500000000064 5.1754607381890334e-05
+581.600000000064 5.177366939964537e-05
+581.700000000064 5.1792735405984015e-05
+581.8000000000641 5.181180540149674e-05
+581.9000000000641 5.1830879386652225e-05
+582.0000000000641 5.184995736197102e-05
+582.1000000000641 5.185486123266674e-05
+582.2000000000642 5.185976515796556e-05
+582.3000000000642 5.186466913777183e-05
+582.4000000000642 5.1869573172233675e-05
+582.5000000000642 5.187447726138484e-05
+582.6000000000643 5.18910266086773e-05
+582.7000000000643 5.190757821237479e-05
+582.8000000000643 5.19241320724489e-05
+582.9000000000643 5.1940688189114806e-05
+583.0000000000643 5.195724656233724e-05
+583.1000000000644 5.196312534653187e-05
+583.2000000000644 5.196900444551288e-05
+583.3000000000644 5.1974883859381965e-05
+583.4000000000644 5.198076358824115e-05
+583.5000000000645 5.198664363200934e-05
+583.6000000000645 5.1992451171345014e-05
+583.7000000000645 5.199821219147358e-05
+583.8000000000645 5.20039508957309e-05
+583.9000000000646 5.2009689703783516e-05
+584.0000000000646 5.2015449251082084e-05
+584.1000000000646 5.2018177111406164e-05
+584.2000000000646 5.202096110471278e-05
+584.3000000000646 5.202381649489473e-05
+584.4000000000647 5.2026756754389655e-05
+584.5000000000647 5.202979356425747e-05
+584.6000000000647 5.204460553400406e-05
+584.7000000000647 5.2059534879644785e-05
+584.8000000000648 5.2074587274403366e-05
+584.9000000000648 5.208976665458096e-05
+585.0000000000648 5.2105075216572835e-05
+585.1000000000648 5.210833267254438e-05
+585.2000000000648 5.211171657852173e-05
+585.3000000000649 5.211522381071176e-05
+585.4000000000649 5.211884950027231e-05
+585.5000000000649 5.212258703241301e-05
+585.6000000000649 5.2126428047346126e-05
+585.700000000065 5.213036243650698e-05
+585.800000000065 5.2134378343513466e-05
+585.900000000065 5.213846216347081e-05
+586.000000000065 5.214259854263421e-05
+586.100000000065 5.214542456444666e-05
+586.2000000000651 5.214826706084326e-05
+586.3000000000651 5.215110542694012e-05
+586.4000000000651 5.215391730836615e-05
+586.5000000000651 5.215667860094006e-05
+586.6000000000652 5.215936344932961e-05
+586.7000000000652 5.216204517845322e-05
+586.8000000000652 5.216472413213666e-05
+586.9000000000652 5.2167400707213054e-05
+587.0000000000653 5.217007535328508e-05
+587.1000000000653 5.216526401007617e-05
+587.2000000000653 5.216044945049862e-05
+587.3000000000653 5.2155632283017974e-05
+587.4000000000653 5.215081316859992e-05
+587.5000000000654 5.2145992820859185e-05
+587.6000000000654 5.212947639262952e-05
+587.7000000000654 5.211295289079474e-05
+587.8000000000654 5.20964230295406e-05
+587.9000000000655 5.207988746931683e-05
+588.0000000000655 5.206334681679257e-05
+588.1000000000655 5.2035656795874095e-05
+588.2000000000655 5.200795912022333e-05
+588.3000000000656 5.1980254233970844e-05
+588.4000000000656 5.19525425277826e-05
+588.5000000000656 5.192482433870314e-05
+588.6000000000656 5.190895493095862e-05
+588.7000000000656 5.189317620828731e-05
+588.8000000000657 5.187743996274266e-05
+588.9000000000657 5.186170157149621e-05
+589.0000000000657 5.184591999092095e-05
+589.1000000000657 5.185467193071572e-05
+589.2000000000658 5.186331633707767e-05
+589.3000000000658 5.1871822675141164e-05
+589.4000000000658 5.188016391712478e-05
+589.5000000000658 5.1888316545293004e-05
+589.6000000000658 5.188453045162849e-05
+589.7000000000659 5.1880514392752234e-05
+589.8000000000659 5.187625627241301e-05
+589.9000000000659 5.187174747277983e-05
+590.0000000000659 5.1866982852688675e-05
+590.100000000066 5.189695676502848e-05
+590.200000000066 5.1926683533257485e-05
+590.300000000066 5.19561679371205e-05
+590.400000000066 5.198541824957796e-05
+590.500000000066 5.201444624722867e-05
+590.6000000000661 5.2043267218037285e-05
+590.7000000000661 5.207190293511903e-05
+590.8000000000661 5.2100376618279145e-05
+590.9000000000661 5.212871508292999e-05
+591.0000000000662 5.215694874925823e-05
+591.1000000000662 5.2152422724379005e-05
+591.2000000000662 5.2147856691259904e-05
+591.3000000000662 5.214329193373778e-05
+591.4000000000663 5.213877326630228e-05
+591.5000000000663 5.2134349032843297e-05
+591.6000000000663 5.211831421243839e-05
+591.7000000000663 5.210227604406525e-05
+591.8000000000663 5.2086234180825545e-05
+591.9000000000664 5.2070188223618604e-05
+592.0000000000664 5.2054137720989574e-05
+592.1000000000664 5.205967484258528e-05
+592.2000000000664 5.206521271062793e-05
+592.3000000000665 5.207075071799291e-05
+592.4000000000665 5.207628820428715e-05
+592.5000000000665 5.2081824456334324e-05
+592.6000000000665 5.2122674316454135e-05
+592.7000000000666 5.216353320701907e-05
+592.8000000000666 5.220440041675723e-05
+592.9000000000666 5.224527528503788e-05
+593.0000000000666 5.228615720218642e-05
+593.1000000000666 5.230211047605144e-05
+593.2000000000667 5.231806387570119e-05
+593.3000000000667 5.233401694803611e-05
+593.4000000000667 5.234996929264851e-05
+593.5000000000667 5.236592056151284e-05
+593.6000000000668 5.234637846054216e-05
+593.7000000000668 5.232673501884776e-05
+593.8000000000668 5.230703887065402e-05
+593.9000000000668 5.2287335026007705e-05
+594.0000000000668 5.2267664876596846e-05
+594.1000000000669 5.2226915817785226e-05
+594.2000000000669 5.2186264754984075e-05
+594.3000000000669 5.214574209425863e-05
+594.4000000000669 5.210537460636343e-05
+594.500000000067 5.2065185440639e-05
+594.600000000067 5.209596281397375e-05
+594.700000000067 5.212697553072628e-05
+594.800000000067 5.21582362274338e-05
+594.900000000067 5.218975407774152e-05
+595.0000000000671 5.22215347820991e-05
+595.1000000000671 5.2262648196355066e-05
+595.2000000000671 5.230402500607856e-05
+595.3000000000671 5.2345660558425634e-05
+595.4000000000672 5.238754667843249e-05
+595.5000000000672 5.242967165510247e-05
+595.6000000000672 5.244840014269342e-05
+595.7000000000672 5.2467324006562185e-05
+595.8000000000673 5.2486419726054055e-05
+595.9000000000673 5.250566017930465e-05
+596.0000000000673 5.252501463651895e-05
+596.1000000000673 5.2536585043714835e-05
+596.2000000000673 5.254819498609476e-05
+596.3000000000674 5.255980287049026e-05
+596.4000000000674 5.257136349591468e-05
+596.5000000000674 5.258282805023867e-05
+596.6000000000674 5.258231190181489e-05
+596.7000000000675 5.258178969250478e-05
+596.8000000000675 5.258126176829533e-05
+596.9000000000675 5.2580728528516676e-05
+597.0000000000675 5.2580190425905386e-05
+597.1000000000676 5.2589263752422356e-05
+597.2000000000676 5.259833756676584e-05
+597.3000000000676 5.2607412482616436e-05
+597.4000000000676 5.2616489167273466e-05
+597.5000000000676 5.2625568341768964e-05
+597.6000000000677 5.2646503265039855e-05
+597.7000000000677 5.266744198398705e-05
+597.8000000000677 5.268838521927873e-05
+597.9000000000677 5.270933363938393e-05
+598.0000000000678 5.2730287860210886e-05
+598.1000000000678 5.273636266398432e-05
+598.2000000000678 5.2742439426039194e-05
+598.3000000000678 5.274851860184801e-05
+598.4000000000678 5.2754600593588666e-05
+598.5000000000679 5.276068574999214e-05
+598.6000000000679 5.27669221149492e-05
+598.7000000000679 5.2773257202769246e-05
+598.8000000000679 5.277964209347335e-05
+598.900000000068 5.2786031432722465e-05
+599.000000000068 5.2792383434092025e-05
+599.100000000068 5.281021782817635e-05
+599.200000000068 5.282794456720282e-05
+599.300000000068 5.2845532487253814e-05
+599.4000000000681 5.286295397675052e-05
+599.5000000000681 5.288018498286796e-05
+599.6000000000681 5.2885318499603616e-05
+599.7000000000681 5.289022052558365e-05
+599.8000000000682 5.2894878609393714e-05
+599.9000000000682 5.289928383830921e-05
+600.0000000000682 5.2903430839753276e-05
+600.1000000000682 5.291882396896299e-05
+600.2000000000683 5.2933960170732246e-05
+600.3000000000683 5.294884453731627e-05
+600.4000000000683 5.2963485714339294e-05
+600.5000000000683 5.297789590551012e-05
+600.6000000000683 5.2980198575752986e-05
+600.7000000000684 5.2982307427423574e-05
+600.8000000000684 5.298424637009817e-05
+600.9000000000684 5.298604291947169e-05
+601.0000000000684 5.298772819743219e-05
+601.1000000000685 5.299108005146028e-05
+601.2000000000685 5.299439384993069e-05
+601.3000000000685 5.2997711536356494e-05
+601.4000000000685 5.300107866855148e-05
+601.5000000000686 5.3004544420155546e-05
+601.6000000000686 5.30081615835745e-05
+601.7000000000686 5.3011781459683196e-05
+601.8000000000686 5.3015403699542186e-05
+601.9000000000686 5.30190279002217e-05
+602.0000000000687 5.302265360522718e-05
+602.1000000000687 5.3041974232910235e-05
+602.2000000000687 5.306129929395276e-05
+602.3000000000687 5.308062817028326e-05
+602.4000000000688 5.3099960189002284e-05
+602.5000000000688 5.3119294622211106e-05
+602.6000000000688 5.3126721053724316e-05
+602.7000000000688 5.31341493800247e-05
+602.8000000000688 5.314157887404739e-05
+602.9000000000689 5.314900886217697e-05
+603.0000000000689 5.315643872428762e-05
+603.1000000000689 5.316424882798942e-05
+603.2000000000689 5.3172057813836053e-05
+603.300000000069 5.317986522243023e-05
+603.400000000069 5.318767064795012e-05
+603.500000000069 5.3195473738199644e-05
+603.600000000069 5.32151286599548e-05
+603.700000000069 5.323473622104171e-05
+603.8000000000691 5.325432097223198e-05
+603.9000000000691 5.327390571809799e-05
+604.0000000000691 5.329351151371448e-05
+604.1000000000691 5.329958466997178e-05
+604.2000000000692 5.330571190575723e-05
+604.3000000000692 5.331190895414381e-05
+604.4000000000692 5.331818977139943e-05
+604.5000000000692 5.33245665357408e-05
+604.6000000000693 5.334299389054874e-05
+604.7000000000693 5.336153916458298e-05
+604.8000000000693 5.3380209277427284e-05
+604.9000000000693 5.339900937098775e-05
+605.0000000000693 5.3417942806557936e-05
+605.1000000000694 5.3423861687115134e-05
+605.2000000000694 5.34299117018007e-05
+605.3000000000694 5.343609075502463e-05
+605.4000000000694 5.3442394961335367e-05
+605.5000000000695 5.344881864454954e-05
+605.6000000000695 5.3467313028337126e-05
+605.7000000000695 5.34859100861922e-05
+605.8000000000695 5.3504597924769445e-05
+605.9000000000696 5.35233627882038e-05
+606.0000000000696 5.354218905423346e-05
+606.1000000000696 5.355256696821443e-05
+606.2000000000696 5.356296744537043e-05
+606.3000000000696 5.3573369244695336e-05
+606.4000000000697 5.358374926034447e-05
+606.5000000000697 5.3594082519699755e-05
+606.6000000000697 5.361632080575464e-05
+606.7000000000697 5.3638565129186805e-05
+606.8000000000698 5.366081549098803e-05
+606.9000000000698 5.368307189233796e-05
+607.0000000000698 5.3705334334469216e-05
+607.1000000000698 5.3713388187579566e-05
+607.2000000000698 5.372144278061376e-05
+607.3000000000699 5.372949811364462e-05
+607.4000000000699 5.373755418668243e-05
+607.5000000000699 5.374561099993376e-05
+607.6000000000699 5.376566714001501e-05
+607.70000000007 5.378572761781546e-05
+607.80000000007 5.380579243386131e-05
+607.90000000007 5.382586158880422e-05
+608.00000000007 5.384593508309862e-05
+608.10000000007 5.3852794377707737e-05
+608.2000000000701 5.385965411891239e-05
+608.3000000000701 5.386651430688633e-05
+608.4000000000701 5.387337494155251e-05
+608.5000000000701 5.3880236023093016e-05
+608.6000000000702 5.389911251187115e-05
+608.7000000000702 5.3917992507481365e-05
+608.8000000000702 5.393687601035354e-05
+608.9000000000702 5.39557630207294e-05
+609.0000000000703 5.397465353896823e-05
+609.1000000000703 5.39823407374245e-05
+609.2000000000703 5.399002852765971e-05
+609.3000000000703 5.399771690954627e-05
+609.4000000000703 5.400540588327064e-05
+609.5000000000704 5.401309544883927e-05
+609.6000000000704 5.403281696168426e-05
+609.7000000000704 5.405254249222309e-05
+609.8000000000704 5.4072272040868856e-05
+609.9000000000705 5.409200560809743e-05
+610.0000000000705 5.411174319438479e-05
+610.1000000000705 5.4131466299921894e-05
+610.2000000000705 5.415119348428983e-05
+610.3000000000706 5.4170924747957224e-05
+610.4000000000706 5.4190660091518346e-05
+610.5000000000706 5.421039951537052e-05
+610.6000000000706 5.4218094554672585e-05
+610.7000000000706 5.422579025503148e-05
+610.8000000000707 5.423348661658196e-05
+610.9000000000707 5.424118363926994e-05
+611.0000000000707 5.4248881323238645e-05
+611.1000000000707 5.426850088176016e-05
+611.2000000000708 5.42881244081085e-05
+611.3000000000708 5.43077519028941e-05
+611.4000000000708 5.432738336653834e-05
+611.5000000000708 5.434701879945416e-05
+611.6000000000708 5.435459280979369e-05
+611.7000000000709 5.436216742752221e-05
+611.8000000000709 5.4369742652826904e-05
+611.9000000000709 5.437731848576907e-05
+612.0000000000709 5.4384894926288945e-05
+612.100000000071 5.439948940370646e-05
+612.200000000071 5.44140846908202e-05
+612.300000000071 5.442868078742441e-05
+612.400000000071 5.4443277693439485e-05
+612.500000000071 5.445787540865123e-05
+612.6000000000711 5.446039845653416e-05
+612.7000000000711 5.446292119459283e-05
+612.8000000000711 5.446544362280927e-05
+612.9000000000711 5.4467965741228603e-05
+613.0000000000712 5.447048754997036e-05
+613.1000000000712 5.448898981690955e-05
+613.2000000000712 5.4507495194371794e-05
+613.3000000000712 5.452600368252012e-05
+613.4000000000713 5.454451528164379e-05
+613.5000000000713 5.4563029991779614e-05
+613.6000000000713 5.458154781327993e-05
+613.7000000000713 5.460006874630781e-05
+613.8000000000713 5.4618592791026225e-05
+613.9000000000714 5.463711994766136e-05
+614.0000000000714 5.465565021643064e-05
+614.1000000000714 5.466219605399697e-05
+614.2000000000714 5.4668742258990104e-05
+614.3000000000715 5.467528883132824e-05
+614.4000000000715 5.468183577111896e-05
+614.5000000000715 5.468838307841536e-05
+614.6000000000715 5.470703140164216e-05
+614.7000000000716 5.472568298984073e-05
+614.8000000000716 5.4744337843190804e-05
+614.9000000000716 5.476299596206172e-05
+615.0000000000716 5.478165734668689e-05
+615.1000000000716 5.478700830198404e-05
+615.2000000000717 5.4792359368532904e-05
+615.3000000000717 5.4797710546300946e-05
+615.4000000000717 5.480306183544513e-05
+615.5000000000717 5.480841323594173e-05
+615.6000000000718 5.4825878286967816e-05
+615.7000000000718 5.48433458147479e-05
+615.8000000000718 5.486081581934063e-05
+615.9000000000718 5.487828830086768e-05
+616.0000000000719 5.489576325950586e-05
+616.1000000000719 5.490158699433798e-05
+616.2000000000719 5.490741086383173e-05
+616.3000000000719 5.491323486808206e-05
+616.4000000000719 5.491905900705736e-05
+616.500000000072 5.492488328073465e-05
+616.600000000072 5.494283367330509e-05
+616.700000000072 5.496078677213116e-05
+616.800000000072 5.497874257747734e-05
+616.900000000072 5.4996701089418216e-05
+617.0000000000721 5.501466230801938e-05
+617.1000000000721 5.502017063033537e-05
+617.2000000000721 5.50256791041068e-05
+617.3000000000721 5.503118772943197e-05
+617.4000000000722 5.5036696506219256e-05
+617.5000000000722 5.5042205434639134e-05
+617.6000000000722 5.505985293011568e-05
+617.7000000000722 5.507750300691976e-05
+617.8000000000723 5.5095155665076654e-05
+617.9000000000723 5.51128109047382e-05
+618.0000000000723 5.513046872611053e-05
+618.1000000000723 5.513547715933567e-05
+618.2000000000724 5.514048556129594e-05
+618.3000000000724 5.514549393195647e-05
+618.4000000000724 5.5150502271345784e-05
+618.5000000000724 5.515551057942899e-05
+618.6000000000724 5.516051885636152e-05
+618.7000000000725 5.516552710204504e-05
+618.8000000000725 5.517053531657168e-05
+618.9000000000725 5.517554349996994e-05
+619.0000000000725 5.518055165221436e-05
+619.1000000000726 5.519833703025064e-05
+619.2000000000726 5.52161250617994e-05
+619.3000000000726 5.523391574702711e-05
+619.4000000000726 5.5251709086036704e-05
+619.5000000000726 5.526950507898579e-05
+619.6000000000727 5.527514197860099e-05
+619.7000000000727 5.5280779051907206e-05
+619.8000000000727 5.528641629887702e-05
+619.9000000000727 5.5292053719609875e-05
+620.0000000000728 5.529769131408541e-05
+620.1000000000728 5.531306766006657e-05
+620.2000000000728 5.532844519555473e-05
+620.3000000000728 5.53438239203945e-05
+620.4000000000729 5.535920383443045e-05
+620.5000000000729 5.5374584937625384e-05
+620.6000000000729 5.537779628561567e-05
+620.7000000000729 5.538100741099357e-05
+620.8000000000729 5.538421831386192e-05
+620.900000000073 5.5387428994196696e-05
+621.000000000073 5.539063945204067e-05
+621.100000000073 5.539848694289138e-05
+621.200000000073 5.540633502238257e-05
+621.300000000073 5.5414183690633845e-05
+621.4000000000731 5.5422032947637774e-05
+621.5000000000731 5.542988279358652e-05
+621.6000000000731 5.544991734553939e-05
+621.7000000000731 5.5469955937479125e-05
+621.8000000000732 5.5489998569801774e-05
+621.9000000000732 5.5510045242966975e-05
+622.0000000000732 5.553009595729807e-05
+622.1000000000732 5.553760694782773e-05
+622.2000000000733 5.554511853782284e-05
+622.3000000000733 5.5552630727289e-05
+622.4000000000733 5.556014351629548e-05
+622.5000000000733 5.556765690504797e-05
+622.6000000000734 5.558737180908227e-05
+622.7000000000734 5.560709061237208e-05
+622.8000000000734 5.5626813315396536e-05
+622.9000000000734 5.564653991857109e-05
+623.0000000000734 5.5666270422363876e-05
+623.1000000000735 5.5670736242427966e-05
+623.2000000000735 5.5675201932188125e-05
+623.3000000000735 5.567966749167537e-05
+623.4000000000735 5.568413292085699e-05
+623.5000000000736 5.568859821976391e-05
+623.6000000000736 5.569298538596911e-05
+623.7000000000736 5.569732226115456e-05
+623.8000000000736 5.570163477429177e-05
+623.9000000000736 5.570594694102265e-05
+624.0000000000737 5.5710280862432656e-05
+624.1000000000737 5.57286424907535e-05
+624.2000000000737 5.574706747061509e-05
+624.3000000000737 5.576557221393947e-05
+624.4000000000738 5.5784171230274954e-05
+624.5000000000738 5.580287712362194e-05
+624.6000000000738 5.5809477372370956e-05
+624.7000000000738 5.581620251045337e-05
+624.8000000000739 5.5823058557599956e-05
+624.9000000000739 5.583004966758932e-05
+625.0000000000739 5.583717812732614e-05
+625.1000000000739 5.5843646549923294e-05
+625.2000000000739 5.585025110091932e-05
+625.300000000074 5.585698845404391e-05
+625.400000000074 5.586385341168166e-05
+625.500000000074 5.587083890380927e-05
+625.600000000074 5.5890176499921464e-05
+625.700000000074 5.590961802290268e-05
+625.8000000000741 5.592915083563504e-05
+625.9000000000741 5.594876041106519e-05
+626.0000000000741 5.596843032875662e-05
+626.1000000000741 5.597588879334559e-05
+626.2000000000742 5.598336570453666e-05
+626.3000000000742 5.5990838944522364e-05
+626.4000000000742 5.5998284510184124e-05
+626.5000000000742 5.60056765119933e-05
+626.6000000000743 5.600073050022051e-05
+626.7000000000743 5.5995778676987834e-05
+626.8000000000743 5.599082141233378e-05
+626.9000000000743 5.598585913284882e-05
+627.0000000000744 5.5980892321766074e-05
+627.1000000000744 5.5877581263230006e-05
+627.2000000000744 5.577424215803629e-05
+627.3000000000744 5.5670875656421356e-05
+627.4000000000744 5.556748246017243e-05
+627.5000000000745 5.546406332192353e-05
+627.6000000000745 5.529925496536843e-05
+627.7000000000745 5.513440223163409e-05
+627.8000000000745 5.4969505882311724e-05
+627.9000000000746 5.480456661411364e-05
+628.0000000000746 5.463958506045842e-05
+628.1000000000746 5.471104942142786e-05
+628.2000000000746 5.4782539469456226e-05
+628.3000000000746 5.4854055688989655e-05
+628.4000000000747 5.492559851117624e-05
+628.5000000000747 5.4997168313663864e-05
+628.6000000000747 5.510579612284909e-05
+628.7000000000747 5.5214565091011314e-05
+628.8000000000748 5.532342451958584e-05
+628.9000000000748 5.543232707580813e-05
+629.0000000000748 5.5541228828832804e-05
+629.1000000000748 5.5545326709763306e-05
+629.2000000000749 5.554930817967604e-05
+629.3000000000749 5.5553140569634764e-05
+629.4000000000749 5.555679497880831e-05
+629.5000000000749 5.5560246275942914e-05
+629.6000000000749 5.557577723060647e-05
+629.700000000075 5.559106597748244e-05
+629.800000000075 5.560609929372017e-05
+629.900000000075 5.562086766743759e-05
+630.000000000075 5.563536530312291e-05
+630.100000000075 5.568816591181277e-05
+630.2000000000751 5.57407006398523e-05
+630.3000000000751 5.579297431705584e-05
+630.4000000000751 5.584499553442553e-05
+630.5000000000751 5.5896776661444814e-05
+630.6000000000752 5.593602128877548e-05
+630.7000000000752 5.5975064226589466e-05
+630.8000000000752 5.601393034768523e-05
+630.9000000000752 5.605264840620692e-05
+631.0000000000753 5.609125104992849e-05
+631.1000000000753 5.611997511950808e-05
+631.2000000000753 5.614866249486637e-05
+631.3000000000753 5.6177357581721965e-05
+631.4000000000754 5.620610869855696e-05
+631.5000000000754 5.623496808631107e-05
+631.6000000000754 5.62639919206149e-05
+631.7000000000754 5.62930225142956e-05
+631.8000000000754 5.632205950046533e-05
+631.9000000000755 5.6351102454514283e-05
+632.0000000000755 5.638015089357641e-05
+632.1000000000755 5.640971677488549e-05
+632.2000000000755 5.6439287621670546e-05
+632.3000000000756 5.646886277626261e-05
+632.4000000000756 5.649844152230159e-05
+632.5000000000756 5.652802308463802e-05
+632.6000000000756 5.654527897931175e-05
+632.7000000000756 5.656253853196423e-05
+632.8000000000757 5.6579800969258436e-05
+632.9000000000757 5.659706557426224e-05
+633.0000000000757 5.661433168647407e-05
+633.1000000000757 5.663177757670764e-05
+633.2000000000758 5.664922383314665e-05
+633.3000000000758 5.666666996530393e-05
+633.4000000000758 5.668411553941219e-05
+633.5000000000758 5.670156017883639e-05
+633.6000000000759 5.671892413718042e-05
+633.7000000000759 5.6736235453747306e-05
+633.8000000000759 5.675352030246507e-05
+633.9000000000759 5.677080298963484e-05
+634.0000000000759 5.678810595151621e-05
+634.100000000076 5.679090847868623e-05
+634.200000000076 5.6793768134506796e-05
+634.300000000076 5.679670166949996e-05
+634.400000000076 5.679972393677173e-05
+634.500000000076 5.680284789175668e-05
+634.6000000000761 5.681843374050367e-05
+634.7000000000761 5.683414295077157e-05
+634.8000000000761 5.684998286549065e-05
+634.9000000000761 5.6865958932474054e-05
+635.0000000000762 5.6882074701702e-05
+635.1000000000762 5.688504958398247e-05
+635.2000000000762 5.688816369052356e-05
+635.3000000000762 5.68914147657134e-05
+635.4000000000763 5.689479864917477e-05
+635.5000000000763 5.689830927487315e-05
+635.6000000000763 5.691429522622318e-05
+635.7000000000763 5.693038845319171e-05
+635.8000000000764 5.6946576276425735e-05
+635.9000000000764 5.69628440374596e-05
+636.0000000000764 5.697917509569833e-05
+636.1000000000764 5.6985333438994335e-05
+636.2000000000764 5.699151438051004e-05
+636.3000000000765 5.6997695315739837e-05
+636.4000000000765 5.700385166373816e-05
+636.5000000000765 5.7009956866560896e-05
+636.6000000000765 5.7028350280056605e-05
+636.7000000000766 5.7046746464824146e-05
+636.8000000000766 5.7065145420946325e-05
+636.9000000000766 5.708354714857049e-05
+637.0000000000766 5.7101951647769276e-05
+637.1000000000766 5.7107164997553815e-05
+637.2000000000767 5.711237844385681e-05
+637.3000000000767 5.711759198671825e-05
+637.4000000000767 5.712280562624265e-05
+637.5000000000767 5.712801936235055e-05
+637.6000000000768 5.714561309392593e-05
+637.7000000000768 5.716320918178853e-05
+637.8000000000768 5.7180807625986424e-05
+637.9000000000768 5.719840842663197e-05
+638.0000000000769 5.721601158369955e-05
+638.1000000000769 5.7221769986495225e-05
+638.2000000000769 5.7227528575566996e-05
+638.3000000000769 5.723328735089049e-05
+638.400000000077 5.723904631257034e-05
+638.500000000077 5.724480546052714e-05
+638.600000000077 5.7262956692003445e-05
+638.700000000077 5.728111060317847e-05
+638.800000000077 5.7299267194222695e-05
+638.9000000000771 5.731742646517737e-05
+639.0000000000771 5.733558841633415e-05
+639.1000000000771 5.734345214793382e-05
+639.2000000000771 5.735131644224478e-05
+639.3000000000771 5.735918129919477e-05
+639.4000000000772 5.736704671884085e-05
+639.5000000000772 5.737491270130468e-05
+639.6000000000772 5.738277924657873e-05
+639.7000000000772 5.7390646354655424e-05
+639.8000000000773 5.739851402572119e-05
+639.9000000000773 5.740638225963916e-05
+640.0000000000773 5.741425105660642e-05
+640.1000000000773 5.743576399553227e-05
+640.2000000000774 5.745728183831715e-05
+640.3000000000774 5.747880458570792e-05
+640.4000000000774 5.750033223845142e-05
+640.5000000000774 5.752186479728506e-05
+640.6000000000774 5.753097656606323e-05
+640.7000000000775 5.754008930598363e-05
+640.8000000000775 5.754920301715559e-05
+640.9000000000775 5.755831769962368e-05
+641.0000000000775 5.756743335356664e-05
+641.1000000000776 5.758247719669203e-05
+641.2000000000776 5.759752188082795e-05
+641.3000000000776 5.761256740584784e-05
+641.4000000000776 5.762761377162507e-05
+641.5000000000776 5.764266097795858e-05
+641.6000000000777 5.764527207288411e-05
+641.7000000000777 5.7647882881462334e-05
+641.8000000000777 5.765049340387327e-05
+641.9000000000777 5.765310364003775e-05
+642.0000000000778 5.765571359000695e-05
+642.1000000000778 5.7659253192915674e-05
+642.2000000000778 5.766279252526166e-05
+642.3000000000778 5.7666331587088224e-05
+642.4000000000779 5.766987037837394e-05
+642.5000000000779 5.767340889923675e-05
+642.6000000000779 5.768939093547344e-05
+642.7000000000779 5.770537422793615e-05
+642.800000000078 5.7721358776436435e-05
+642.900000000078 5.7737344580915484e-05
+643.000000000078 5.7753331641109974e-05
+643.100000000078 5.775658960491718e-05
+643.200000000078 5.7759847362900056e-05
+643.3000000000781 5.7763104915103354e-05
+643.4000000000781 5.7766362261571884e-05
+643.5000000000781 5.7769619402285595e-05
+643.6000000000781 5.7772876337354186e-05
+643.7000000000781 5.7776133066757534e-05
+643.8000000000782 5.77793895904757e-05
+643.9000000000782 5.7782645908618396e-05
+644.0000000000782 5.7785902021237695e-05
+644.1000000000782 5.779841370404799e-05
+644.2000000000783 5.7810924894723895e-05
+644.3000000000783 5.78234355930297e-05
+644.4000000000783 5.783594579859986e-05
+644.5000000000783 5.784845551125378e-05
+644.6000000000784 5.7848510799522647e-05
+644.7000000000784 5.784856557077275e-05
+644.8000000000784 5.7848619825030276e-05
+644.9000000000784 5.784867356251596e-05
+645.0000000000784 5.784872678313034e-05
+645.1000000000785 5.785404920432544e-05
+645.2000000000785 5.785937173131097e-05
+645.3000000000785 5.786469436412653e-05
+645.4000000000785 5.787001710274673e-05
+645.5000000000786 5.78753399472663e-05
+645.6000000000786 5.786820204454585e-05
+645.7000000000786 5.7861061955714045e-05
+645.8000000000786 5.785391968086494e-05
+645.9000000000786 5.784677521989798e-05
+646.0000000000787 5.783962857278094e-05
+646.1000000000787 5.7836848461716026e-05
+646.2000000000787 5.7834065257026835e-05
+646.3000000000787 5.783127895818234e-05
+646.4000000000788 5.782848956452165e-05
+646.5000000000788 5.782569707543883e-05
+646.6000000000788 5.781042352285492e-05
+646.7000000000788 5.7795142695279764e-05
+646.8000000000789 5.777985459141035e-05
+646.9000000000789 5.776455920987881e-05
+647.0000000000789 5.774925654945587e-05
+647.1000000000789 5.774506693409901e-05
+647.200000000079 5.774087448608279e-05
+647.300000000079 5.773667920506159e-05
+647.400000000079 5.773248109049457e-05
+647.500000000079 5.772828014203611e-05
+647.600000000079 5.7724076359275434e-05
+647.7000000000791 5.771986974173674e-05
+647.8000000000791 5.7715660289074494e-05
+647.9000000000791 5.7711448000812795e-05
+648.0000000000791 5.7707232876567546e-05
+648.1000000000791 5.773652600904261e-05
+648.2000000000792 5.7765822703188635e-05
+648.3000000000792 5.779512295892701e-05
+648.4000000000792 5.782442677604864e-05
+648.5000000000792 5.785373415439976e-05
+648.6000000000793 5.787061153572678e-05
+648.7000000000793 5.788753972151409e-05
+648.8000000000793 5.790449337397146e-05
+648.9000000000793 5.792144900650782e-05
+649.0000000000794 5.793838498590236e-05
+649.1000000000794 5.794171717182103e-05
+649.2000000000794 5.794499009326433e-05
+649.3000000000794 5.794818774782071e-05
+649.4000000000794 5.7951296011328304e-05
+649.5000000000795 5.795430263842815e-05
+649.6000000000795 5.7994755300118104e-05
+649.7000000000795 5.803509414865149e-05
+649.8000000000795 5.8075310747669345e-05
+649.9000000000796 5.811539864324898e-05
+650.0000000000796 5.815535337108971e-05
+650.1000000000796 5.8188351675486826e-05
+650.2000000000796 5.822121873167575e-05
+650.3000000000796 5.825395613540904e-05
+650.4000000000797 5.8286567497885995e-05
+650.5000000000797 5.831905845132649e-05
+650.6000000000797 5.8313844752174504e-05
+650.7000000000797 5.830851715951378e-05
+650.8000000000798 5.830308838973396e-05
+650.9000000000798 5.829757310785028e-05
+651.0000000000798 5.829198792606342e-05
+651.1000000000798 5.825781717823221e-05
+651.2000000000799 5.822361366491477e-05
+651.3000000000799 5.818939984374717e-05
+651.4000000000799 5.81552000685949e-05
+651.5000000000799 5.8121040583307326e-05
+651.60000000008 5.811203023576756e-05
+651.70000000008 5.8103015596767106e-05
+651.80000000008 5.809399764068979e-05
+651.90000000008 5.808497740008328e-05
+652.00000000008 5.8075955966190514e-05
+652.1000000000801 5.813103148387128e-05
+652.2000000000801 5.818611831099831e-05
+652.3000000000801 5.8241217726713564e-05
+652.4000000000801 5.829633107423077e-05
+652.5000000000801 5.8351459760970036e-05
+652.6000000000802 5.838150573123459e-05
+652.7000000000802 5.841155913699092e-05
+652.8000000000802 5.8441619597552306e-05
+652.9000000000802 5.8471686672105424e-05
+653.0000000000803 5.850175985940579e-05
+653.1000000000803 5.8508041277912135e-05
+653.2000000000803 5.851432356520023e-05
+653.3000000000803 5.85206060384721e-05
+653.4000000000804 5.85268879551031e-05
+653.5000000000804 5.853316851281316e-05
+653.6000000000804 5.8551929334679276e-05
+653.7000000000804 5.857064178094494e-05
+653.8000000000804 5.858933229517725e-05
+653.9000000000805 5.860802539276316e-05
+654.0000000000805 5.8626743657810134e-05
+654.1000000000805 5.861617396022629e-05
+654.2000000000805 5.860566472287358e-05
+654.3000000000806 5.8595232598973885e-05
+654.4000000000806 5.858489226826413e-05
+654.5000000000806 5.8574656438718824e-05
+654.6000000000806 5.8577106042612576e-05
+654.7000000000806 5.857968076292641e-05
+654.8000000000807 5.8582387488464996e-05
+654.9000000000807 5.858523114760732e-05
+655.0000000000807 5.858821470778835e-05
+655.1000000000807 5.859266595107816e-05
+655.2000000000808 5.859725731223212e-05
+655.3000000000808 5.8601985881794554e-05
+655.4000000000808 5.86068467864584e-05
+655.5000000000808 5.8611833188369045e-05
+655.6000000000809 5.8629515025718833e-05
+655.7000000000809 5.864730501991001e-05
+655.8000000000809 5.8665190492588346e-05
+655.9000000000809 5.868315678429284e-05
+656.000000000081 5.870118725105056e-05
+656.100000000081 5.872131614389069e-05
+656.200000000081 5.874147129259406e-05
+656.300000000081 5.8761630081733535e-05
+656.400000000081 5.878176789542373e-05
+656.5000000000811 5.880185811410572e-05
+656.6000000000811 5.882187211160868e-05
+656.7000000000811 5.884188984131319e-05
+656.8000000000811 5.8861911303576896e-05
+656.9000000000811 5.8881936498757395e-05
+657.0000000000812 5.890196542739758e-05
+657.1000000000812 5.890798647868877e-05
+657.2000000000812 5.891400776997415e-05
+657.3000000000812 5.892002930143354e-05
+657.4000000000813 5.892605107298447e-05
+657.5000000000813 5.893207308468598e-05
+657.6000000000813 5.8950702415806803e-05
+657.7000000000813 5.896933456366375e-05
+657.8000000000814 5.8987969528331665e-05
+657.9000000000814 5.900660731008229e-05
+658.0000000000814 5.902524790905367e-05
+658.1000000000814 5.904089385362387e-05
+658.2000000000814 5.905654087126539e-05
+658.3000000000815 5.907218896182302e-05
+658.4000000000815 5.9087838125272586e-05
+658.5000000000815 5.910348836139319e-05
+658.6000000000815 5.911913967009499e-05
+658.7000000000816 5.913479205135398e-05
+658.8000000000816 5.9150445504949156e-05
+658.9000000000816 5.91661000308564e-05
+659.0000000000816 5.918175562891451e-05
+659.1000000000816 5.919027183168692e-05
+659.2000000000817 5.919878881297897e-05
+659.3000000000817 5.9207306572812734e-05
+659.4000000000817 5.921582511127593e-05
+659.5000000000817 5.922434442846672e-05
+659.6000000000818 5.924549413298184e-05
+659.7000000000818 5.926664824998511e-05
+659.8000000000818 5.92878067800652e-05
+659.9000000000818 5.9308969723745e-05
+660.0000000000819 5.9330137081534474e-05
+660.1000000000819 5.9335295199927986e-05
+660.2000000000819 5.934045338841348e-05
+660.3000000000819 5.9345611647097976e-05
+660.400000000082 5.93507699760227e-05
+660.500000000082 5.9355928375173595e-05
+660.600000000082 5.9373730313536414e-05
+660.700000000082 5.9391534519612675e-05
+660.800000000082 5.940934099349092e-05
+660.9000000000821 5.942714973525964e-05
+661.0000000000821 5.9444960744865644e-05
+661.1000000000821 5.945062939570015e-05
+661.2000000000821 5.945629826621194e-05
+661.3000000000822 5.946196735644828e-05
+661.4000000000822 5.9467636666456566e-05
+661.5000000000822 5.9473306196294534e-05
+661.6000000000822 5.94916310471775e-05
+661.7000000000822 5.9509958530673795e-05
+661.8000000000823 5.9528288646907235e-05
+661.9000000000823 5.954662139613343e-05
+662.0000000000823 5.95649567784677e-05
+662.1000000000823 5.957303023642451e-05
+662.2000000000824 5.958110435687677e-05
+662.3000000000824 5.958917913983492e-05
+662.4000000000824 5.9597254585441316e-05
+662.5000000000824 5.960533069370656e-05
+662.6000000000824 5.9613407464707035e-05
+662.7000000000825 5.962148489845334e-05
+662.8000000000825 5.9629562995021934e-05
+662.9000000000825 5.9637641754489345e-05
+663.0000000000825 5.964572117693625e-05
+663.1000000000826 5.965866990670806e-05
+663.2000000000826 5.967161840664158e-05
+663.3000000000826 5.9684566676532786e-05
+663.4000000000826 5.9697514716243505e-05
+663.5000000000827 5.971046252555926e-05
+663.6000000000827 5.971081634268143e-05
+663.7000000000827 5.9711223607514264e-05
+663.8000000000827 5.971165649745965e-05
+663.9000000000827 5.9712089250223626e-05
+664.0000000000828 5.971249816378436e-05
+664.1000000000828 5.972177511127534e-05
+664.2000000000828 5.97309882828975e-05
+664.3000000000828 5.974012012181606e-05
+664.4000000000829 5.974915512295656e-05
+664.5000000000829 5.975807983494342e-05
+664.6000000000829 5.977956482922626e-05
+664.7000000000829 5.9800917722172686e-05
+664.800000000083 5.982213359938001e-05
+664.900000000083 5.9843209423333665e-05
+665.000000000083 5.9864144037138805e-05
+665.100000000083 5.986434299489509e-05
+665.200000000083 5.9864399818362765e-05
+665.3000000000831 5.986431915346088e-05
+665.4000000000831 5.9864107531060995e-05
+665.5000000000831 5.9863773366620214e-05
+665.6000000000831 5.986333436280448e-05
+665.7000000000832 5.986280006087615e-05
+665.8000000000832 5.986218206873678e-05
+665.9000000000832 5.986149406115727e-05
+666.0000000000832 5.986075177941822e-05
+666.1000000000832 5.987789466771083e-05
+666.2000000000833 5.9895023068635416e-05
+666.3000000000833 5.991215892750829e-05
+666.4000000000833 5.9929326284591707e-05
+666.5000000000833 5.994655127841922e-05
+666.6000000000834 5.995115816172701e-05
+666.7000000000834 5.995576155834101e-05
+666.8000000000834 5.996036046233154e-05
+666.9000000000834 5.9964953806628524e-05
+667.0000000000834 5.996954046292846e-05
+667.1000000000835 5.9972418106851314e-05
+667.2000000000835 5.997528652723077e-05
+667.3000000000835 5.997814441294856e-05
+667.4000000000835 5.9980990391444994e-05
+667.5000000000836 5.998382302911028e-05
+667.6000000000836 5.9999349863177355e-05
+667.7000000000836 6.001487174772238e-05
+667.8000000000836 6.003039008049445e-05
+667.9000000000837 6.004590638249854e-05
+668.0000000000837 6.006142229861299e-05
+668.1000000000837 6.006452293281609e-05
+668.2000000000837 6.0067625594021084e-05
+668.3000000000837 6.0070732296418755e-05
+668.4000000000838 6.007384517651336e-05
+668.5000000000838 6.00769664934267e-05
+668.6000000000838 6.008001687909145e-05
+668.7000000000838 6.008301775136045e-05
+668.8000000000839 6.008599589090217e-05
+668.9000000000839 6.008897601020977e-05
+669.0000000000839 6.009198075280555e-05
+669.1000000000839 6.010482186559398e-05
+669.200000000084 6.0117726676027756e-05
+669.300000000084 6.013071165616782e-05
+669.400000000084 6.014379121647094e-05
+669.500000000084 6.015697770296573e-05
+669.600000000084 6.0157563094894775e-05
+669.7000000000841 6.015827702959405e-05
+669.8000000000841 6.0159126572151283e-05
+669.9000000000841 6.0160116772241047e-05
+670.0000000000841 6.016125066418665e-05
+670.1000000000842 6.016866914279287e-05
+670.2000000000842 6.0176232113836264e-05
+670.3000000000842 6.018393660687464e-05
+670.4000000000842 6.0191777632966416e-05
+670.5000000000842 6.0199748183211645e-05
+670.6000000000843 6.0220568157277555e-05
+670.7000000000843 6.0241501042294495e-05
+670.8000000000843 6.0262533822640294e-05
+670.9000000000843 6.028365144403847e-05
+671.0000000000844 6.0304836809792e-05
+671.1000000000844 6.0306638082319256e-05
+671.2000000000844 6.030846215213701e-05
+671.3000000000844 6.031028577307329e-05
+671.4000000000844 6.031208367493496e-05
+671.5000000000845 6.031382856265426e-05
+671.6000000000845 6.0315491116647026e-05
+671.7000000000845 6.031715341496208e-05
+671.8000000000845 6.031881545772895e-05
+671.9000000000846 6.032047724501088e-05
+672.0000000000846 6.032213877682048e-05
+672.1000000000846 6.034236727448157e-05
+672.2000000000846 6.0362599506314264e-05
+672.3000000000847 6.0382835472751886e-05
+672.4000000000847 6.040307517416143e-05
+672.5000000000847 6.042331861096543e-05
+672.6000000000847 6.0430816666221535e-05
+672.7000000000847 6.043831529364529e-05
+672.8000000000848 6.0445814493441776e-05
+672.9000000000848 6.04533142655508e-05
+673.0000000000848 6.046081461010716e-05
+673.1000000000848 6.0463585932243236e-05
+673.2000000000849 6.046635709171334e-05
+673.3000000000849 6.046912808863699e-05
+673.4000000000849 6.0471898923000975e-05
+673.5000000000849 6.0474669594858514e-05
+673.600000000085 6.047744010419635e-05
+673.700000000085 6.0480210451067736e-05
+673.800000000085 6.048298063552582e-05
+673.900000000085 6.04857506576238e-05
+674.000000000085 6.048852051736034e-05
+674.1000000000851 6.050514955754224e-05
+674.2000000000851 6.0521780194221455e-05
+674.3000000000851 6.053841242742299e-05
+674.4000000000851 6.055504625710551e-05
+674.5000000000852 6.0571681683216765e-05
+674.6000000000852 6.057555251991978e-05
+674.7000000000852 6.0579423321588175e-05
+674.8000000000852 6.0583294088270886e-05
+674.9000000000852 6.0587164819950597e-05
+675.0000000000853 6.0591035516677025e-05
+675.1000000000853 6.059590428361404e-05
+675.2000000000853 6.060077313441565e-05
+675.3000000000853 6.060564206912689e-05
+675.4000000000854 6.0610511087792575e-05
+675.5000000000854 6.061538019039126e-05
+675.6000000000854 6.062024937703433e-05
+675.7000000000854 6.062511864770034e-05
+675.8000000000854 6.0629988002367824e-05
+675.9000000000855 6.063485744114822e-05
+676.0000000000855 6.0639726963965194e-05
+676.1000000000855 6.065810826808772e-05
+676.2000000000855 6.067649214943718e-05
+676.3000000000856 6.069487860820046e-05
+676.4000000000856 6.0713267644564504e-05
+676.5000000000856 6.073165925870525e-05
+676.6000000000856 6.073726665783885e-05
+676.7000000000857 6.074287427390962e-05
+676.8000000000857 6.074848210703639e-05
+676.9000000000857 6.075409015727132e-05
+677.0000000000857 6.075969842453076e-05
+677.1000000000857 6.0761791012739444e-05
+677.2000000000858 6.0763883381087146e-05
+677.3000000000858 6.076597552963337e-05
+677.4000000000858 6.076806745843764e-05
+677.5000000000858 6.077015916750397e-05
+677.6000000000859 6.078504481482733e-05
+677.7000000000859 6.0799931123072856e-05
+677.8000000000859 6.081481809215878e-05
+677.9000000000859 6.082970572180366e-05
+678.000000000086 6.084459401205119e-05
+678.100000000086 6.085076441861466e-05
+678.200000000086 6.085693513248708e-05
+678.300000000086 6.0863106153790066e-05
+678.400000000086 6.0869277482379064e-05
+678.5000000000861 6.0875449118442166e-05
+678.6000000000861 6.088162106196788e-05
+678.7000000000861 6.0887793312944783e-05
+678.8000000000861 6.089396587149449e-05
+678.9000000000862 6.090013873753899e-05
+679.0000000000862 6.090631191119692e-05
+679.1000000000862 6.0908899783038916e-05
+679.2000000000862 6.0911487477053136e-05
+679.3000000000862 6.091407499322828e-05
+679.4000000000863 6.091666233161968e-05
+679.5000000000863 6.091924949234914e-05
+679.6000000000863 6.0921836475272276e-05
+679.7000000000863 6.092442328057753e-05
+679.8000000000864 6.092700990818694e-05
+679.9000000000864 6.092959635822257e-05
+680.0000000000864 6.0932182630685245e-05
+680.1000000000864 6.0948902320558664e-05
+680.2000000000864 6.096562368120583e-05
+680.3000000000865 6.0982346712692966e-05
+680.4000000000865 6.0999071415019606e-05
+680.5000000000865 6.101579778824091e-05
+680.6000000000865 6.101970656639909e-05
+680.7000000000866 6.102361537328362e-05
+680.8000000000866 6.10275242087462e-05
+680.9000000000866 6.1031433072971634e-05
+681.0000000000866 6.103534196594703e-05
+681.1000000000867 6.104159598964578e-05
+681.2000000000867 6.10478503064156e-05
+681.3000000000867 6.10541049162382e-05
+681.4000000000867 6.106035981929528e-05
+681.5000000000867 6.106661501543525e-05
+681.6000000000868 6.107287050483979e-05
+681.7000000000868 6.107912628735732e-05
+681.8000000000868 6.108538236316958e-05
+681.9000000000868 6.109163873225837e-05
+682.0000000000869 6.109789539467063e-05
+682.1000000000869 6.110242696270368e-05
+682.2000000000869 6.11069586354076e-05
+682.3000000000869 6.11114904127676e-05
+682.400000000087 6.111602229490231e-05
+682.500000000087 6.112055428174135e-05
+682.600000000087 6.11379277780582e-05
+682.700000000087 6.115530328338423e-05
+682.800000000087 6.117268079796697e-05
+682.9000000000871 6.119006032178685e-05
+683.0000000000871 6.120744185494391e-05
+683.1000000000871 6.120884871492596e-05
+683.2000000000871 6.121025530856207e-05
+683.3000000000872 6.121166163585283e-05
+683.4000000000872 6.121306769686551e-05
+683.5000000000872 6.121447349166755e-05
+683.6000000000872 6.121596233057805e-05
+683.7000000000872 6.121750446512944e-05
+683.8000000000873 6.121907219629504e-05
+683.9000000000873 6.122063987435199e-05
+684.0000000000873 6.122218389929949e-05
+684.1000000000873 6.12264407904923e-05
+684.2000000000874 6.123063330555536e-05
+684.3000000000874 6.123474398422353e-05
+684.4000000000874 6.123875741438648e-05
+684.5000000000874 6.124266023306137e-05
+684.6000000000874 6.124644365119749e-05
+684.7000000000875 6.125009750541399e-05
+684.8000000000875 6.125361374554572e-05
+684.9000000000875 6.12569864358206e-05
+685.0000000000875 6.126021175525902e-05
+685.1000000000876 6.126124074776577e-05
+685.2000000000876 6.126212095054056e-05
+685.3000000000876 6.126285490598072e-05
+685.4000000000876 6.126344727331103e-05
+685.5000000000877 6.126390482846247e-05
+685.6000000000877 6.11999457552502e-05
+685.7000000000877 6.113586808774191e-05
+685.8000000000877 6.107168695842944e-05
+685.9000000000877 6.100741942172467e-05
+686.0000000000878 6.09430844430709e-05
+686.1000000000878 6.0358523528822826e-05
+686.2000000000878 5.97738049019902e-05
+686.3000000000878 5.918895317046752e-05
+686.4000000000879 5.860399390294923e-05
+686.5000000000879 5.801895353140066e-05
+686.6000000000879 5.655897538960585e-05
+686.7000000000879 5.509866353158817e-05
+686.800000000088 5.363801663593249e-05
+686.900000000088 5.217703351397239e-05
+687.000000000088 5.0715713103825106e-05
+687.100000000088 5.002028784854451e-05
+687.200000000088 4.9324875196009466e-05
+687.3000000000881 4.862947458901447e-05
+687.4000000000881 4.7934085543234245e-05
+687.5000000000881 4.7238707645876674e-05
+687.6000000000881 4.8036432450978624e-05
+687.7000000000882 4.8834144367022094e-05
+687.8000000000882 4.963184294450084e-05
+687.9000000000882 5.042952766166296e-05
+688.0000000000882 5.122719791987201e-05
+688.1000000000882 5.188452907876547e-05
+688.2000000000883 5.254187815031169e-05
+688.3000000000883 5.319924432825172e-05
+688.4000000000883 5.38566267205917e-05
+688.5000000000883 5.4514024345189134e-05
+688.6000000000884 5.4334651156142534e-05
+688.7000000000884 5.415522238997711e-05
+688.8000000000884 5.397576388267672e-05
+688.9000000000884 5.37962993850908e-05
+689.0000000000884 5.3616850592350375e-05
+689.1000000000885 5.361887354281094e-05
+689.2000000000885 5.362095543759639e-05
+689.3000000000885 5.362311274291084e-05
+689.4000000000885 5.362536018472434e-05
+689.5000000000886 5.362771074862512e-05
+689.6000000000886 5.3874827139637395e-05
+689.7000000000886 5.4122084848952017e-05
+689.8000000000886 5.4369491531582256e-05
+689.9000000000887 5.461705306605761e-05
+690.0000000000887 5.4864773511672013e-05
+690.1000000000887 5.507165432764096e-05
+690.2000000000887 5.527867407597904e-05
+690.3000000000887 5.548583081147823e-05
+690.4000000000888 5.569312061366142e-05
+690.5000000000888 5.590053755110218e-05
+690.6000000000888 5.613383492804042e-05
+690.7000000000888 5.636724603449054e-05
+690.8000000000889 5.6600759795204095e-05
+690.9000000000889 5.683436302580817e-05
+691.0000000000889 5.706804039295718e-05
+691.1000000000889 5.724050488881072e-05
+691.200000000089 5.741302077648798e-05
+691.300000000089 5.758556604473705e-05
+691.400000000089 5.7758116479044066e-05
+691.500000000089 5.7930645632811566e-05
+691.600000000089 5.8090235906036e-05
+691.7000000000891 5.824985265047116e-05
+691.8000000000891 5.840949586755129e-05
+691.9000000000891 5.856916555877697e-05
+692.0000000000891 5.872886172563401e-05
+692.1000000000892 5.887159573757647e-05
+692.2000000000892 5.901433397508632e-05
+692.3000000000892 5.915707643707935e-05
+692.4000000000892 5.929982312247097e-05
+692.5000000000892 5.9442574030287826e-05
+692.6000000000893 5.955954022671427e-05
+692.7000000000893 5.9676509848860446e-05
+692.8000000000893 5.979348289578408e-05
+692.9000000000893 5.991045936674336e-05
+693.0000000000894 6.002743926066299e-05
+693.1000000000894 6.0070493907607175e-05
+693.2000000000894 6.011355427335957e-05
+693.3000000000894 6.0156620358128065e-05
+693.4000000000894 6.0199692162120355e-05
+693.5000000000895 6.024276968550964e-05
+693.6000000000895 6.02471502624406e-05
+693.7000000000895 6.025153093090635e-05
+693.8000000000895 6.025591169095895e-05
+693.9000000000896 6.026029254258338e-05
+694.0000000000896 6.02646734859111e-05
+694.1000000000896 6.028282863916532e-05
+694.2000000000896 6.0300986222746205e-05
+694.3000000000897 6.0319146236811787e-05
+694.4000000000897 6.033730868145296e-05
+694.5000000000897 6.0355473556862466e-05
+694.6000000000897 6.041237502113277e-05
+694.7000000000897 6.0469285662155836e-05
+694.8000000000898 6.052620548055337e-05
+694.9000000000898 6.058313447667861e-05
+695.0000000000898 6.0640072651056485e-05
+695.1000000000898 6.066398758918378e-05
+695.2000000000899 6.068790071271446e-05
+695.3000000000899 6.071181202162561e-05
+695.4000000000899 6.073572151569325e-05
+695.5000000000899 6.07596291946701e-05
+695.60000000009 6.07577081900554e-05
+695.70000000009 6.075578700335802e-05
+695.80000000009 6.075386563473513e-05
+695.90000000009 6.075194408414278e-05
+696.00000000009 6.075002235188032e-05
+696.1000000000901 6.083142591396883e-05
+696.2000000000901 6.091283950972524e-05
+696.3000000000901 6.09942631393485e-05
+696.4000000000901 6.107569680290309e-05
+696.5000000000902 6.115714050046536e-05
+696.6000000000902 6.125151104162364e-05
+696.7000000000902 6.134589328662379e-05
+696.8000000000902 6.144028723553283e-05
+696.9000000000902 6.153469288848447e-05
+697.0000000000903 6.16291102453403e-05
+697.1000000000903 6.164477990222739e-05
+697.2000000000903 6.16604506665137e-05
+697.3000000000903 6.16761225382858e-05
+697.4000000000904 6.169179551749616e-05
+697.5000000000904 6.17074696040738e-05
+697.6000000000904 6.169729758503356e-05
+697.7000000000904 6.168712436847631e-05
+697.8000000000904 6.167694995449407e-05
+697.9000000000905 6.166677434304466e-05
+698.0000000000905 6.165659753419943e-05
+698.1000000000905 6.162344999986249e-05
+698.2000000000905 6.159029565473657e-05
+698.3000000000906 6.155713449818133e-05
+698.4000000000906 6.152396652982488e-05
+698.5000000000906 6.149079174907067e-05
+698.6000000000906 6.1431744158024e-05
+698.7000000000907 6.137268502791781e-05
+698.8000000000907 6.131361435798233e-05
+698.9000000000907 6.125453214731374e-05
+699.0000000000907 6.119543839525971e-05
+699.1000000000907 6.119164130851545e-05
+699.2000000000908 6.11878441527704e-05
+699.3000000000908 6.11840469281316e-05
+699.4000000000908 6.118024963477327e-05
+699.5000000000908 6.117645227275874e-05
+699.6000000000909 6.11985206580545e-05
+699.7000000000909 6.122058576335117e-05
+699.8000000000909 6.124264758871911e-05
+699.9000000000909 6.126470613409427e-05
+700.000000000091 6.128676139946486e-05
+700.100000000091 6.129210845817427e-05
+700.200000000091 6.12974557544545e-05
+700.300000000091 6.130280328842874e-05
+700.400000000091 6.130815106001884e-05
+700.5000000000911 6.131349906934806e-05
+700.6000000000911 6.13188473164726e-05
+700.7000000000911 6.13241958013143e-05
+700.8000000000911 6.132954452392932e-05
+700.9000000000912 6.133489348437377e-05
+701.0000000000912 6.134024268263693e-05
+701.1000000000912 6.134572663869778e-05
+701.2000000000912 6.135121081729925e-05
+701.3000000000912 6.135669521842349e-05
+701.4000000000913 6.136217984211979e-05
+701.5000000000913 6.136766468838208e-05
+701.6000000000913 6.138609767914221e-05
+701.7000000000913 6.140453320697233e-05
+701.8000000000914 6.142297127205373e-05
+701.9000000000914 6.144141187450047e-05
+702.0000000000914 6.14598550145441e-05
+702.1000000000914 6.14597765726784e-05
+702.2000000000914 6.145969795216801e-05
+702.3000000000915 6.145961915288422e-05
+702.4000000000915 6.145954017503462e-05
+702.5000000000915 6.145946101864868e-05
+702.6000000000915 6.148528658637888e-05
+702.7000000000916 6.15111119085306e-05
+702.8000000000916 6.153693698499994e-05
+702.9000000000916 6.156276181561588e-05
+703.0000000000916 6.158858640016517e-05
+703.1000000000917 6.164175650759343e-05
+703.2000000000917 6.169492877074312e-05
+703.3000000000917 6.174810318924128e-05
+703.4000000000917 6.180127976284912e-05
+703.5000000000917 6.18544584910789e-05
+703.6000000000918 6.185582297770506e-05
+703.7000000000918 6.185718733269703e-05
+703.8000000000918 6.185855155605012e-05
+703.9000000000918 6.185991564789433e-05
+704.0000000000919 6.18612796080933e-05
+704.1000000000919 6.186548389075038e-05
+704.2000000000919 6.186968824285791e-05
+704.3000000000919 6.187389266439818e-05
+704.400000000092 6.187809715535347e-05
+704.500000000092 6.188230171584061e-05
+704.600000000092 6.188650634590918e-05
+704.700000000092 6.189071104540697e-05
+704.800000000092 6.189491581451811e-05
+704.9000000000921 6.189912065315767e-05
+705.0000000000921 6.19033255614372e-05
+705.1000000000921 6.190176334200643e-05
+705.2000000000921 6.190020099960077e-05
+705.3000000000922 6.189863853423323e-05
+705.4000000000922 6.189707594591653e-05
+705.5000000000922 6.189551323481018e-05
+705.6000000000922 6.190691248468272e-05
+705.7000000000922 6.191831095714766e-05
+705.8000000000923 6.192970865219806e-05
+705.9000000000923 6.194110556975966e-05
+706.0000000000923 6.195250170989632e-05
+706.1000000000923 6.196758212151585e-05
+706.2000000000924 6.19826633306665e-05
+706.3000000000924 6.199774533734096e-05
+706.4000000000924 6.201282814159918e-05
+706.5000000000924 6.202791174329929e-05
+706.6000000000925 6.204299614250124e-05
+706.7000000000925 6.205808133913045e-05
+706.8000000000925 6.207316733324692e-05
+706.9000000000925 6.208825412464138e-05
+707.0000000000925 6.210334171343078e-05
+707.1000000000926 6.210721061327672e-05
+707.2000000000926 6.21110795605947e-05
+707.3000000000926 6.21149485555702e-05
+707.4000000000926 6.211881759818694e-05
+707.5000000000927 6.212268668836126e-05
+707.6000000000927 6.212655582621137e-05
+707.7000000000927 6.213042501178827e-05
+707.8000000000927 6.213429424500836e-05
+707.9000000000927 6.213816352598988e-05
+708.0000000000928 6.214203285472514e-05
+708.1000000000928 6.215516994388004e-05
+708.2000000000928 6.2168306929161e-05
+708.3000000000928 6.21814438105883e-05
+708.4000000000929 6.219458058811481e-05
+708.5000000000929 6.22077172615587e-05
+708.6000000000929 6.222085383094029e-05
+708.7000000000929 6.223399029614515e-05
+708.800000000093 6.22471266571935e-05
+708.900000000093 6.226026291390357e-05
+709.000000000093 6.227339906622011e-05
+709.100000000093 6.22777098475614e-05
+709.200000000093 6.228202074651525e-05
+709.3000000000931 6.228633176306916e-05
+709.4000000000931 6.229064289734552e-05
+709.5000000000931 6.229495414919734e-05
+709.6000000000931 6.229926551881425e-05
+709.7000000000932 6.230357700618394e-05
+709.8000000000932 6.230788861122669e-05
+709.9000000000932 6.231220033413234e-05
+710.0000000000932 6.231651217474881e-05
+710.1000000000932 6.231551205799594e-05
+710.2000000000933 6.231451181649661e-05
+710.3000000000933 6.231351145025964e-05
+710.4000000000933 6.231251095949602e-05
+710.5000000000933 6.231151034407977e-05
+710.6000000000934 6.231050960415451e-05
+710.7000000000934 6.230950873972906e-05
+710.8000000000934 6.230850775087959e-05
+710.9000000000934 6.230750663761492e-05
+711.0000000000935 6.230650540009517e-05
+711.1000000000935 6.23232269365539e-05
+711.2000000000935 6.233995009387585e-05
+711.3000000000935 6.2356674872144e-05
+711.4000000000935 6.237340127137414e-05
+711.5000000000936 6.239012929164922e-05
+711.6000000000936 6.24068589330523e-05
+711.7000000000936 6.242359019559912e-05
+711.8000000000936 6.244032307944004e-05
+711.9000000000937 6.245705758459076e-05
+712.0000000000937 6.24737937109733e-05
+712.1000000000937 6.246252102118639e-05
+712.2000000000937 6.245124753742772e-05
+712.3000000000937 6.243997325968498e-05
+712.4000000000938 6.242869818808064e-05
+712.5000000000938 6.241742232274937e-05
+712.6000000000938 6.241913611858958e-05
+712.7000000000938 6.242084983419664e-05
+712.8000000000939 6.242256346949661e-05
+712.9000000000939 6.242427702448289e-05
+713.0000000000939 6.242599049928689e-05
+713.1000000000939 6.243126559180454e-05
+713.200000000094 6.243654086843237e-05
+713.300000000094 6.244181632935334e-05
+713.400000000094 6.244709197448075e-05
+713.500000000094 6.24523678039302e-05
+713.600000000094 6.245772886324438e-05
+713.7000000000941 6.246314479825406e-05
+713.8000000000941 6.246858733936731e-05
+713.9000000000941 6.247403030274793e-05
+714.0000000000941 6.247944959075737e-05
+714.1000000000942 6.246736835516441e-05
+714.2000000000942 6.245522085389683e-05
+714.3000000000942 6.24429893245154e-05
+714.4000000000942 6.243065811271577e-05
+714.5000000000942 6.241821367009487e-05
+714.6000000000943 6.24056445548728e-05
+714.7000000000943 6.23929414241988e-05
+714.8000000000943 6.238009703539562e-05
+714.9000000000943 6.236710624409994e-05
+715.0000000000944 6.235396600222196e-05
+715.1000000000944 6.233842785070288e-05
+715.2000000000944 6.232274148901021e-05
+715.3000000000944 6.23069101608408e-05
+715.4000000000945 6.229093919682963e-05
+715.5000000000945 6.227483601194903e-05
+715.6000000000945 6.224560976636535e-05
+715.7000000000945 6.221627376524074e-05
+715.8000000000945 6.218684172173474e-05
+715.9000000000946 6.215732940915644e-05
+716.0000000000946 6.212775465584524e-05
+716.1000000000946 6.20092785901723e-05
+716.2000000000946 6.189078438967904e-05
+716.3000000000947 6.177229601854864e-05
+716.4000000000947 6.165383932750405e-05
+716.5000000000947 6.15354420337736e-05
+716.6000000000947 6.127418226729671e-05
+716.7000000000947 6.101293376243072e-05
+716.8000000000948 6.0751696522143844e-05
+716.9000000000948 6.0490470549195845e-05
+717.0000000000948 6.022925584655567e-05
+717.1000000000948 5.998338618450557e-05
+717.2000000000949 5.9737507943692784e-05
+717.3000000000949 5.9491621127389665e-05
+717.4000000000949 5.9245725738458905e-05
+717.5000000000949 5.8999821780294437e-05
+717.600000000095 5.8896862808513797e-05
+717.700000000095 5.8793900151638684e-05
+717.800000000095 5.86909338098908e-05
+717.900000000095 5.858796378342092e-05
+718.000000000095 5.848499007223227e-05
+718.1000000000951 5.830074270195286e-05
+718.2000000000951 5.8116509598099325e-05
+718.3000000000951 5.793229076047293e-05
+718.4000000000951 5.7748086189013625e-05
+718.5000000000952 5.7563895883860855e-05
+718.6000000000952 5.744468782164092e-05
+718.7000000000952 5.732548890897674e-05
+718.8000000000952 5.720629914672534e-05
+718.9000000000952 5.7087118535337596e-05
+719.0000000000953 5.6967947075641495e-05
+719.1000000000953 5.696483251144413e-05
+719.2000000000953 5.696171382566519e-05
+719.3000000000953 5.695859102016737e-05
+719.4000000000954 5.695546409680797e-05
+719.5000000000954 5.695233305726006e-05
+719.6000000000954 5.697513460939981e-05
+719.7000000000954 5.6997915867867206e-05
+719.8000000000955 5.702067761968803e-05
+719.9000000000955 5.7043420595282434e-05
+720.0000000000955 5.7066145468581095e-05
+720.1000000000955 5.719493143135269e-05
+720.2000000000955 5.732371565203108e-05
+720.3000000000956 5.745249863920245e-05
+720.4000000000956 5.758128084708977e-05
+720.5000000000956 5.771006267588813e-05
+720.6000000000956 5.803315668822508e-05
+720.7000000000957 5.835624903069492e-05
+720.8000000000957 5.867933841344849e-05
+720.9000000000957 5.900242357550092e-05
+721.0000000000957 5.932550328643139e-05
+721.1000000000957 5.963458255007718e-05
+721.2000000000958 5.994364353902942e-05
+721.3000000000958 6.0252685126152485e-05
+721.4000000000958 6.0561706222730244e-05
+721.5000000000958 6.087070577930631e-05
+721.6000000000959 6.0972467122490027e-05
+721.7000000000959 6.107421590764214e-05
+721.8000000000959 6.117595210289222e-05
+721.9000000000959 6.127767567671991e-05
+722.000000000096 6.137938659722935e-05
+722.100000000096 6.135290769087002e-05
+722.200000000096 6.132642291478186e-05
+722.300000000096 6.12999322773681e-05
+722.400000000096 6.127343578698097e-05
+722.5000000000961 6.124693345168074e-05
+722.6000000000961 6.103914652266349e-05
+722.7000000000961 6.083136088789087e-05
+722.8000000000961 6.062357759442187e-05
+722.9000000000962 6.041579773681262e-05
+723.0000000000962 6.0208022455827904e-05
+723.1000000000962 5.989649576356065e-05
+723.2000000000962 5.95849799334365e-05
+723.3000000000962 5.9273476217926055e-05
+723.4000000000963 5.8961985902569274e-05
+723.5000000000963 5.865051030438741e-05
+723.6000000000963 5.8610857272610236e-05
+723.7000000000963 5.857115708218225e-05
+723.8000000000964 5.853143597015489e-05
+723.9000000000964 5.849171808073925e-05
+724.0000000000964 5.845202547208407e-05
+724.1000000000964 5.8476088915134445e-05
+724.2000000000965 5.8500213031916406e-05
+724.3000000000965 5.852441391858222e-05
+724.4000000000965 5.854870567344682e-05
+724.5000000000965 5.857310039284883e-05
+724.6000000000965 5.86234962197731e-05
+724.7000000000966 5.867401541454266e-05
+724.8000000000966 5.872466520561649e-05
+724.9000000000966 5.877545087264292e-05
+725.0000000000966 5.882637573782628e-05
+725.1000000000967 5.887851870127667e-05
+725.2000000000967 5.893080348724789e-05
+725.3000000000967 5.898322750206982e-05
+725.4000000000967 5.9035786159705355e-05
+725.5000000000967 5.908847287329405e-05
+725.6000000000968 5.9193055170752434e-05
+725.7000000000968 5.929774830740233e-05
+725.8000000000968 5.9402539887350265e-05
+725.9000000000968 5.950741542557274e-05
+726.0000000000969 5.961235832999902e-05
+726.1000000000969 5.9611334691608076e-05
+726.2000000000969 5.9610333796806554e-05
+726.3000000000969 5.960933262803835e-05
+726.400000000097 5.9608306167995886e-05
+726.500000000097 5.960722739989042e-05
+726.600000000097 5.959312353626357e-05
+726.700000000097 5.957902010871309e-05
+726.800000000097 5.956491711737077e-05
+726.9000000000971 5.9550814562234325e-05
+727.0000000000971 5.953671244333453e-05
+727.1000000000971 5.941856313410131e-05
+727.2000000000971 5.9300420287625386e-05
+727.3000000000972 5.918228390435253e-05
+727.4000000000972 5.906415398459468e-05
+727.5000000000972 5.8946030529099344e-05
+727.6000000000972 5.893143824258206e-05
+727.7000000000972 5.891684661890711e-05
+727.8000000000973 5.890225565807222e-05
+727.9000000000973 5.888766536020932e-05
+728.0000000000973 5.8873075725802606e-05
+728.1000000000973 5.908264196365654e-05
+728.2000000000974 5.929222598712653e-05
+728.3000000000974 5.9501827796134806e-05
+728.4000000000974 5.971144739060272e-05
+728.5000000000974 5.992108476975543e-05
+728.6000000000975 5.989769372952147e-05
+728.7000000000975 5.987424804272265e-05
+728.8000000000975 5.985077489965209e-05
+728.9000000000975 5.9827299439382566e-05
+729.0000000000975 5.98038447538456e-05
+729.1000000000976 5.984269642385914e-05
+729.2000000000976 5.988161116038565e-05
+729.3000000000976 5.9920606187489435e-05
+729.4000000000976 5.995969676052767e-05
+729.5000000000977 5.99988961601397e-05
+729.6000000000977 6.0089995083544955e-05
+729.7000000000977 6.0181224501254994e-05
+729.8000000000977 6.0272592083009e-05
+729.9000000000977 6.0364103514929986e-05
+730.0000000000978 6.045576248451317e-05
+730.1000000000978 6.041795593118796e-05
+730.2000000000978 6.0380292715885914e-05
+730.3000000000978 6.0342769526665506e-05
+730.4000000000979 6.030538103518277e-05
+730.5000000000979 6.026811990282516e-05
+730.6000000000979 6.026981628812635e-05
+730.7000000000979 6.0271620080997636e-05
+730.800000000098 6.027351896200837e-05
+730.900000000098 6.027549852603524e-05
+731.000000000098 6.027754228228394e-05
+731.100000000098 6.031882956239435e-05
+731.200000000098 6.036014498879903e-05
+731.3000000000981 6.040146581502394e-05
+731.4000000000981 6.044276714246141e-05
+731.5000000000981 6.0484021913759055e-05
+731.6000000000981 6.057701434020852e-05
+731.7000000000982 6.067002087362705e-05
+731.8000000000982 6.0763040093845494e-05
+731.9000000000982 6.085607063385559e-05
+732.0000000000982 6.094911117999463e-05
+732.1000000000982 6.109446597400399e-05
+732.2000000000983 6.123983465384349e-05
+732.3000000000983 6.13852160676871e-05
+732.4000000000983 6.153060911561918e-05
+732.5000000000983 6.167601274968801e-05
+732.6000000000984 6.174367692765448e-05
+732.7000000000984 6.181134087219737e-05
+732.8000000000984 6.187900456258763e-05
+732.9000000000984 6.19466679781763e-05
+733.0000000000985 6.20143310981975e-05
+733.1000000000985 6.201725409207494e-05
+733.2000000000985 6.202017079368716e-05
+733.3000000000985 6.202308120224511e-05
+733.4000000000985 6.202598531737828e-05
+733.5000000000986 6.202888313863423e-05
+733.6000000000986 6.207075063875106e-05
+733.7000000000986 6.211267352298689e-05
+733.8000000000986 6.215462477603516e-05
+733.9000000000987 6.219657946121837e-05
+734.0000000000987 6.223851472780925e-05
+734.1000000000987 6.225295712777354e-05
+734.2000000000987 6.226733752115896e-05
+734.3000000000987 6.228163946218668e-05
+734.4000000000988 6.229584864463929e-05
+734.5000000000988 6.230995290465722e-05
+734.6000000000988 6.229800633378208e-05
+734.7000000000988 6.228592909704109e-05
+734.8000000000989 6.227371354791352e-05
+734.9000000000989 6.226135407311416e-05
+735.0000000000989 6.224884709023851e-05
+735.1000000000989 6.226367521037373e-05
+735.200000000099 6.227835556050633e-05
+735.300000000099 6.229289044535934e-05
+735.400000000099 6.230728420008663e-05
+735.500000000099 6.232154319237478e-05
+735.600000000099 6.230973505285519e-05
+735.7000000000991 6.229781367338426e-05
+735.8000000000991 6.22857927045767e-05
+735.9000000000991 6.227368787679073e-05
+736.0000000000991 6.226151699761732e-05
+736.1000000000992 6.224731926788362e-05
+736.2000000000992 6.22330981709227e-05
+736.3000000000992 6.221887773347113e-05
+736.4000000000992 6.22046840477938e-05
+736.5000000000992 6.219054526950877e-05
+736.6000000000993 6.220243091044697e-05
+736.7000000000993 6.221431602292012e-05
+736.8000000000993 6.222620060693656e-05
+736.9000000000993 6.223808466243744e-05
+737.0000000000994 6.22499681895273e-05
+737.1000000000994 6.229097965590539e-05
+737.2000000000994 6.233199367165521e-05
+737.3000000000994 6.237301023669986e-05
+737.4000000000995 6.241402935089514e-05
+737.5000000000995 6.245505101408405e-05
+737.6000000000995 6.248310385317796e-05
+737.7000000000995 6.251115836465736e-05
+737.8000000000995 6.253921454837793e-05
+737.9000000000996 6.25672724042625e-05
+738.0000000000996 6.259533193220413e-05
+738.1000000000996 6.259346742471314e-05
+738.2000000000996 6.259160287338337e-05
+738.3000000000997 6.258973827829032e-05
+738.4000000000997 6.258787363944207e-05
+738.5000000000997 6.258600895685972e-05
+738.6000000000997 6.259711503775132e-05
+738.7000000000997 6.260822030211749e-05
+738.8000000000998 6.261932474985501e-05
+738.9000000000998 6.263042838099492e-05
+739.0000000000998 6.264153119562668e-05
+739.1000000000998 6.264373842933687e-05
+739.2000000000999 6.2645945615229e-05
+739.3000000000999 6.264815275329471e-05
+739.4000000000999 6.265035984352568e-05
+739.5000000000999 6.265256688606092e-05
+739.6000000001 6.266774588377571e-05
+739.7000000001 6.268292574757721e-05
+739.8000000001 6.269810647747732e-05
+739.9000000001 6.271328807348798e-05
+740.0000000001 6.272847053568538e-05
+740.1000000001001 6.274078558390256e-05
+740.2000000001001 6.275310027799729e-05
+740.3000000001001 6.276541461790522e-05
+740.4000000001001 6.277772860362928e-05
+740.5000000001002 6.279004223510517e-05
+740.6000000001002 6.280235551240299e-05
+740.7000000001002 6.281466843539125e-05
+740.8000000001002 6.282698100420735e-05
+740.9000000001002 6.28392932187197e-05
+741.0000000001003 6.28516050789867e-05
+741.1000000001003 6.285222083301629e-05
+741.2000000001003 6.285283649679112e-05
+741.3000000001003 6.285345207044403e-05
+741.4000000001004 6.285406755390617e-05
+741.5000000001004 6.285468294725615e-05
+741.6000000001004 6.286827148029303e-05
+741.7000000001004 6.288186017717916e-05
+741.8000000001005 6.289544903797386e-05
+741.9000000001005 6.290903806266922e-05
+742.0000000001005 6.292262725104045e-05
+742.1000000001005 6.29210491740804e-05
+742.2000000001005 6.291947103499275e-05
+742.3000000001006 6.291789283391941e-05
+742.4000000001006 6.291631457086784e-05
+742.5000000001006 6.291473624584542e-05
+742.6000000001006 6.29131578589269e-05
+742.7000000001007 6.291157941018682e-05
+742.8000000001007 6.291000089963263e-05
+742.9000000001007 6.290842232727182e-05
+743.0000000001007 6.290684369325943e-05
+743.1000000001007 6.291844804914627e-05
+743.2000000001008 6.293005177980186e-05
+743.3000000001008 6.2941654885109e-05
+743.4000000001008 6.295325736515197e-05
+743.5000000001008 6.296485921986773e-05
+743.6000000001009 6.296349165601324e-05
+743.7000000001009 6.296212403026286e-05
+743.8000000001009 6.296075634262299e-05
+743.9000000001009 6.295938859316717e-05
+744.000000000101 6.295802078197124e-05
+744.100000000101 6.295899006127857e-05
+744.200000000101 6.295995923737451e-05
+744.300000000101 6.296092831038964e-05
+744.400000000101 6.296189728018582e-05
+744.5000000001011 6.296286614689359e-05
+744.6000000001011 6.296383491057638e-05
+744.7000000001011 6.296480357116319e-05
+744.8000000001011 6.296577212871741e-05
+744.9000000001012 6.296674058323531e-05
+745.0000000001012 6.296770893484668e-05
+745.1000000001012 6.296793833062384e-05
+745.2000000001012 6.296816763602332e-05
+745.3000000001012 6.296839685104519e-05
+745.4000000001013 6.296862597575667e-05
+745.5000000001013 6.296885501022503e-05
+745.6000000001013 6.296908395438315e-05
+745.7000000001013 6.296931280836542e-05
+745.8000000001014 6.296954157217194e-05
+745.9000000001014 6.296977024573555e-05
+746.0000000001014 6.296999882918852e-05
+746.1000000001014 6.296808760019023e-05
+746.2000000001015 6.296617633215377e-05
+746.3000000001015 6.29642650251543e-05
+746.4000000001015 6.296235367919976e-05
+746.5000000001015 6.296044229443244e-05
+746.6000000001015 6.295853087072591e-05
+746.7000000001016 6.295661940828956e-05
+746.8000000001016 6.295470790706419e-05
+746.9000000001016 6.295279636712486e-05
+747.0000000001016 6.295088478856422e-05
+747.1000000001017 6.296625408993063e-05
+747.2000000001017 6.298162434248023e-05
+747.3000000001017 6.299699554616138e-05
+747.4000000001017 6.30123677009895e-05
+747.5000000001017 6.302774080689973e-05
+747.6000000001018 6.303014569811892e-05
+747.7000000001018 6.303255055085399e-05
+747.8000000001018 6.303495536509595e-05
+747.9000000001018 6.30373601408357e-05
+748.0000000001019 6.303976487806e-05
+748.1000000001019 6.303798621872601e-05
+748.2000000001019 6.303620750984685e-05
+748.3000000001019 6.303442875156471e-05
+748.400000000102 6.303264994382015e-05
+748.500000000102 6.30308710866209e-05
+748.600000000102 6.302909218010907e-05
+748.700000000102 6.302731322429248e-05
+748.800000000102 6.3025534219246e-05
+748.9000000001021 6.302375516491023e-05
+749.0000000001021 6.302197606136217e-05
+749.1000000001021 6.302226672760302e-05
+749.2000000001021 6.302255730615273e-05
+749.3000000001022 6.302284779707829e-05
+749.4000000001022 6.30231382003795e-05
+749.5000000001022 6.302342851605621e-05
+749.6000000001022 6.302371874424252e-05
+749.7000000001022 6.302400888480398e-05
+749.8000000001023 6.302429893794189e-05
+749.9000000001023 6.302458890358887e-05
+750.0000000001023 6.302487878181111e-05
+750.1000000001023 6.302437107642329e-05
+750.2000000001024 6.302386328160646e-05
+750.3000000001024 6.302335539729659e-05
+750.4000000001024 6.302284742349682e-05
+750.5000000001024 6.302233936035783e-05
+750.6000000001025 6.303479866278152e-05
+750.7000000001025 6.304725766668448e-05
+750.8000000001025 6.30597163720624e-05
+750.9000000001025 6.307217477884386e-05
+751.0000000001025 6.308463288707811e-05
+751.1000000001026 6.308393184633567e-05
+751.2000000001026 6.308323072098361e-05
+751.3000000001026 6.308252951102567e-05
+751.4000000001026 6.308182821653298e-05
+751.5000000001027 6.308112683757652e-05
+751.6000000001027 6.3080425374093e-05
+751.7000000001027 6.307972382622057e-05
+751.8000000001027 6.307902219389594e-05
+751.9000000001028 6.307832047725728e-05
+752.0000000001028 6.307761867624124e-05
+752.1000000001028 6.307685204577885e-05
+752.2000000001028 6.307608533172472e-05
+752.3000000001028 6.3075318534083e-05
+752.4000000001029 6.307455165285777e-05
+752.5000000001029 6.307378468812029e-05
+752.6000000001029 6.307301763987473e-05
+752.7000000001029 6.307225050819228e-05
+752.800000000103 6.307148329314425e-05
+752.900000000103 6.307071599466763e-05
+753.000000000103 6.306994861284889e-05
+753.100000000103 6.308406706839086e-05
+753.200000000103 6.309818589958605e-05
+753.3000000001031 6.311230510634893e-05
+753.4000000001031 6.312642468866113e-05
+753.5000000001031 6.31405446464908e-05
+753.6000000001031 6.314161351061792e-05
+753.7000000001032 6.314262696837625e-05
+753.8000000001032 6.314361362327203e-05
+753.9000000001032 6.314459996166732e-05
+754.0000000001032 6.314561035262946e-05
+754.1000000001033 6.314483759892113e-05
+754.2000000001033 6.314413130656607e-05
+754.3000000001033 6.314350948484295e-05
+754.4000000001033 6.314298802326514e-05
+754.5000000001033 6.314258069237682e-05
+754.6000000001034 6.314229914648165e-05
+754.7000000001034 6.314215291720665e-05
+754.8000000001034 6.314214941775698e-05
+754.9000000001034 6.314229394301145e-05
+755.0000000001035 6.314258966957604e-05
+755.1000000001035 6.314275986416013e-05
+755.2000000001035 6.31430812392904e-05
+755.3000000001035 6.314355061537364e-05
+755.4000000001035 6.314416269456057e-05
+755.5000000001036 6.31449100607353e-05
+755.6000000001036 6.314578317682474e-05
+755.7000000001036 6.314677039100757e-05
+755.8000000001036 6.314785793271526e-05
+755.9000000001037 6.314902991249016e-05
+756.0000000001037 6.315026832163206e-05
+756.1000000001037 6.315237835346934e-05
+756.2000000001037 6.315451248853547e-05
+756.3000000001038 6.315664635943558e-05
+756.4000000001038 6.315875347744073e-05
+756.5000000001038 6.316080523237925e-05
+756.6000000001038 6.317574066073414e-05
+756.7000000001038 6.319067683984334e-05
+756.8000000001039 6.320561377039235e-05
+756.9000000001039 6.322055145312975e-05
+757.0000000001039 6.323548988858377e-05
+757.1000000001039 6.32363017722694e-05
+757.200000000104 6.323711355689046e-05
+757.300000000104 6.323792524309853e-05
+757.400000000104 6.323873683153759e-05
+757.500000000104 6.323954832291058e-05
+757.600000000104 6.324035972057781e-05
+757.7000000001041 6.324117102039023e-05
+757.8000000001041 6.324198222102667e-05
+757.9000000001041 6.324279332118026e-05
+758.0000000001041 6.324360431937081e-05
+758.1000000001042 6.319168745919563e-05
+758.2000000001042 6.313977051930166e-05
+758.3000000001042 6.308785349876728e-05
+758.4000000001042 6.303593639662385e-05
+758.5000000001043 6.298401921082949e-05
+758.6000000001043 6.240029325607001e-05
+758.7000000001043 6.181662017517958e-05
+758.8000000001043 6.123297070867663e-05
+758.9000000001043 6.0649318690064364e-05
+759.0000000001044 6.006564094422e-05
+759.1000000001044 5.773300516386424e-05
+759.2000000001044 5.5400106391878914e-05
+759.3000000001044 5.30669368738164e-05
+759.4000000001045 5.073349321946617e-05
+759.5000000001045 4.8399776009887556e-05
+759.6000000001045 4.498875828193905e-05
+759.7000000001045 4.157740554498973e-05
+759.8000000001045 3.816573526212442e-05
+759.9000000001046 3.475376766674524e-05
+760.0000000001046 3.134152519378183e-05
+760.1000000001046 2.9524297583678166e-05
+760.2000000001046 2.77070439058697e-05
+760.3000000001047 2.5889778526340826e-05
+760.4000000001047 2.4072516251879214e-05
+760.5000000001047 2.2255272029617686e-05
+760.6000000001047 2.244942532193837e-05
+760.7000000001048 2.2643529002790344e-05
+760.8000000001048 2.2837586997683857e-05
+760.9000000001048 2.3031604174066564e-05
+761.0000000001048 2.322558637706194e-05
+761.1000000001048 2.5068029181828308e-05
+761.2000000001049 2.691045667684872e-05
+761.3000000001049 2.875287783004893e-05
+761.4000000001049 3.059530547804485e-05
+761.5000000001049 3.2437756635085716e-05
+761.600000000105 3.4371078603839536e-05
+761.700000000105 3.6304404080773565e-05
+761.800000000105 3.823773305714742e-05
+761.900000000105 4.017106552421423e-05
+762.000000000105 4.2104401468632036e-05
+762.1000000001051 4.1830984676969774e-05
+762.2000000001051 4.1557580072733935e-05
+762.3000000001051 4.128418765664181e-05
+762.4000000001051 4.1010807429478755e-05
+762.5000000001052 4.0737439390418215e-05
+762.6000000001052 3.969865201745573e-05
+762.7000000001052 3.865991118926955e-05
+762.8000000001052 3.762121690862421e-05
+762.9000000001053 3.658256917828736e-05
+763.0000000001053 3.554396800333764e-05
+763.1000000001053 3.5556305420717434e-05
+763.2000000001053 3.5568642323318146e-05
+763.3000000001053 3.558097871119902e-05
+763.4000000001054 3.5593314584217816e-05
+763.5000000001054 3.56056499435723e-05
+763.6000000001054 3.618870267853116e-05
+763.7000000001054 3.677173450719578e-05
+763.8000000001055 3.7354745427198146e-05
+763.9000000001055 3.7937735435899895e-05
+764.0000000001055 3.852070453105643e-05
+764.1000000001055 3.922031949910703e-05
+764.2000000001055 3.991990723143719e-05
+764.3000000001056 4.0619467726038596e-05
+764.4000000001056 4.131900098076639e-05
+764.5000000001056 4.2018506993883856e-05
+764.6000000001056 4.2847669993909e-05
+764.7000000001057 4.367680071004961e-05
+764.8000000001057 4.4505899139824256e-05
+764.9000000001057 4.533496528081592e-05
+765.0000000001057 4.616399913038131e-05
+765.1000000001058 4.690289693040801e-05
+765.2000000001058 4.764178694521243e-05
+765.3000000001058 4.838066917169396e-05
+765.4000000001058 4.91195436066824e-05
+765.5000000001058 4.985841024684562e-05
+765.6000000001059 5.0441664981748445e-05
+765.7000000001059 5.102491354348224e-05
+765.8000000001059 5.1608155929532827e-05
+765.9000000001059 5.219139213751829e-05
+766.000000000106 5.277462216477413e-05
+766.100000000106 5.3279134021030225e-05
+766.200000000106 5.378362321795973e-05
+766.300000000106 5.428808975415985e-05
+766.400000000106 5.479253362822635e-05
+766.5000000001061 5.529695483871728e-05
+766.6000000001061 5.582728338091813e-05
+766.7000000001061 5.63575880970389e-05
+766.8000000001061 5.688786898549054e-05
+766.9000000001062 5.741812604474925e-05
+767.0000000001062 5.794835927290107e-05
+767.1000000001062 5.8298669518176884e-05
+767.2000000001062 5.864898311746165e-05
+767.3000000001063 5.8999300069120724e-05
+767.4000000001063 5.9349620371585385e-05
+767.5000000001063 5.9699944023122625e-05
+767.6000000001063 5.9894700372500446e-05
+767.7000000001063 6.0089458541285685e-05
+767.8000000001064 6.028421852880849e-05
+767.9000000001064 6.047898033406293e-05
+768.0000000001064 6.0673743956174246e-05
+768.1000000001064 6.0802082071954035e-05
+768.2000000001065 6.09304145599927e-05
+768.3000000001065 6.105874141998325e-05
+768.4000000001065 6.118706265161825e-05
+768.5000000001065 6.131537825448221e-05
+768.6000000001065 6.140471620373638e-05
+768.7000000001066 6.149399612182214e-05
+768.8000000001066 6.158324565782248e-05
+768.9000000001066 6.167249055396675e-05
+769.0000000001066 6.176175463078666e-05
+769.1000000001067 6.183951191098085e-05
+769.2000000001067 6.191733424869483e-05
+769.3000000001067 6.199523956334474e-05
+769.4000000001067 6.207324378139371e-05
+769.5000000001068 6.215136082360427e-05
+769.6000000001068 6.225552362532326e-05
+769.7000000001068 6.235981986581447e-05
+769.8000000001068 6.24642583945888e-05
+769.9000000001068 6.256884595433024e-05
+770.0000000001069 6.267358716294769e-05
+770.1000000001069 6.27395002001234e-05
+770.2000000001069 6.28055678328943e-05
+770.3000000001069 6.287178791869596e-05
+770.400000000107 6.293815613003297e-05
+770.500000000107 6.30046659430089e-05
+770.600000000107 6.303242093300803e-05
+770.700000000107 6.306029879690245e-05
+770.800000000107 6.30882844331093e-05
+770.9000000001071 6.311636066153606e-05
+771.0000000001071 6.31445082190178e-05
+771.1000000001071 6.315909776100851e-05
+771.2000000001071 6.317371259854503e-05
+771.3000000001072 6.318832719211828e-05
+771.4000000001072 6.320291392449955e-05
+771.5000000001072 6.321744309872187e-05
+771.6000000001072 6.321890973841152e-05
+771.7000000001073 6.322036820197482e-05
+771.8000000001073 6.322181935648844e-05
+771.9000000001073 6.322326400467381e-05
+772.0000000001073 6.322470288523088e-05
+772.1000000001073 6.322761401425613e-05
+772.2000000001074 6.323052074728002e-05
+772.3000000001074 6.323342363015813e-05
+772.4000000001074 6.323632314461506e-05
+772.5000000001074 6.323921970830006e-05
+772.6000000001075 6.324211628158579e-05
+772.7000000001075 6.324501582533847e-05
+772.8000000001075 6.324791875786329e-05
+772.9000000001075 6.325082556180611e-05
+773.0000000001075 6.32537367839765e-05
+773.1000000001076 6.326773379344414e-05
+773.2000000001076 6.328173680389256e-05
+773.3000000001076 6.329574655840435e-05
+773.4000000001076 6.330976386509267e-05
+773.5000000001077 6.332378959688698e-05
+773.6000000001077 6.332493448267683e-05
+773.7000000001077 6.332613749218263e-05
+773.8000000001077 6.332736890453085e-05
+773.9000000001078 6.33286010564837e-05
+774.0000000001078 6.332980834307447e-05
+774.1000000001078 6.333228565630011e-05
+774.2000000001078 6.333469315678312e-05
+774.3000000001078 6.333701140854447e-05
+774.4000000001079 6.333922303257063e-05
+774.5000000001079 6.334131270758882e-05
+774.6000000001079 6.334326717023207e-05
+774.7000000001079 6.334508243376788e-05
+774.800000000108 6.334675147549704e-05
+774.900000000108 6.334826946072427e-05
+775.000000000108 6.334963374296954e-05
+775.100000000108 6.335039312819361e-05
+775.200000000108 6.335100007552675e-05
+775.3000000001081 6.335145850747074e-05
+775.4000000001081 6.335177453517148e-05
+775.5000000001081 6.335195645843288e-05
+775.6000000001081 6.335201476548645e-05
+775.7000000001082 6.335195852535869e-05
+775.8000000001082 6.335180154180809e-05
+775.9000000001082 6.335155974234663e-05
+776.0000000001082 6.335125117812452e-05
+776.1000000001083 6.335054337501916e-05
+776.2000000001083 6.334981126262543e-05
+776.3000000001083 6.334907926174196e-05
+776.4000000001083 6.334837391559105e-05
+776.5000000001083 6.33477238898128e-05
+776.6000000001084 6.334715997234595e-05
+776.7000000001084 6.334659595089009e-05
+776.8000000001084 6.334603182544782e-05
+776.9000000001084 6.33454675960217e-05
+777.0000000001085 6.334490326268045e-05
+777.1000000001085 6.334340659836849e-05
+777.2000000001085 6.334190988442102e-05
+777.3000000001085 6.334041312104539e-05
+777.4000000001085 6.333891630818032e-05
+777.5000000001086 6.333741944589888e-05
+777.6000000001086 6.333592253420693e-05
+777.7000000001086 6.333442557317753e-05
+777.8000000001086 6.333292856281656e-05
+777.9000000001087 6.333143150312992e-05
+778.0000000001087 6.332993439412581e-05
+778.1000000001087 6.333062326130878e-05
+778.2000000001087 6.333131204125162e-05
+778.3000000001088 6.33320007338852e-05
+778.4000000001088 6.333268933927451e-05
+778.5000000001088 6.333337785755178e-05
+778.6000000001088 6.333406628858064e-05
+778.7000000001088 6.333475463249331e-05
+778.8000000001089 6.333544288928773e-05
+778.9000000001089 6.333613105896178e-05
+779.0000000001089 6.333681914159438e-05
+779.1000000001089 6.335016319110735e-05
+779.200000000109 6.336350730055882e-05
+779.300000000109 6.337685146980142e-05
+779.400000000109 6.3390195698889e-05
+779.500000000109 6.340353998772724e-05
+779.600000000109 6.340390503126327e-05
+779.7000000001091 6.340426998514765e-05
+779.8000000001091 6.340463484937971e-05
+779.9000000001091 6.340499962395865e-05
+780.0000000001091 6.340536430888153e-05
+780.1000000001092 6.340370366624088e-05
+780.2000000001092 6.340204296411114e-05
+780.3000000001092 6.340038220270038e-05
+780.4000000001092 6.339872138188095e-05
+780.5000000001093 6.339706050179363e-05
+780.6000000001093 6.339539956244507e-05
+780.7000000001093 6.33937385638419e-05
+780.8000000001093 6.339207750605774e-05
+780.9000000001093 6.339041638909923e-05
+781.0000000001094 6.338875521297524e-05
+781.1000000001094 6.338918383351671e-05
+781.2000000001094 6.338961236523641e-05
+781.3000000001094 6.339004080820035e-05
+781.4000000001095 6.339046916240761e-05
+781.5000000001095 6.33908974278572e-05
+781.6000000001095 6.339132560461516e-05
+781.7000000001095 6.339175369268062e-05
+781.8000000001095 6.339218169211961e-05
+781.9000000001096 6.339260960286404e-05
+782.0000000001096 6.339303742504561e-05
+782.1000000001096 6.339205153996879e-05
+782.2000000001096 6.33910655894434e-05
+782.3000000001097 6.339007957360792e-05
+782.4000000001097 6.338909349246655e-05
+782.5000000001097 6.33881073460907e-05
+782.6000000001097 6.33871211343504e-05
+782.7000000001098 6.338613485745123e-05
+782.8000000001098 6.33851485153303e-05
+782.9000000001098 6.338416210805891e-05
+783.0000000001098 6.338317563570872e-05
+783.1000000001098 6.338241256777073e-05
+783.2000000001099 6.338164940334383e-05
+783.3000000001099 6.338088614236429e-05
+783.4000000001099 6.338012278490259e-05
+783.5000000001099 6.337935933089496e-05
+783.60000000011 6.337859578054606e-05
+783.70000000011 6.337783213372504e-05
+783.80000000011 6.337706839050237e-05
+783.90000000011 6.337630455094853e-05
+784.00000000011 6.33755406150674e-05
+784.1000000001101 6.337532493731052e-05
+784.2000000001101 6.337510917864495e-05
+784.3000000001101 6.337489333893801e-05
+784.4000000001101 6.33746774183255e-05
+784.5000000001102 6.337446141674183e-05
+784.6000000001102 6.337424533438985e-05
+784.7000000001102 6.337402917106984e-05
+784.8000000001102 6.337381292698459e-05
+784.9000000001103 6.337359660206863e-05
+785.0000000001103 6.337338019639008e-05
+785.1000000001103 6.337277792929615e-05
+785.2000000001103 6.337217558792681e-05
+785.3000000001103 6.337157317248621e-05
+785.4000000001104 6.337097068291027e-05
+785.5000000001104 6.337036811926895e-05
+785.6000000001104 6.336976548156516e-05
+785.7000000001104 6.336916276986894e-05
+785.8000000001105 6.336855998411613e-05
+785.9000000001105 6.336795712444378e-05
+786.0000000001105 6.336735419077522e-05
+786.1000000001105 6.335538729310325e-05
+786.2000000001105 6.33434199050661e-05
+786.3000000001106 6.333145202673432e-05
+786.4000000001106 6.33194836581787e-05
+786.5000000001106 6.330751479955128e-05
+786.6000000001106 6.330851850783266e-05
+786.7000000001107 6.330952213748219e-05
+786.8000000001107 6.331052568849663e-05
+786.9000000001107 6.331152916080556e-05
+787.0000000001107 6.331253255452344e-05
+787.1000000001108 6.32985702146777e-05
+787.2000000001108 6.328460821611992e-05
+787.3000000001108 6.327064655905327e-05
+787.4000000001108 6.32566852434798e-05
+787.5000000001108 6.324272426948288e-05
+787.6000000001109 6.32417363009256e-05
+787.7000000001109 6.324074826878633e-05
+787.8000000001109 6.323976017300215e-05
+787.9000000001109 6.32387720136443e-05
+788.000000000111 6.323778379070347e-05
+788.100000000111 6.322468816255522e-05
+788.200000000111 6.321159247554276e-05
+788.300000000111 6.319849672975965e-05
+788.400000000111 6.31854009252997e-05
+788.5000000001111 6.317230506224219e-05
+788.6000000001111 6.314623744036362e-05
+788.7000000001111 6.312016981107795e-05
+788.8000000001111 6.309410217463922e-05
+788.9000000001112 6.306803453116748e-05
+789.0000000001112 6.304196688084868e-05
+789.1000000001112 6.301510283463994e-05
+789.2000000001112 6.298823948211863e-05
+789.3000000001113 6.296137682348715e-05
+789.4000000001113 6.293451485881397e-05
+789.5000000001113 6.290765358833043e-05
+789.6000000001113 6.290673393312537e-05
+789.7000000001113 6.290581421370592e-05
+789.8000000001114 6.290489443007599e-05
+789.9000000001114 6.290397458223942e-05
+790.0000000001114 6.290305467033468e-05
+790.1000000001114 6.2902517552431e-05
+790.2000000001115 6.290198036159697e-05
+790.3000000001115 6.290144309776815e-05
+790.4000000001115 6.290090576108127e-05
+790.5000000001115 6.290036835153899e-05
+790.6000000001115 6.289983086914383e-05
+790.7000000001116 6.289929331383147e-05
+790.8000000001116 6.289875568580566e-05
+790.9000000001116 6.289821798500187e-05
+791.0000000001116 6.289768021145254e-05
+791.1000000001117 6.292371824873776e-05
+791.2000000001117 6.294975628967036e-05
+791.3000000001117 6.297579433416695e-05
+791.4000000001117 6.300183238207698e-05
+791.5000000001118 6.302787043335515e-05
+791.6000000001118 6.302797105144445e-05
+791.7000000001118 6.302807158997954e-05
+791.8000000001118 6.302817204909488e-05
+791.9000000001118 6.302827242872371e-05
+792.0000000001119 6.302837272891894e-05
+792.1000000001119 6.301556652993994e-05
+792.2000000001119 6.300276018214234e-05
+792.3000000001119 6.298995368560324e-05
+792.400000000112 6.297714704039969e-05
+792.500000000112 6.296434024670474e-05
+792.600000000112 6.297747130736068e-05
+792.700000000112 6.299060235314465e-05
+792.800000000112 6.300373338384571e-05
+792.9000000001121 6.301686439952104e-05
+793.0000000001121 6.302999540025653e-05
+793.1000000001121 6.306874576707169e-05
+793.2000000001121 6.310749586195598e-05
+793.3000000001122 6.314624568475352e-05
+793.4000000001122 6.318499523530818e-05
+793.5000000001122 6.322374451359814e-05
+793.6000000001122 6.326249351940037e-05
+793.7000000001123 6.330124225269296e-05
+793.8000000001123 6.333999071331995e-05
+793.9000000001123 6.337873890105825e-05
+794.0000000001123 6.341748681584246e-05
+794.1000000001123 6.34174246054634e-05
+794.2000000001124 6.34173622898646e-05
+794.3000000001124 6.341729986904609e-05
+794.4000000001124 6.341723734307491e-05
+794.5000000001124 6.341717471193643e-05
+794.6000000001125 6.340414324110532e-05
+794.7000000001125 6.339111169093389e-05
+794.8000000001125 6.337808006144638e-05
+794.9000000001125 6.336504835280103e-05
+795.0000000001125 6.335201656493997e-05
+795.1000000001126 6.332559937039534e-05
+795.2000000001126 6.329918249640276e-05
+795.3000000001126 6.327276594304038e-05
+795.4000000001126 6.324634971038656e-05
+795.5000000001127 6.321993379854255e-05
+795.6000000001127 6.31546139281649e-05
+795.7000000001127 6.308929496898639e-05
+795.8000000001127 6.30239769212324e-05
+795.9000000001128 6.295865978519546e-05
+796.0000000001128 6.289334356121266e-05
+796.1000000001128 6.286763178323664e-05
+796.2000000001128 6.284191974085195e-05
+796.3000000001128 6.281620743427827e-05
+796.4000000001129 6.279049486360127e-05
+796.5000000001129 6.276478202912846e-05
+796.6000000001129 6.281687678797744e-05
+796.7000000001129 6.286897183537874e-05
+796.800000000113 6.292106717116067e-05
+796.900000000113 6.297316279528544e-05
+797.000000000113 6.302525870736403e-05
+797.100000000113 6.306304584154641e-05
+797.200000000113 6.310083153981699e-05
+797.3000000001131 6.313861580212669e-05
+797.4000000001131 6.317639862829249e-05
+797.5000000001131 6.321418001830307e-05
+797.6000000001131 6.322602640923914e-05
+797.7000000001132 6.323787228318647e-05
+797.8000000001132 6.324971764015397e-05
+797.9000000001132 6.326156248015062e-05
+798.0000000001132 6.327340680310462e-05
+798.1000000001133 6.32731176113813e-05
+798.2000000001133 6.327282834495324e-05
+798.3000000001133 6.327253900395624e-05
+798.4000000001133 6.327224958825787e-05
+798.5000000001133 6.327196009799389e-05
+798.6000000001134 6.327167053316592e-05
+798.7000000001134 6.327138089384274e-05
+798.8000000001134 6.327109117989195e-05
+798.9000000001134 6.327080139151631e-05
+799.0000000001135 6.327051152872038e-05
+799.1000000001135 6.327278924021321e-05
+799.2000000001135 6.327506691513494e-05
+799.3000000001135 6.32773445534776e-05
+799.4000000001136 6.327962215530042e-05
+799.5000000001136 6.328189972056603e-05
+799.6000000001136 6.325824111117147e-05
+799.7000000001136 6.323458059847849e-05
+799.8000000001136 6.321091818251198e-05
+799.9000000001137 6.318725386343113e-05
+800.0000000001137 6.316358764125764e-05
+800.1000000001137 6.313701000620709e-05
+800.2000000001137 6.311043283109061e-05
+800.3000000001138 6.308385611604517e-05
+800.4000000001138 6.30572798610739e-05
+800.5000000001138 6.303070406641031e-05
+800.6000000001138 6.303006703122798e-05
+800.7000000001138 6.302942993218418e-05
+800.8000000001139 6.302879276921478e-05
+800.9000000001139 6.30281555423896e-05
+801.0000000001139 6.302751825171307e-05
+801.1000000001139 6.302825152693022e-05
+801.200000000114 6.302898472728995e-05
+801.300000000114 6.30297178527903e-05
+801.400000000114 6.303045090349614e-05
+801.500000000114 6.303118387948729e-05
+801.600000000114 6.304488631084316e-05
+801.7000000001141 6.30585889689743e-05
+801.8000000001141 6.307229185400587e-05
+801.9000000001141 6.30859949657278e-05
+802.0000000001141 6.309969830418324e-05
+802.1000000001142 6.310030429423158e-05
+802.2000000001142 6.310091020988433e-05
+802.3000000001142 6.310151605107288e-05
+802.4000000001142 6.310212181792977e-05
+802.5000000001143 6.310272751038644e-05
+802.6000000001143 6.31033331285084e-05
+802.7000000001143 6.310393867236112e-05
+802.8000000001143 6.310454414187602e-05
+802.9000000001143 6.310514953711861e-05
+803.0000000001144 6.310575485816705e-05
+803.1000000001144 6.311741166933387e-05
+803.2000000001144 6.312906789055814e-05
+803.3000000001144 6.31407235217861e-05
+803.4000000001145 6.315237856303084e-05
+803.5000000001145 6.316403301422386e-05
+803.6000000001145 6.316271711831268e-05
+803.7000000001145 6.316140117283432e-05
+803.8000000001146 6.316008517779358e-05
+803.9000000001146 6.315876913319539e-05
+804.0000000001146 6.315745303918006e-05
+804.1000000001146 6.315748173536553e-05
+804.2000000001146 6.315751035701655e-05
+804.3000000001147 6.315753890413368e-05
+804.4000000001147 6.315756737671739e-05
+804.5000000001147 6.315759577486503e-05
+804.6000000001147 6.318356152107449e-05
+804.7000000001148 6.320952721611004e-05
+804.8000000001148 6.323549285975705e-05
+804.9000000001148 6.326145845206887e-05
+805.0000000001148 6.328742399296566e-05
+805.1000000001148 6.331403237600022e-05
+805.2000000001149 6.334064123523108e-05
+805.3000000001149 6.336725057071064e-05
+805.4000000001149 6.33938603822903e-05
+805.5000000001149 6.342047066992568e-05
+805.600000000115 6.342114231602476e-05
+805.700000000115 6.342181388863414e-05
+805.800000000115 6.342248538788607e-05
+805.900000000115 6.342315681377879e-05
+806.000000000115 6.342382816624174e-05
+806.1000000001151 6.342299072525302e-05
+806.2000000001151 6.34221532249977e-05
+806.3000000001151 6.342131566554625e-05
+806.4000000001151 6.342047804696893e-05
+806.5000000001152 6.341964036920224e-05
+806.6000000001152 6.341880263224938e-05
+806.7000000001152 6.341796483624786e-05
+806.8000000001152 6.341712698120095e-05
+806.9000000001153 6.341628906711202e-05
+807.0000000001153 6.341545109398615e-05
+807.1000000001153 6.341612168760622e-05
+807.2000000001153 6.341679220820074e-05
+807.3000000001153 6.341746265563409e-05
+807.4000000001154 6.341813303010541e-05
+807.5000000001154 6.341880333147896e-05
+807.6000000001154 6.341947355988694e-05
+807.7000000001154 6.342014371532767e-05
+807.8000000001155 6.342081379773229e-05
+807.9000000001155 6.342148380723307e-05
+808.0000000001155 6.342215374381369e-05
+808.1000000001155 6.341020375231559e-05
+808.2000000001156 6.339825328881059e-05
+808.3000000001156 6.338630235329182e-05
+808.4000000001156 6.337435094588643e-05
+808.5000000001156 6.336239906658743e-05
+808.6000000001156 6.335044671538805e-05
+808.7000000001157 6.333849389248231e-05
+808.8000000001157 6.332654059786337e-05
+808.9000000001157 6.33145868315914e-05
+809.0000000001157 6.33026325936577e-05
+809.1000000001158 6.328917328736636e-05
+809.2000000001158 6.327571411242721e-05
+809.3000000001158 6.32622550688465e-05
+809.4000000001158 6.324879615669747e-05
+809.5000000001158 6.323533737613533e-05
+809.6000000001159 6.323484997840424e-05
+809.7000000001159 6.323436251232337e-05
+809.8000000001159 6.3233874977962e-05
+809.9000000001159 6.323338737532237e-05
+810.000000000116 6.323289970447549e-05
+810.100000000116 6.323395088745791e-05
+810.200000000116 6.323500200413053e-05
+810.300000000116 6.323605305449027e-05
+810.400000000116 6.323710403860106e-05
+810.5000000001161 6.323815495636265e-05
+810.6000000001161 6.321326151843696e-05
+810.7000000001161 6.318836715206231e-05
+810.8000000001161 6.316347185744224e-05
+810.9000000001162 6.313857563464632e-05
+811.0000000001162 6.31136784836615e-05
+811.1000000001162 6.307539583396275e-05
+811.2000000001162 6.303711234051723e-05
+811.3000000001163 6.299882800338536e-05
+811.4000000001163 6.296054282269475e-05
+811.5000000001163 6.292225679872193e-05
+811.6000000001163 6.289694372342093e-05
+811.7000000001163 6.287163006666166e-05
+811.8000000001164 6.284631582850635e-05
+811.9000000001164 6.282100100901739e-05
+812.0000000001164 6.279568560827368e-05
+812.1000000001164 6.278461868781207e-05
+812.2000000001165 6.277355096132572e-05
+812.3000000001165 6.27624824289177e-05
+812.4000000001165 6.275141309049003e-05
+812.5000000001165 6.274034294603993e-05
+812.6000000001166 6.263843523459269e-05
+812.7000000001166 6.253652119917102e-05
+812.8000000001166 6.243460083995845e-05
+812.9000000001166 6.233267415700481e-05
+813.0000000001166 6.223074115024981e-05
+813.1000000001167 6.2034643883092e-05
+813.2000000001167 6.183855550829266e-05
+813.3000000001167 6.164247602621819e-05
+813.4000000001167 6.144640543730236e-05
+813.5000000001168 6.125034374218181e-05
+813.6000000001168 6.117107916996597e-05
+813.7000000001168 6.109181813109139e-05
+813.8000000001168 6.101256062569395e-05
+813.9000000001168 6.093330665397669e-05
+814.0000000001169 6.085405621619103e-05
+814.1000000001169 6.0816359291069114e-05
+814.2000000001169 6.077866075210015e-05
+814.3000000001169 6.074096059938122e-05
+814.400000000117 6.07032588329424e-05
+814.500000000117 6.066555545277448e-05
+814.600000000117 6.0537012498469734e-05
+814.700000000117 6.040846426073817e-05
+814.800000000117 6.0279910739999065e-05
+814.9000000001171 6.015135193633703e-05
+815.0000000001171 6.002278785015553e-05
+815.1000000001171 5.9880781734151156e-05
+815.2000000001171 5.973877197447068e-05
+815.3000000001172 5.959675857162837e-05
+815.4000000001172 5.9454741525937947e-05
+815.5000000001172 5.931272083806303e-05
+815.6000000001172 5.918367538447109e-05
+815.7000000001173 5.9054626614863324e-05
+815.8000000001173 5.8925574529615854e-05
+815.9000000001173 5.879651912917213e-05
+816.0000000001173 5.866746041410312e-05
+816.1000000001173 5.8590231725947614e-05
+816.2000000001174 5.851300126268948e-05
+816.3000000001174 5.843576902457665e-05
+816.4000000001174 5.835853501185742e-05
+816.5000000001174 5.828129922528573e-05
+816.6000000001175 5.84636694322453e-05
+816.7000000001175 5.864604360888616e-05
+816.8000000001175 5.882842175464817e-05
+816.9000000001175 5.901080386910436e-05
+817.0000000001176 5.919318995141309e-05
+817.1000000001176 5.9193243551519075e-05
+817.2000000001176 5.919329709263944e-05
+817.3000000001176 5.919335057477478e-05
+817.4000000001176 5.919340399785855e-05
+817.5000000001177 5.919345736141521e-05
+817.6000000001177 5.895985207187545e-05
+817.7000000001177 5.8726246302939944e-05
+817.8000000001177 5.849264005551212e-05
+817.9000000001178 5.825903333016094e-05
+818.0000000001178 5.8025426128681455e-05
+818.1000000001178 5.8207417858132576e-05
+818.2000000001178 5.8389411125291417e-05
+818.3000000001178 5.857140592953464e-05
+818.4000000001179 5.875340227030535e-05
+818.5000000001179 5.8935400146934295e-05
+818.6000000001179 5.907845529053736e-05
+818.7000000001179 5.9221511626077876e-05
+818.800000000118 5.93645691530852e-05
+818.900000000118 5.9507627871155104e-05
+819.000000000118 5.965068777939764e-05
+819.100000000118 5.966565907382542e-05
+819.200000000118 5.9680631226897356e-05
+819.3000000001181 5.969560423870843e-05
+819.4000000001181 5.9710578109219576e-05
+819.5000000001181 5.972555283844343e-05
+819.6000000001181 5.972754417769033e-05
+819.7000000001182 5.972953550985861e-05
+819.8000000001182 5.973152683501105e-05
+819.9000000001182 5.973351815314357e-05
+820.0000000001182 5.973550946501854e-05
+820.1000000001183 6.004554924146169e-05
+820.2000000001183 6.035557213182939e-05
+820.3000000001183 6.066557813573083e-05
+820.4000000001183 6.097556725270731e-05
+820.5000000001183 6.128553948214192e-05
+820.6000000001184 6.151759158423112e-05
+820.7000000001184 6.17496310124615e-05
+820.8000000001184 6.198165776640765e-05
+820.9000000001184 6.221367184577752e-05
+821.0000000001185 6.244567324970963e-05
+821.1000000001185 6.242260432103022e-05
+821.2000000001185 6.239953303102578e-05
+821.3000000001185 6.237645937962563e-05
+821.4000000001186 6.235338336675934e-05
+821.5000000001186 6.233030499215078e-05
+821.6000000001186 6.219034951303489e-05
+821.7000000001186 6.205038082930843e-05
+821.8000000001186 6.191039894070462e-05
+821.9000000001187 6.177040384682316e-05
+822.0000000001187 6.163039554647856e-05
+822.1000000001187 6.11117429450512e-05
+822.2000000001187 6.059307520050885e-05
+822.3000000001188 6.0074392314338196e-05
+822.4000000001188 5.955569428822894e-05
+822.5000000001188 5.9036981123199084e-05
+822.6000000001188 5.834938771923037e-05
+822.7000000001188 5.766177427980612e-05
+822.8000000001189 5.697414080704333e-05
+822.9000000001189 5.628648730292735e-05
+823.0000000001189 5.559881377188721e-05
+823.1000000001189 5.5896363730668816e-05
+823.200000000119 5.619390051446032e-05
+823.300000000119 5.6491424122729875e-05
+823.400000000119 5.678893455481065e-05
+823.500000000119 5.708643181095461e-05
+823.600000000119 5.776058713397699e-05
+823.7000000001191 5.8434712713993674e-05
+823.8000000001191 5.9108808549655035e-05
+823.9000000001191 5.9782874639542275e-05
+824.0000000001191 6.0456910981277086e-05
+824.1000000001192 6.071745327252566e-05
+824.2000000001192 6.097800228992773e-05
+824.3000000001192 6.123855803277144e-05
+824.4000000001192 6.149912050054517e-05
+824.5000000001193 6.175968969203642e-05
+824.6000000001193 6.182543754817752e-05
+824.7000000001193 6.189118704773436e-05
+824.8000000001193 6.195693819059477e-05
+824.9000000001193 6.202269097664656e-05
+825.0000000001194 6.208844540535422e-05
+825.1000000001194 6.202433397709579e-05
+825.2000000001194 6.196022073924017e-05
+825.3000000001194 6.189610569199985e-05
+825.4000000001195 6.183198883565477e-05
+825.5000000001195 6.176787017028334e-05
+825.6000000001195 6.170374969616534e-05
+825.7000000001195 6.16396274135805e-05
+825.8000000001196 6.157550332260733e-05
+825.9000000001196 6.15113774235257e-05
+826.0000000001196 6.144724971707991e-05
+826.1000000001196 6.160328369499107e-05
+826.2000000001196 6.175931832706838e-05
+826.3000000001197 6.191535361283544e-05
+826.4000000001197 6.20713895518154e-05
+826.5000000001197 6.222742614327327e-05
+826.6000000001197 6.227953425200499e-05
+826.7000000001198 6.233164253327791e-05
+826.8000000001198 6.23837509868662e-05
+826.9000000001198 6.243585961267808e-05
+827.0000000001198 6.248796840971636e-05
+827.1000000001198 6.217619595135869e-05
+827.2000000001199 6.18644232480951e-05
+827.3000000001199 6.155265030100636e-05
+827.4000000001199 6.124087711097295e-05
+827.5000000001199 6.0929103679432666e-05
+827.60000000012 6.0747242844377047e-05
+827.70000000012 6.056538184222273e-05
+827.80000000012 6.0383520673723315e-05
+827.90000000012 6.020165933943162e-05
+828.00000000012 6.00197978406594e-05
+828.1000000001201 6.013526487849265e-05
+828.2000000001201 6.025072617583111e-05
+828.3000000001201 6.036618173210817e-05
+828.4000000001201 6.0481631546890975e-05
+828.5000000001202 6.0597075619405495e-05
+828.6000000001202 6.059560923745974e-05
+828.7000000001202 6.059414277097218e-05
+828.8000000001202 6.059267622001432e-05
+828.9000000001203 6.059120958459062e-05
+829.0000000001203 6.0589742864902024e-05
+829.1000000001203 6.064006844964411e-05
+829.2000000001203 6.0690391119536305e-05
+829.3000000001203 6.074071087419702e-05
+829.4000000001204 6.079102771344564e-05
+829.5000000001204 6.084134163706137e-05
+829.6000000001204 6.096956902654722e-05
+829.7000000001204 6.109778931595753e-05
+829.8000000001205 6.122600250450051e-05
+829.9000000001205 6.135420859145103e-05
+830.0000000001205 6.148240757569096e-05
+830.1000000001205 6.150655824738329e-05
+830.2000000001206 6.153070719542446e-05
+830.3000000001206 6.155485441964897e-05
+830.4000000001206 6.15789999198243e-05
+830.5000000001206 6.160314369596165e-05
+830.6000000001206 6.171816230102248e-05
+830.7000000001207 6.18331738030691e-05
+830.8000000001207 6.19481782010161e-05
+830.9000000001207 6.20631754938447e-05
+831.0000000001207 6.217816568018089e-05
+831.1000000001208 6.216505271580176e-05
+831.2000000001208 6.215193953203691e-05
+831.3000000001208 6.21388261290743e-05
+831.4000000001208 6.212571250710213e-05
+831.5000000001208 6.211259866593495e-05
+831.6000000001209 6.195669732997091e-05
+831.7000000001209 6.180079639008427e-05
+831.8000000001209 6.164489584830318e-05
+831.9000000001209 6.148899570679061e-05
+832.000000000121 6.133309596821988e-05
+832.100000000121 6.143335820300542e-05
+832.200000000121 6.153360835448422e-05
+832.300000000121 6.163384642267857e-05
+832.400000000121 6.17340724078785e-05
+832.5000000001211 6.183428631028747e-05
+832.6000000001211 6.197341615513777e-05
+832.7000000001211 6.211252937652174e-05
+832.8000000001211 6.225162597468415e-05
+832.9000000001212 6.239070594986957e-05
+833.0000000001212 6.252976930178528e-05
+833.1000000001212 6.250140608557458e-05
+833.2000000001212 6.247304473048068e-05
+833.3000000001213 6.244468523655366e-05
+833.4000000001213 6.241632760417853e-05
+833.5000000001213 6.238797183351984e-05
+833.6000000001213 6.239861275574767e-05
+833.7000000001213 6.240930715819405e-05
+833.8000000001214 6.242002682213356e-05
+833.9000000001214 6.24307456022752e-05
+834.0000000001214 6.244143942889175e-05
+834.1000000001214 6.254241512663954e-05
+834.2000000001215 6.264331558740292e-05
+834.3000000001215 6.274412261498408e-05
+834.4000000001215 6.284482000504784e-05
+834.5000000001215 6.294539356211962e-05
+834.6000000001216 6.298101176021208e-05
+834.7000000001216 6.30164925312712e-05
+834.8000000001216 6.305182738752781e-05
+834.9000000001216 6.308701000193153e-05
+835.0000000001216 6.312203621444549e-05
+835.1000000001217 6.30920632254572e-05
+835.2000000001217 6.306194055099971e-05
+835.3000000001217 6.303167103270442e-05
+835.4000000001217 6.300125968392679e-05
+835.5000000001218 6.297071368422622e-05
+835.6000000001218 6.296594909703926e-05
+835.7000000001218 6.296106334486289e-05
+835.8000000001218 6.29560716730375e-05
+835.9000000001218 6.295099136945625e-05
+836.0000000001219 6.294584176385857e-05
+836.1000000001219 6.296805310497396e-05
+836.2000000001219 6.299023672551998e-05
+836.3000000001219 6.301241807644023e-05
+836.400000000122 6.303462469483488e-05
+836.500000000122 6.305688620799205e-05
+836.600000000122 6.307923953962962e-05
+836.700000000122 6.31015979711926e-05
+836.800000000122 6.312396064563879e-05
+836.9000000001221 6.314632676883653e-05
+837.0000000001221 6.316869560966238e-05
+837.1000000001221 6.317494678732426e-05
+837.2000000001221 6.318119998272129e-05
+837.3000000001222 6.31874546515147e-05
+837.4000000001222 6.319371031355159e-05
+837.5000000001222 6.31999665522834e-05
+837.6000000001222 6.319328422088156e-05
+837.7000000001223 6.318659928613049e-05
+837.8000000001223 6.317991133137446e-05
+837.9000000001223 6.317321987590385e-05
+838.0000000001223 6.316652437522069e-05
+838.1000000001223 6.318811482556643e-05
+838.2000000001224 6.320969602387247e-05
+838.3000000001224 6.323126722503013e-05
+838.4000000001224 6.325282761886379e-05
+838.5000000001224 6.327437632953678e-05
+838.6000000001225 6.32829869669059e-05
+838.7000000001225 6.329159295308445e-05
+838.8000000001225 6.330019534870659e-05
+838.9000000001225 6.330879527925762e-05
+839.0000000001226 6.331739393503831e-05
+839.1000000001226 6.331300147808349e-05
+839.2000000001226 6.330861209649961e-05
+839.3000000001226 6.330422717327314e-05
+839.4000000001226 6.329984815508828e-05
+839.5000000001227 6.329547655285756e-05
+839.6000000001227 6.330403049769903e-05
+839.7000000001227 6.331258607950709e-05
+839.8000000001227 6.332114288122665e-05
+839.9000000001228 6.332970042123894e-05
+840.0000000001228 6.333825815328195e-05
+840.1000000001228 6.331997163681642e-05
+840.2000000001228 6.33016881569292e-05
+840.3000000001228 6.328340697325183e-05
+840.4000000001229 6.326512728211852e-05
+840.5000000001229 6.324684821618904e-05
+840.6000000001229 6.322856884520464e-05
+840.7000000001229 6.321029177707414e-05
+840.800000000123 6.319201701106328e-05
+840.900000000123 6.317374454663387e-05
+841.000000000123 6.315547438294302e-05
+841.100000000123 6.316358428754847e-05
+841.200000000123 6.317169224563763e-05
+841.3000000001231 6.317979825659384e-05
+841.4000000001231 6.31879023198594e-05
+841.5000000001231 6.319600443473465e-05
+841.6000000001231 6.32041045979102e-05
+841.7000000001232 6.321220281335807e-05
+841.8000000001232 6.322029908234547e-05
+841.9000000001232 6.322839340622117e-05
+842.0000000001232 6.323648578634854e-05
+842.1000000001233 6.324299748939252e-05
+842.2000000001233 6.324950679380681e-05
+842.3000000001233 6.325601370098576e-05
+842.4000000001233 6.326251821267243e-05
+842.5000000001234 6.326902033014353e-05
+842.6000000001234 6.326263561078565e-05
+842.7000000001234 6.32562510990628e-05
+842.8000000001234 6.324986679434926e-05
+842.9000000001234 6.324348269607748e-05
+843.0000000001235 6.32370988035919e-05
+843.1000000001235 6.321924445333873e-05
+843.2000000001235 6.320139207309808e-05
+843.3000000001235 6.318354166241934e-05
+843.4000000001236 6.316569322058244e-05
+843.5000000001236 6.314784674702754e-05
+843.6000000001236 6.315557650484693e-05
+843.7000000001236 6.316319349995313e-05
+843.8000000001236 6.317075491685203e-05
+843.9000000001237 6.317831373096773e-05
+844.0000000001237 6.318591870530252e-05
+844.1000000001237 6.317863696217159e-05
+844.2000000001237 6.317148872110485e-05
+844.3000000001238 6.31645099728436e-05
+844.4000000001238 6.315773245581584e-05
+844.5000000001238 6.31511836589467e-05
+844.6000000001238 6.315774729298391e-05
+844.7000000001239 6.316457943830588e-05
+844.8000000001239 6.317169502605487e-05
+844.9000000001239 6.317910475626832e-05
+845.0000000001239 6.318681509639335e-05
+845.1000000001239 6.319744484192752e-05
+845.200000000124 6.32083762136599e-05
+845.300000000124 6.32196030021356e-05
+845.400000000124 6.323111475276039e-05
+845.500000000124 6.324289676198339e-05
+845.600000000124 6.324207598939533e-05
+845.7000000001241 6.32414835388087e-05
+845.8000000001241 6.324109181100236e-05
+845.9000000001241 6.324086896584531e-05
+846.0000000001241 6.324077892202589e-05
+846.1000000001242 6.322659015225966e-05
+846.2000000001242 6.321244985859858e-05
+846.3000000001242 6.319830923599994e-05
+846.4000000001242 6.318411528561634e-05
+846.5000000001243 6.316981081993789e-05
+846.6000000001243 6.318103871517056e-05
+846.7000000001243 6.319226554769664e-05
+846.8000000001243 6.320349131803056e-05
+846.9000000001244 6.321471602661653e-05
+847.0000000001244 6.322593967374515e-05
+847.1000000001244 6.322369126859239e-05
+847.2000000001244 6.322144239091907e-05
+847.3000000001244 6.321919304128794e-05
+847.4000000001245 6.32169432204529e-05
+847.5000000001245 6.321469292887813e-05
+847.6000000001245 6.319959411272827e-05
+847.7000000001245 6.318449574026336e-05
+847.8000000001246 6.316939781039509e-05
+847.9000000001246 6.315430032205067e-05
+848.0000000001246 6.313920327419186e-05
+848.1000000001246 6.313803915160095e-05
+848.2000000001246 6.313687448178951e-05
+848.3000000001247 6.313570926340403e-05
+848.4000000001247 6.313454349517273e-05
+848.5000000001247 6.31333771757724e-05
+848.6000000001247 6.313238225906383e-05
+848.7000000001248 6.313149732211176e-05
+848.8000000001248 6.313066518149363e-05
+848.9000000001248 6.312983289515898e-05
+849.0000000001248 6.312895176158332e-05
+849.1000000001249 6.312625088565922e-05
+849.2000000001249 6.312341659893536e-05
+849.3000000001249 6.312041293346061e-05
+849.4000000001249 6.311720816444019e-05
+849.5000000001249 6.31137748095502e-05
+849.600000000125 6.311008963094252e-05
+849.700000000125 6.310613362837016e-05
+849.800000000125 6.310189204192627e-05
+849.900000000125 6.309735435116136e-05
+850.000000000125 6.309251427349927e-05
+850.1000000001251 6.308751571246447e-05
+850.2000000001251 6.308221475537825e-05
+850.3000000001251 6.307661782310204e-05
+850.4000000001251 6.307073556803529e-05
+850.5000000001252 6.306458287200078e-05
+850.6000000001252 6.305817884402416e-05
+850.7000000001252 6.305154681423242e-05
+850.8000000001252 6.304471433729117e-05
+850.9000000001253 6.30377131873669e-05
+851.0000000001253 6.303057935543221e-05
+851.1000000001253 6.301065203530591e-05
+851.2000000001253 6.299067953217271e-05
+851.3000000001254 6.297071047138195e-05
+851.4000000001254 6.295079764222828e-05
+851.5000000001254 6.293099799200748e-05
+851.6000000001254 6.293700365107576e-05
+851.7000000001254 6.294300657860498e-05
+851.8000000001255 6.29490067759507e-05
+851.9000000001255 6.295500424448353e-05
+852.0000000001255 6.29609989855071e-05
+852.1000000001255 6.29534227426951e-05
+852.2000000001256 6.294584673002053e-05
+852.3000000001256 6.293827094891627e-05
+852.4000000001256 6.293069540076423e-05
+852.5000000001256 6.292312008704207e-05
+852.6000000001256 6.292834573301245e-05
+852.7000000001257 6.293356853179067e-05
+852.8000000001257 6.293878848306546e-05
+852.9000000001257 6.294400558625273e-05
+853.0000000001257 6.294921984087911e-05
+853.1000000001258 6.294355287135927e-05
+853.2000000001258 6.293788571397678e-05
+853.3000000001258 6.293221836815277e-05
+853.4000000001258 6.292655083317208e-05
+853.5000000001259 6.292088310843069e-05
+853.6000000001259 6.290225617140667e-05
+853.7000000001259 6.288352130532051e-05
+853.8000000001259 6.286473555603282e-05
+853.9000000001259 6.28459516871102e-05
+854.000000000126 6.282721818539312e-05
+854.100000000126 6.281876479746319e-05
+854.200000000126 6.281044407172722e-05
+854.300000000126 6.280229178487892e-05
+854.400000000126 6.279433948306064e-05
+854.5000000001261 6.278661448486659e-05
+854.6000000001261 6.279191285594585e-05
+854.7000000001261 6.279747757164814e-05
+854.8000000001261 6.28033234600516e-05
+854.9000000001262 6.28094611419783e-05
+855.0000000001262 6.281589702951116e-05
+855.1000000001262 6.280923261726838e-05
+855.2000000001262 6.280286904733637e-05
+855.3000000001263 6.279679990444e-05
+855.4000000001263 6.279101456487264e-05
+855.5000000001263 6.278549819796699e-05
+855.6000000001263 6.278023176496619e-05
+855.7000000001264 6.277519202354365e-05
+855.8000000001264 6.277035153151888e-05
+855.9000000001264 6.276567864556876e-05
+856.0000000001264 6.276113752253891e-05
+856.1000000001264 6.275929299199258e-05
+856.2000000001265 6.275749566995614e-05
+856.3000000001265 6.275569712074254e-05
+856.4000000001265 6.275384470601003e-05
+856.5000000001265 6.27518815852125e-05
+856.6000000001266 6.274974671706206e-05
+856.7000000001266 6.274761107458053e-05
+856.8000000001266 6.274547465829967e-05
+856.9000000001266 6.27433374688124e-05
+857.0000000001266 6.274119950676762e-05
+857.1000000001267 6.273519863106011e-05
+857.2000000001267 6.272919733674246e-05
+857.3000000001267 6.272319562447569e-05
+857.4000000001267 6.271719349484722e-05
+857.5000000001268 6.271119094858372e-05
+857.6000000001268 6.271793294593785e-05
+857.7000000001268 6.272467208554715e-05
+857.8000000001268 6.273140836576009e-05
+857.9000000001269 6.273814178500468e-05
+858.0000000001269 6.274487234171164e-05
+858.1000000001269 6.274196793964948e-05
+858.2000000001269 6.273906266787973e-05
+858.3000000001269 6.27361565250877e-05
+858.400000000127 6.27332495098429e-05
+858.500000000127 6.27303416208612e-05
+858.600000000127 6.27276037094715e-05
+858.700000000127 6.272497473392684e-05
+858.800000000127 6.272239787138044e-05
+858.9000000001271 6.271982051921478e-05
+859.0000000001271 6.27171942933545e-05
+859.1000000001271 6.271352983238514e-05
+859.2000000001271 6.270973249228082e-05
+859.3000000001272 6.270576654746623e-05
+859.4000000001272 6.270160048982722e-05
+859.5000000001272 6.269720702783312e-05
+859.6000000001272 6.269256308800322e-05
+859.7000000001273 6.268764980781437e-05
+859.8000000001273 6.268245253815874e-05
+859.9000000001273 6.267696084180905e-05
+860.0000000001273 6.267116849217062e-05
+860.1000000001274 6.266374980377677e-05
+860.2000000001274 6.26560307606321e-05
+860.3000000001274 6.264801777523747e-05
+860.4000000001274 6.263972146185728e-05
+860.5000000001274 6.26311566332676e-05
+860.6000000001275 6.262234229798963e-05
+860.7000000001275 6.261330165321016e-05
+860.8000000001275 6.260406208776558e-05
+860.9000000001275 6.259465517598755e-05
+861.0000000001276 6.258511667415517e-05
+861.1000000001276 6.257643679886159e-05
+861.2000000001276 6.256770909236657e-05
+861.3000000001276 6.255898183643417e-05
+861.4000000001276 6.255030748484816e-05
+861.5000000001277 6.25417426609824e-05
+861.6000000001277 6.253334815269282e-05
+861.7000000001277 6.252495359150377e-05
+861.8000000001277 6.251655897884304e-05
+861.9000000001278 6.250816431589001e-05
+862.0000000001278 6.249976960405218e-05
+862.1000000001278 6.25045076114406e-05
+862.2000000001278 6.250924222153206e-05
+862.3000000001279 6.251397343556274e-05
+862.4000000001279 6.251870125485015e-05
+862.5000000001279 6.252342568071028e-05
+862.6000000001279 6.25154660952961e-05
+862.700000000128 6.250750634629649e-05
+862.800000000128 6.249954643304668e-05
+862.900000000128 6.249158635500494e-05
+863.000000000128 6.248362611161761e-05
+863.100000000128 6.247218700299665e-05
+863.2000000001281 6.246074860517157e-05
+863.3000000001281 6.244931091761727e-05
+863.4000000001281 6.243787393954317e-05
+863.5000000001281 6.242643767048087e-05
+863.6000000001281 6.241483206098075e-05
+863.7000000001282 6.240311792018085e-05
+863.8000000001282 6.239135182814594e-05
+863.9000000001282 6.237958613916858e-05
+864.0000000001282 6.23678689854266e-05
+864.1000000001283 6.235972281914275e-05
+864.2000000001283 6.23517077111174e-05
+864.3000000001283 6.234385917838681e-05
+864.4000000001283 6.23362085389793e-05
+864.5000000001284 6.232878291460017e-05
+864.6000000001284 6.232160523667642e-05
+864.7000000001284 6.231469424645187e-05
+864.8000000001284 6.230806449513623e-05
+864.9000000001284 6.230172634900862e-05
+865.0000000001285 6.229568599213124e-05
+865.1000000001285 6.228754983986672e-05
+865.2000000001285 6.227971184500383e-05
+865.3000000001285 6.227216562415956e-05
+865.4000000001286 6.226490062080478e-05
+865.5000000001286 6.225790210827775e-05
+865.6000000001286 6.225115118872182e-05
+865.7000000001286 6.224462479768971e-05
+865.8000000001286 6.223829570925353e-05
+865.9000000001287 6.223213253426417e-05
+866.0000000001287 6.222609972287626e-05
+866.1000000001287 6.221896544342324e-05
+866.2000000001287 6.221187799045721e-05
+866.3000000001288 6.220478934158397e-05
+866.4000000001288 6.219764732512155e-05
+866.5000000001288 6.21903956226528e-05
+866.6000000001288 6.218297377218823e-05
+866.7000000001289 6.217555123146105e-05
+866.8000000001289 6.216812800107123e-05
+866.9000000001289 6.2160704081679e-05
+867.0000000001289 6.215327947400827e-05
+867.100000000129 6.214874708400381e-05
+867.200000000129 6.214421342687969e-05
+867.300000000129 6.213967850320552e-05
+867.400000000129 6.213514231341325e-05
+867.500000000129 6.213060485805634e-05
+867.6000000001291 6.21260661402997e-05
+867.7000000001291 6.212152615599561e-05
+867.8000000001291 6.211698490364425e-05
+867.9000000001291 6.211244238176062e-05
+868.0000000001291 6.210789858880636e-05
+868.1000000001292 6.210014294271796e-05
+868.2000000001292 6.209238645248843e-05
+868.3000000001292 6.208462911688548e-05
+868.4000000001292 6.207687093469256e-05
+868.5000000001293 6.206911190457883e-05
+868.6000000001293 6.206169010775111e-05
+868.7000000001293 6.205448468377489e-05
+868.8000000001293 6.204738315981603e-05
+868.9000000001294 6.204028144592127e-05
+869.0000000001294 6.203308382888389e-05
+869.1000000001294 6.202665238520577e-05
+869.2000000001294 6.201995851267581e-05
+869.3000000001294 6.201293158651372e-05
+869.4000000001295 6.200550933865346e-05
+869.5000000001295 6.199763785535318e-05
+869.6000000001295 6.200184545974596e-05
+869.7000000001295 6.20055174396127e-05
+869.8000000001296 6.200862458433447e-05
+869.9000000001296 6.201114600640315e-05
+870.0000000001296 6.201306914523379e-05
+870.1000000001296 6.200182440623648e-05
+870.2000000001296 6.198998580538964e-05
+870.3000000001297 6.197756612897763e-05
+870.4000000001297 6.196458647932423e-05
+870.5000000001297 6.195107626605978e-05
+870.6000000001297 6.193707319922588e-05
+870.7000000001298 6.192262326911128e-05
+870.8000000001298 6.1907780745568e-05
+870.9000000001298 6.189260816466718e-05
+871.0000000001298 6.187717631768551e-05
+871.1000000001299 6.185987638747417e-05
+871.2000000001299 6.184248463993073e-05
+871.3000000001299 6.182509656695978e-05
+871.4000000001299 6.180781586323292e-05
+871.50000000013 6.179075441652495e-05
+871.60000000013 6.177403484778924e-05
+871.70000000013 6.17573194394855e-05
+871.80000000013 6.174060734266116e-05
+871.90000000013 6.172389777175599e-05
+872.0000000001301 6.170719000458967e-05
+872.1000000001301 6.168960224726077e-05
+872.2000000001301 6.167201504091848e-05
+872.3000000001301 6.165442785353213e-05
+872.4000000001301 6.163684021617369e-05
+872.5000000001302 6.16192517230016e-05
+872.6000000001302 6.160165948934877e-05
+872.7000000001302 6.15840641495035e-05
+872.8000000001302 6.1566466333792e-05
+872.9000000001303 6.15488666721849e-05
+873.0000000001303 6.153126579385046e-05
+873.1000000001303 6.15152218347361e-05
+873.2000000001303 6.149917706053895e-05
+873.3000000001304 6.148313209901161e-05
+873.4000000001304 6.146708757743262e-05
+873.5000000001304 6.145104412247913e-05
+873.6000000001304 6.143475109272318e-05
+873.7000000001304 6.141829900000951e-05
+873.8000000001305 6.140177209111404e-05
+873.9000000001305 6.13852483504166e-05
+874.0000000001305 6.13687995066345e-05
+874.1000000001305 6.13503783955469e-05
+874.2000000001306 6.133215808298991e-05
+874.3000000001306 6.131419155122622e-05
+874.4000000001306 6.129652555226022e-05
+874.5000000001306 6.127920061758494e-05
+874.6000000001306 6.126225106713365e-05
+874.7000000001307 6.124570152473563e-05
+874.8000000001307 6.122957288992679e-05
+874.9000000001307 6.121387981626997e-05
+875.0000000001307 6.119863071915206e-05
+875.1000000001308 6.118556335096899e-05
+875.2000000001308 6.117293734601574e-05
+875.3000000001308 6.116074248731522e-05
+875.4000000001308 6.114896234626415e-05
+875.5000000001309 6.1137574287954e-05
+875.6000000001309 6.112654947598878e-05
+875.7000000001309 6.111585636349571e-05
+875.8000000001309 6.110545474752264e-05
+875.900000000131 6.109529829744322e-05
+876.000000000131 6.108533455916239e-05
+876.100000000131 6.107592925336002e-05
+876.200000000131 6.106659297801875e-05
+876.300000000131 6.105725493248579e-05
+876.4000000001311 6.104783820711881e-05
+876.5000000001311 6.103825978895053e-05
+876.6000000001311 6.102843056742868e-05
+876.7000000001311 6.101860034555767e-05
+876.8000000001311 6.100876912337271e-05
+876.9000000001312 6.099893690084525e-05
+877.0000000001312 6.098910367794303e-05
+877.1000000001312 6.097648139798165e-05
+877.2000000001312 6.0963858871429406e-05
+877.3000000001313 6.095123609837975e-05
+877.4000000001313 6.093861307886265e-05
+877.5000000001313 6.0925989812971546e-05
+877.6000000001313 6.0913366300736296e-05
+877.7000000001314 6.090074254218666e-05
+877.8000000001314 6.088811853735254e-05
+877.9000000001314 6.087549428632728e-05
+878.0000000001314 6.0862869789079026e-05
+878.1000000001314 6.085166317650432e-05
+878.2000000001315 6.0840455757721744e-05
+878.3000000001315 6.082924753279019e-05
+878.4000000001315 6.081803850164167e-05
+878.5000000001315 6.080682866439827e-05
+878.6000000001316 6.0795449661730366e-05
+878.7000000001316 6.0783961704666075e-05
+878.8000000001316 6.077242081457311e-05
+878.9000000001316 6.076087882647173e-05
+879.0000000001316 6.074938345975505e-05
+879.1000000001317 0.00011175659877280086
+879.2000000001317 0.00016274383007621574
+879.3000000001317 0.00021371152680876003
+879.4000000001317 0.0002646602382555076
+879.5000000001318 0.00031559059606994533
+879.6000000001318 0.00036650331197312627
+879.7000000001318 0.00041739913016505933
+879.8000000001318 0.00046827882238423046
+879.9000000001319 0.0005191431707814237
+880.0000000001319 0.0005699929507438962
+880.1000000001319 0.000569296477862933
+880.2000000001319 0.0005686029317404863
+880.300000000132 0.000567912239234182
+880.400000000132 0.0005672242894334864
+880.500000000132 0.0005665389338917156
+880.600000000132 0.0005658559868580979
+880.700000000132 0.0005651752255030419
+880.8000000001321 0.0005644963901457749
+880.9000000001321 0.0005638191844823058
+881.0000000001321 0.0005631432758110052
+881.1000000001321 0.000563676360384927
+881.2000000001321 0.0005642096654573599
+881.3000000001322 0.0005647427500621644
+881.4000000001322 0.0005652751336400101
+881.5000000001322 0.0005658062958636786
+881.6000000001322 0.0005662208940696664
+881.7000000001323 0.0005666350490373085
+881.8000000001323 0.0005670487722551396
+881.9000000001323 0.0005674620752445365
+882.0000000001323 0.0005678749695633138
+882.1000000001324 0.000569726730309609
+882.2000000001324 0.0005715786982682873
+882.3000000001324 0.0005734308846822034
+882.4000000001324 0.000575283300944944
+882.5000000001324 0.0005771359585982944
+882.6000000001325 0.0005788716179721925
+882.7000000001325 0.0005806068370428349
+882.8000000001325 0.0005823416022572467
+882.9000000001325 0.0005840759004937134
+883.0000000001326 0.0005858097190620189
+883.1000000001326 0.0005833089067754966
+883.2000000001326 0.0005808087783913263
+883.3000000001326 0.0005783093232782266
+883.4000000001326 0.0005758105315771834
+883.5000000001327 0.0005733123941939661
+883.6000000001327 0.0005708141012462195
+883.7000000001327 0.0005683159407022176
+883.8000000001327 0.0005658181766467039
+883.9000000001328 0.0005633210497033756
+884.0000000001328 0.0005608247774634452
+884.1000000001328 0.0005625455783091623
+884.2000000001328 0.0005642663251201321
+884.3000000001329 0.0005659871840165885
+884.4000000001329 0.0005677083040117213
+884.5000000001329 0.000569429816725269
+884.6000000001329 0.0005711518360932174
+884.700000000133 0.0005728744907774595
+884.800000000133 0.0005745978684298065
+884.900000000133 0.0005763220388610298
+885.000000000133 0.0005780470537654004
+885.100000000133 0.0005796637371666811
+885.2000000001331 0.0005812806590732422
+885.3000000001331 0.0005828978146281518
+885.4000000001331 0.0005845151797602486
+885.5000000001331 0.0005861327109296458
+885.6000000001332 0.0005877503206216589
+885.7000000001332 0.0005893678668052025
+885.8000000001332 0.0005909852335624045
+885.9000000001332 0.0005926022825354154
+886.0000000001332 0.0005942188526366222
+886.1000000001333 0.000594127947930288
+886.2000000001333 0.0005940372656327228
+886.3000000001333 0.0005939465746649008
+886.4000000001333 0.0005938556229978959
+886.5000000001334 0.0005937641376676314
+886.6000000001334 0.00059379239178422
+886.7000000001334 0.0005938206325458052
+886.8000000001334 0.0005938488539037115
+886.9000000001334 0.0005938770498069045
+887.0000000001335 0.0005939052142047726
+887.1000000001335 0.0005932212772708463
+887.2000000001335 0.0005925374979929717
+887.3000000001335 0.0005918538703814106
+887.4000000001336 0.0005911703884737044
+887.5000000001336 0.0005904870463344974
+887.6000000001336 0.0005896842024190505
+887.7000000001336 0.000588881763617776
+887.8000000001337 0.0005880797240000484
+887.9000000001337 0.000587278077668676
+888.0000000001337 0.0005864768187631826
+888.1000000001337 0.0005881865429612769
+888.2000000001337 0.0005898956729035892
+888.3000000001338 0.0005916042019385525
+888.4000000001338 0.0005933121233474195
+888.5000000001338 0.0005950194303434202
+888.6000000001338 0.0005969741278254524
+888.7000000001339 0.0005989333210701783
+888.8000000001339 0.0006008951452202235
+888.9000000001339 0.000602857852989839
+889.0000000001339 0.0006048198169089459
+889.100000000134 0.0006039818480222522
+889.200000000134 0.000603139919503997
+889.300000000134 0.000602292856628744
+889.400000000134 0.0006014396332791855
+889.500000000134 0.0006005793709815394
+889.6000000001341 0.0005998330079283153
+889.7000000001341 0.0005990779476557895
+889.8000000001341 0.0005983137333774406
+889.9000000001341 0.0005975400512332158
+890.0000000001342 0.0005967567294214587
+890.1000000001342 0.000596482675779548
+890.2000000001342 0.0005961986876368844
+890.3000000001342 0.0005959049885004526
+890.4000000001342 0.0005956019414973034
+890.5000000001343 0.0005952900490074067
+890.6000000001343 0.0005952116380485461
+890.7000000001343 0.000595125650352081
+890.8000000001343 0.0005950329874565627
+890.9000000001344 0.0005949346908300142
+891.0000000001344 0.0005948319417239251
+891.1000000001344 0.0005956746847791798
+891.2000000001344 0.0005965145453451422
+891.3000000001344 0.0005973531237799742
+891.4000000001345 0.0005981921707736334
+891.5000000001345 0.0005990335883590883
+891.6000000001345 0.0005998794062028899
+891.7000000001345 0.0006007239318536224
+891.8000000001346 0.0006015671718187235
+891.9000000001346 0.0006024091326403961
+892.0000000001346 0.0006032498208980713
+892.1000000001346 0.0006050706213945407
+892.2000000001347 0.0006068874704924617
+892.3000000001347 0.0006087003778881214
+892.4000000001347 0.0006105093533522928
+892.5000000001347 0.0006123144067259664
+892.6000000001347 0.0006136150462634655
+892.7000000001348 0.0006149084448640657
+892.8000000001348 0.0006161946180260673
+892.9000000001348 0.0006174735812947648
+893.0000000001348 0.0006187453502626954
+893.1000000001349 0.0006192826677752439
+893.2000000001349 0.0006198179898815468
+893.3000000001349 0.0006203513248500584
+893.4000000001349 0.0006208826809701988
+893.500000000135 0.0006214120665547994
+893.600000000135 0.0006224435318490952
+893.700000000135 0.00062346956406161
+893.800000000135 0.0006244926801726436
+893.900000000135 0.0006255152248384506
+894.0000000001351 0.0006265393687361382
+894.1000000001351 0.000626031105144582
+894.2000000001351 0.0006255276334502625
+894.3000000001351 0.0006250305398441291
+894.4000000001352 0.0006245412164646463
+894.5000000001352 0.0006240608621984149
+894.6000000001352 0.0006228164778965113
+894.7000000001352 0.0006215821379352735
+894.8000000001352 0.0006203584309282391
+894.9000000001353 0.0006191457535221475
+895.0000000001353 0.00061794431227721
+895.1000000001353 0.0006168583543532679
+895.2000000001353 0.0006157785085009619
+895.3000000001354 0.0006147044307435889
+895.4000000001354 0.0006136355933261776
+895.5000000001354 0.0006125712863487695
+895.6000000001354 0.0006121633594983975
+895.7000000001354 0.0006117601952879193
+895.8000000001355 0.0006113605826719084
+895.9000000001355 0.0006109631286283416
+896.0000000001355 0.0006105662588116863
+896.1000000001355 0.0006122276908162595
+896.2000000001356 0.0006138642528277961
+896.3000000001356 0.0006154738380269481
+896.4000000001356 0.0006170541307192786
+896.5000000001356 0.0006186026050180847
+896.6000000001357 0.0006214797424439943
+896.7000000001357 0.0006243461031046949
+896.8000000001357 0.0006272016845510507
+896.9000000001357 0.0006300464842195001
+897.0000000001357 0.000632880499434884
+897.1000000001358 0.0006343032605124586
+897.2000000001358 0.0006357254411459822
+897.3000000001358 0.0006371470345487788
+897.4000000001358 0.0006385680338796265
+897.5000000001359 0.0006399884322399284
+897.6000000001359 0.0006408505975941208
+897.7000000001359 0.0006417123462908414
+897.8000000001359 0.0006425736714850897
+897.900000000136 0.0006434345662951945
+898.000000000136 0.0006442950237996787
+898.100000000136 0.000644859604151215
+898.200000000136 0.0006453251965620665
+898.300000000136 0.0006456918394612707
+898.4000000001361 0.0006459595713805205
+898.5000000001361 0.0006461284309541884
+898.6000000001361 0.0006442949438436375
+898.7000000001361 0.0006423340100694504
+898.8000000001362 0.0006402433303033122
+898.9000000001362 0.0006380208042097689
+899.0000000001362 0.0006356645319832028
+899.1000000001362 0.0006425232550975658
+899.2000000001362 0.0006494120535771832
+899.3000000001363 0.0006563292447052569
+899.4000000001363 0.0006632732598230561
+899.5000000001363 0.0006702426530067134
+899.6000000001363 0.0006788045401226494
+899.7000000001364 0.0006874050029474098
+899.8000000001364 0.0006960428971916
+899.9000000001364 0.0007047172304352171
+900.0000000001364 0.0007134271734603262
+900.1000000001364 0.0007161179259241491
+900.2000000001365 0.0007187694933508066
+900.3000000001365 0.0007213820337109331
+900.4000000001365 0.0007239559071737624
+900.5000000001365 0.0007264916794061324
+900.6000000001366 0.0007314786515745328
+900.7000000001366 0.0007364585863862044
+900.8000000001366 0.0007414325637250477
+900.9000000001366 0.0007464018979535543
+901.0000000001367 0.0007513681445643823
+901.1000000001367 0.0007643169267073237
+901.2000000001367 0.0007773079109223523
+901.3000000001367 0.0007903433523285265
+901.4000000001367 0.0008034258823480777
+901.5000000001368 0.0008165585277006639
+901.6000000001368 0.0008273429538651509
+901.7000000001368 0.0008381075091049215
+901.8000000001368 0.0008488522005722762
+901.9000000001369 0.000859577035690184
+902.0000000001369 0.0008702820221960824
+902.1000000001369 0.0008790783188172646
+902.2000000001369 0.000887837474031107
+902.300000000137 0.0008965595267758994
+902.400000000137 0.0009052445165737701
+902.500000000137 0.000913892483593652
+902.600000000137 0.0009264564223395814
+902.700000000137 0.0009390676343629902
+902.8000000001371 0.000951726023422412
+902.9000000001371 0.000964431491982761
+903.0000000001371 0.0009771839411583257
+903.1000000001371 0.0009995734050392629
+903.2000000001372 0.0010221763943181119
+903.3000000001372 0.0010449925596677384
+903.4000000001372 0.0010680215495672972
+903.5000000001372 0.001091263010147264
+903.6000000001372 0.001111876527888741
+903.7000000001373 0.001132622071503921
+903.8000000001373 0.0011535003742416316
+903.9000000001373 0.001174512168039611
+904.0000000001373 0.0011956581777626519
+904.1000000001374 0.001220051494351293
+904.2000000001374 0.001244379466712262
+904.3000000001374 0.0012686430723327727
+904.4000000001374 0.0012928432598378731
+904.5000000001374 0.0013169809406333043
+904.6000000001375 0.0013407758955801118
+904.7000000001375 0.0013644993190483296
+904.8000000001375 0.0013881519179222558
+904.9000000001375 0.001411734322573689
+905.0000000001376 0.0014352470787123775
+905.1000000001376 0.0014683976864585354
+905.2000000001376 0.0015015240352086227
+905.3000000001376 0.0015346264327043492
+905.4000000001377 0.0015677050642737762
+905.5000000001377 0.0016007599815977237
+905.6000000001377 0.0016320713114338786
+905.7000000001377 0.0016632891909288607
+905.8000000001377 0.0016944133147286846
+905.9000000001378 0.001725443205476736
+906.0000000001378 0.0017563782038638326
+906.1000000001378 0.0017982637391899298
+906.2000000001378 0.0018395856780900471
+906.3000000001379 0.001880343377473299
+906.4000000001379 0.0019205359386757492
+906.5000000001379 0.00196016219850761
+906.6000000001379 0.0019983478892093504
+906.700000000138 0.0020359288100900374
+906.800000000138 0.0020729057425714183
+906.900000000138 0.0021092794680139183
+907.000000000138 0.0021450507677734775
+907.100000000138 0.002214467244842247
+907.2000000001381 0.00228351807355893
+907.3000000001381 0.002352203671126167
+907.4000000001381 0.0024205244547454794
+907.5000000001381 0.002488480841603273
+907.6000000001382 0.0025595422468193143
+907.7000000001382 0.002630437094984948
+907.8000000001382 0.0027011655266467208
+907.9000000001382 0.002771727682332634
+908.0000000001382 0.0028421237026274447
+908.1000000001383 0.002943894068639202
+908.2000000001383 0.0030457435228555645
+908.3000000001383 0.00314767180672635
+908.4000000001383 0.00324967866174047
+908.5000000001384 0.0033517638294304473
+908.6000000001384 0.0034523661749391275
+908.7000000001384 0.003552953685898163
+908.8000000001384 0.003653527630828688
+908.9000000001384 0.0037540893346556144
+909.0000000001385 0.0038546401618872426
+909.1000000001385 0.004028990469646407
+909.2000000001385 0.0042036303149491075
+909.3000000001385 0.00437856082048295
+909.4000000001386 0.004553783157973796
+909.5000000001386 0.004729298519562211
+909.6000000001386 0.0049029187973318325
+909.7000000001386 0.005076683293584418
+909.8000000001387 0.0052505932982477
+909.9000000001387 0.005424650002823696
+910.0000000001387 0.005598854471405867
+910.1000000001387 0.005829090458041884
+910.2000000001387 0.006058365390913451
+910.3000000001388 0.006286681672210628
+910.4000000001388 0.006514041425917038
+910.5000000001388 0.006740446460401681
+910.6000000001388 0.006997184546958103
+910.7000000001389 0.007255088742388394
+910.8000000001389 0.0075141568471563565
+910.9000000001389 0.007774386186235587
+911.0000000001389 0.008035773562839245
+911.100000000139 0.008428153351935256
+911.200000000139 0.008821190330233963
+911.300000000139 0.009214879941056213
+911.400000000139 0.009609216697874387
+911.500000000139 0.010004194115387464
+911.6000000001391 0.010361041939958847
+911.7000000001391 0.010715686351468334
+911.8000000001391 0.011068129928851636
+911.9000000001391 0.011418375251402069
+912.0000000001392 0.011766424899106395
+912.1000000001392 0.01236124597795735
+912.2000000001392 0.012958782069910463
+912.3000000001392 0.013559028659290174
+912.4000000001392 0.014161981229597255
+912.5000000001393 0.01476763526316498
+912.6000000001393 0.015248356824253288
+912.7000000001393 0.015722378319259486
+912.8000000001393 0.016189708235874865
+912.9000000001394 0.016650355063265874
+913.0000000001394 0.017104327292259306
+913.1000000001394 0.01763384432085721
+913.2000000001394 0.018154645727202157
+913.3000000001394 0.018666743450799664
+913.4000000001395 0.019170149432371397
+913.5000000001395 0.019664875614448737
+913.6000000001395 0.020396244630546623
+913.7000000001395 0.02113391361952371
+913.8000000001396 0.021877864326679708
+913.9000000001396 0.02262807792903262
+914.0000000001396 0.023384535134431752
+914.1000000001396 0.02447925090247162
+914.2000000001397 0.025587256750118335
+914.3000000001397 0.02670851872174666
+914.4000000001397 0.027843002417592747
+914.5000000001397 0.028990673148035783
+914.6000000001397 0.02985844576909432
+914.7000000001398 0.030721083888891672
+914.8000000001398 0.03157858526702242
+914.9000000001398 0.03243094843081865
+915.0000000001398 0.03327817281759778
+915.1000000001399 0.03396870099267918
+915.2000000001399 0.03463512872324481
+915.3000000001399 0.035277491484257455
+915.4000000001399 0.035895826402498505
+915.50000000014 0.0364901723400685
+915.60000000014 0.0376098122793418
+915.70000000014 0.03873474510276036
+915.80000000014 0.0398649618607759
+915.90000000014 0.04100045585097987
+916.0000000001401 0.04214122282712967
+916.1000000001401 0.043705075779551426
+916.2000000001401 0.04529213956071829
+916.3000000001401 0.046902387852883
+916.4000000001402 0.04853579836593834
+916.5000000001402 0.05019235320805489
+916.6000000001402 0.051349984512121326
+916.7000000001402 0.052507787310824665
+916.8000000001402 0.05366575878802728
+916.9000000001403 0.05482389612774448
+917.0000000001403 0.05598219651284903
+917.1000000001403 0.056811233284397925
+917.2000000001403 0.05762119647641746
+917.3000000001404 0.05841211761843686
+917.4000000001404 0.059184028248765126
+917.5000000001404 0.05993695991524459
+917.6000000001404 0.0609444214927933
+917.7000000001404 0.06194356390714382
+917.8000000001405 0.06293440066338551
+917.9000000001405 0.06391694539862862
+918.0000000001405 0.06489121188725341
+918.1000000001405 0.06637189966194817
+918.2000000001406 0.06786456613116279
+918.3000000001406 0.06936919079377664
+918.4000000001406 0.07088575335468912
+918.5000000001406 0.07241423373561735
+918.6000000001407 0.07397090922256515
+918.7000000001407 0.07554001248305417
+918.8000000001407 0.07712148853696044
+918.9000000001407 0.07871528209481823
+919.0000000001407 0.0803213377682675
+919.1000000001408 0.08196804975044443
+919.2000000001408 0.08361802304347853
+919.3000000001408 0.0852712170220426
+919.4000000001408 0.08692759193114867
+919.5000000001409 0.08858710915401792
+919.6000000001409 0.09009702094091632
+919.7000000001409 0.09160489354084687
+919.8000000001409 0.09311070686419476
+919.900000000141 0.09461444337664508
+920.000000000141 0.09611608835486593
+920.100000000141 0.0979232485144306
+920.200000000141 0.09973740975751062
+920.300000000141 0.10155854917332677
+920.4000000001411 0.10338664765880401
+920.5000000001411 0.10522169023077103
+920.6000000001411 0.10672937096843438
+920.7000000001411 0.10823440976309409
+920.8000000001412 0.10973682458175785
+920.9000000001412 0.11123663852634011
+921.0000000001412 0.11273388007958496
+921.1000000001412 0.11389382799309845
+921.2000000001412 0.11504429563742574
+921.3000000001413 0.11618534525861492
+921.4000000001413 0.11731704485301502
+921.5000000001413 0.11843946831888917
+921.6000000001413 0.11983171808990216
+921.7000000001414 0.12122120744944524
+921.8000000001414 0.12260794105168164
+921.9000000001414 0.12399192328761595
+922.0000000001414 0.12537315826337736
+922.1000000001414 0.12729665541476765
+922.2000000001415 0.12922540558189768
+922.3000000001415 0.1311593940650263
+922.4000000001415 0.13309860580802946
+922.5000000001415 0.135043025367032
+922.6000000001416 0.13664917041029
+922.7000000001416 0.13825230566042856
+922.8000000001416 0.139852429265173
+922.9000000001416 0.14144953929375215
+923.0000000001417 0.1430436337463884
+923.1000000001417 0.14466545395230979
+923.2000000001417 0.1462819197580969
+923.3000000001417 0.14789303356155278
+923.4000000001417 0.14949879772309832
+923.5000000001418 0.15109921457585695
+923.6000000001418 0.1526307728464037
+923.7000000001418 0.15415609638573521
+923.8000000001418 0.15567492400380917
+923.9000000001419 0.15718700452090636
+924.0000000001419 0.15869209791182184
+924.1000000001419 0.1603986478067966
+924.2000000001419 0.16209795905827795
+924.300000000142 0.16378982709510523
+924.400000000142 0.16547406209237903
+924.500000000142 0.1671504901923469
+924.600000000142 0.1689629227829937
+924.700000000142 0.17077040613098268
+924.8000000001421 0.1725728213475565
+924.9000000001421 0.17437007031527857
+925.0000000001421 0.1761620769301941
+925.1000000001421 0.17862607192446983
+925.2000000001422 0.18109048513734358
+925.3000000001422 0.18355527954869272
+925.4000000001422 0.18602044576937796
+925.5000000001422 0.1884860037246428
+925.6000000001422 0.19087120309791195
+925.7000000001423 0.19325502089675106
+925.8000000001423 0.19563756784252034
+925.9000000001423 0.19801898942209809
+926.0000000001423 0.20039946748282872
+926.1000000001424 0.20290931471460394
+926.2000000001424 0.20541649821022384
+926.3000000001424 0.20792132322932066
+926.4000000001424 0.21042413862221937
+926.5000000001424 0.21292533848075634
+926.6000000001425 0.21556135573589552
+926.7000000001425 0.2181980741849648
+926.8000000001425 0.22083548164175212
+926.9000000001425 0.22347356543983596
+927.0000000001426 0.2261123124011481
+927.1000000001426 0.2270688766274298
+927.2000000001426 0.227998995572549
+927.3000000001426 0.22890273012061768
+927.4000000001427 0.22978014060141327
+927.5000000001427 0.2306312867832777
+927.6000000001427 0.23095579153419005
+927.7000000001427 0.2312452698488514
+927.8000000001427 0.23149980948174131
+927.9000000001428 0.2317194983553642
+928.0000000001428 0.231904424567679
+928.1000000001428 0.23381527640072874
+928.2000000001428 0.2357158728239311
+928.3000000001429 0.23760623408044687
+928.4000000001429 0.23948638065501401
+928.5000000001429 0.24135633328251124
+928.6000000001429 0.2429438109248686
+928.700000000143 0.24451729920788381
+928.800000000143 0.24607629357867214
+928.900000000143 0.24762031638422527
+929.000000000143 0.24914891849613152
+929.100000000143 0.24999959585526932
+929.2000000001431 0.2508271752825731
+929.3000000001431 0.25163133358092654
+929.4000000001431 0.25241178593872715
+929.5000000001431 0.25316828689964177
+929.6000000001432 0.25283031371313086
+929.7000000001432 0.2524519568201662
+929.8000000001432 0.25203318588418366
+929.9000000001432 0.2515740161509333
+930.0000000001432 0.25107450825981975
+930.1000000001433 0.25086087809474605
+930.2000000001433 0.25060924380009014
+930.3000000001433 0.25031977993618443
+930.4000000001433 0.2499927051628402
+930.5000000001434 0.24962828184673283
+930.6000000001434 0.2492907958316912
+930.7000000001434 0.24891750688301115
+930.8000000001434 0.24850879316025185
+930.9000000001435 0.2480650744138276
+931.0000000001435 0.24758681122573978
+931.1000000001435 0.24678888608895672
+931.2000000001435 0.24595409592603895
+931.3000000001435 0.24508303824836852
+931.4000000001436 0.24417634510319272
+931.5000000001436 0.2432346816062687
+931.6000000001436 0.24000229248826155
+931.7000000001436 0.23670549137042515
+931.8000000001437 0.23334450743041157
+931.9000000001437 0.2299195689058257
+932.0000000001437 0.22643090312737083
+932.1000000001437 0.22589094778044566
+932.2000000001437 0.22532701482244524
+932.3000000001438 0.22473918609826124
+932.4000000001438 0.22412754288738082
+932.5000000001438 0.22349216591435353
+932.6000000001438 0.22515281297374604
+932.7000000001439 0.22681514674319136
+932.8000000001439 0.22847915255618464
+932.9000000001439 0.23014481576604431
+933.0000000001439 0.23181212174014829
+933.100000000144 0.23137422905113839
+933.200000000144 0.23092196277819588
+933.300000000144 0.230455372226676
+933.400000000144 0.2299745066353668
+933.500000000144 0.22947941516388193
+933.6000000001441 0.2250214479265606
+933.7000000001441 0.2205168942180231
+933.8000000001441 0.2159662635336865
+933.9000000001441 0.21137001894300173
+934.0000000001442 0.20672857884912982
+934.1000000001442 0.205343237482585
+934.2000000001442 0.20394460243280846
+934.3000000001442 0.2025328876486231
+934.4000000001442 0.20110828110524928
+934.5000000001443 0.19967094544652858
+934.6000000001443 0.20670274198501595
+934.7000000001443 0.2137721939872174
+934.8000000001443 0.22087935945904677
+934.9000000001444 0.22802428539133884
+935.0000000001444 0.2352070042142163
+935.1000000001444 0.23781205034779634
+935.2000000001444 0.240427638817085
+935.3000000001445 0.2430537547069399
+935.4000000001445 0.24569035702379824
+935.5000000001445 0.24833737731038363
+935.6000000001445 0.24695944376837986
+935.7000000001445 0.24557096552665506
+935.8000000001446 0.24417179168114406
+935.9000000001446 0.242761749972996
+936.0000000001446 0.24134064758943619
+936.1000000001446 0.24267358576402953
+936.2000000001447 0.24400875609996409
+936.3000000001447 0.24534585729704056
+936.4000000001447 0.2466845564478283
+936.5000000001447 0.2480244883091013
+936.6000000001447 0.24714024034211743
+936.7000000001448 0.24625008196264128
+936.8000000001448 0.24535403732762484
+936.9000000001448 0.24445213054211887
+937.0000000001448 0.2435443856721615
+937.1000000001449 0.24638556758002786
+937.2000000001449 0.24923134660256838
+937.3000000001449 0.2520816943107883
+937.4000000001449 0.2549365824219384
+937.500000000145 0.2577959827964651
+937.600000000145 0.2590730243038243
+937.700000000145 0.26035115528575437
+937.800000000145 0.2616303671197572
+937.900000000145 0.2629106512494498
+938.0000000001451 0.2641919991825606
+938.1000000001451 0.2654824521461732
+938.2000000001451 0.2667732318390977
+938.3000000001451 0.26806433229416116
+938.4000000001452 0.2693557476077345
+938.5000000001452 0.27064747195820255
+938.6000000001452 0.2780741017691073
+938.7000000001452 0.28550347610537513
+938.8000000001452 0.29293666949897257
+938.9000000001453 0.30037479031503106
+939.0000000001453 0.3078189684173024
+939.1000000001453 0.31544896700788033
+939.2000000001453 0.32308017686469176
+939.3000000001454 0.3307137439101978
+939.4000000001454 0.33835078724193257
+939.5000000001454 0.34599238625183554
+939.6000000001454 0.3448848630986362
+939.7000000001455 0.34378422586952556
+939.8000000001455 0.3426908147155146
+939.9000000001455 0.34160484995107154
+940.0000000001455 0.34052643389027887
+940.1000000001455 0.3363434859527039
+940.2000000001456 0.33216958045937117
+940.3000000001456 0.3280042648114764
+940.4000000001456 0.32384698623461494
+940.5000000001456 0.3196970987306004
+940.6000000001457 0.31942361873478425
+940.7000000001457 0.3191555983023845
+940.8000000001457 0.3188923298667761
+940.9000000001457 0.3186330007392716
+941.0000000001457 0.3183766935024026
+941.1000000001458 0.3206679401173137
+941.2000000001458 0.32295920350639856
+941.3000000001458 0.3252492472575777
+941.4000000001458 0.3275366891205696
+941.5000000001459 0.32981999722696226
+941.6000000001459 0.3292411090008048
+941.7000000001459 0.3286621841731655
+941.8000000001459 0.32808322046939764
+941.900000000146 0.3275042156415287
+942.000000000146 0.32692516745024425
+942.100000000146 0.32052701398819744
+942.200000000146 0.314135977573974
+942.300000000146 0.3077520624627251
+942.4000000001461 0.3013752731754394
+942.5000000001461 0.2950056145041867
+942.6000000001461 0.290232259428573
+942.7000000001461 0.2854641773976343
+942.8000000001462 0.280701371783568
+942.9000000001462 0.27594384615231915
+943.0000000001462 0.2711916042888815
+943.1000000001462 0.2746766762127339
+943.2000000001462 0.2781588218117425
+943.3000000001463 0.28163802903134705
+943.4000000001463 0.2851142856724188
+943.5000000001463 0.28858757937162033
+943.6000000001463 0.2854788172507182
+943.7000000001464 0.28237089741183896
+943.8000000001464 0.27926450447255813
+943.9000000001464 0.27616024849602555
+944.0000000001464 0.27305866763558573
+944.1000000001465 0.27021440206273356
+944.2000000001465 0.267375091446975
+944.3000000001465 0.26454107463209603
+944.4000000001465 0.26171263048841975
+944.5000000001465 0.25888998037515965
+944.6000000001466 0.26551146898998756
+944.7000000001466 0.2721269855220919
+944.8000000001466 0.27873690613013635
+944.9000000001466 0.2853415741200176
+945.0000000001467 0.2919412942880763
+945.1000000001467 0.2929718237623675
+945.2000000001467 0.29400470913951166
+945.3000000001467 0.29503991545375735
+945.4000000001467 0.29607735638450905
+945.5000000001468 0.29711689336954944
+945.6000000001468 0.29313275605075206
+945.7000000001468 0.28915399709141093
+945.8000000001468 0.2851801966361755
+945.9000000001469 0.2812109055761547
+946.0000000001469 0.27724564885930897
+946.1000000001469 0.27857439617935137
+946.2000000001469 0.2799019346408818
+946.300000000147 0.281227720405531
+946.400000000147 0.2825511519854243
+946.500000000147 0.283871569200669
+946.600000000147 0.28756617542558094
+946.700000000147 0.2912562854463287
+946.8000000001471 0.2949418905709618
+946.9000000001471 0.2986229816966737
+947.0000000001471 0.30229954928244246
+947.1000000001471 0.3016831186683627
+947.2000000001472 0.30106684430762376
+947.3000000001472 0.30045072380623183
+947.4000000001472 0.2998347544910213
+947.5000000001472 0.2992189333977107
+947.6000000001472 0.2939516078406737
+947.7000000001473 0.28868838581121836
+947.8000000001473 0.283429284270475
+947.9000000001473 0.2781743201141015
+948.0000000001473 0.27292351016957345
+948.1000000001474 0.2749273834034208
+948.2000000001474 0.2769280334039915
+948.3000000001474 0.27892546408877666
+948.4000000001474 0.2809196798378237
+948.5000000001475 0.28291068551798015
+948.6000000001475 0.2901717677192218
+948.7000000001475 0.29742233627477416
+948.8000000001475 0.3046622648383397
+948.9000000001475 0.3118914239410633
+949.0000000001476 0.31910968215868113
+949.1000000001476 0.3149881959282141
+949.2000000001476 0.31087016202687573
+949.3000000001476 0.3067555112959099
+949.4000000001477 0.30264418902624246
+949.5000000001477 0.2985361542806839
+949.6000000001477 0.2927378544284854
+949.7000000001477 0.28694456421310394
+949.8000000001477 0.2811562987120605
+949.9000000001478 0.27537308465912136
+950.0000000001478 0.26959495951166756
+950.1000000001478 0.2735437858820205
+950.2000000001478 0.2774871296686138
+950.3000000001479 0.2814249696047745
+950.4000000001479 0.285357294652357
+950.5000000001479 0.289284104652828
+950.6000000001479 0.29641335995997115
+950.700000000148 0.303533382316684
+950.800000000148 0.3106441835102263
+950.900000000148 0.3177457918503322
+951.000000000148 0.32483825332347593
+951.100000000148 0.3235424174366266
+951.2000000001481 0.32224798247610636
+951.3000000001481 0.32095506957983333
+951.4000000001481 0.31966380877340567
+951.5000000001481 0.3183743387354259
+951.6000000001482 0.3103182406277943
+951.7000000001482 0.3022743899996445
+951.8000000001482 0.2942428002296105
+951.9000000001482 0.28622348436407186
+952.0000000001482 0.2782164551323719
+952.1000000001483 0.2760523341236465
+952.2000000001483 0.2738906325602462
+952.3000000001483 0.27173135671489596
+952.4000000001483 0.269574512773772
+952.5000000001484 0.26742010685333845
+952.6000000001484 0.27151438799147093
+952.7000000001484 0.27560291013371424
+952.8000000001484 0.2796856726752033
+952.9000000001485 0.2837626751078522
+953.0000000001485 0.2878339169969682
+953.1000000001485 0.2903104092615671
+953.2000000001485 0.29278300055539547
+953.3000000001485 0.2952516930027413
+953.4000000001486 0.29771648860442723
+953.5000000001486 0.30017738921876674
+953.6000000001486 0.300672116293346
+953.7000000001486 0.3011662639777645
+953.8000000001487 0.3016595531981121
+953.9000000001487 0.30215172324595396
+954.0000000001487 0.3026425319379801
+954.1000000001487 0.3014779380229904
+954.2000000001487 0.3003139808910605
+954.3000000001488 0.2991504906212
+954.4000000001488 0.2979873199509226
+954.5000000001488 0.2968243438774938
+954.6000000001488 0.2970645331998524
+954.7000000001489 0.2973025754495361
+954.8000000001489 0.2975383977414236
+954.9000000001489 0.29777194685012653
+955.0000000001489 0.2980031892813637
+955.100000000149 0.29672257698863996
+955.200000000149 0.2954417500101935
+955.300000000149 0.29416075862366986
+955.400000000149 0.29287967206187776
+955.500000000149 0.29159857807878525
+955.6000000001491 0.290240197214127
+955.7000000001491 0.28888216804721684
+955.8000000001491 0.28752463275691975
+955.9000000001491 0.28616775074409245
+956.0000000001492 0.2848116981672715
+956.1000000001492 0.28496764358423804
+956.2000000001492 0.2851226326066255
+956.3000000001492 0.28527688649369576
+956.4000000001492 0.2854306465259065
+956.5000000001493 0.2855841740469709
+956.6000000001493 0.2861218065888552
+956.7000000001493 0.2866580690645982
+956.8000000001493 0.2871929574989964
+956.9000000001494 0.28772646789452466
+957.0000000001494 0.28825859624452677
+957.1000000001494 0.29276965162004714
+957.2000000001494 0.2972729030911593
+957.3000000001495 0.30176833981721823
+957.4000000001495 0.3062559507741301
+957.5000000001495 0.31073572474490385
+957.6000000001495 0.31094086725528053
+957.7000000001495 0.3111450905675358
+957.8000000001496 0.31134840029273647
+957.9000000001496 0.3115508020576377
+958.0000000001496 0.3117523014962731
+958.1000000001496 0.3093208142177204
+958.2000000001497 0.3068924063556109
+958.3000000001497 0.30446708792138744
+958.4000000001497 0.30204486872892194
+958.5000000001497 0.2996257583986279
+958.6000000001497 0.29743700620074043
+958.7000000001498 0.29525128758153485
+958.8000000001498 0.29306846316892365
+958.9000000001498 0.29088840751413025
+959.0000000001498 0.2887110087058191
+959.1000000001499 0.2870567274048697
+959.2000000001499 0.28540421269186367
+959.3000000001499 0.28375338767712954
+959.4000000001499 0.282104186948952
+959.50000000015 0.28045655630007393
+959.60000000015 0.28263694484736157
+959.70000000015 0.2848127685173008
+959.80000000015 0.2869839801126609
+959.90000000015 0.2891505407864839
+960.0000000001501 0.2913124203874424
+960.1000000001501 0.2933635062487814
+960.2000000001501 0.2954095470960677
+960.3000000001501 0.29745054283737543
+960.4000000001502 0.2994865034033654
+960.5000000001502 0.30151744906461403
+960.6000000001502 0.3027996392222398
+960.7000000001502 0.30407830609464287
+960.8000000001502 0.305353504306627
+960.9000000001503 0.3066253002033761
+961.0000000001503 0.30789377206292534
+961.1000000001503 0.3091968811236976
+961.2000000001503 0.3104971600584508
+961.3000000001504 0.31179472293725413
+961.4000000001504 0.31308969665612163
+961.5000000001504 0.3143822211388052
+961.6000000001504 0.31257543991082826
+961.7000000001505 0.31077100018172216
+961.8000000001505 0.308968902931733
+961.9000000001505 0.30716914887731456
+962.0000000001505 0.305371738473998
+962.1000000001505 0.3022242420322856
+962.2000000001506 0.29908192904504977
+962.3000000001506 0.29594480027258635
+962.4000000001506 0.29281285632173776
+962.5000000001506 0.28968609767521086
+962.6000000001507 0.2918266123469044
+962.7000000001507 0.2939624761606199
+962.8000000001507 0.29609369093284016
+962.9000000001507 0.2982202589269276
+963.0000000001507 0.300342182865772
+963.1000000001508 0.3024712194002628
+963.2000000001508 0.30459578686012767
+963.3000000001508 0.3067158889420793
+963.4000000001508 0.3088315298400226
+963.5000000001509 0.31094271424662506
+963.6000000001509 0.3098636172536693
+963.7000000001509 0.3087861139985248
+963.8000000001509 0.30771006053914096
+963.900000000151 0.3066353249605637
+964.000000000151 0.30556178719218396
+964.100000000151 0.30532253358773054
+964.200000000151 0.3050827168503589
+964.300000000151 0.30484224685199196
+964.4000000001511 0.3046010437117148
+964.5000000001511 0.3043590377622834
+964.6000000001511 0.30519179848434486
+964.7000000001511 0.30602143387119324
+964.8000000001512 0.3068479014421657
+964.9000000001512 0.3076711687278178
+965.0000000001512 0.3084912134122088
+965.1000000001512 0.3099619081257576
+965.2000000001512 0.311428137926664
+965.3000000001513 0.31288990647061704
+965.4000000001513 0.314347228348294
+965.5000000001513 0.31580012931648593
+965.6000000001513 0.314196800937774
+965.7000000001514 0.3125954457853436
+965.8000000001514 0.31099614615940935
+965.9000000001514 0.3093989929406426
+966.0000000001514 0.30780408533054787
+966.1000000001515 0.3050493385451804
+966.2000000001515 0.3022988656593285
+966.3000000001515 0.29955279231306703
+966.4000000001515 0.29681124947527604
+966.5000000001515 0.2940743730268485
+966.6000000001516 0.29506757308700443
+966.7000000001516 0.29605829373552867
+966.8000000001516 0.2970465259440209
+966.9000000001516 0.2980322608909918
+967.0000000001517 0.2990154899784553
+967.1000000001517 0.30344934727609574
+967.2000000001517 0.3078728548691779
+967.3000000001517 0.3122860037393051
+967.4000000001517 0.31668878485864305
+967.5000000001518 0.3210811892037935
+967.6000000001518 0.32233241597657636
+967.7000000001518 0.3235800625950497
+967.8000000001518 0.32482412319758464
+967.9000000001519 0.32606459218910744
+968.0000000001519 0.32730146423879025
+968.1000000001519 0.3255982080183844
+968.2000000001519 0.3238980123070276
+968.300000000152 0.32220087526532515
+968.400000000152 0.3205067954370468
+968.500000000152 0.3188157717474187
+968.600000000152 0.31932905677668116
+968.700000000152 0.31984040971806127
+968.8000000001521 0.32034969903800287
+968.9000000001521 0.3208568031612174
+969.0000000001521 0.3213616105647476
+969.1000000001521 0.32188853853866667
+969.2000000001522 0.3224130566184058
+969.3000000001522 0.32293508340858557
+969.4000000001522 0.3234545479051668
+969.5000000001522 0.3239713895819727
+969.6000000001522 0.32292196320766586
+969.7000000001523 0.3218733835291113
+969.8000000001523 0.32082561291544703
+969.9000000001523 0.3197786250566279
+970.0000000001523 0.31873240478813125
+970.1000000001524 0.3181211752228173
+970.2000000001524 0.3175096568614916
+970.3000000001524 0.3168978638371522
+970.4000000001524 0.31628582084312235
+970.5000000001525 0.31567356303270555
+970.6000000001525 0.31613686266925917
+970.7000000001525 0.31659768338306404
+970.8000000001525 0.31705609319630956
+970.9000000001525 0.3175121705940573
+971.0000000001526 0.3179660045857011
+971.1000000001526 0.31691937400646114
+971.2000000001526 0.3158741557392636
+971.3000000001526 0.3148304722145047
+971.4000000001527 0.31378845416689527
+971.5000000001527 0.3127482404763621
+971.6000000001527 0.31210876699680107
+971.7000000001527 0.31146990306560157
+971.8000000001527 0.3108316507639129
+971.9000000001528 0.3101940124703761
+972.0000000001528 0.3095569908614863
+972.1000000001528 0.3090338616517985
+972.2000000001528 0.30851108243982056
+972.3000000001529 0.30798865671827697
+972.4000000001529 0.30746658826902323
+972.5000000001529 0.3069448811577167
+972.6000000001529 0.3057671054399861
+972.700000000153 0.3045913355635099
+972.800000000153 0.3034175663726029
+972.900000000153 0.30224579248318756
+973.000000000153 0.3010760082891586
+973.100000000153 0.3001709089317589
+973.2000000001531 0.2992671099611784
+973.3000000001531 0.29836460505785417
+973.4000000001531 0.29746338767804476
+973.5000000001531 0.29656345105996157
+973.6000000001532 0.2959888399240473
+973.7000000001532 0.29541469707885853
+973.8000000001532 0.29484102460680134
+973.9000000001532 0.2942678248752472
+974.0000000001532 0.2936951005300783
+974.1000000001533 0.29275088624392603
+974.2000000001533 0.29180805784544955
+974.3000000001533 0.29086661908603695
+974.4000000001533 0.28992657396776156
+974.5000000001534 0.2889879267380963
+974.6000000001534 0.2880506699867222
+974.7000000001534 0.2871147964025047
+974.8000000001534 0.2861803103056561
+974.9000000001535 0.2852472156740785
+975.0000000001535 0.2843155161508914
+975.1000000001535 0.2842126167600128
+975.2000000001535 0.28410903332866055
+975.3000000001535 0.28400476816855746
+975.4000000001536 0.28389982329836766
+975.5000000001536 0.2837942004437367
+975.6000000001536 0.28318235457078567
+975.7000000001536 0.28257112932537126
+975.8000000001537 0.2819605178865653
+975.9000000001537 0.2813505137794819
+976.0000000001537 0.2807411108730021
+976.1000000001537 0.2809845371119803
+976.2000000001538 0.2812262794255755
+976.3000000001538 0.28146633275575467
+976.4000000001538 0.2817046923136183
+976.5000000001538 0.2819413535845639
+976.6000000001538 0.28329878162481725
+976.7000000001539 0.2846514045441556
+976.8000000001539 0.2859992187826967
+976.9000000001539 0.287342221003501
+977.0000000001539 0.28868040809518564
+977.100000000154 0.2891372168360956
+977.200000000154 0.2895919233322643
+977.300000000154 0.2900445238986237
+977.400000000154 0.29049501513141884
+977.500000000154 0.2909433939072156
+977.6000000001541 0.2899736382156089
+977.7000000001541 0.2890052260782603
+977.8000000001541 0.28803816639085056
+977.9000000001541 0.28707246823633403
+978.0000000001542 0.2861081408804824
+978.1000000001542 0.28541590319348903
+978.2000000001542 0.2847244710437714
+978.3000000001542 0.28403385359979044
+978.4000000001543 0.28334406023013337
+978.5000000001543 0.2826551005006221
+978.6000000001543 0.2822100591384915
+978.7000000001543 0.281765177154342
+978.8000000001543 0.28132045548666657
+978.9000000001544 0.28087589478212804
+979.0000000001544 0.2804314953966023
+979.1000000001544 0.2797852636459661
+979.2000000001544 0.27913980187435444
+979.3000000001545 0.278495109387104
+979.4000000001545 0.2778511852111079
+979.5000000001545 0.2772080281006495
+979.6000000001545 0.2772246853089515
+979.7000000001545 0.27724018144606916
+979.8000000001546 0.277254518723344
+979.9000000001546 0.2772676987878285
+980.0000000001546 0.27727972272183304
+980.1000000001546 0.2773075852249994
+980.2000000001547 0.2773342760834274
+980.3000000001547 0.2773597943896835
+980.4000000001547 0.27738413867150064
+980.5000000001547 0.2774073068938616
+980.6000000001548 0.27849249325863473
+980.7000000001548 0.27957352380508205
+980.8000000001548 0.2806503919567678
+980.9000000001548 0.28172309131914913
+981.0000000001548 0.28279161568209765
+981.1000000001549 0.28288981986711714
+981.2000000001549 0.2829867109545008
+981.3000000001549 0.28308228320157275
+981.4000000001549 0.28317653114699254
+981.500000000155 0.2832694496087886
+981.600000000155 0.28260351632077596
+981.700000000155 0.2819382356697105
+981.800000000155 0.2812736120322769
+981.900000000155 0.2806096494620375
+982.0000000001551 0.27994635169418564
+982.1000000001551 0.2791430222977862
+982.2000000001551 0.2783407953647247
+982.3000000001551 0.27753967361343373
+982.4000000001552 0.27673965945322954
+982.5000000001552 0.27594075498783116
+982.6000000001552 0.2754877640688588
+982.7000000001552 0.27503491912046807
+982.8000000001553 0.2745822219237759
+982.9000000001553 0.27412967452657294
+983.0000000001553 0.2736772792443872
+983.1000000001553 0.27406681949242606
+983.2000000001553 0.27445402237263394
+983.3000000001554 0.2748388914686658
+983.4000000001554 0.27522143065964916
+983.5000000001554 0.27560164412285615
+983.6000000001554 0.2756971741169863
+983.7000000001555 0.2757916935098422
+983.8000000001555 0.2758849481667184
+983.9000000001555 0.27597670186593687
+984.0000000001555 0.2760667363386482
+984.1000000001555 0.275411144077004
+984.2000000001556 0.2747556257322679
+984.3000000001556 0.2741000233862019
+984.4000000001556 0.2734441987620972
+984.5000000001556 0.2727880330037527
+984.6000000001557 0.2720756158571204
+984.7000000001557 0.2713628706115704
+984.8000000001557 0.27064974127576974
+984.9000000001557 0.2699361912136866
+985.0000000001558 0.26922220290139504
+985.1000000001558 0.2691290493363063
+985.2000000001558 0.2690336056073361
+985.3000000001558 0.2689359012592694
+985.4000000001558 0.26883598443734846
+985.5000000001559 0.2687339218517989
+985.6000000001559 0.26879471501226476
+985.7000000001559 0.26885298704988225
+985.8000000001559 0.26890886158089594
+985.900000000156 0.26896248015730706
+986.000000000156 0.2690140022741472
+986.100000000156 0.26871682102187017
+986.200000000156 0.26841910921085993
+986.300000000156 0.26812107968479565
+986.4000000001561 0.2678229620703817
+986.5000000001561 0.2675250026797408
+986.6000000001561 0.267010976471364
+986.7000000001561 0.2664973168195934
+986.8000000001562 0.26598401988277065
+986.9000000001562 0.2654710821176805
+987.0000000001562 0.26495850027657236
+987.1000000001562 0.26440885563821465
+987.2000000001563 0.2638596886705541
+987.3000000001563 0.26331099686035536
+987.4000000001563 0.26276277798088155
+987.5000000001563 0.2622150300885924
+987.6000000001563 0.26188078182529434
+987.7000000001564 0.2615462624368943
+987.8000000001564 0.2612114703646609
+987.9000000001564 0.26087640379264737
+988.0000000001564 0.2605410606512767
+988.1000000001565 0.260356362547362
+988.2000000001565 0.26017097708058956
+988.3000000001565 0.2599849012112272
+988.4000000001565 0.25979813164435195
+988.5000000001565 0.25961066483081036
+988.6000000001566 0.25921246676277054
+988.7000000001566 0.25881401104111035
+988.8000000001566 0.25841542028828046
+988.9000000001566 0.258016807979554
+989.0000000001567 0.2576182785053567
+989.1000000001567 0.25712573054005655
+989.2000000001567 0.25663374019080143
+989.3000000001567 0.2561423845150764
+989.4000000001568 0.25565173164572
+989.5000000001568 0.2551618408702298
+989.6000000001568 0.2546211990838615
+989.7000000001568 0.25408155960187523
+989.8000000001568 0.25354294689866524
+989.9000000001569 0.2530053764626862
+990.0000000001569 0.25246885488940074
+990.1000000001569 0.25210733837249516
+990.2000000001569 0.2517462939952704
+990.300000000157 0.25138570356587003
+990.400000000157 0.2510255402933683
+990.500000000157 0.250665768850632
+990.600000000157 0.25035705579755174
+990.700000000157 0.2500484867964425
+990.8000000001571 0.24974000566404098
+990.9000000001571 0.24943154810356938
+991.0000000001571 0.24912304175922487
+991.1000000001571 0.24875819862296486
+991.2000000001572 0.24839332731464883
+991.3000000001572 0.24802833157798712
+991.4000000001572 0.24766310740059444
+991.5000000001572 0.24729754307609234
+991.6000000001573 0.24698145486157194
+991.7000000001573 0.24666509687550567
+991.8000000001573 0.24634846903408625
+991.9000000001573 0.24603157125452327
+992.0000000001573 0.2457144034525101
+992.1000000001574 0.24525020129999509
+992.2000000001574 0.24478622216998724
+992.3000000001574 0.24432246602808078
+992.4000000001574 0.24385893284063193
+992.5000000001575 0.24339562257323535
+992.6000000001575 0.24293253519174038
+992.7000000001575 0.24246967066250028
+992.8000000001575 0.24200702895136283
+992.9000000001575 0.24154461002442743
+993.0000000001576 0.24108241384742807
+993.1000000001576 0.2407077916838162
+993.2000000001576 0.24033306567114981
+993.3000000001576 0.2399582358464243
+993.4000000001577 0.23958330224688168
+993.5000000001577 0.2392082649100846
+993.6000000001577 0.23888108617802187
+993.7000000001577 0.23855342427158252
+993.8000000001578 0.2382253881775773
+993.9000000001578 0.2378970782975833
+994.0000000001578 0.237568586500392
+994.1000000001578 0.23718859802928102
+994.2000000001578 0.23680880145962
+994.3000000001579 0.23642926310395532
+994.4000000001579 0.2360500409116933
+994.5000000001579 0.2356711845323002
+994.6000000001579 0.23529272566505466
+994.700000000158 0.2349147010643033
+994.800000000158 0.2345371391163351
+994.900000000158 0.23416005990550737
+995.000000000158 0.23378347527924048
+995.100000000158 0.23338961855854115
+995.2000000001581 0.23299631496654255
+995.3000000001581 0.23260355191369542
+995.4000000001581 0.23221130884247457
+995.5000000001581 0.2318195572946466
+995.6000000001582 0.2314282801015815
+995.7000000001582 0.23103742629188379
+995.8000000001582 0.23064693771127137
+995.9000000001582 0.23025674908767035
+996.0000000001583 0.22986678809463387
+996.1000000001583 0.22948670127870513
+996.2000000001583 0.22910666508076896
+996.3000000001583 0.22872658640309812
+996.4000000001583 0.22834636533115205
+996.5000000001584 0.22796589519457056
+996.6000000001584 0.22758504382925698
+996.7000000001584 0.22720412617900093
+996.8000000001584 0.2268231455215894
+996.9000000001585 0.22644210488444208
+997.0000000001585 0.2260610070442301
+997.1000000001585 0.22569466688112758
+997.2000000001585 0.22532820243366708
+997.3000000001585 0.22496161571101778
+997.4000000001586 0.22459490848124009
+997.5000000001586 0.22422808227338456
+997.6000000001586 0.22386114761953338
+997.7000000001586 0.22349411498347743
+997.8000000001587 0.22312698577551424
+997.9000000001587 0.2227597616225988
+998.0000000001587 0.22239244436620847
+998.1000000001587 0.22201174060795914
+998.2000000001588 0.22163101893791112
+998.3000000001588 0.2212502818408838
+998.4000000001588 0.22086953200852139
+998.5000000001588 0.22048877233688557
+998.6000000001588 0.22010830602800247
+998.7000000001589 0.2197280027412562
+998.8000000001589 0.21934775829507905
+998.9000000001589 0.21896747635766758
+999.0000000001589 0.21858706838548608
+999.100000000159 0.2181833849543443
+999.200000000159 0.2177795021364169
+999.300000000159 0.2173753544895415
+999.400000000159 0.21697088413690932
+999.500000000159 0.21656604070043112
+999.6000000001591 0.21616078123499963
+999.7000000001591 0.21575509478765864
+999.8000000001591 0.2153489601721574
+999.9000000001591 0.21494236382013468
+1000.0000000001592 0.21453529971179852
+1000.1000000001592 0.2142133226522902
+1000.2000000001592 0.21389061447442462
+1000.3000000001592 0.21356719072684757
+1000.4000000001593 0.21324307425858025
+1000.5000000001593 0.21291829516449023
+1000.6000000001593 0.21250718506735505
+1000.7000000001593 0.21209577927683507
+1000.8000000001593 0.21168412626108535
+1000.9000000001594 0.2112722812227074
+1001.0000000001594 0.21086030603037625
+1001.1000000001594 0.21041389348566547
+1001.2000000001594 0.20996760780294627
+1001.3000000001595 0.20952153049585717
+1001.4000000001595 0.20907574940953555
+1001.5000000001595 0.20863035864632612
+1001.6000000001595 0.20818545849297207
+1001.7000000001595 0.207740764033742
+1001.8000000001596 0.2072962753683047
+1001.9000000001596 0.20685199259698403
+1002.0000000001596 0.20640791582004017
+1002.1000000001596 0.2060546173465312
+1002.2000000001597 0.2057012006422553
+1002.3000000001597 0.20534766573563418
+1002.4000000001597 0.20499401265509326
+1002.5000000001597 0.20464024143004367
+1002.6000000001598 0.20436904237430514
+1002.7000000001598 0.2040974052367433
+1002.8000000001598 0.20382533009682574
+1002.9000000001598 0.20355281703402828
+1003.0000000001598 0.2032798661276833
+1003.1000000001599 0.202912542843001
+1003.2000000001599 0.20254515291529915
+1003.3000000001599 0.2021776963418278
+1003.4000000001599 0.20181017312025712
+1003.50000000016 0.20144258324825648
+1003.60000000016 0.20107520083240793
+1003.70000000016 0.20070792664968645
+1003.80000000016 0.20034066891964167
+1003.90000000016 0.19997334324220123
+1004.0000000001601 0.19960587253613177
+1004.1000000001601 0.19923227222494194
+1004.2000000001601 0.19885844350328918
+1004.3000000001601 0.1984843309101246
+1004.4000000001602 0.19810988606425783
+1004.5000000001602 0.1977350676022773
+1004.6000000001602 0.19735984926005468
+1004.7000000001602 0.1969842005721046
+1004.8000000001603 0.19660809812415841
+1004.9000000001603 0.19623152548968525
+1005.0000000001603 0.19585447316502735
+1005.1000000001603 0.19547007897889432
+1005.2000000001603 0.19508523135488942
+1005.3000000001604 0.1946999412286318
+1005.4000000001604 0.19431422619575117
+1005.5000000001604 0.19392811044546793
+1005.6000000001604 0.1935416087080587
+1005.7000000001605 0.19315476395245615
+1005.8000000001605 0.19276762510389706
+1005.9000000001605 0.19238024697955358
+1006.0000000001605 0.19199269022579937
+1006.1000000001605 0.19162268959619544
+1006.2000000001606 0.19125260883621142
+1006.3000000001606 0.19088252568940398
+1006.4000000001606 0.19051252350770856
+1006.5000000001606 0.1901426911917002
+1006.6000000001607 0.1898114381285246
+1006.7000000001607 0.18948005313880903
+1006.8000000001607 0.18914853349588992
+1006.9000000001607 0.18881687668228112
+1007.0000000001608 0.18848508038887168
+1007.1000000001608 0.18807308098578673
+1007.2000000001608 0.1876612543758094
+1007.3000000001608 0.18724959885156944
+1007.4000000001608 0.18683811291009114
+1007.5000000001609 0.18642679525036926
+1007.6000000001609 0.18605318566670762
+1007.7000000001609 0.18567957608079397
+1007.8000000001609 0.18530596532193275
+1007.900000000161 0.18493235204218333
+1008.000000000161 0.1845587347160205
+1008.100000000161 0.18411269513388803
+1008.200000000161 0.1836669614004002
+1008.300000000161 0.18322153136019728
+1008.4000000001611 0.18277640269343445
+1008.5000000001611 0.18233157291647564
+1008.6000000001611 0.1818865432804574
+1008.7000000001611 0.18144151206715248
+1008.8000000001612 0.1809966487263032
+1008.9000000001612 0.180552109124616
+1009.0000000001612 0.18010803569463577
+1009.1000000001612 0.17972432007450365
+1009.2000000001613 0.17934106997996055
+1009.3000000001613 0.1789583890981989
+1009.4000000001613 0.17857636840028204
+1009.5000000001613 0.17819508626978064
+1009.6000000001613 0.17788660558087502
+1009.7000000001614 0.17757867966456886
+1009.8000000001614 0.17727134744131895
+1009.9000000001614 0.17696463528534875
+1010.0000000001614 0.17665855713166695
+1010.1000000001615 0.1763744393913583
+1010.2000000001615 0.17609085425709772
+1010.3000000001615 0.17580777931013708
+1010.4000000001615 0.17552518009787121
+1010.5000000001615 0.17524301023138966
+1010.6000000001616 0.17492593015262012
+1010.7000000001616 0.1746093124097084
+1010.8000000001616 0.17429307311849052
+1010.9000000001616 0.17397711746928593
+1011.0000000001617 0.17366133983192344
+1011.1000000001617 0.1732903362753294
+1011.2000000001617 0.17291952215453027
+1011.3000000001617 0.17254876004897007
+1011.4000000001618 0.1721779023267112
+1011.5000000001618 0.17180679126912615
+1011.6000000001618 0.17140068147229806
+1011.7000000001618 0.17099475860696967
+1011.8000000001618 0.17058902514121246
+1011.9000000001619 0.1701834833467815
+1012.0000000001619 0.16977813530272048
+1012.1000000001619 0.16942908597026438
+1012.2000000001619 0.16907999248788427
+1012.300000000162 0.1687308563884268
+1012.400000000162 0.16838167902190992
+1012.500000000162 0.16803246155630872
+1012.600000000162 0.16771705311506233
+1012.700000000162 0.16740147935129696
+1012.8000000001621 0.16708574130639042
+1012.9000000001621 0.16676984018263766
+1013.0000000001621 0.16645377734191297
+1013.1000000001621 0.1661008094268843
+1013.2000000001622 0.16574783731658807
+1013.3000000001622 0.1653948628542084
+1013.4000000001622 0.1650418880346208
+1013.5000000001622 0.16468891500173208
+1013.6000000001623 0.16433617010931154
+1013.7000000001623 0.16398355577709126
+1013.8000000001623 0.16363099410091708
+1013.9000000001623 0.16327841316001251
+1014.0000000001623 0.16292574695935072
+1014.1000000001624 0.1625685080792548
+1014.2000000001624 0.16221111899422283
+1014.3000000001624 0.16185353116180043
+1014.4000000001624 0.161495701739693
+1014.5000000001625 0.1611375935280973
+1014.6000000001625 0.1607791749115246
+1014.7000000001625 0.16042043810848503
+1014.8000000001625 0.16006136774666282
+1014.9000000001625 0.15970195413874824
+1015.0000000001626 0.15934219322162516
+1015.1000000001626 0.15901088062537927
+1015.2000000001626 0.15867913482704038
+1015.3000000001626 0.1583469680532476
+1015.4000000001627 0.15801439791704888
+1015.5000000001627 0.15768144735939782
+1015.6000000001627 0.1573481445919963
+1015.7000000001627 0.1570145140841333
+1015.8000000001628 0.15668059184253733
+1015.9000000001628 0.1563464188332606
+1016.0000000001628 0.156012040925433
+1016.1000000001628 0.1556704843966151
+1016.2000000001628 0.15532885981729633
+1016.3000000001629 0.1549872274275366
+1016.4000000001629 0.15464565213264164
+1016.5000000001629 0.15430420344573081
+1016.6000000001629 0.15396295543067698
+1016.700000000163 0.15362169727423053
+1016.800000000163 0.15328042897871666
+1016.900000000163 0.15293915054646065
+1017.000000000163 0.15259786197961303
+1017.100000000163 0.1522459783935123
+1017.2000000001631 0.1518941321273128
+1017.3000000001631 0.15154232318542823
+1017.4000000001631 0.15119055157242908
+1017.5000000001631 0.15083881729257184
+1017.6000000001632 0.15048712035058157
+1017.7000000001632 0.15013546075055903
+1017.8000000001632 0.149783838497073
+1017.9000000001632 0.14943225359469048
+1018.0000000001633 0.14908070604769694
+1018.1000000001633 0.14874663503026742
+1018.2000000001633 0.14841255311929585
+1018.3000000001633 0.1480784603212253
+1018.4000000001633 0.1477443566424986
+1018.5000000001634 0.14741024208950945
+1018.6000000001634 0.14704646422591755
+1018.7000000001634 0.14668281023331373
+1018.8000000001634 0.14631928012496392
+1018.9000000001635 0.145955873913824
+1019.0000000001635 0.14559259161275476
+1019.1000000001635 0.14526672029070312
+1019.2000000001635 0.14494083469476807
+1019.3000000001635 0.14461493482630977
+1019.4000000001636 0.1442890206865379
+1019.5000000001636 0.14396309227670945
+1019.6000000001636 0.14366613792279484
+1019.7000000001636 0.1433690377343548
+1019.8000000001637 0.1430717917038556
+1019.9000000001637 0.142774399824061
+1020.0000000001637 0.14247686208739901
+1020.1000000001637 0.1421546371931748
+1020.2000000001638 0.14183237738386256
+1020.3000000001638 0.14151008267144896
+1020.4000000001638 0.1411877530682134
+1020.5000000001638 0.14086538858585054
+1020.6000000001638 0.14054298923649422
+1020.7000000001639 0.14022055503213227
+1020.8000000001639 0.13989808598475328
+1020.9000000001639 0.13957558210649085
+1021.0000000001639 0.1392530434091692
+1021.100000000164 0.13891814206978204
+1021.200000000164 0.13858326467308135
+1021.300000000164 0.13824841122967205
+1021.400000000164 0.137913581749585
+1021.500000000164 0.1375787762434227
+1021.6000000001641 0.13724399472135831
+1021.7000000001641 0.1369092371938493
+1021.8000000001641 0.13657450367106844
+1021.9000000001641 0.13623979416347137
+1022.0000000001642 0.13590510868138578
+1022.1000000001642 0.13557934449062614
+1022.2000000001642 0.13525359617195057
+1022.3000000001642 0.13492786372617513
+1022.4000000001643 0.1346021471532762
+1022.5000000001643 0.134276446453884
+1022.6000000001643 0.1339237554265862
+1022.7000000001643 0.13357121159161764
+1022.8000000001643 0.13321881494000884
+1022.9000000001644 0.13286656546237535
+1023.0000000001644 0.13251446314979268
+1023.1000000001644 0.13219124982252292
+1023.2000000001644 0.1318680757654376
+1023.3000000001645 0.13154494097740618
+1023.4000000001645 0.13122184545729682
+1023.5000000001645 0.13089878920366174
+1023.6000000001645 0.13054959785752132
+1023.7000000001646 0.13020068928998554
+1023.8000000001646 0.12985200369914468
+1023.9000000001646 0.12950348626490704
+1024.0000000001646 0.12915508708948836
+1024.1000000001645 0.1288745764717989
+1024.2000000001647 0.12859376746760628
+1024.3000000001648 0.12831262432211663
+1024.4000000001647 0.1280311159017884
+1024.5000000001646 0.12774921564785013
+1024.6000000001648 0.12746690679081896
+1024.700000000165 0.12718416987221173
+1024.8000000001648 0.12690099001413555
+1024.9000000001647 0.1266173568702228
+1025.0000000001648 0.12633326457747623
+1025.100000000165 0.1259033315943639
+1025.200000000165 0.12547311010550286
+1025.3000000001648 0.1250426084655102
+1025.400000000165 0.12461183926962925
+1025.500000000165 0.12418081927888358
+1025.600000000165 0.12374955912469368
+1025.700000000165 0.123318087421
+1025.800000000165 0.1228864364232457
+1025.9000000001652 0.12245464195802035
+1026.000000000165 0.12202274335283564
+1026.100000000165 0.12159490547113147
+1026.2000000001651 0.12116702360094327
+1026.3000000001653 0.12073914714794166
+1026.4000000001652 0.1203113287448936
+1026.500000000165 0.1198836241819201
+1026.6000000001652 0.11945610220588528
+1026.7000000001653 0.11902859684520489
+1026.8000000001653 0.11860110631076957
+1026.9000000001652 0.11817362895678475
+1027.0000000001653 0.11774616327911558
+1027.1000000001654 0.11732918903360796
+1027.2000000001653 0.11691224791738718
+1027.3000000001653 0.11649533884743224
+1027.4000000001654 0.11607846087313686
+1027.5000000001655 0.11566161317419606
+1027.6000000001654 0.11524479030103471
+1027.7000000001653 0.11482798688227268
+1027.8000000001655 0.11441120223080291
+1027.9000000001656 0.11399443555496214
+1028.0000000001655 0.11357768596016535
+1028.1000000001654 0.11316186499309923
+1028.2000000001656 0.11274610315578527
+1028.3000000001657 0.11233039924795957
+1028.4000000001656 0.11191475197469365
+1028.5000000001655 0.11149915994895944
+1028.6000000001657 0.11108331870798527
+1028.7000000001658 0.11066735051737318
+1028.8000000001657 0.11025135945976972
+1028.9000000001656 0.10983544081918169
+1029.0000000001658 0.10941968121760057
+1029.100000000166 0.1090317814647412
+1029.2000000001658 0.10864408808578253
+1029.3000000001657 0.10825666277341037
+1029.4000000001658 0.10786955916723644
+1029.500000000166 0.10748282298261976
+1029.600000000166 0.10711807975106893
+1029.7000000001658 0.10675360151752694
+1029.800000000166 0.10638940931454484
+1029.900000000166 0.10602551648102182
+1030.000000000166 0.10566192878895356
+1030.100000000166 0.1052647138056528
+1030.200000000166 0.10486804247921681
+1030.3000000001662 0.1044718981986026
+1030.400000000166 0.10407625731863487
+1030.500000000166 0.10368108929657155
+1030.6000000001661 0.10328636536338583
+1030.7000000001663 0.1028920443257969
+1030.8000000001662 0.10249807453841547
+1030.900000000166 0.10210439833082627
+1031.0000000001662 0.10171095213700478
+1031.1000000001663 0.10133639109273027
+1031.2000000001663 0.10096193227389318
+1031.3000000001662 0.1005874952029016
+1031.4000000001663 0.10021299396134109
+1031.5000000001664 0.09983833731437475
+1031.6000000001663 0.09946342061771062
+1031.7000000001663 0.09908851883251225
+1031.8000000001664 0.0987136334613108
+1031.9000000001665 0.09833876588585441
+1032.0000000001664 0.09796391736934519
+1032.1000000001663 0.09759983511476344
+1032.2000000001665 0.09723569257753545
+1032.3000000001666 0.09687149067150262
+1032.4000000001665 0.09650723019984851
+1032.5000000001664 0.09614291185665036
+1032.6000000001666 0.09577854018292058
+1032.7000000001667 0.0954141196510661
+1032.8000000001666 0.0950496508378829
+1032.9000000001665 0.09468513440703123
+1033.0000000001667 0.09432057110649626
+1033.1000000001668 0.09396038237929522
+1033.2000000001667 0.09360022333526194
+1033.3000000001666 0.09324009496917288
+1033.4000000001668 0.09287999835382445
+1033.500000000167 0.09251993463723786
+1033.6000000001668 0.09216003069586265
+1033.7000000001667 0.09180023116839313
+1033.8000000001668 0.09144049207014206
+1033.900000000167 0.09108077306080045
+1034.000000000167 0.09072103738590195
+1034.1000000001668 0.09037808416533386
+1034.200000000167 0.09003497508273318
+1034.300000000167 0.08969168371274669
+1034.400000000167 0.08934818696345685
+1034.500000000167 0.089004465020051
+1034.600000000167 0.08866050128984462
+1034.7000000001672 0.08831629242518871
+1034.800000000167 0.08797183094421077
+1034.900000000167 0.08762711255085985
+1035.0000000001671 0.08728213607579406
+1035.1000000001673 0.0869445584399315
+1035.2000000001672 0.0866067797066287
+1035.300000000167 0.08626880768165934
+1035.4000000001672 0.08593065306033362
+1035.5000000001673 0.0855923293684998
+1035.6000000001673 0.08525385290456018
+1035.7000000001672 0.0849152378373764
+1035.8000000001673 0.08457650447255619
+1035.9000000001674 0.08423767564860496
+1036.0000000001673 0.08389877667997868
+1036.1000000001673 0.08356307624421916
+1036.2000000001674 0.08322739336823992
+1036.3000000001675 0.08289176044504602
+1036.4000000001674 0.08255621212139448
+1036.5000000001673 0.08222078524171458
+1036.6000000001675 0.08188551879200019
+1036.7000000001676 0.08155030023106759
+1036.8000000001675 0.08121512955959334
+1036.9000000001674 0.08088000677850539
+1037.0000000001676 0.08054493188874878
+1037.1000000001677 0.08022111682159176
+1037.2000000001676 0.07989731456666166
+1037.3000000001675 0.07957352512787969
+1037.4000000001677 0.07924974850908495
+1037.5000000001678 0.07892598471436385
+1037.6000000001677 0.07860223374747491
+1037.7000000001676 0.07827849561250116
+1037.8000000001678 0.07795477031336169
+1037.900000000168 0.07763105785381638
+1038.0000000001678 0.07730735823804866
+1038.1000000001677 0.0769966107332359
+1038.2000000001678 0.07668588428013023
+1038.300000000168 0.07637517887958556
+1038.400000000168 0.07606449453221843
+1038.5000000001678 0.07575383123895953
+1038.600000000168 0.07544318900050313
+1038.700000000168 0.07513256781762359
+1038.800000000168 0.07482196769124984
+1038.900000000168 0.07451138862199887
+1039.000000000168 0.07420083061071343
+1039.1000000001682 0.07388637109619012
+1039.200000000168 0.0735719658220842
+1039.300000000168 0.07325761478295995
+1039.4000000001681 0.07294331797368594
+1039.5000000001683 0.07262907538897981
+1039.6000000001682 0.07231488702348483
+1039.700000000168 0.07200075287206734
+1039.8000000001682 0.07168667292929543
+1039.9000000001683 0.07137264718996238
+1040.0000000001683 0.07105867564889841
+1040.1000000001682 0.07076719080364528
+1040.2000000001683 0.07047568704181276
+1040.3000000001684 0.07018416436522174
+1040.4000000001683 0.06989262277561999
+1040.5000000001683 0.06960106227468198
+1040.6000000001684 0.06930948286429835
+1040.7000000001685 0.06901788454607355
+1040.8000000001684 0.06872626732189865
+1040.9000000001683 0.06843463119344886
+1041.0000000001685 0.06814297616253345
+1041.1000000001686 0.0678464948045766
+1041.2000000001685 0.06755003631574932
+1041.3000000001684 0.06725360069613674
+1041.4000000001686 0.066957187945824
+1041.5000000001687 0.06666079806489736
+1041.6000000001686 0.06636443105351167
+1041.7000000001685 0.06606808691168255
+1041.8000000001687 0.06577176563949468
+1041.9000000001688 0.06547546723710168
+1042.0000000001687 0.06517919170453522
+1042.1000000001686 0.06489125741465485
+1042.2000000001688 0.06460339430943718
+1042.300000000169 0.06431560238185849
+1042.4000000001688 0.06402788162509475
+1042.5000000001687 0.06374023203218643
+1042.6000000001688 0.06345265359610855
+1042.700000000169 0.06316514630990383
+1042.800000000169 0.06287771016667991
+1042.9000000001688 0.0625903451595419
+1043.000000000169 0.062303051281417235
+1043.100000000169 0.06202553493490966
+1043.200000000169 0.061748001629053834
+1043.300000000169 0.06147045136536573
+1043.400000000169 0.0611928841454888
+1043.5000000001692 0.06091529997094111
+1043.600000000169 0.06063778150588167
+1043.700000000169 0.06036029822952339
+1043.8000000001691 0.060082822178967696
+1043.9000000001693 0.05980532790263304
+1044.0000000001692 0.05952779241344378
+1044.100000000169 0.05924687922070189
+1044.2000000001692 0.058966043889828
+1044.3000000001693 0.05868527053369329
+1044.4000000001693 0.058404545545969556
+1044.5000000001692 0.05812385755351101
+1044.6000000001693 0.057831549565440704
+1044.7000000001694 0.057539376886996806
+1044.8000000001693 0.057247333743166214
+1044.9000000001693 0.05695541647956198
+1045.0000000001694 0.056663623512003256
+1045.1000000001695 0.05640518348225065
+1045.2000000001694 0.05614654955125933
+1045.3000000001693 0.055887725939794373
+1045.4000000001695 0.055628718751351544
+1045.5000000001696 0.05536953592756987
+1045.6000000001695 0.055110182651167385
+1045.7000000001694 0.054850672087382826
+1045.8000000001696 0.05459101896282828
+1045.9000000001697 0.054331239523487
+1046.0000000001696 0.05407135149183593
+1046.1000000001695 0.05381559485803338
+1046.2000000001697 0.05355986317333864
+1046.3000000001698 0.05330417832402265
+1046.4000000001697 0.05304856351044353
+1046.5000000001696 0.05279304320606659
+1046.6000000001698 0.052537647456192084
+1046.70000000017 0.05228230304996348
+1046.8000000001698 0.05202700917278639
+1046.9000000001697 0.05177176507678135
+1047.0000000001698 0.05151657007933714
+1047.10000000017 0.051269569947036096
+1047.20000000017 0.05102260523689062
+1047.3000000001698 0.050775675456371454
+1047.40000000017 0.05052878017265299
+1047.50000000017 0.0502819190117278
+1047.60000000017 0.0500350895914789
+1047.70000000017 0.04978828957588594
+1047.80000000017 0.049541518669972626
+1047.9000000001702 0.049294776535203325
+1048.00000000017 0.049048062790633
+1048.10000000017 0.04880330996910827
+1048.2000000001701 0.048558565025519966
+1048.3000000001703 0.048313827463982384
+1048.4000000001702 0.048069096751009635
+1048.50000000017 0.04782437231694116
+1048.6000000001702 0.047569996010477344
+1048.7000000001703 0.047315688026054015
+1048.8000000001703 0.0470614711919376
+1048.9000000001702 0.04680736633415694
+1049.0000000001703 0.04655339231843068
+1049.1000000001704 0.04632290678309027
+1049.2000000001703 0.04609248380283868
+1049.3000000001703 0.045862136717469144
+1049.4000000001704 0.045631877097828476
+1049.5000000001705 0.045401714783438976
+1049.6000000001704 0.04517165792010599
+1049.7000000001703 0.0449417078658009
+1049.8000000001705 0.04471186806851914
+1049.9000000001706 0.04448214033517681
+1050.0000000001705 0.044252524871423546
+1050.1000000001704 0.04402717232003281
+1050.2000000001706 0.04380195619256743
+1050.3000000001707 0.04357687215534099
+1050.4000000001706 0.043351914430923184
+1050.5000000001705 0.04312707583691713
+1050.6000000001707 0.04290234782474342
+1050.7000000001708 0.042677722953390146
+1050.8000000001707 0.04245319073209204
+1050.9000000001706 0.04222873944792182
+1051.0000000001708 0.04200435620351366
+1051.100000000171 0.041780722630693545
+1051.2000000001708 0.04155712048399395
+1051.3000000001707 0.0413335335377939
+1051.4000000001708 0.04110994453087156
+1051.500000000171 0.04088633520405862
+1051.600000000171 0.04066268633781072
+1051.7000000001708 0.0404390540061587
+1051.800000000171 0.04021543820952295
+1051.900000000171 0.03999183894844971
+1052.000000000171 0.039768256223326096
+1052.100000000171 0.0395490618401922
+1052.200000000171 0.03932998414234096
+1052.3000000001712 0.03911102311297729
+1052.400000000171 0.0388921787351819
+1052.500000000171 0.038673450992207245
+1052.6000000001711 0.03846261009127064
+1052.7000000001713 0.03825180061585065
+1052.8000000001712 0.03804102256799887
+1052.900000000171 0.03783027594996427
+1053.0000000001712 0.03761956076394127
+1053.1000000001713 0.03742359427372786
+1053.2000000001713 0.03722757416473263
+1053.3000000001712 0.037031500444725265
+1053.4000000001713 0.03683537312147553
+1053.5000000001714 0.03663919220279237
+1053.6000000001713 0.036442957696408505
+1053.7000000001713 0.036246669610094345
+1053.8000000001714 0.03605032795165783
+1053.9000000001715 0.03585393272890717
+1054.0000000001714 0.03565748394950187
+1054.1000000001713 0.035460823797897015
+1054.2000000001715 0.03526418811531897
+1054.3000000001716 0.035067576934928596
+1054.4000000001715 0.03487099028995983
+1054.5000000001714 0.034674428213584865
+1054.6000000001716 0.03448486442231363
+1054.7000000001717 0.03429524857602299
+1054.8000000001716 0.034105580676305945
+1054.9000000001715 0.03391586072482677
+1055.0000000001717 0.033726088723070174
+1055.1000000001718 0.03353345657561102
+1055.2000000001717 0.033340883194777064
+1055.3000000001716 0.03314836858167711
+1055.4000000001718 0.03295591273738366
+1055.500000000172 0.03276351566295725
+1055.6000000001718 0.03256459067049163
+1055.7000000001717 0.03236580221726784
+1055.8000000001718 0.03216715026875511
+1055.900000000172 0.031968634790353584
+1056.000000000172 0.03177025574752813
+1056.1000000001718 0.03159163968927915
+1056.200000000172 0.03141300808856343
+1056.300000000172 0.031234360948908264
+1056.400000000172 0.03105569827380867
+1056.500000000172 0.030877020066780742
+1056.600000000172 0.030692112095324662
+1056.7000000001722 0.030507260950977978
+1056.800000000172 0.03032246664668473
+1056.900000000172 0.030137729195385418
+1057.0000000001721 0.029953048610093146
+1057.1000000001723 0.02977616873369793
+1057.2000000001722 0.029599334494785315
+1057.300000000172 0.029422545895688806
+1057.4000000001722 0.02924580293868087
+1057.5000000001723 0.029069105626146625
+1057.6000000001723 0.028886599359812342
+1057.7000000001722 0.028704210315504047
+1057.8000000001723 0.028521938467734834
+1057.9000000001724 0.028339783791165453
+1058.0000000001723 0.02815774626035973
+1058.1000000001723 0.027989953834536823
+1058.2000000001724 0.02782218703763265
+1058.3000000001725 0.027654445868225012
+1058.4000000001724 0.027486730324775877
+1058.5000000001723 0.027319040405861444
+1058.6000000001725 0.027151376109943455
+1058.7000000001726 0.026983737435597965
+1058.8000000001725 0.026816124381343835
+1058.9000000001724 0.026648536945671323
+1059.0000000001726 0.026480975127119985
+1059.1000000001727 0.026325682080451246
+1059.2000000001726 0.02617042940364026
+1059.3000000001725 0.026015217112087496
+1059.4000000001727 0.025860045221109323
+1059.5000000001728 0.025704913746083725
+1059.6000000001727 0.025555011537156076
+1059.7000000001726 0.025405088892574222
+1059.8000000001728 0.025255145815259027
+1059.900000000173 0.025105182308053097
+1060.0000000001728 0.024955198373898656
+1060.1000000001727 0.02480207506332699
+1060.2000000001728 0.024648969588114186
+1060.300000000173 0.02449588194906718
+1060.400000000173 0.02434281214696681
+1060.5000000001728 0.024189760182559417
+1060.600000000173 0.024031845503177496
+1060.700000000173 0.023874010801666425
+1060.800000000173 0.023716256067958012
+1060.900000000173 0.02355858129195767
+1061.000000000173 0.0234009864636136
+1061.1000000001732 0.02325448361091047
+1061.200000000173 0.023108005330227454
+1061.300000000173 0.022961551619338494
+1061.4000000001731 0.022815122476041283
+1061.5000000001733 0.02266871789808651
+1061.6000000001732 0.022522337883248963
+1061.700000000173 0.022375982429326202
+1061.8000000001732 0.022229651534092124
+1061.9000000001733 0.02208334519532133
+1062.0000000001733 0.02193706341080881
+1062.1000000001732 0.02180250789122719
+1062.2000000001733 0.02166799876369437
+1062.3000000001734 0.021533536033600694
+1062.4000000001733 0.021399119706312766
+1062.5000000001733 0.021264749787203205
+1062.6000000001734 0.021134726327672094
+1062.7000000001735 0.021004696375603326
+1062.8000000001734 0.020874659932380964
+1062.9000000001733 0.02074461699943241
+1063.0000000001735 0.020614567578165117
+1063.1000000001736 0.020485646198422615
+1063.2000000001735 0.02035670372065893
+1063.3000000001734 0.02022774014916607
+1063.4000000001736 0.02009875548829911
+1063.5000000001737 0.019969749742342877
+1063.6000000001736 0.01983668614595918
+1063.7000000001735 0.019703653985011945
+1063.8000000001737 0.019570653276628065
+1063.9000000001738 0.019437684038013547
+1064.0000000001737 0.019304746286372874
+1064.1000000001736 0.01918528302988459
+1064.2000000001738 0.01906585262000909
+1064.300000000174 0.018946455051046435
+1064.4000000001738 0.01882709031733712
+1064.5000000001737 0.01870775841318226
+1064.6000000001738 0.01858845933294234
+1064.700000000174 0.018469193070900957
+1064.800000000174 0.018349959621400846
+1064.9000000001738 0.01823075897878441
+1065.000000000174 0.01811159113736305
+1065.100000000174 0.017996262516299013
+1065.200000000174 0.01788091709365168
+1065.300000000174 0.01776555486871138
+1065.400000000174 0.017650175840749644
+1065.5000000001742 0.01753478000902034
+1065.600000000174 0.01741936737283237
+1065.700000000174 0.017303937931439136
+1065.8000000001741 0.017188491684112503
+1065.9000000001743 0.017073028630124967
+1066.0000000001742 0.016957548768790884
+1066.100000000174 0.01685587993226533
+1066.2000000001742 0.016754194948657965
+1066.3000000001744 0.016652493820045338
+1066.4000000001743 0.016550776548486343
+1066.5000000001742 0.01644904313603943
+1066.6000000001743 0.0163472935847631
+1066.7000000001744 0.016245527896733267
+1066.8000000001744 0.01614374607399175
+1066.9000000001743 0.01604194811861388
+1067.0000000001744 0.01594013403263659
+1067.1000000001745 0.01583562893614855
+1067.2000000001744 0.015731142679261758
+1067.3000000001744 0.015626675261034326
+1067.4000000001745 0.015522226680573365
+1067.5000000001746 0.015417796936937275
+1067.6000000001745 0.015313386029216815
+1067.7000000001744 0.01520899395647002
+1067.8000000001746 0.01510462071777113
+1067.9000000001747 0.015000266312210436
+1068.0000000001746 0.014895930738889424
+1068.1000000001745 0.01480717892215036
+1068.2000000001747 0.014718420339495409
+1068.3000000001748 0.014629655007411433
+1068.4000000001747 0.014540882942383357
+1068.5000000001746 0.014452104160878726
+1068.6000000001748 0.014363318679393484
+1068.700000000175 0.014274526514391915
+1068.8000000001748 0.014185727682351547
+1068.9000000001747 0.014096922199747577
+1069.0000000001749 0.014008110083055853
+1069.100000000175 0.013929070966836984
+1069.200000000175 0.013849991950345593
+1069.3000000001748 0.013770873035683093
+1069.400000000175 0.013691714224965615
+1069.500000000175 0.013612515520342998
+1069.600000000175 0.013536027589924466
+1069.700000000175 0.013459467542795535
+1069.800000000175 0.013382835356754346
+1069.9000000001752 0.013306131009573476
+1070.000000000175 0.013229354479060491
+1070.100000000175 0.013147532752992682
+1070.2000000001751 0.013065699524758004
+1070.3000000001753 0.012983854806970913
+1070.4000000001752 0.012901998612258478
+1070.500000000175 0.01282013095325957
+1070.6000000001752 0.012738251842585063
+1070.7000000001754 0.012656361292858584
+1070.8000000001753 0.01257445931670257
+1070.9000000001752 0.012492545926724972
+1071.0000000001753 0.012410621135581744
+1071.1000000001754 0.012341833344889
+1071.2000000001754 0.012273043716928948
+1071.3000000001753 0.012204252252532053
+1071.4000000001754 0.012135458952503245
+1071.5000000001755 0.012066663817673058
+1071.6000000001754 0.01199786684884677
+1071.7000000001754 0.011929068046866744
+1071.8000000001755 0.011860267412537755
+1071.9000000001756 0.011791464946677366
+1072.0000000001755 0.011722660650117674
+1072.1000000001754 0.011662135287063226
+1072.2000000001756 0.011601593591543748
+1072.3000000001757 0.01154103556329623
+1072.4000000001756 0.011480461202081911
+1072.5000000001755 0.011419870507653807
+1072.6000000001757 0.011361565255539855
+1072.7000000001758 0.011303219100950838
+1072.8000000001757 0.011244832033745078
+1072.9000000001756 0.011186404043710066
+1073.0000000001758 0.011127935120667952
+1073.100000000176 0.011062567580867752
+1073.2000000001758 0.01099723407629862
+1073.3000000001757 0.010931934632964494
+1073.4000000001759 0.010866669276849568
+1073.500000000176 0.010801438033903996
+1073.600000000176 0.010734070238472965
+1073.7000000001758 0.01066676383016936
+1073.800000000176 0.010599518797696049
+1073.900000000176 0.01053233512976846
+1074.000000000176 0.01046521281511449
+1074.100000000176 0.01040464311653054
+1074.200000000176 0.010344130524493091
+1074.3000000001762 0.010283675054715426
+1074.400000000176 0.010223276722868426
+1074.500000000176 0.01016293554466981
+1074.6000000001761 0.010110853404282843
+1074.7000000001763 0.010058740592809359
+1074.8000000001762 0.01000659710476
+1074.900000000176 0.009954422934624091
+1075.0000000001762 0.009902218076922722
+1075.1000000001764 0.009850449646947226
+1075.2000000001763 0.009798641909958765
+1075.3000000001762 0.009746794918020772
+1075.4000000001763 0.009694908723166308
+1075.5000000001764 0.00964298337742213
+1075.6000000001764 0.009587146120849934
+1075.7000000001763 0.009531316478225025
+1075.8000000001764 0.009475494464062307
+1075.9000000001765 0.009419680092863742
+1076.0000000001764 0.00936387337911489
+1076.1000000001764 0.009311554865230805
+1076.2000000001765 0.00925920338298381
+1076.3000000001766 0.009206818937167278
+1076.4000000001765 0.009154401532622128
+1076.5000000001764 0.009101951174122016
+1076.6000000001766 0.009043988874876414
+1076.7000000001767 0.008986057223163747
+1076.8000000001766 0.008928156283608794
+1076.9000000001765 0.00887028612085225
+1077.0000000001767 0.008812446799523426
+1077.1000000001768 0.008760273881879816
+1077.2000000001767 0.008708143107448938
+1077.3000000001766 0.008656054503183446
+1077.4000000001768 0.008604008096072155
+1077.500000000177 0.00855200391310117
+1077.6000000001768 0.008508676725175203
+1077.7000000001767 0.008465296798413933
+1077.8000000001769 0.00842186411491202
+1077.900000000177 0.008378378656781938
+1078.000000000177 0.008334840406096248
+1078.1000000001768 0.008283392157324479
+1078.200000000177 0.008231893494892742
+1078.300000000177 0.008180344453270523
+1078.400000000177 0.008128745066921487
+1078.500000000177 0.008077095370314593
+1078.600000000177 0.008022165719638963
+1078.7000000001772 0.007967238354568423
+1078.800000000177 0.00791230955443527
+1078.900000000177 0.00785737596221754
+1079.0000000001771 0.007802434575269555
+1079.1000000001773 0.007757112777879332
+1079.2000000001772 0.007711744752433131
+1079.300000000177 0.0076663284638167385
+1079.4000000001772 0.0076208621850960955
+1079.5000000001774 0.007575344490023168
+1079.6000000001773 0.0075236954086838415
+1079.7000000001772 0.007472066397053797
+1079.8000000001773 0.0074204571223209885
+1079.9000000001774 0.007368867512706883
+1080.0000000001774 0.007317297749035281
+1080.1000000001773 0.007258328218319053
+1080.2000000001774 0.00719949152503271
+1080.3000000001775 0.007140788338753243
+1080.4000000001774 0.007082219544009794
+1080.5000000001774 0.007023786230822433
+1080.6000000001775 0.006971156140222529
+1080.7000000001776 0.0069185765272326664
+1080.8000000001775 0.006866049223421189
+1080.9000000001774 0.006813576235217633
+1081.0000000001776 0.006761159735519967
+1081.1000000001777 0.006719541605295767
+1081.2000000001776 0.00667792925293476
+1081.3000000001775 0.006636325270663729
+1081.4000000001777 0.0065947324016404065
+1081.5000000001778 0.006553153533257899
+1081.6000000001777 0.006515558680676536
+1081.7000000001776 0.006477921527224851
+1081.8000000001778 0.0064402418545959515
+1081.900000000178 0.0064025194560977505
+1082.0000000001778 0.0063647541365087126
+1082.1000000001777 0.006326651470942824
+1082.2000000001779 0.006288510248307528
+1082.300000000178 0.006250330288929758
+1082.400000000178 0.006212111423900063
+1082.5000000001778 0.006173853494876306
+1082.600000000178 0.006128122066548389
+1082.700000000178 0.006082450342442946
+1082.800000000178 0.006036838398672597
+1082.900000000178 0.005991286316169597
+1083.000000000178 0.00594579418047343
+1083.1000000001782 0.005894545905081689
+1083.200000000178 0.005843349929880595
+1083.300000000178 0.005792206397525046
+1083.4000000001781 0.005741115454092681
+1083.5000000001783 0.005690077248856354
+1083.6000000001782 0.0056471302215940836
+1083.700000000178 0.005604099110214848
+1083.8000000001782 0.005560986612627824
+1083.9000000001784 0.00551779516619879
+1084.0000000001783 0.005474526954441913
+1084.1000000001782 0.005442582968835864
+1084.2000000001783 0.005410615253981272
+1084.3000000001784 0.005378625380163335
+1084.4000000001784 0.00534661470387305
+1084.5000000001783 0.005314584372961754
+1084.6000000001784 0.00527826057127003
+1084.7000000001785 0.0052419752596057365
+1084.8000000001784 0.005205728766780629
+1084.9000000001784 0.005169521226933383
+1085.0000000001785 0.005133352585765766
+1085.1000000001786 0.005086530977386788
+1085.2000000001785 0.005039815571271937
+1085.3000000001784 0.004993205690006459
+1085.4000000001786 0.004946700497846148
+1085.5000000001787 0.004900299008621923
+1085.6000000001786 0.004848062478993409
+1085.7000000001785 0.004796028553689138
+1085.8000000001787 0.004744195855622806
+1085.9000000001788 0.004692562897223716
+1086.0000000001787 0.004641128088699237
+1086.1000000001786 0.004605285129652007
+1086.2000000001788 0.004569476458547711
+1086.300000000179 0.00453370027613471
+1086.4000000001788 0.00449795468733953
+1086.5000000001787 0.004462237707146391
+1086.6000000001789 0.004437515378482371
+1086.700000000179 0.004412658005903703
+1086.800000000179 0.004387665618722253
+1086.9000000001788 0.0043625382462643926
+1087.000000000179 0.00433727591784161
+1087.100000000179 0.004310821083835083
+1087.200000000179 0.004284247522711881
+1087.300000000179 0.004257555275569635
+1087.400000000179 0.004230744383490254
+1087.5000000001792 0.004203814887535777
+1087.600000000179 0.004171703058161192
+1087.700000000179 0.004139556843186065
+1087.8000000001791 0.004107376255670201
+1087.9000000001793 0.004075161308688524
+1088.0000000001792 0.004042912015287872
+1088.100000000179 0.004005672903080237
+1088.2000000001792 0.003968485357936398
+1088.3000000001794 0.00393134936235751
+1088.4000000001793 0.003894264898841567
+1088.5000000001792 0.0038572319498871577
+1088.6000000001793 0.003817929098073319
+1088.7000000001794 0.003778719811653174
+1088.8000000001794 0.0037396040560199128
+1088.9000000001793 0.003700581796560611
+1089.0000000001794 0.003661652998689181
+1089.1000000001795 0.0036259935969409295
+1089.2000000001794 0.0035903664391732986
+1089.3000000001794 0.0035547715413462716
+1089.4000000001795 0.003519208919423218
+1089.5000000001796 0.003483678589357551
+1089.6000000001795 0.0034488854282246893
+1089.7000000001794 0.003414110947537763
+1089.8000000001796 0.003379355157981758
+1089.9000000001797 0.0033446180702380976
+1090.0000000001796 0.0033098996950044974
+1090.1000000001795 0.0032804743288653696
+1090.2000000001797 0.0032510890761373178
+1090.3000000001798 0.0032217439239968495
+1090.4000000001797 0.0031924388596229376
+1090.5000000001796 0.003163173870229652
+1090.6000000001798 0.00314103204102959
+1090.70000000018 0.0031188069945643237
+1090.8000000001798 0.0030964987615934
+1090.9000000001797 0.0030741073728735606
+1091.0000000001799 0.003051632859152277
+1091.10000000018 0.003027237520153095
+1091.20000000018 0.0030027924490494246
+1091.3000000001798 0.0029782976662694463
+1091.40000000018 0.0029537531922441116
+1091.50000000018 0.002929159047383201
+1091.60000000018 0.0028945199567948494
+1091.70000000018 0.0028600212321382695
+1091.80000000018 0.002825662829247712
+1091.9000000001802 0.002791444703955435
+1092.00000000018 0.0027573668120723423
+1092.10000000018 0.002724398428204626
+1092.2000000001801 0.0026915491372495512
+1092.3000000001803 0.0026588189531706594
+1092.4000000001802 0.002626207889906701
+1092.50000000018 0.0025937159614316664
+1092.6000000001802 0.0025698650137718146
+1092.7000000001804 0.0025459571896363307
+1092.8000000001803 0.0025219924843805338
+1092.9000000001802 0.0024979708933533765
+1093.0000000001803 0.002473892411922527
+1093.1000000001804 0.0024516476936342043
+1093.2000000001804 0.0024293023981371837
+1093.3000000001803 0.0024068565990374084
+1093.4000000001804 0.0023843103699354106
+1093.5000000001805 0.0023616637844053076
+1093.6000000001804 0.0023341484819875877
+1093.7000000001804 0.0023066453426972442
+1093.8000000001805 0.0022791543655615617
+1093.9000000001806 0.002251675549615132
+1094.0000000001805 0.002224208893883806
+1094.1000000001804 0.0021998115806978794
+1094.2000000001806 0.0021754913604052377
+1094.3000000001807 0.002151248220658537
+1094.4000000001806 0.002127082149108479
+1094.5000000001805 0.002102993133419537
+1094.6000000001807 0.002082846236699495
+1094.7000000001808 0.0020627016075469755
+1094.8000000001807 0.0020425592462276587
+1094.9000000001806 0.002022419153011467
+1095.0000000001808 0.0020022813281634208
+1095.100000000181 0.0019818334326221782
+1095.2000000001808 0.0019613941165964703
+1095.3000000001807 0.0019409633803396306
+1095.4000000001809 0.0019205412241107324
+1095.500000000181 0.0019001276481574723
+1095.600000000181 0.001878170445764943
+1095.7000000001808 0.0018562548753504253
+1095.800000000181 0.0018343809363785084
+1095.900000000181 0.0018125486283158178
+1096.000000000181 0.001790757950637067
+1096.100000000181 0.0017735408787186186
+1096.200000000181 0.0017562627270684198
+1096.3000000001812 0.0017389235246452464
+1096.400000000181 0.001721523300409985
+1096.500000000181 0.0017040620833230532
+1096.6000000001811 0.0016861934479728642
+1096.7000000001813 0.0016682722266526818
+1096.8000000001812 0.0016502984447050325
+1096.900000000181 0.0016322721274812768
+1097.0000000001812 0.0016141933003052328
+1097.1000000001814 0.001590274627804171
+1097.2000000001813 0.0015664536542659862
+1097.3000000001812 0.0015427302647426874
+1097.4000000001813 0.001519104344296355
+1097.5000000001814 0.0014955757780024507
+1097.6000000001814 0.001473056748676166
+1097.7000000001813 0.0014506092675457905
+1097.8000000001814 0.0014282332575586353
+1097.9000000001815 0.0014059286416688366
+1098.0000000001814 0.0013836953428581138
+1098.1000000001814 0.0013705804818502161
+1098.2000000001815 0.0013574638052095513
+1098.3000000001816 0.001344345330528428
+1098.4000000001815 0.0013312250753950846
+1098.5000000001814 0.001487206550276981
+1098.6000000001816 0.0015846064275521934
+1098.7000000001817 0.0016228026388662095
+1098.8000000001816 0.0016040767811687378
+1098.9000000001815 0.0015347458442818399
+1099.0000000001817 0.0
+1099.1000000001818 0.0
+1099.2000000001817 0.0
+1099.3000000001816 0.0
+1099.4000000001818 0.0
+1099.500000000182 0.0
+1099.6000000001818 0.0
+1099.7000000001817 0.0
+1099.8000000001819 0.0
+1099.900000000182 0.0
+1100.000000000182 0.0
+1100.1000000001818 0.0
+1100.200000000182 0.0
+1100.300000000182 0.0
+1100.400000000182 0.0
+1100.500000000182 0.0
+1100.600000000182 0.0
+1100.7000000001822 0.0
+1100.800000000182 -0.0
+1100.900000000182 -0.0
+1101.0000000001821 -0.0
+1101.1000000001823 -0.0
+1101.2000000001822 -0.0
+1101.300000000182 -0.0
+1101.4000000001822 -0.0
+1101.5000000001824 0.0
+1101.6000000001823 0.0
+1101.7000000001822 0.0
+1101.8000000001823 0.0
+1101.9000000001824 0.0
+1102.0000000001824 0.0
+1102.1000000001823 0.0
+1102.2000000001824 0.0
+1102.3000000001825 0.0
+1102.4000000001824 0.0
+1102.5000000001824 0.0
+1102.6000000001825 0.0
+1102.7000000001826 0.0
+1102.8000000001825 0.0
+1102.9000000001824 0.0
+1103.0000000001826 0.0
+1103.1000000001827 0.0
+1103.2000000001826 0.0
+1103.3000000001825 0.0
+1103.4000000001827 0.0
+1103.5000000001828 0.0
+1103.6000000001827 0.0
+1103.7000000001826 0.0
+1103.8000000001828 0.0
+1103.900000000183 0.0
+1104.0000000001828 0.0
+1104.1000000001827 0.0
+1104.2000000001829 0.0
+1104.300000000183 0.0
+1104.400000000183 0.0
+1104.5000000001828 0.0
+1104.600000000183 0.0
+1104.700000000183 0.0
+1104.800000000183 0.0
+1104.900000000183 0.0
+1105.000000000183 0.0
+1105.1000000001832 0.0
+1105.200000000183 0.0
+1105.300000000183 0.0
+1105.4000000001831 0.0
+1105.5000000001833 0.0
+1105.6000000001832 0.0
+1105.700000000183 0.0
+1105.8000000001832 0.0
+1105.9000000001834 0.0
+1106.0000000001833 0.0
+1106.1000000001832 0.0
+1106.2000000001833 0.0
+1106.3000000001834 0.0
+1106.4000000001834 0.0
+1106.5000000001833 0.0
+1106.6000000001834 0.0
+1106.7000000001835 0.0
+1106.8000000001834 0.0
+1106.9000000001834 0.0
+1107.0000000001835 0.0
+1107.1000000001836 0.0
+1107.2000000001835 0.0
+1107.3000000001834 0.0
+1107.4000000001836 0.0
+1107.5000000001837 0.0
+1107.6000000001836 0.0
+1107.7000000001835 0.0
+1107.8000000001837 0.0
+1107.9000000001838 0.0
+1108.0000000001837 0.0
+1108.1000000001836 0.0
+1108.2000000001838 0.0
+1108.300000000184 0.0
+1108.4000000001838 0.0
+1108.5000000001837 0.0
+1108.6000000001839 0.0
+1108.700000000184 0.0
+1108.800000000184 0.0
+1108.9000000001838 0.0
+1109.000000000184 0.0
+1109.100000000184 0.0
+1109.200000000184 0.0
+1109.300000000184 0.0
+1109.400000000184 0.0
+1109.5000000001842 0.0
+1109.600000000184 0.0
+1109.700000000184 0.0
+1109.8000000001841 0.0
+1109.9000000001843 0.0
+1110.0000000001842 0.0
+1110.100000000184 0.0
+1110.2000000001842 0.0
+1110.3000000001844 0.0
+1110.4000000001843 0.0
+1110.5000000001842 0.0
+1110.6000000001843 0.0
+1110.7000000001844 0.0
+1110.8000000001844 0.0
+1110.9000000001843 0.0
+1111.0000000001844 0.0
+1111.1000000001845 0.0
+1111.2000000001844 0.0
+1111.3000000001844 0.0
+1111.4000000001845 0.0
+1111.5000000001846 0.0
+1111.6000000001845 0.0
+1111.7000000001844 0.0
+1111.8000000001846 0.0
+1111.9000000001847 0.0
+1112.0000000001846 0.0
+1112.1000000001845 0.0
+1112.2000000001847 0.0
+1112.3000000001848 0.0
+1112.4000000001847 0.0
+1112.5000000001846 0.0
+1112.6000000001848 0.0
+1112.700000000185 0.0
+1112.8000000001848 0.0
+1112.9000000001847 0.0
+1113.0000000001849 0.0
+1113.100000000185 0.0
+1113.200000000185 0.0
+1113.3000000001848 0.0
+1113.400000000185 0.0
+1113.500000000185 0.0
+1113.600000000185 0.0
+1113.700000000185 0.0
+1113.800000000185 0.0
+1113.9000000001852 0.0
+1114.000000000185 0.0
+1114.100000000185 0.0
+1114.2000000001851 0.0
+1114.3000000001853 0.0
+1114.4000000001852 0.0
+1114.500000000185 0.0
+1114.6000000001852 0.0
+1114.7000000001854 0.0
+1114.8000000001853 0.0
+1114.9000000001852 0.0
+1115.0000000001853 0.0
+1115.1000000001854 0.0
+1115.2000000001854 0.0
+1115.3000000001853 0.0
+1115.4000000001854 0.0
+1115.5000000001855 0.0
+1115.6000000001854 0.0
+1115.7000000001854 0.0
+1115.8000000001855 0.0
+1115.9000000001856 0.0
+1116.0000000001855 0.0
+1116.1000000001854 0.0
+1116.2000000001856 0.0
+1116.3000000001857 0.0
+1116.4000000001856 0.0
+1116.5000000001855 0.0
+1116.6000000001857 0.0
+1116.7000000001858 0.0
+1116.8000000001857 0.0
+1116.9000000001856 0.0
+1117.0000000001858 0.0
+1117.100000000186 0.0
+1117.2000000001858 0.0
+1117.3000000001857 0.0
+1117.4000000001859 0.0
+1117.500000000186 0.0
+1117.600000000186 0.0
+1117.7000000001858 0.0
+1117.800000000186 0.0
+1117.900000000186 0.0
+1118.000000000186 0.0
+1118.100000000186 0.0
+1118.200000000186 0.0
+1118.3000000001862 0.0
+1118.400000000186 0.0
+1118.500000000186 0.0
+1118.6000000001861 0.0
+1118.7000000001863 0.0
+1118.8000000001862 0.0
+1118.900000000186 0.0
+1119.0000000001862 0.0
+1119.1000000001864 0.0
+1119.2000000001863 0.0
+1119.3000000001862 0.0
+1119.4000000001863 0.0
+1119.5000000001864 0.0
+1119.6000000001864 0.0
+1119.7000000001863 0.0
+1119.8000000001864 0.0
+1119.9000000001865 0.0
+1120.0000000001864 0.0
+1120.1000000001864 0.0
+1120.2000000001865 0.0
+1120.3000000001866 0.0
+1120.4000000001865 0.0
+1120.5000000001864 0.0
+1120.6000000001866 0.0
+1120.7000000001867 0.0
+1120.8000000001866 0.0
+1120.9000000001865 0.0
+1121.0000000001867 0.0
+1121.1000000001868 0.0
+1121.2000000001867 0.0
+1121.3000000001866 0.0
+1121.4000000001868 0.0
+1121.500000000187 0.0
+1121.6000000001868 0.0
+1121.7000000001867 0.0
+1121.8000000001869 0.0
+1121.900000000187 0.0
+1122.000000000187 0.0
+1122.1000000001868 0.0
+1122.200000000187 0.0
+1122.300000000187 0.0
+1122.400000000187 0.0
+1122.500000000187 0.0
+1122.600000000187 0.0
+1122.7000000001872 0.0
+1122.800000000187 0.0
+1122.900000000187 0.0
+1123.0000000001871 0.0
+1123.1000000001873 0.0
+1123.2000000001872 0.0
+1123.300000000187 0.0
+1123.4000000001872 0.0
+1123.5000000001874 0.0
+1123.6000000001873 0.0
+1123.7000000001872 0.0
+1123.8000000001873 0.0
+1123.9000000001874 0.0
+1124.0000000001874 0.0
+1124.1000000001873 0.0
+1124.2000000001874 0.0
+1124.3000000001875 0.0
+1124.4000000001874 0.0
+1124.5000000001874 0.0
+1124.6000000001875 0.0
+1124.7000000001876 0.0
+1124.8000000001875 0.0
+1124.9000000001874 0.0
+1125.0000000001876 0.0
+1125.1000000001877 0.0
+1125.2000000001876 0.0
+1125.3000000001875 0.0
+1125.4000000001877 0.0
+1125.5000000001878 0.0
+1125.6000000001877 0.0
+1125.7000000001876 0.0
+1125.8000000001878 0.0
+1125.900000000188 0.0
+1126.0000000001878 0.0
+1126.1000000001877 0.0
+1126.2000000001879 0.0
+1126.300000000188 0.0
+1126.400000000188 0.0
+1126.5000000001878 0.0
+1126.600000000188 0.0
+1126.700000000188 0.0
+1126.800000000188 0.0
+1126.900000000188 0.0
+1127.000000000188 0.0
+1127.1000000001882 0.0
+1127.200000000188 0.0
+1127.300000000188 0.0
+1127.4000000001881 0.0
+1127.5000000001883 0.0
+1127.6000000001882 0.0
+1127.700000000188 0.0
+1127.8000000001882 0.0
+1127.9000000001884 0.0
+1128.0000000001883 0.0
+1128.1000000001882 0.0
+1128.2000000001883 0.0
+1128.3000000001884 0.0
+1128.4000000001884 0.0
+1128.5000000001883 0.0
+1128.6000000001884 0.0
+1128.7000000001885 0.0
+1128.8000000001884 0.0
+1128.9000000001884 0.0
+1129.0000000001885 0.0
+1129.1000000001886 0.0
+1129.2000000001885 0.0
+1129.3000000001884 0.0
+1129.4000000001886 0.0
+1129.5000000001887 0.0
+1129.6000000001886 0.0
+1129.7000000001885 0.0
+1129.8000000001887 0.0
+1129.9000000001888 0.0
+1130.0000000001887 0.0
+1130.1000000001886 0.0
+1130.2000000001888 0.0
+1130.300000000189 0.0
+1130.4000000001888 0.0
+1130.5000000001887 0.0
+1130.6000000001889 0.0
+1130.700000000189 0.0
+1130.800000000189 0.0
+1130.9000000001888 0.0
+1131.000000000189 0.0
+1131.100000000189 0.0
+1131.200000000189 0.0
+1131.300000000189 0.0
+1131.400000000189 0.0
+1131.5000000001892 0.0
+1131.600000000189 0.0
+1131.700000000189 0.0
+1131.8000000001891 0.0
+1131.9000000001893 0.0
+1132.0000000001892 0.0
+1132.100000000189 0.0
+1132.2000000001892 0.0
+1132.3000000001894 0.0
+1132.4000000001893 0.0
+1132.5000000001892 0.0
+1132.6000000001893 0.0
+1132.7000000001894 0.0
+1132.8000000001894 0.0
+1132.9000000001893 0.0
+1133.0000000001894 0.0
+1133.1000000001895 0.0
+1133.2000000001894 0.0
+1133.3000000001894 0.0
+1133.4000000001895 0.0
+1133.5000000001896 0.0
+1133.6000000001895 0.0
+1133.7000000001894 0.0
+1133.8000000001896 0.0
+1133.9000000001897 0.0
+1134.0000000001896 0.0
+1134.1000000001895 0.0
+1134.2000000001897 0.0
+1134.3000000001898 0.0
+1134.4000000001897 0.0
+1134.5000000001896 0.0
+1134.6000000001898 0.0
+1134.70000000019 0.0
+1134.8000000001898 0.0
+1134.9000000001897 0.0
+1135.0000000001899 0.0
+1135.10000000019 0.0
+1135.20000000019 0.0
+1135.3000000001898 0.0
+1135.40000000019 0.0
+1135.50000000019 0.0
+1135.60000000019 0.0
+1135.70000000019 0.0
+1135.80000000019 0.0
+1135.9000000001902 0.0
+1136.00000000019 0.0
+1136.10000000019 0.0
+1136.2000000001901 0.0
+1136.3000000001903 0.0
+1136.4000000001902 0.0
+1136.50000000019 0.0
+1136.6000000001902 0.0
+1136.7000000001904 0.0
+1136.8000000001903 0.0
+1136.9000000001902 0.0
+1137.0000000001903 0.0
+1137.1000000001904 0.0
+1137.2000000001904 0.0
+1137.3000000001903 0.0
+1137.4000000001904 0.0
+1137.5000000001905 0.0
+1137.6000000001904 0.0
+1137.7000000001904 0.0
+1137.8000000001905 0.0
+1137.9000000001906 0.0
+1138.0000000001905 0.0
+1138.1000000001904 0.0
+1138.2000000001906 0.0
+1138.3000000001907 0.0
+1138.4000000001906 0.0
+1138.5000000001905 0.0
+1138.6000000001907 0.0
+1138.7000000001908 0.0
+1138.8000000001907 0.0
+1138.9000000001906 0.0
+1139.0000000001908 0.0
+1139.100000000191 0.0
+1139.2000000001908 0.0
+1139.3000000001907 0.0
+1139.4000000001909 0.0
+1139.500000000191 0.0
+1139.600000000191 0.0
+1139.7000000001908 0.0
+1139.800000000191 0.0
+1139.900000000191 0.0
+1140.000000000191 0.0
+1140.100000000191 0.0
+1140.200000000191 0.0
+1140.3000000001912 0.0
+1140.400000000191 0.0
+1140.500000000191 0.0
+1140.6000000001911 0.0
+1140.7000000001913 0.0
+1140.8000000001912 0.0
+1140.900000000191 0.0
+1141.0000000001912 0.0
+1141.1000000001914 0.0
+1141.2000000001913 0.0
+1141.3000000001912 0.0
+1141.4000000001913 0.0
+1141.5000000001914 0.0
+1141.6000000001914 0.0
+1141.7000000001913 0.0
+1141.8000000001914 0.0
+1141.9000000001915 0.0
+1142.0000000001914 0.0
+1142.1000000001914 0.0
+1142.2000000001915 0.0
+1142.3000000001916 0.0
+1142.4000000001915 0.0
+1142.5000000001914 0.0
+1142.6000000001916 0.0
+1142.7000000001917 0.0
+1142.8000000001916 0.0
+1142.9000000001915 0.0
+1143.0000000001917 0.0
+1143.1000000001918 0.0
+1143.2000000001917 0.0
+1143.3000000001916 0.0
+1143.4000000001918 0.0
+1143.500000000192 0.0
+1143.6000000001918 0.0
+1143.7000000001917 0.0
+1143.8000000001919 0.0
+1143.900000000192 0.0
+1144.000000000192 0.0
+1144.1000000001918 0.0
+1144.200000000192 0.0
+1144.300000000192 0.0
+1144.400000000192 0.0
+1144.500000000192 0.0
+1144.600000000192 0.0
+1144.7000000001922 0.0
+1144.800000000192 0.0
+1144.900000000192 0.0
+1145.0000000001921 0.0
+1145.1000000001923 0.0
+1145.2000000001922 0.0
+1145.300000000192 0.0
+1145.4000000001922 0.0
+1145.5000000001924 0.0
+1145.6000000001923 0.0
+1145.7000000001922 0.0
+1145.8000000001923 0.0
+1145.9000000001924 0.0
+1146.0000000001924 0.0
+1146.1000000001923 0.0
+1146.2000000001924 0.0
+1146.3000000001925 0.0
+1146.4000000001924 0.0
+1146.5000000001924 0.0
+1146.6000000001925 0.0
+1146.7000000001926 0.0
+1146.8000000001925 0.0
+1146.9000000001924 0.0
+1147.0000000001926 0.0
+1147.1000000001927 0.0
+1147.2000000001926 0.0
+1147.3000000001925 0.0
+1147.4000000001927 0.0
+1147.5000000001928 0.0
+1147.6000000001927 0.0
+1147.7000000001926 0.0
+1147.8000000001928 0.0
+1147.900000000193 0.0
+1148.0000000001928 0.0
+1148.1000000001927 0.0
+1148.2000000001929 0.0
+1148.300000000193 0.0
+1148.400000000193 0.0
+1148.5000000001928 0.0
+1148.600000000193 0.0
+1148.700000000193 0.0
+1148.800000000193 0.0
+1148.900000000193 0.0
+1149.000000000193 0.0
+1149.1000000001932 0.0
+1149.200000000193 0.0
+1149.300000000193 0.0
+1149.4000000001931 0.0
+1149.5000000001933 0.0
+1149.6000000001932 0.0
+1149.700000000193 0.0
+1149.8000000001932 0.0
+1149.9000000001934 0.0
+1150.0000000001933 0.0
diff --git a/filt_func/rubin/z.dat b/filt_func/rubin/z.dat
new file mode 100755
index 00000000..40e525d3
--- /dev/null
+++ b/filt_func/rubin/z.dat
@@ -0,0 +1,8508 @@
+# LSST Throughputs files created from syseng_throughputs repo
+# Version 1.9
+# sha1 fcc05772f99427e4a45cd1b9da1628dded9a06d5
+# Aerosols added to atmosphere
+# Wavelen_cutoff_BLUE 799.30
+# Wavelen_cutoff_RED 939.20
+# Wavelength(nm) Throughput(0-1)
+300.0 0.0
+300.1 0.0
+300.20000000000005 0.0
+300.30000000000007 0.0
+300.4000000000001 0.0
+300.5000000000001 0.0
+300.60000000000014 0.0
+300.70000000000016 0.0
+300.8000000000002 0.0
+300.9000000000002 0.0
+301.0000000000002 0.0
+301.10000000000025 0.0
+301.2000000000003 0.0
+301.3000000000003 0.0
+301.4000000000003 0.0
+301.50000000000034 0.0
+301.60000000000036 0.0
+301.7000000000004 0.0
+301.8000000000004 0.0
+301.90000000000043 0.0
+302.00000000000045 0.0
+302.1000000000005 0.0
+302.2000000000005 0.0
+302.3000000000005 0.0
+302.40000000000055 0.0
+302.50000000000057 0.0
+302.6000000000006 0.0
+302.7000000000006 0.0
+302.80000000000064 0.0
+302.90000000000066 0.0
+303.0000000000007 0.0
+303.1000000000007 0.0
+303.2000000000007 0.0
+303.30000000000075 0.0
+303.4000000000008 0.0
+303.5000000000008 0.0
+303.6000000000008 0.0
+303.70000000000084 0.0
+303.80000000000086 0.0
+303.9000000000009 0.0
+304.0000000000009 0.0
+304.10000000000093 0.0
+304.20000000000095 0.0
+304.300000000001 0.0
+304.400000000001 0.0
+304.500000000001 0.0
+304.60000000000105 0.0
+304.70000000000107 0.0
+304.8000000000011 0.0
+304.9000000000011 0.0
+305.00000000000114 0.0
+305.10000000000116 0.0
+305.2000000000012 0.0
+305.3000000000012 0.0
+305.4000000000012 0.0
+305.50000000000125 0.0
+305.6000000000013 0.0
+305.7000000000013 0.0
+305.8000000000013 0.0
+305.90000000000134 0.0
+306.00000000000136 0.0
+306.1000000000014 0.0
+306.2000000000014 0.0
+306.30000000000143 0.0
+306.40000000000146 0.0
+306.5000000000015 0.0
+306.6000000000015 0.0
+306.7000000000015 0.0
+306.80000000000155 0.0
+306.90000000000157 0.0
+307.0000000000016 0.0
+307.1000000000016 0.0
+307.20000000000164 0.0
+307.30000000000166 0.0
+307.4000000000017 0.0
+307.5000000000017 0.0
+307.6000000000017 0.0
+307.70000000000175 0.0
+307.8000000000018 0.0
+307.9000000000018 0.0
+308.0000000000018 0.0
+308.10000000000184 0.0
+308.20000000000186 0.0
+308.3000000000019 0.0
+308.4000000000019 0.0
+308.50000000000193 0.0
+308.60000000000196 0.0
+308.700000000002 0.0
+308.800000000002 0.0
+308.900000000002 0.0
+309.00000000000205 0.0
+309.10000000000207 0.0
+309.2000000000021 0.0
+309.3000000000021 0.0
+309.40000000000214 0.0
+309.50000000000216 0.0
+309.6000000000022 0.0
+309.7000000000022 0.0
+309.8000000000022 0.0
+309.90000000000225 0.0
+310.0000000000023 0.0
+310.1000000000023 0.0
+310.2000000000023 0.0
+310.30000000000234 0.0
+310.40000000000236 0.0
+310.5000000000024 0.0
+310.6000000000024 0.0
+310.70000000000243 0.0
+310.80000000000246 0.0
+310.9000000000025 0.0
+311.0000000000025 0.0
+311.1000000000025 0.0
+311.20000000000255 0.0
+311.30000000000257 0.0
+311.4000000000026 0.0
+311.5000000000026 0.0
+311.60000000000264 0.0
+311.70000000000266 0.0
+311.8000000000027 0.0
+311.9000000000027 0.0
+312.00000000000273 0.0
+312.10000000000275 0.0
+312.2000000000028 0.0
+312.3000000000028 0.0
+312.4000000000028 0.0
+312.50000000000284 0.0
+312.60000000000286 0.0
+312.7000000000029 0.0
+312.8000000000029 0.0
+312.90000000000293 0.0
+313.00000000000296 0.0
+313.100000000003 0.0
+313.200000000003 0.0
+313.300000000003 0.0
+313.40000000000305 0.0
+313.50000000000307 0.0
+313.6000000000031 0.0
+313.7000000000031 0.0
+313.80000000000314 0.0
+313.90000000000316 0.0
+314.0000000000032 0.0
+314.1000000000032 0.0
+314.20000000000323 0.0
+314.30000000000325 0.0
+314.4000000000033 0.0
+314.5000000000033 0.0
+314.6000000000033 0.0
+314.70000000000334 0.0
+314.80000000000337 0.0
+314.9000000000034 0.0
+315.0000000000034 0.0
+315.10000000000343 0.0
+315.20000000000346 0.0
+315.3000000000035 0.0
+315.4000000000035 0.0
+315.5000000000035 0.0
+315.60000000000355 0.0
+315.70000000000357 0.0
+315.8000000000036 0.0
+315.9000000000036 0.0
+316.00000000000364 0.0
+316.10000000000366 0.0
+316.2000000000037 0.0
+316.3000000000037 0.0
+316.40000000000373 0.0
+316.50000000000375 0.0
+316.6000000000038 0.0
+316.7000000000038 0.0
+316.8000000000038 0.0
+316.90000000000384 0.0
+317.00000000000387 0.0
+317.1000000000039 0.0
+317.2000000000039 0.0
+317.30000000000393 0.0
+317.40000000000396 0.0
+317.500000000004 0.0
+317.600000000004 0.0
+317.700000000004 0.0
+317.80000000000405 0.0
+317.90000000000407 0.0
+318.0000000000041 0.0
+318.1000000000041 0.0
+318.20000000000414 0.0
+318.30000000000416 0.0
+318.4000000000042 0.0
+318.5000000000042 0.0
+318.60000000000423 0.0
+318.70000000000425 0.0
+318.8000000000043 0.0
+318.9000000000043 0.0
+319.0000000000043 0.0
+319.10000000000434 0.0
+319.20000000000437 0.0
+319.3000000000044 0.0
+319.4000000000044 0.0
+319.50000000000443 0.0
+319.60000000000446 0.0
+319.7000000000045 0.0
+319.8000000000045 0.0
+319.9000000000045 0.0
+320.00000000000455 2.608869266023373e-22
+320.10000000000457 6.862571085041226e-12
+320.2000000000046 1.626854545004664e-11
+320.3000000000046 2.8687964396523257e-11
+320.40000000000464 4.4634300768670185e-11
+320.50000000000466 6.466582158962241e-11
+320.6000000000047 8.95330049259959e-11
+320.7000000000047 1.1983661519473885e-10
+320.80000000000473 1.5630415958495064e-10
+320.90000000000475 1.9971726550069323e-10
+321.0000000000048 2.5091327577556116e-10
+321.1000000000048 3.183320768183344e-10
+321.2000000000048 3.971737395177138e-10
+321.30000000000484 4.884235764642338e-10
+321.40000000000487 5.930860373510596e-10
+321.5000000000049 7.121847181240911e-10
+321.6000000000049 8.411202203716658e-10
+321.70000000000493 9.84627031075741e-10
+321.80000000000496 1.1434568914988235e-09
+321.900000000005 1.3183565778659266e-09
+322.000000000005 1.5100677600778475e-09
+322.100000000005 1.741790698738026e-09
+322.20000000000505 1.9963220538734223e-09
+322.30000000000507 2.274774326228702e-09
+322.4000000000051 2.5782652359155363e-09
+322.5000000000051 2.9079176786460683e-09
+322.60000000000514 3.292382071261634e-09
+322.70000000000516 3.7118313248415742e-09
+322.8000000000052 4.168173709952787e-09
+322.9000000000052 4.6633644813881795e-09
+323.00000000000523 5.199406274653162e-09
+323.10000000000525 5.9708311151900165e-09
+323.2000000000053 6.8211456286571045e-09
+323.3000000000053 7.75520703256862e-09
+323.4000000000053 8.778006281576449e-09
+323.50000000000534 9.894668789753337e-09
+323.60000000000537 1.10417566835276e-08
+323.7000000000054 1.2278641310758627e-08
+323.8000000000054 1.3609307211476378e-08
+323.90000000000543 1.5037801651615337e-08
+324.00000000000546 1.6568234787969987e-08
+324.1000000000055 1.851528927503892e-08
+324.2000000000055 2.0607310945604746e-08
+324.3000000000055 2.2849211707462818e-08
+324.40000000000555 2.5245869669339028e-08
+324.50000000000557 2.7802128838206408e-08
+324.6000000000056 3.050822952062498e-08
+324.7000000000056 3.3380677269803465e-08
+324.80000000000564 3.64239396781661e-08
+324.90000000000566 3.9642437399147384e-08
+325.0000000000057 4.304054404806238e-08
+325.1000000000057 4.723823481464026e-08
+325.20000000000573 5.171314597926598e-08
+325.30000000000575 5.647563743726436e-08
+325.4000000000058 6.15362061908306e-08
+325.5000000000058 6.690548768160693e-08
+325.6000000000058 7.290360781187837e-08
+325.70000000000584 7.92812240310507e-08
+325.80000000000587 8.605325108999668e-08
+325.9000000000059 9.323488852946361e-08
+326.0000000000059 1.0084162390549472e-07
+326.10000000000593 1.0774586375278682e-07
+326.20000000000596 1.1498683350247573e-07
+326.300000000006 1.2257491299906895e-07
+326.400000000006 1.3052065366013176e-07
+326.500000000006 1.3883478192066855e-07
+326.60000000000605 1.4681109724046835e-07
+326.70000000000607 1.5509788743375283e-07
+326.8000000000061 1.6370185365572512e-07
+326.9000000000061 1.726297404331781e-07
+327.00000000000614 1.8188833578184155e-07
+327.10000000000616 1.938645298374479e-07
+327.2000000000062 2.063446021867002e-07
+327.3000000000062 2.1933797368633066e-07
+327.40000000000623 2.3285399983346025e-07
+327.50000000000625 2.4690197023417943e-07
+327.6000000000063 2.617256292430431e-07
+327.7000000000063 2.77127882946725e-07
+327.8000000000063 2.931195230243034e-07
+327.90000000000634 3.09711321084252e-07
+328.00000000000637 3.2691402836177847e-07
+328.1000000000064 3.443056057978998e-07
+328.2000000000064 3.6235995772587894e-07
+328.30000000000643 3.810931070857026e-07
+328.40000000000646 4.005212705074333e-07
+328.5000000000065 4.206608590523559e-07
+328.6000000000065 4.4249615658281534e-07
+328.7000000000065 4.651617521923471e-07
+328.80000000000655 4.886786443392147e-07
+328.90000000000657 5.13068132818508e-07
+329.0000000000066 5.383518194962324e-07
+329.1000000000066 5.645058192529429e-07
+329.20000000000664 5.9156473092298e-07
+329.30000000000666 6.195483807912428e-07
+329.4000000000067 6.484768179735613e-07
+329.5000000000067 6.783703131738169e-07
+329.60000000000673 7.068782183592938e-07
+329.70000000000675 7.361956573270905e-07
+329.8000000000068 7.663352963921719e-07
+329.9000000000068 7.973098458200418e-07
+330.0000000000068 8.291320557816061e-07
+330.10000000000684 8.609489073360979e-07
+330.20000000000687 8.93553959238348e-07
+330.3000000000069 9.269560073011085e-07
+330.4000000000069 9.611637770452618e-07
+330.50000000000693 9.9618591721217e-07
+330.60000000000696 1.0333423837495973e-06
+330.700000000007 1.0714281062989098e-06
+330.800000000007 1.1104551588925565e-06
+330.900000000007 1.1504355750694133e-06
+331.00000000000705 1.191381339018585e-06
+331.10000000000707 1.2244006409490044e-06
+331.2000000000071 1.258092216354064e-06
+331.3000000000071 1.292464670749971e-06
+331.40000000000714 1.3275265805147979e-06
+331.50000000000716 1.363286484432577e-06
+331.6000000000072 1.4026738950893548e-06
+331.7000000000072 1.4429190714202516e-06
+331.80000000000723 1.4840348669762222e-06
+331.90000000000725 1.5260342437644325e-06
+332.0000000000073 1.5689302722807557e-06
+332.1000000000073 1.6181922826434363e-06
+332.2000000000073 1.6685818857949504e-06
+332.30000000000734 1.720115915220796e-06
+332.40000000000737 1.7728113329832594e-06
+332.5000000000074 1.8266852295672382e-06
+332.6000000000074 1.877971641402541e-06
+332.70000000000744 1.9302668829804456e-06
+332.80000000000746 1.9835828504630803e-06
+332.9000000000075 2.037931502648968e-06
+333.0000000000075 2.093324861445553e-06
+333.1000000000075 2.1365808382738607e-06
+333.20000000000755 2.180417839808241e-06
+333.30000000000757 2.2248393634141458e-06
+333.4000000000076 2.2698488990171777e-06
+333.5000000000076 2.3154499292609065e-06
+333.60000000000764 2.364499178815764e-06
+333.70000000000766 2.4142584525916262e-06
+333.8000000000077 2.464737705691354e-06
+333.9000000000077 2.5159469281146056e-06
+334.00000000000773 2.56789612307389e-06
+334.10000000000775 2.6195022369161514e-06
+334.2000000000078 2.671901809868677e-06
+334.3000000000078 2.7251067936740967e-06
+334.4000000000078 2.779129084388929e-06
+334.50000000000784 2.8339804956003956e-06
+334.60000000000787 2.890820553066841e-06
+334.7000000000079 2.9485512669110734e-06
+334.8000000000079 3.007184805586025e-06
+334.90000000000794 3.0667331427434433e-06
+335.00000000000796 3.1272080217455936e-06
+335.100000000008 3.179693425840954e-06
+335.200000000008 3.2328748614881067e-06
+335.300000000008 3.2867591268322075e-06
+335.40000000000805 3.341352597493915e-06
+335.5000000000081 3.39666118863705e-06
+335.6000000000081 3.44867584465491e-06
+335.7000000000081 3.5012999049159026e-06
+335.80000000000814 3.554535708736146e-06
+335.90000000000816 3.608384967199923e-06
+336.0000000000082 3.6628487219606776e-06
+336.1000000000082 3.716155037389912e-06
+336.20000000000823 3.770000472360646e-06
+336.30000000000825 3.824382291821672e-06
+336.4000000000083 3.879296911213236e-06
+336.5000000000083 3.9347398513209234e-06
+336.6000000000083 3.9907053617835004e-06
+336.70000000000834 4.047217441667936e-06
+336.80000000000837 4.104279063484093e-06
+336.9000000000084 4.1618931959356266e-06
+337.0000000000084 4.220062803289128e-06
+337.10000000000844 4.2708953598451736e-06
+337.20000000000846 4.322175348780332e-06
+337.3000000000085 4.373905329854475e-06
+337.4000000000085 4.426087861020346e-06
+337.5000000000085 4.478725497875668e-06
+337.60000000000855 4.5406001768508836e-06
+337.7000000000086 4.603136335279485e-06
+337.8000000000086 4.666339091808079e-06
+337.9000000000086 4.730213596366683e-06
+338.00000000000864 4.794765030587987e-06
+338.10000000000866 4.856167436952302e-06
+338.2000000000087 4.918179208258169e-06
+338.3000000000087 4.9808047544757665e-06
+338.40000000000873 5.044048513255453e-06
+338.50000000000875 5.107914950353962e-06
+338.6000000000088 5.166551195431679e-06
+338.7000000000088 5.225702473868994e-06
+338.8000000000088 5.285369566753142e-06
+338.90000000000884 5.3455533308761345e-06
+339.00000000000887 5.406254706177254e-06
+339.1000000000089 5.469790612668221e-06
+339.2000000000089 5.533876127282153e-06
+339.30000000000894 5.598512610697885e-06
+339.40000000000896 5.6637015358438115e-06
+339.500000000009 5.729444496740806e-06
+339.600000000009 5.791396953970292e-06
+339.700000000009 5.853814020797747e-06
+339.80000000000905 5.916696884188974e-06
+339.9000000000091 5.980046908129608e-06
+340.0000000000091 6.043865644074657e-06
+340.1000000000091 6.087877061804044e-06
+340.20000000000914 6.132120523654098e-06
+340.30000000000916 6.176597077290599e-06
+340.4000000000092 6.221307995421351e-06
+340.5000000000092 6.266254783579946e-06
+340.60000000000923 6.3161542349053355e-06
+340.70000000000925 6.366353543160706e-06
+340.8000000000093 6.41685533368861e-06
+340.9000000000093 6.4676624896662606e-06
+341.0000000000093 6.518778161136373e-06
+341.10000000000935 6.5781825200921615e-06
+341.20000000000937 6.6380010261954824e-06
+341.3000000000094 6.698238334444041e-06
+341.4000000000094 6.75889942027753e-06
+341.50000000000944 6.819989591165666e-06
+341.60000000000946 6.881514782339727e-06
+341.7000000000095 6.943467845022935e-06
+341.8000000000095 7.0058508369104665e-06
+341.9000000000095 7.068665819794019e-06
+342.00000000000955 7.131914859541107e-06
+342.1000000000096 7.189212575026496e-06
+342.2000000000096 7.246866870464701e-06
+342.3000000000096 7.304879262654031e-06
+342.40000000000964 7.363251270429033e-06
+342.50000000000966 7.4219844145994095e-06
+342.6000000000097 7.475625547687881e-06
+342.7000000000097 7.529556169433841e-06
+342.80000000000973 7.583777252714121e-06
+342.90000000000975 7.638289770156885e-06
+343.0000000000098 7.69309469423005e-06
+343.1000000000098 7.732485648398493e-06
+343.2000000000098 7.772029552244526e-06
+343.30000000000985 7.81172672957991e-06
+343.40000000000987 7.851577503115324e-06
+343.5000000000099 7.89158219447525e-06
+343.6000000000099 7.931762375360303e-06
+343.70000000000994 7.972111512602596e-06
+343.80000000000996 8.01262313654927e-06
+343.90000000001 8.053291176645909e-06
+344.00000000001 8.094109973744466e-06
+344.10000000001 8.130034078404173e-06
+344.20000000001005 8.166065550688739e-06
+344.3000000000101 8.202199969618953e-06
+344.4000000000101 8.238433386212764e-06
+344.5000000000101 8.274762334984361e-06
+344.60000000001014 8.3171915491089e-06
+344.70000000001016 8.359754675478758e-06
+344.8000000000102 8.402449604661342e-06
+344.9000000000102 8.445274748101414e-06
+345.00000000001023 8.488229052084405e-06
+345.10000000001025 8.53903253535376e-06
+345.2000000000103 8.590032439764371e-06
+345.3000000000103 8.641229611072122e-06
+345.4000000000103 8.692625490809122e-06
+345.50000000001035 8.744222133575776e-06
+345.60000000001037 8.792884150439356e-06
+345.7000000000104 8.841722591250905e-06
+345.8000000000104 8.890741328461433e-06
+345.90000000001044 8.939944913154781e-06
+346.00000000001046 8.98933859228902e-06
+346.1000000000105 9.030617906549303e-06
+346.2000000000105 9.072035699801238e-06
+346.3000000000105 9.113599150644943e-06
+346.40000000001055 9.155316176542167e-06
+346.5000000000106 9.197195448795986e-06
+346.6000000000106 9.239246027374077e-06
+346.7000000000106 9.281443942136885e-06
+346.80000000001064 9.32378973311264e-06
+346.90000000001066 9.366283944161686e-06
+347.0000000000107 9.408927122954091e-06
+347.1000000000107 9.4674971438245e-06
+347.20000000001073 9.526346311285065e-06
+347.30000000001075 9.58547574725234e-06
+347.4000000000108 9.644886580140536e-06
+347.5000000000108 9.70457994497283e-06
+347.6000000000108 9.764557385459772e-06
+347.70000000001085 9.82481935398841e-06
+347.80000000001087 9.885366699444355e-06
+347.9000000000109 9.946200270146657e-06
+348.0000000000109 1.00073209137997e-05
+348.10000000001094 1.0045919719737389e-05
+348.20000000001096 1.0084632926964535e-05
+348.300000000011 1.0123460666331087e-05
+348.400000000011 1.0162403067435823e-05
+348.500000000011 1.0201460258443225e-05
+348.60000000001105 1.0244252248883742e-05
+348.7000000000111 1.0287209014539156e-05
+348.8000000000111 1.0330317095016903e-05
+348.9000000000111 1.037356383894039e-05
+349.00000000001114 1.0416937423475558e-05
+349.10000000001116 1.0462750915636139e-05
+349.2000000000112 1.0508685557625524e-05
+349.3000000000112 1.0554732158300822e-05
+349.40000000001123 1.0600882429428517e-05
+349.50000000001125 1.0647129007599035e-05
+349.6000000000113 1.0693465476373465e-05
+349.7000000000113 1.0739886999954756e-05
+349.8000000000113 1.0786389312388918e-05
+349.90000000001135 1.0832969176951633e-05
+350.00000000001137 1.0879624409417736e-05
+350.1000000000114 1.0917899566196507e-05
+350.2000000000114 1.0956196251829091e-05
+350.30000000001144 1.0994515590973334e-05
+350.40000000001146 1.103285984830713e-05
+350.5000000000115 1.107123244806707e-05
+350.6000000000115 1.1113467583078412e-05
+350.7000000000115 1.1155764688053837e-05
+350.80000000001155 1.1198130612268451e-05
+350.9000000000116 1.12405734409056e-05
+351.0000000000116 1.1283102516881774e-05
+351.1000000000116 1.1313759770829463e-05
+351.20000000001164 1.1344463573653673e-05
+351.30000000001166 1.1375227012957347e-05
+351.4000000000117 1.1406064463577656e-05
+351.5000000000117 1.143699160390317e-05
+351.60000000001173 1.1471958697738875e-05
+351.70000000001176 1.1507005006493728e-05
+351.8000000000118 1.1542130485685188e-05
+351.9000000000118 1.157733510076365e-05
+352.0000000000118 1.1612618827131356e-05
+352.10000000001185 1.1643602921582543e-05
+352.20000000001187 1.167464236933035e-05
+352.3000000000119 1.1705737118179907e-05
+352.4000000000119 1.173688712681782e-05
+352.50000000001194 1.1768092364793353e-05
+352.60000000001196 1.1795342547778418e-05
+352.700000000012 1.1822634208794398e-05
+352.800000000012 1.1849967655087328e-05
+352.900000000012 1.1877343184448582e-05
+353.00000000001205 1.1904761085022194e-05
+353.1000000000121 1.1946981689064835e-05
+353.2000000000121 1.1989315804305873e-05
+353.3000000000121 1.2031763858295185e-05
+353.40000000001214 1.2074326269649397e-05
+353.50000000001216 1.2117003447943504e-05
+353.6000000000122 1.215567451599046e-05
+353.7000000000122 1.2194427300177516e-05
+353.80000000001223 1.2233267370513295e-05
+353.90000000001226 1.2272199956669158e-05
+354.0000000000123 1.231122994172527e-05
+354.1000000000123 1.2342034109406575e-05
+354.2000000000123 1.2372906984692496e-05
+354.30000000001235 1.2403852257384663e-05
+354.40000000001237 1.243487323708201e-05
+354.5000000000124 1.2465972848018584e-05
+354.6000000000124 1.249715362420958e-05
+354.70000000001244 1.2528416991759039e-05
+354.80000000001246 1.2559764473236699e-05
+354.9000000000125 1.2591197170639618e-05
+355.0000000000125 1.2622715760002336e-05
+355.1000000000125 1.2653958581369233e-05
+355.20000000001255 1.268528605536798e-05
+355.3000000000126 1.2716697542925588e-05
+355.4000000000126 1.2748191957351961e-05
+355.5000000000126 1.2779767758726863e-05
+355.60000000001264 1.2811422948409573e-05
+355.70000000001266 1.2843156524536649e-05
+355.8000000000127 1.2874965995916796e-05
+355.9000000000127 1.2906848426352168e-05
+356.00000000001273 1.2938800429197509e-05
+356.10000000001276 1.2976216570053914e-05
+356.2000000000128 1.3013717763984459e-05
+356.3000000000128 1.3051299292008593e-05
+356.4000000000128 1.3088955954371249e-05
+356.50000000001285 1.3126682064245738e-05
+356.60000000001287 1.3168843567289379e-05
+356.7000000000129 1.3211107933975908e-05
+356.8000000000129 1.3253475331954902e-05
+356.90000000001294 1.329594592894552e-05
+357.00000000001296 1.3338519892852986e-05
+357.100000000013 1.336904290722115e-05
+357.200000000013 1.3399614928638698e-05
+357.30000000001303 1.3430236001678422e-05
+357.40000000001305 1.346090617103364e-05
+357.5000000000131 1.3491625481327373e-05
+357.6000000000131 1.3522393977183788e-05
+357.7000000000131 1.3553211703252167e-05
+357.80000000001314 1.3584078704182964e-05
+357.90000000001316 1.3614995024603714e-05
+358.0000000000132 1.3645960709190998e-05
+358.1000000000132 1.367541455210703e-05
+358.20000000001323 1.3704912313429546e-05
+358.30000000001326 1.3734454029672387e-05
+358.4000000000133 1.3764039737350326e-05
+358.5000000000133 1.3793669473051377e-05
+358.6000000000133 1.3818795793840727e-05
+358.70000000001335 1.3843940895028042e-05
+358.80000000001337 1.3869110807904812e-05
+358.9000000000134 1.389431115702272e-05
+359.0000000000134 1.3919547156029188e-05
+359.10000000001344 1.3954535723649702e-05
+359.20000000001346 1.3989603126696512e-05
+359.3000000000135 1.4024753415697324e-05
+359.4000000000135 1.4059990224344444e-05
+359.50000000001353 1.4095316763761654e-05
+359.60000000001355 1.4130734653834673e-05
+359.7000000000136 1.4166246651973703e-05
+359.8000000000136 1.4201855051694914e-05
+359.9000000000136 1.4237561676727436e-05
+360.00000000001364 1.4273367874977509e-05
+360.10000000001367 1.4297940021785393e-05
+360.2000000000137 1.4322574272051483e-05
+360.3000000000137 1.4347270367387045e-05
+360.40000000001373 1.4372027551321832e-05
+360.50000000001376 1.4396844565185229e-05
+360.6000000000138 1.4426401094031185e-05
+360.7000000000138 1.4456026936907698e-05
+360.8000000000138 1.4485719145226397e-05
+360.90000000001385 1.4515474259582822e-05
+361.00000000001387 1.4545288304574855e-05
+361.1000000000139 1.4582313635269094e-05
+361.2000000000139 1.4619416631207756e-05
+361.30000000001394 1.465659179532619e-05
+361.40000000001396 1.469383308219811e-05
+361.500000000014 1.473113389140597e-05
+361.600000000014 1.4768487061440504e-05
+361.70000000001403 1.4805911810596997e-05
+361.80000000001405 1.4843407984172423e-05
+361.9000000000141 1.4880975410022736e-05
+362.0000000000141 1.4918613898257428e-05
+362.1000000000141 1.494847142701184e-05
+362.20000000001414 1.4978371488255006e-05
+362.30000000001417 1.5008313790481113e-05
+362.4000000000142 1.5038298024346415e-05
+362.5000000000142 1.50683238625093e-05
+362.60000000001423 1.5103236399138269e-05
+362.70000000001426 1.5138207761690693e-05
+362.8000000000143 1.5173238110822619e-05
+362.9000000000143 1.5208327623428416e-05
+363.0000000000143 1.524347649300503e-05
+363.10000000001435 1.5280914193288568e-05
+363.20000000001437 1.5318420858925385e-05
+363.3000000000144 1.5355996753140815e-05
+363.4000000000144 1.5393642156550133e-05
+363.50000000001444 1.5431357367435423e-05
+363.60000000001446 1.546421087569476e-05
+363.7000000000145 1.549711571211672e-05
+363.8000000000145 1.5530072139873938e-05
+363.90000000001453 1.5563080408287576e-05
+364.00000000001455 1.559614075248105e-05
+364.1000000000146 1.562532461925476e-05
+364.2000000000146 1.5654546784240782e-05
+364.3000000000146 1.5683807414470612e-05
+364.40000000001464 1.5713106662046424e-05
+364.50000000001467 1.574244466410372e-05
+364.6000000000147 1.5771822840358108e-05
+364.7000000000147 1.580124083979737e-05
+364.80000000001473 1.5830698324904415e-05
+364.90000000001476 1.5860194971419283e-05
+365.0000000000148 1.5889730468614805e-05
+365.1000000000148 1.592734501243466e-05
+365.2000000000148 1.5965027526811746e-05
+365.30000000001485 1.6002777796867752e-05
+365.40000000001487 1.604059562118373e-05
+365.5000000000149 1.607848081206083e-05
+365.6000000000149 1.612152234077044e-05
+365.70000000001494 1.616465083564594e-05
+365.80000000001496 1.6207866631392567e-05
+365.900000000015 1.6251170048566022e-05
+366.000000000015 1.6294561393583144e-05
+366.10000000001503 1.6326694719804795e-05
+366.20000000001505 1.635887263274054e-05
+366.3000000000151 1.639109530870656e-05
+366.4000000000151 1.642336290854171e-05
+366.5000000000151 1.6455675577364668e-05
+366.60000000001514 1.6482861272653964e-05
+366.70000000001517 1.651008026274694e-05
+366.8000000000152 1.653733246100636e-05
+366.9000000000152 1.656461781353164e-05
+367.00000000001523 1.659193629962904e-05
+367.10000000001526 1.6636040158924852e-05
+367.2000000000153 1.6680236878200106e-05
+367.3000000000153 1.6724526654585063e-05
+367.4000000000153 1.6768909719912627e-05
+367.50000000001535 1.6813386341085408e-05
+367.60000000001537 1.6857956820643307e-05
+367.7000000000154 1.690261957583202e-05
+367.8000000000154 1.694737439996128e-05
+367.90000000001544 1.6992221082808947e-05
+368.00000000001546 1.7037159410628228e-05
+368.1000000000155 1.7065671973804197e-05
+368.2000000000155 1.709421765308752e-05
+368.30000000001553 1.7122796121105116e-05
+368.40000000001555 1.715140704816991e-05
+368.5000000000156 1.7180050102303513e-05
+368.6000000000156 1.721412123507476e-05
+368.7000000000156 1.7248269670665906e-05
+368.80000000001564 1.7282480720758656e-05
+368.90000000001567 1.7316740737924766e-05
+369.0000000000157 1.735103712662236e-05
+369.1000000000157 1.7376466048772705e-05
+369.20000000001573 1.7401885563669112e-05
+369.30000000001576 1.7427286336021938e-05
+369.4000000000158 1.745266014393552e-05
+369.5000000000158 1.7477999887429803e-05
+369.6000000000158 1.7508716897786295e-05
+369.70000000001585 1.7539399325631785e-05
+369.80000000001587 1.757004283331306e-05
+369.9000000000159 1.7600644196184248e-05
+370.0000000000159 1.763120131248701e-05
+370.10000000001594 1.7663064658026495e-05
+370.20000000001596 1.7694887619758544e-05
+370.300000000016 1.77266715137918e-05
+370.400000000016 1.7758418819493137e-05
+370.50000000001603 1.7790133189798838e-05
+370.60000000001605 1.7816340662629043e-05
+370.7000000000161 1.7842514290732315e-05
+370.8000000000161 1.7868660862308893e-05
+370.9000000000161 1.7894788403323687e-05
+371.00000000001614 1.7920906186318642e-05
+371.10000000001617 1.7968264807819225e-05
+371.2000000000162 1.801570747751678e-05
+371.3000000000162 1.806324738655347e-05
+371.40000000001623 1.8110899076120635e-05
+371.50000000001626 1.8158678454284687e-05
+371.6000000000163 1.8201028434745292e-05
+371.7000000000163 1.824345215506399e-05
+371.8000000000163 1.8285950063085764e-05
+371.90000000001635 1.8328522609996282e-05
+372.00000000001637 1.8371170250607226e-05
+372.1000000000164 1.841243865467914e-05
+372.2000000000164 1.8453777812661428e-05
+372.30000000001644 1.8495188180613224e-05
+372.40000000001646 1.8536670218007954e-05
+372.5000000000165 1.8578224387716203e-05
+372.6000000000165 1.8614179362843264e-05
+372.70000000001653 1.8650189913229002e-05
+372.80000000001655 1.8686255973368434e-05
+372.9000000000166 1.8722377514788688e-05
+373.0000000000166 1.8758554546230793e-05
+373.1000000000166 1.8797205503470957e-05
+373.20000000001664 1.883591874120341e-05
+373.30000000001667 1.887469439261338e-05
+373.4000000000167 1.8913532629726904e-05
+373.5000000000167 1.895243366390032e-05
+373.60000000001673 1.898558442668899e-05
+373.70000000001676 1.901874529858066e-05
+373.8000000000168 1.9051933477463165e-05
+373.9000000000168 1.9085164967448974e-05
+374.0000000000168 1.9118454567805972e-05
+374.10000000001685 1.914829749144096e-05
+374.20000000001687 1.9178211979357843e-05
+374.3000000000169 1.920820910014685e-05
+374.4000000000169 1.9238298665572794e-05
+374.50000000001694 1.926848922070223e-05
+374.60000000001696 1.9292962692399696e-05
+374.700000000017 1.9317542304005702e-05
+374.800000000017 1.9342232782249245e-05
+374.90000000001703 1.9367037621455806e-05
+375.00000000001705 1.9391959075906486e-05
+375.1000000000171 1.9431095793892222e-05
+375.2000000000171 1.9470388482111627e-05
+375.3000000000171 1.9509835885136792e-05
+375.40000000001714 1.9549435466959047e-05
+375.50000000001717 1.958918339803428e-05
+375.6000000000172 1.962317299532624e-05
+375.7000000000172 1.9657279110714743e-05
+375.80000000001723 1.9691493732823253e-05
+375.90000000001726 1.9725807434185825e-05
+376.0000000000173 1.976020935912083e-05
+376.1000000000173 1.980667929769783e-05
+376.2000000000173 1.9853251520364646e-05
+376.30000000001735 1.9899910888720212e-05
+376.40000000001737 1.9946640746867658e-05
+376.5000000000174 1.9993422904749018e-05
+376.6000000000174 2.0034242789255217e-05
+376.70000000001744 2.007513175979748e-05
+376.80000000001746 2.0116089769636127e-05
+376.9000000000175 2.0157116811798827e-05
+377.0000000000175 2.0198212919490126e-05
+377.10000000001753 2.0241545018463488e-05
+377.20000000001755 2.028495267762355e-05
+377.3000000000176 2.0328436063875424e-05
+377.4000000000176 2.0371995386079488e-05
+377.5000000000176 2.041563089545982e-05
+377.60000000001764 2.0453248354359077e-05
+377.70000000001767 2.049092148758719e-05
+377.8000000000177 2.0528649941794764e-05
+377.9000000000177 2.056643336050447e-05
+378.00000000001774 2.0604271384362656e-05
+378.10000000001776 2.0643732739863592e-05
+378.2000000000178 2.0683251205670413e-05
+378.3000000000178 2.0722826416028003e-05
+378.4000000000178 2.076245800196915e-05
+378.50000000001785 2.080214559140077e-05
+378.60000000001787 2.0835706226592793e-05
+378.7000000000179 2.086930711067144e-05
+378.8000000000179 2.090294911856089e-05
+378.90000000001794 2.0936633130568745e-05
+379.00000000001796 2.0970360032469326e-05
+379.100000000018 2.10037564745713e-05
+379.200000000018 2.1037196795987033e-05
+379.30000000001803 2.1070681897857112e-05
+379.40000000001805 2.1104212686763654e-05
+379.5000000000181 2.1137790074883258e-05
+379.6000000000181 2.1177677730047705e-05
+379.7000000000181 2.121762818799579e-05
+379.80000000001814 2.1257641395142977e-05
+379.90000000001817 2.1297717275357015e-05
+380.0000000000182 2.1337855729819323e-05
+380.1000000000182 2.1378113986145763e-05
+380.20000000001824 2.1418437014727612e-05
+380.30000000001826 2.145882465571892e-05
+380.4000000000183 2.1499276725598096e-05
+380.5000000000183 2.1539793017262512e-05
+380.6000000000183 2.1586727056667722e-05
+380.70000000001835 2.163374444379126e-05
+380.8000000000184 2.1680845229763925e-05
+380.9000000000184 2.172802942126209e-05
+381.0000000000184 2.1775296980061474e-05
+381.10000000001844 2.181099088842809e-05
+381.20000000001846 2.184673258773423e-05
+381.3000000000185 2.1882521839990986e-05
+381.4000000000185 2.1918358361015283e-05
+381.50000000001853 2.195424182009871e-05
+381.60000000001855 2.1996620488375044e-05
+381.7000000000186 2.2039066276946713e-05
+381.8000000000186 2.2081578893320542e-05
+381.9000000000186 2.212415808685472e-05
+382.00000000001864 2.2166803649452606e-05
+382.10000000001867 2.2203320515093437e-05
+382.2000000000187 2.2239887009770404e-05
+382.3000000000187 2.2276503029464364e-05
+382.40000000001874 2.231316851442639e-05
+382.50000000001876 2.2349883449440193e-05
+382.6000000000188 2.239318036280376e-05
+382.7000000000188 2.243654203494862e-05
+382.8000000000188 2.2479968839362763e-05
+382.90000000001885 2.2523461129156653e-05
+383.0000000000189 2.2567019236887852e-05
+383.1000000000189 2.2609053671156827e-05
+383.2000000000189 2.2651151218276755e-05
+383.30000000001894 2.2693312144198907e-05
+383.40000000001896 2.273553669338593e-05
+383.500000000019 2.2777825088533495e-05
+383.600000000019 2.2820209425568936e-05
+383.70000000001903 2.2862679946208562e-05
+383.80000000001905 2.2905226665847413e-05
+383.9000000000191 2.294784031512389e-05
+384.0000000000191 2.299051234673622e-05
+384.1000000000191 2.30323040434305e-05
+384.20000000001914 2.307413678965306e-05
+384.30000000001917 2.311600424694316e-05
+384.4000000000192 2.315790082843036e-05
+384.5000000000192 2.3199821705827495e-05
+384.60000000001924 2.324849760714321e-05
+384.70000000001926 2.329720821315857e-05
+384.8000000000193 2.334595021221088e-05
+384.9000000000193 2.339472102398001e-05
+385.0000000000193 2.3443518807051565e-05
+385.10000000001935 2.348143462756311e-05
+385.2000000000194 2.3519343932689843e-05
+385.3000000000194 2.355724716819614e-05
+385.4000000000194 2.3595145548135803e-05
+385.50000000001944 2.3633041060915077e-05
+385.60000000001946 2.3677765943611484e-05
+385.7000000000195 2.3722514901031898e-05
+385.8000000000195 2.3767293082133024e-05
+385.90000000001953 2.381210649502557e-05
+386.00000000001955 2.3856962014865298e-05
+386.1000000000196 2.3892739802757633e-05
+386.2000000000196 2.3928552715403467e-05
+386.3000000000196 2.3964410241053093e-05
+386.40000000001965 2.4000322750823172e-05
+386.50000000001967 2.403630150522752e-05
+386.6000000000197 2.40723586604352e-05
+386.7000000000197 2.4108460722205775e-05
+386.80000000001974 2.4144607735757082e-05
+386.90000000001976 2.41807997462683e-05
+387.0000000000198 2.421703679895774e-05
+387.1000000000198 2.4272570433578862e-05
+387.2000000000198 2.4328208433368226e-05
+387.30000000001985 2.4383950953122495e-05
+387.4000000000199 2.4439798147697634e-05
+387.5000000000199 2.4495750172194155e-05
+387.6000000000199 2.4544786362000324e-05
+387.70000000001994 2.4593903616690747e-05
+387.80000000001996 2.464310204284335e-05
+387.90000000002 2.4692381747217266e-05
+388.00000000002 2.4741742836675752e-05
+388.10000000002003 2.478071583840783e-05
+388.20000000002005 2.481973976678201e-05
+388.3000000000201 2.4858814675174358e-05
+388.4000000000201 2.4897940616965806e-05
+388.5000000000201 2.493711764573368e-05
+388.60000000002015 2.4983435814760864e-05
+388.70000000002017 2.5029801565153676e-05
+388.8000000000202 2.507622616635729e-05
+388.9000000000202 2.5122720132275905e-05
+389.00000000002024 2.5169293213557766e-05
+389.10000000002026 2.5207842952173173e-05
+389.2000000000203 2.524646828465661e-05
+389.3000000000203 2.528517656338383e-05
+389.4000000000203 2.5323974339075003e-05
+389.50000000002035 2.5362867354592227e-05
+389.6000000000204 2.5401860538862505e-05
+389.7000000000204 2.544095800003384e-05
+389.8000000000204 2.5480163019341126e-05
+389.90000000002044 2.5519478044769847e-05
+390.00000000002046 2.555890468452496e-05
+390.1000000000205 2.5610273955391853e-05
+390.2000000000205 2.5661789015233534e-05
+390.30000000002053 2.5713449054362308e-05
+390.40000000002055 2.576525239364338e-05
+390.5000000000206 2.581719647576014e-05
+390.6000000000206 2.5861963952485977e-05
+390.7000000000206 2.5906843146476786e-05
+390.80000000002065 2.5951828741185963e-05
+390.90000000002067 2.5996914513557716e-05
+391.0000000000207 2.604209332653277e-05
+391.1000000000207 2.6078050145395486e-05
+391.20000000002074 2.6114058712556136e-05
+391.30000000002076 2.6150109063890516e-05
+391.4000000000208 2.618619030573869e-05
+391.5000000000208 2.6222290608860748e-05
+391.6000000000208 2.6258396123171382e-05
+391.70000000002085 2.6294542782642792e-05
+391.8000000000209 2.6330730984173183e-05
+391.9000000000209 2.636696110012466e-05
+392.0000000000209 2.640323347791115e-05
+392.10000000002094 2.645156348874647e-05
+392.20000000002096 2.6499966474321063e-05
+392.300000000021 2.654844275359119e-05
+392.400000000021 2.6596992620390286e-05
+392.50000000002103 2.6645616343108593e-05
+392.60000000002105 2.6686822164949987e-05
+392.7000000000211 2.6728084762531835e-05
+392.8000000000211 2.676940357083722e-05
+392.9000000000211 2.6810778048159106e-05
+393.00000000002115 2.6852207676377278e-05
+393.10000000002117 2.6897261490560393e-05
+393.2000000000212 2.6942379194991925e-05
+393.3000000000212 2.6987560359347903e-05
+393.40000000002124 2.7032804577243928e-05
+393.50000000002126 2.7078111466695233e-05
+393.6000000000213 2.713103714223e-05
+393.7000000000213 2.7184020702985746e-05
+393.8000000000213 2.7237074751358935e-05
+393.90000000002135 2.729021104874214e-05
+394.0000000000214 2.7343440506573095e-05
+394.1000000000214 2.7382006252395245e-05
+394.2000000000214 2.7420644646704217e-05
+394.30000000002144 2.7459363876873673e-05
+394.40000000002146 2.7498171229686466e-05
+394.5000000000215 2.7537073084828205e-05
+394.6000000000215 2.7576076041309488e-05
+394.70000000002153 2.761518581210992e-05
+394.80000000002156 2.765440611046752e-05
+394.9000000000216 2.7693739772912755e-05
+395.0000000000216 2.773318875327367e-05
+395.1000000000216 2.776866398776337e-05
+395.20000000002165 2.7804246224469213e-05
+395.30000000002167 2.7839934687725126e-05
+395.4000000000217 2.787572769490194e-05
+395.5000000000217 2.7911622650701792e-05
+395.60000000002174 2.7947652774274378e-05
+395.70000000002176 2.79837974556189e-05
+395.8000000000218 2.8020038224147117e-05
+395.9000000000218 2.8056356457836247e-05
+396.0000000000218 2.809273338249166e-05
+396.10000000002185 2.814887406259066e-05
+396.2000000000219 2.8205088300692545e-05
+396.3000000000219 2.8261356868330977e-05
+396.4000000000219 2.8317660328065563e-05
+396.50000000002194 2.8373979032183975e-05
+396.60000000002196 2.8422461738121306e-05
+396.700000000022 2.8470979548028448e-05
+396.800000000022 2.851951608615767e-05
+396.90000000002203 2.8568056802465727e-05
+397.00000000002206 2.861658898892838e-05
+397.1000000000221 2.8660602977305514e-05
+397.2000000000221 2.870457693975038e-05
+397.3000000000221 2.8748503821907503e-05
+397.40000000002215 2.8792378479693808e-05
+397.50000000002217 2.8836197693641835e-05
+397.6000000000222 2.887996018403752e-05
+397.7000000000222 2.892366498455723e-05
+397.80000000002224 2.896731424795183e-05
+397.90000000002226 2.9010912078697784e-05
+398.0000000000223 2.9054464547078573e-05
+398.1000000000223 2.9094153450314148e-05
+398.2000000000223 2.91338056225787e-05
+398.30000000002235 2.9173433132151185e-05
+398.4000000000224 2.9213050063543246e-05
+398.5000000000224 2.9252672531147004e-05
+398.6000000000224 2.930038597897535e-05
+398.70000000002244 2.934810747024751e-05
+398.80000000002246 2.9395843373228082e-05
+398.9000000000225 2.9443601110702178e-05
+399.0000000000225 2.9491389168350302e-05
+399.10000000002253 2.9531960102535844e-05
+399.20000000002256 2.957256612237817e-05
+399.3000000000226 2.9613218932381805e-05
+399.4000000000226 2.9653931320763854e-05
+399.5000000000226 2.969471716705905e-05
+399.60000000002265 2.973559144896847e-05
+399.70000000002267 2.9776512816891664e-05
+399.8000000000227 2.9817481314805055e-05
+399.9000000000227 2.9858496986760608e-05
+400.00000000002274 2.9899559876928835e-05
+400.10000000002276 2.9936151788032734e-05
+400.2000000000228 2.997278107243919e-05
+400.3000000000228 3.000944776103308e-05
+400.4000000000228 3.004615188480682e-05
+400.50000000002285 3.0082893474772925e-05
+400.6000000000229 3.0119672561919993e-05
+400.7000000000229 3.0156489177256516e-05
+400.8000000000229 3.019334335185507e-05
+400.90000000002294 3.023023511680828e-05
+401.00000000002296 3.0267164503186985e-05
+401.100000000023 3.0313906338484846e-05
+401.200000000023 3.0360705554518182e-05
+401.30000000002303 3.0407562206565338e-05
+401.40000000002306 3.0454476349856458e-05
+401.5000000000231 3.0501448039704118e-05
+401.6000000000231 3.0540158029366634e-05
+401.7000000000231 3.057890910132018e-05
+401.80000000002315 3.061770129097988e-05
+401.90000000002317 3.065653463369572e-05
+402.0000000000232 3.0695409164974746e-05
+402.1000000000232 3.0733340048296133e-05
+402.20000000002324 3.077131016621498e-05
+402.30000000002326 3.080931955173716e-05
+402.4000000000233 3.084736823789031e-05
+402.5000000000233 3.08854562577686e-05
+402.60000000002333 3.092358364444319e-05
+402.70000000002335 3.096175043105187e-05
+402.8000000000234 3.0999956650709434e-05
+402.9000000000234 3.103820233659741e-05
+403.0000000000234 3.10764875218744e-05
+403.10000000002344 3.111553361129934e-05
+403.20000000002346 3.11546209958817e-05
+403.3000000000235 3.119374971142995e-05
+403.4000000000235 3.1232919793867524e-05
+403.50000000002353 3.127213127905232e-05
+403.60000000002356 3.131138420286688e-05
+403.7000000000236 3.135067860121828e-05
+403.8000000000236 3.139001451012903e-05
+403.9000000000236 3.142939196551038e-05
+404.00000000002365 3.146881100343383e-05
+404.10000000002367 3.150598759081247e-05
+404.2000000000237 3.154320073935427e-05
+404.3000000000237 3.158045047801279e-05
+404.40000000002374 3.161773683585048e-05
+404.50000000002376 3.165505984194957e-05
+404.6000000000238 3.170098272974114e-05
+404.7000000000238 3.174695790109813e-05
+404.80000000002383 3.179298540212816e-05
+404.90000000002385 3.183906527924388e-05
+405.0000000000239 3.1885197578702345e-05
+405.1000000000239 3.191787224420935e-05
+405.2000000000239 3.1950574675322205e-05
+405.30000000002394 3.198330489119136e-05
+405.40000000002397 3.2016062910885594e-05
+405.500000000024 3.204884875362197e-05
+405.600000000024 3.208166243853595e-05
+405.70000000002403 3.2114503984819404e-05
+405.80000000002406 3.214737341158233e-05
+405.9000000000241 3.218027073812954e-05
+406.0000000000241 3.221319598354698e-05
+406.1000000000241 3.22521194909163e-05
+406.20000000002415 3.229108217048171e-05
+406.30000000002417 3.2330084053974735e-05
+406.4000000000242 3.2369125173285746e-05
+406.5000000000242 3.240820556018593e-05
+406.60000000002424 3.244732524655907e-05
+406.70000000002426 3.248648426426249e-05
+406.8000000000243 3.252568264526642e-05
+406.9000000000243 3.256492042146807e-05
+407.00000000002433 3.260419762478214e-05
+407.10000000002435 3.263345833967162e-05
+407.2000000000244 3.26627404504279e-05
+407.3000000000244 3.269204396961428e-05
+407.4000000000244 3.272136890961273e-05
+407.50000000002444 3.275071528299772e-05
+407.60000000002447 3.278008310230275e-05
+407.7000000000245 3.280947237997328e-05
+407.8000000000245 3.283888312860082e-05
+407.90000000002453 3.286831536064206e-05
+408.00000000002456 3.2897769088702155e-05
+408.1000000000246 3.293677766928142e-05
+408.2000000000246 3.297582505943727e-05
+408.3000000000246 3.3014911290745257e-05
+408.40000000002465 3.305403639475412e-05
+408.50000000002467 3.3093200403127046e-05
+408.6000000000247 3.3132403347359e-05
+408.7000000000247 3.317164525920083e-05
+408.80000000002474 3.321092617023507e-05
+408.90000000002476 3.325024611220622e-05
+409.0000000000248 3.3289605116735995e-05
+409.1000000000248 3.332440141112673e-05
+409.20000000002483 3.335922783515035e-05
+409.30000000002485 3.339408440973277e-05
+409.4000000000249 3.342897115600102e-05
+409.5000000000249 3.3463888094856086e-05
+409.6000000000249 3.3498835247447646e-05
+409.70000000002494 3.3533812634746684e-05
+409.80000000002497 3.356882027778286e-05
+409.900000000025 3.360385819769236e-05
+410.000000000025 3.3638926415480115e-05
+410.10000000002503 3.367529015598009e-05
+410.20000000002506 3.3711686401730576e-05
+410.3000000000251 3.374811517595761e-05
+410.4000000000251 3.3784576501995665e-05
+410.5000000000251 3.382107040300265e-05
+410.60000000002515 3.386658723614479e-05
+410.70000000002517 3.391215132787972e-05
+410.8000000000252 3.395776271588941e-05
+410.9000000000252 3.400342143787803e-05
+411.00000000002524 3.404912753152016e-05
+411.10000000002526 3.4080883435186597e-05
+411.2000000000253 3.41126637119918e-05
+411.3000000000253 3.414446837700997e-05
+411.40000000002533 3.417629744527425e-05
+411.50000000002535 3.42081509318732e-05
+411.6000000000254 3.424002885190264e-05
+411.7000000000254 3.427193122041734e-05
+411.8000000000254 3.4303858052479146e-05
+411.90000000002544 3.433580936320549e-05
+412.00000000002547 3.436778516772173e-05
+412.1000000000255 3.4402609739482165e-05
+412.2000000000255 3.443746335601896e-05
+412.30000000002553 3.447234603665892e-05
+412.40000000002556 3.450725780073859e-05
+412.5000000000256 3.4542198667555696e-05
+412.6000000000256 3.4577168656514845e-05
+412.7000000000256 3.461216778688457e-05
+412.80000000002565 3.4647196077991634e-05
+412.90000000002567 3.468225354931858e-05
+413.0000000000257 3.471734022011325e-05
+413.1000000000257 3.474849410489817e-05
+413.20000000002574 3.4779670866810414e-05
+413.30000000002576 3.481087051921901e-05
+413.4000000000258 3.484209307559665e-05
+413.5000000000258 3.4873338549422054e-05
+413.60000000002583 3.4904606954180136e-05
+413.70000000002585 3.493589830331296e-05
+413.8000000000259 3.496721261026857e-05
+413.9000000000259 3.499854988855007e-05
+414.0000000000259 3.502991015161841e-05
+414.10000000002594 3.506433118775191e-05
+414.20000000002597 3.50987801458798e-05
+414.300000000026 3.513325704412173e-05
+414.400000000026 3.516776190080316e-05
+414.50000000002603 3.52022947340619e-05
+414.60000000002606 3.5236855562143354e-05
+414.7000000000261 3.5271444403252724e-05
+414.8000000000261 3.530606127565362e-05
+414.9000000000261 3.5340706197618873e-05
+415.00000000002615 3.537537918737992e-05
+415.10000000002617 3.540571066928163e-05
+415.2000000000262 3.543606320188179e-05
+415.3000000000262 3.546643679667575e-05
+415.40000000002624 3.54968314652626e-05
+415.50000000002626 3.55272472191472e-05
+415.6000000000263 3.5557684069888624e-05
+415.7000000000263 3.5588142028951546e-05
+415.80000000002633 3.561862110795406e-05
+415.90000000002635 3.564912131841986e-05
+416.0000000000264 3.5679642671927355e-05
+416.1000000000264 3.5711876518065314e-05
+416.2000000000264 3.574413411786349e-05
+416.30000000002644 3.5776415485225995e-05
+416.40000000002647 3.580872063396336e-05
+416.5000000000265 3.584104957804163e-05
+416.6000000000265 3.5873402331333424e-05
+416.70000000002653 3.590577890771734e-05
+416.80000000002656 3.593817932117796e-05
+416.9000000000266 3.597060358555624e-05
+417.0000000000266 3.600305171484802e-05
+417.1000000000266 3.603185489930329e-05
+417.20000000002665 3.606067651832466e-05
+417.30000000002667 3.608951658115385e-05
+417.4000000000267 3.611837509698595e-05
+417.5000000000267 3.614725207511975e-05
+417.60000000002674 3.6176147524757086e-05
+417.70000000002676 3.620506145510334e-05
+417.8000000000268 3.6233993875367114e-05
+417.9000000000268 3.62629447948609e-05
+418.00000000002683 3.6291914222799754e-05
+418.10000000002685 3.6319354507742026e-05
+418.2000000000269 3.6346811173801246e-05
+418.3000000000269 3.6374284228654435e-05
+418.4000000000269 3.640177367972951e-05
+418.50000000002694 3.64292795347086e-05
+418.60000000002697 3.6456801801074995e-05
+418.700000000027 3.6484340486364795e-05
+418.800000000027 3.6511895598267887e-05
+418.90000000002703 3.653946714422457e-05
+419.00000000002706 3.656705513188063e-05
+419.1000000000271 3.659916206857007e-05
+419.2000000000271 3.663129214488931e-05
+419.3000000000271 3.6663445374282936e-05
+419.40000000002715 3.6695621770100325e-05
+419.50000000002717 3.672782134584874e-05
+419.6000000000272 3.676004411499093e-05
+419.7000000000272 3.6792290090843514e-05
+419.80000000002724 3.682455928698268e-05
+419.90000000002726 3.685685171683852e-05
+420.0000000000273 3.688916739389701e-05
+420.1000000000273 3.691804724899571e-05
+420.20000000002733 3.694694506275061e-05
+420.30000000002735 3.697586084375584e-05
+420.4000000000274 3.700479460065934e-05
+420.5000000000274 3.7033746342061e-05
+420.6000000000274 3.706271607656379e-05
+420.70000000002744 3.709170381292657e-05
+420.80000000002747 3.712070955965621e-05
+420.9000000000275 3.714973332546666e-05
+421.0000000000275 3.717877511897231e-05
+421.10000000002753 3.720647709956427e-05
+421.20000000002756 3.72341953423448e-05
+421.3000000000276 3.726192985473868e-05
+421.4000000000276 3.728968064396843e-05
+421.5000000000276 3.731744771751475e-05
+421.60000000002765 3.73452310827073e-05
+421.70000000002767 3.7373030746826834e-05
+421.8000000000277 3.740084671736139e-05
+421.9000000000277 3.7428679001596514e-05
+422.00000000002774 3.74565276069216e-05
+422.10000000002776 3.7480822203241174e-05
+422.2000000000278 3.7505128778456344e-05
+422.3000000000278 3.7529447337010946e-05
+422.40000000002783 3.7553777883298544e-05
+422.50000000002785 3.757812042191947e-05
+422.6000000000279 3.7602474957269644e-05
+422.7000000000279 3.7626841493900455e-05
+422.8000000000279 3.765122003621012e-05
+422.90000000002794 3.7675610588700925e-05
+423.00000000002797 3.7700013155875405e-05
+423.100000000028 3.7721109545092093e-05
+423.200000000028 3.774221522756983e-05
+423.30000000002804 3.776333020629207e-05
+423.40000000002806 3.778445448434621e-05
+423.5000000000281 3.7805588064771495e-05
+423.6000000000281 3.7836442563227075e-05
+423.7000000000281 3.786731723137001e-05
+423.80000000002815 3.789821207945202e-05
+423.9000000000282 3.792912711767686e-05
+424.0000000000282 3.796006235630293e-05
+424.1000000000282 3.798812514330622e-05
+424.20000000002824 3.801620420198809e-05
+424.30000000002826 3.804429953961822e-05
+424.4000000000283 3.8072411163416794e-05
+424.5000000000283 3.8100539080502485e-05
+424.60000000002833 3.8128683298151864e-05
+424.70000000002835 3.8156843823591844e-05
+424.8000000000284 3.818502066394778e-05
+424.9000000000284 3.8213213826451033e-05
+425.0000000000284 3.8241423318335655e-05
+425.10000000002844 3.8270926780295293e-05
+425.20000000002847 3.830044847696084e-05
+425.3000000000285 3.8329988417230494e-05
+425.4000000000285 3.8359546609953714e-05
+425.50000000002854 3.838912306403523e-05
+425.60000000002856 3.841871778833091e-05
+425.7000000000286 3.844833079180426e-05
+425.8000000000286 3.8477962083265374e-05
+425.9000000000286 3.850761167168437e-05
+426.00000000002865 3.853727956587635e-05
+426.1000000000287 3.8561929168458204e-05
+426.2000000000287 3.858659065763861e-05
+426.3000000000287 3.861126403780289e-05
+426.40000000002874 3.863594931312811e-05
+426.50000000002876 3.866064648784462e-05
+426.6000000000288 3.86853555662886e-05
+426.7000000000288 3.8710076552692496e-05
+426.80000000002883 3.873480945134227e-05
+426.90000000002885 3.875955426647233e-05
+427.0000000000289 3.8784311002372e-05
+427.1000000000289 3.881368372839951e-05
+427.2000000000289 3.8843073951997955e-05
+427.30000000002894 3.887248168111432e-05
+427.40000000002897 3.8901906923645496e-05
+427.500000000029 3.8931349687540626e-05
+427.600000000029 3.895091140094507e-05
+427.70000000002904 3.897048070532037e-05
+427.80000000002906 3.899005760274822e-05
+427.9000000000291 3.900964209546887e-05
+428.0000000000291 3.9029234185569864e-05
+428.1000000000291 3.906572459232184e-05
+428.20000000002915 3.910223743260479e-05
+428.3000000000292 3.913877271620399e-05
+428.4000000000292 3.9175330452960335e-05
+428.5000000000292 3.9211910652608986e-05
+428.60000000002924 3.923856944010467e-05
+428.70000000002926 3.92652422333641e-05
+428.8000000000293 3.929192903789298e-05
+428.9000000000293 3.931862985935728e-05
+429.00000000002933 3.934534470326498e-05
+429.10000000002935 3.9369219753613054e-05
+429.2000000000294 3.939310556354446e-05
+429.3000000000294 3.941700213660797e-05
+429.4000000000294 3.9440909476459294e-05
+429.50000000002944 3.946482758664583e-05
+429.60000000002947 3.947877447971038e-05
+429.7000000000295 3.9492725095627476e-05
+429.8000000000295 3.950667943509147e-05
+429.90000000002954 3.952063749895621e-05
+430.00000000002956 3.953459928786709e-05
+430.1000000000296 3.956148192015986e-05
+430.2000000000296 3.9588378729660224e-05
+430.3000000000296 3.9615289722007133e-05
+430.40000000002965 3.964221490294758e-05
+430.5000000000297 3.9669154278283456e-05
+430.6000000000297 3.9696107853658636e-05
+430.7000000000297 3.9723075634825096e-05
+430.80000000002974 3.975005762753652e-05
+430.90000000002976 3.9777053837548286e-05
+431.0000000000298 3.980406427056215e-05
+431.1000000000298 3.982444965851846e-05
+431.20000000002983 3.984484217115324e-05
+431.30000000002985 3.986524181013615e-05
+431.4000000000299 3.9885648577297346e-05
+431.5000000000299 3.990606247436033e-05
+431.6000000000299 3.992648350310243e-05
+431.70000000002995 3.994691166524772e-05
+431.80000000002997 3.996734696257397e-05
+431.90000000003 3.9987789396805845e-05
+432.00000000003 4.000823896977691e-05
+432.10000000003004 4.0034809892369786e-05
+432.20000000003006 4.006139429923737e-05
+432.3000000000301 4.008799219544684e-05
+432.4000000000301 4.0114603586066574e-05
+432.5000000000301 4.014122847627039e-05
+432.60000000003015 4.0157776977393044e-05
+432.7000000000302 4.0174330669834645e-05
+432.8000000000302 4.0190889554778e-05
+432.9000000000302 4.02074536334063e-05
+433.00000000003024 4.022402290695838e-05
+433.10000000003026 4.0246329816592135e-05
+433.2000000000303 4.026864555890698e-05
+433.3000000000303 4.029097013627387e-05
+433.40000000003033 4.031330355127926e-05
+433.50000000003035 4.033564580640245e-05
+433.6000000000304 4.035805323970618e-05
+433.7000000000304 4.0380505816495374e-05
+433.8000000000304 4.040298484652615e-05
+433.90000000003045 4.0425472988057114e-05
+434.00000000003047 4.044795425115576e-05
+434.1000000000305 4.046459908464079e-05
+434.2000000000305 4.0481205444300306e-05
+434.30000000003054 4.049776144244838e-05
+434.40000000003056 4.051425656495893e-05
+434.5000000000306 4.0530681674476496e-05
+434.6000000000306 4.0557187845438604e-05
+434.7000000000306 4.058361587536808e-05
+434.80000000003065 4.0609961811725225e-05
+434.9000000000307 4.0636223007384906e-05
+435.0000000000307 4.066239812484678e-05
+435.1000000000307 4.0686212269785045e-05
+435.20000000003074 4.070993915946148e-05
+435.30000000003076 4.0733581425704604e-05
+435.4000000000308 4.075714302605393e-05
+435.5000000000308 4.078062924769439e-05
+435.60000000003083 4.080405006200488e-05
+435.70000000003085 4.082741223539799e-05
+435.8000000000309 4.085072395507538e-05
+435.9000000000309 4.0873994833161365e-05
+436.0000000000309 4.089723591061588e-05
+436.10000000003095 4.091600136299388e-05
+436.20000000003097 4.0934759423378225e-05
+436.300000000031 4.0953525441175215e-05
+436.400000000031 4.0972316203823874e-05
+436.50000000003104 4.0991149939782034e-05
+436.60000000003106 4.101004463810368e-05
+436.7000000000311 4.1028942867328634e-05
+436.8000000000311 4.104784435578365e-05
+436.9000000000311 4.1066748789856715e-05
+437.00000000003115 4.108565581379188e-05
+437.1000000000312 4.110828135630223e-05
+437.2000000000312 4.113091197131553e-05
+437.3000000000312 4.1153547176242044e-05
+437.40000000003124 4.117618644571039e-05
+437.50000000003126 4.119882921155857e-05
+437.6000000000313 4.12214765554078e-05
+437.7000000000313 4.12441319018591e-05
+437.80000000003133 4.12667953771969e-05
+437.90000000003135 4.1289467191464264e-05
+438.0000000000314 4.13121476388571e-05
+438.1000000000314 4.132377168311236e-05
+438.2000000000314 4.1335398583880206e-05
+438.30000000003145 4.134702888561418e-05
+438.40000000003147 4.1358663217299865e-05
+438.5000000000315 4.13703022923627e-05
+438.6000000000315 4.139217033527845e-05
+438.70000000003154 4.1414008649534465e-05
+438.80000000003156 4.143583599758957e-05
+438.9000000000316 4.1457669756582456e-05
+439.0000000000316 4.1479525914382736e-05
+439.1000000000316 4.1489230657239465e-05
+439.20000000003165 4.149897912397253e-05
+439.3000000000317 4.1508783062688175e-05
+439.4000000000317 4.1518652805025915e-05
+439.5000000000317 4.152859726449693e-05
+439.60000000003174 4.154893128565846e-05
+439.70000000003176 4.156936096897371e-05
+439.8000000000318 4.158989173039515e-05
+439.9000000000318 4.16105276077676e-05
+440.00000000003183 4.163127125719519e-05
+440.10000000003186 4.165222493443393e-05
+440.2000000000319 4.1673287579683685e-05
+440.3000000000319 4.1694457684024005e-05
+440.4000000000319 4.1715732342971994e-05
+440.50000000003195 4.173710725270611e-05
+440.60000000003197 4.175857670631114e-05
+440.700000000032 4.178013121921962e-05
+440.800000000032 4.1801761566220306e-05
+440.90000000003204 4.182345706429396e-05
+441.00000000003206 4.184520556881904e-05
+441.1000000000321 4.186424893500382e-05
+441.2000000000321 4.188331424902309e-05
+441.3000000000321 4.190238495734325e-05
+441.40000000003215 4.192144303418407e-05
+441.5000000000322 4.1940468978194287e-05
+441.6000000000322 4.1959441809352337e-05
+441.7000000000322 4.197842007952046e-05
+441.80000000003224 4.1997403789850316e-05
+441.90000000003226 4.201639294132869e-05
+442.0000000000323 4.203538753505384e-05
+442.1000000000323 4.2058732312154814e-05
+442.20000000003233 4.208208641983611e-05
+442.30000000003236 4.2105449860803e-05
+442.4000000000324 4.2128822637761175e-05
+442.5000000000324 4.215220475341348e-05
+442.6000000000324 4.216521069053258e-05
+442.70000000003245 4.217821956341848e-05
+442.80000000003247 4.2191231372535493e-05
+442.9000000000325 4.220424611840335e-05
+443.0000000000325 4.2217263801543116e-05
+443.10000000003254 4.22340851241764e-05
+443.20000000003256 4.2250910101673776e-05
+443.3000000000326 4.226773873442135e-05
+443.4000000000326 4.228457102297085e-05
+443.5000000000326 4.2301406967818854e-05
+443.60000000003265 4.231824656940671e-05
+443.7000000000327 4.233508982817586e-05
+443.8000000000327 4.2351936744678064e-05
+443.9000000000327 4.23687873192996e-05
+444.00000000003274 4.238564155259113e-05
+444.10000000003276 4.239889597895989e-05
+444.2000000000328 4.241215338237226e-05
+444.3000000000328 4.242541376332981e-05
+444.40000000003283 4.243867712238944e-05
+444.50000000003286 4.2451943460052925e-05
+444.6000000000329 4.246521277676692e-05
+444.7000000000329 4.247848507303346e-05
+444.8000000000329 4.249176034941018e-05
+444.90000000003295 4.250503860628866e-05
+445.00000000003297 4.2518319844285146e-05
+445.100000000033 4.254034577453524e-05
+445.200000000033 4.256237966277791e-05
+445.30000000003304 4.258442151108008e-05
+445.40000000003306 4.260647132145372e-05
+445.5000000000331 4.262852909596644e-05
+445.6000000000331 4.265059483668637e-05
+445.7000000000331 4.2672668545626344e-05
+445.80000000003315 4.2694750224855046e-05
+445.9000000000332 4.271683987638609e-05
+446.0000000000332 4.273893750234682e-05
+446.1000000000332 4.276833654779162e-05
+446.20000000003324 4.279774491247749e-05
+446.30000000003326 4.282716259795943e-05
+446.4000000000333 4.285658960601496e-05
+446.5000000000333 4.2886025938303476e-05
+446.60000000003333 4.2894496292718435e-05
+446.70000000003336 4.2902967689780314e-05
+446.8000000000334 4.2911440129597986e-05
+446.9000000000334 4.2919913612336046e-05
+447.0000000000334 4.292838813821866e-05
+447.10000000003345 4.294823652102547e-05
+447.20000000003347 4.2968090877522995e-05
+447.3000000000335 4.2987951208987614e-05
+447.4000000000335 4.30078175165846e-05
+447.50000000003354 4.302768980164289e-05
+447.60000000003356 4.303705840522819e-05
+447.7000000000336 4.304642841251172e-05
+447.8000000000336 4.305579982361793e-05
+447.90000000003363 4.30651726388387e-05
+448.00000000003365 4.307454685835752e-05
+448.1000000000337 4.309315310103692e-05
+448.2000000000337 4.311176424187926e-05
+448.3000000000337 4.313038028186897e-05
+448.40000000003374 4.314900122182316e-05
+448.50000000003376 4.316762706255908e-05
+448.6000000000338 4.318631457429608e-05
+448.7000000000338 4.320504354799011e-05
+448.80000000003383 4.3223795139021306e-05
+448.90000000003386 4.3242551870286466e-05
+449.0000000000339 4.326129763484753e-05
+449.1000000000339 4.328004580921102e-05
+449.2000000000339 4.3298754921274064e-05
+449.30000000003395 4.3317412993601136e-05
+449.40000000003397 4.333600943128538e-05
+449.500000000034 4.3354535025392945e-05
+449.600000000034 4.337298551894441e-05
+449.70000000003404 4.339135321503361e-05
+449.80000000003406 4.3409631897597016e-05
+449.9000000000341 4.342781683428003e-05
+450.0000000000341 4.3445904780003714e-05
+450.10000000003413 4.3458424400478176e-05
+450.20000000003415 4.347084316288125e-05
+450.3000000000342 4.3483162340870134e-05
+450.4000000000342 4.34953847065929e-05
+450.5000000000342 4.3507514532600814e-05
+450.60000000003424 4.353013164013725e-05
+450.70000000003427 4.35526739257142e-05
+450.8000000000343 4.357515071783519e-05
+450.9000000000343 4.359757282087356e-05
+451.00000000003433 4.361995251886658e-05
+451.10000000003436 4.363540105190117e-05
+451.2000000000344 4.365083097965454e-05
+451.3000000000344 4.366625904827318e-05
+451.4000000000344 4.368170348725019e-05
+451.50000000003445 4.36971840118317e-05
+451.60000000003447 4.370212737077675e-05
+451.7000000000345 4.370706887705272e-05
+451.8000000000345 4.3712009259960946e-05
+451.90000000003454 4.3716949293405696e-05
+452.00000000003456 4.3721889795870716e-05
+452.1000000000346 4.3742146743010215e-05
+452.2000000000346 4.376241185026081e-05
+452.30000000003463 4.3782686074521686e-05
+452.40000000003465 4.3802970418830876e-05
+452.5000000000347 4.382326593247145e-05
+452.6000000000347 4.3843573711324325e-05
+452.7000000000347 4.386388991653825e-05
+452.80000000003474 4.3884214263889206e-05
+452.90000000003477 4.39045464242865e-05
+453.0000000000348 4.392488602338129e-05
+453.1000000000348 4.393126500163302e-05
+453.20000000003483 4.393764480900176e-05
+453.30000000003486 4.394402493429641e-05
+453.4000000000349 4.395040482158277e-05
+453.5000000000349 4.395678386992769e-05
+453.6000000000349 4.3973733760459233e-05
+453.70000000003495 4.399064865768983e-05
+453.80000000003497 4.400754836126754e-05
+453.900000000035 4.402445123170783e-05
+454.000000000035 4.4041374187413565e-05
+454.10000000003504 4.405592405044251e-05
+454.20000000003506 4.40705219378806e-05
+454.3000000000351 4.4085180414973355e-05
+454.4000000000351 4.4099910591005694e-05
+454.50000000003513 4.41147221171671e-05
+454.60000000003515 4.412962318390166e-05
+454.7000000000352 4.41446205189374e-05
+454.8000000000352 4.415971938422797e-05
+454.9000000000352 4.4174923573550545e-05
+455.00000000003524 4.419023541015255e-05
+455.10000000003527 4.4198117192706974e-05
+455.2000000000353 4.42061051708265e-05
+455.3000000000353 4.421419718753504e-05
+455.40000000003533 4.422238960750678e-05
+455.50000000003536 4.4230677315296075e-05
+455.6000000000354 4.424971372719293e-05
+455.7000000000354 4.4268834825592265e-05
+455.8000000000354 4.4288031097656446e-05
+455.90000000003545 4.430729153376768e-05
+456.00000000003547 4.432660362447936e-05
+456.1000000000355 4.4334448528167216e-05
+456.2000000000355 4.4342311133851644e-05
+456.30000000003554 4.435017441162832e-05
+456.40000000003556 4.4358019837781006e-05
+456.5000000000356 4.436582739333345e-05
+456.6000000000356 4.438425512360872e-05
+456.70000000003563 4.440268736337785e-05
+456.80000000003565 4.442112411329151e-05
+456.9000000000357 4.443956537400049e-05
+457.0000000000357 4.4458011146211965e-05
+457.1000000000357 4.447589260089733e-05
+457.20000000003574 4.4493778151162154e-05
+457.30000000003577 4.4511667797544606e-05
+457.4000000000358 4.452956154058311e-05
+457.5000000000358 4.454745938092545e-05
+457.60000000003583 4.45546639207714e-05
+457.70000000003586 4.456186909920666e-05
+457.8000000000359 4.4569074916251364e-05
+457.9000000000359 4.45762813720957e-05
+458.0000000000359 4.458348846681698e-05
+458.10000000003595 4.459163907323839e-05
+458.20000000003597 4.459979059159423e-05
+458.300000000036 4.4607943021989424e-05
+458.400000000036 4.4616096364585664e-05
+458.50000000003604 4.4624250619491894e-05
+458.60000000003606 4.464318423744179e-05
+458.7000000000361 4.466216286009235e-05
+458.8000000000361 4.4681165777370314e-05
+458.90000000003613 4.4700173782587986e-05
+459.00000000003615 4.471916917554068e-05
+459.1000000000362 4.4735612703409924e-05
+459.2000000000362 4.4752010910614596e-05
+459.3000000000362 4.476835064650104e-05
+459.40000000003624 4.478462028282872e-05
+459.50000000003627 4.4800809716858116e-05
+459.6000000000363 4.4806174672294496e-05
+459.7000000000363 4.481143891400243e-05
+459.80000000003633 4.481659823158929e-05
+459.90000000003636 4.4821649865017055e-05
+460.0000000000364 4.482659250568304e-05
+460.1000000000364 4.484463914838796e-05
+460.2000000000364 4.486258246237515e-05
+460.30000000003645 4.4880425406713935e-05
+460.40000000003647 4.489817240036465e-05
+460.5000000000365 4.4915829325228655e-05
+460.6000000000365 4.492266017467205e-05
+460.70000000003654 4.492941626507047e-05
+460.80000000003656 4.493610670465648e-05
+460.9000000000366 4.4942742155081454e-05
+461.0000000000366 4.4949334832048026e-05
+461.10000000003663 4.496089500623486e-05
+461.20000000003665 4.4972441235603456e-05
+461.3000000000367 4.4983990406531614e-05
+461.4000000000367 4.499556097249603e-05
+461.5000000000367 4.5007172956356056e-05
+461.60000000003674 4.5008091480333135e-05
+461.70000000003677 4.500900758675304e-05
+461.8000000000368 4.500992097940377e-05
+461.9000000000368 4.501083131618237e-05
+462.00000000003683 4.5011738209605904e-05
+462.10000000003686 4.502573550011887e-05
+462.2000000000369 4.503973011512797e-05
+462.3000000000369 4.505372152598888e-05
+462.4000000000369 4.506770915781075e-05
+462.50000000003695 4.5081692389326237e-05
+462.60000000003697 4.5095672406363744e-05
+462.700000000037 4.510965295930039e-05
+462.800000000037 4.512363418445666e-05
+462.90000000003704 4.5137616309686836e-05
+463.00000000003706 4.5151599654581295e-05
+463.1000000000371 4.516057310408697e-05
+463.2000000000371 4.516954833921179e-05
+463.30000000003713 4.5178525955211655e-05
+463.40000000003715 4.518750663964785e-05
+463.5000000000372 4.5196491171974416e-05
+463.6000000000372 4.521619324910267e-05
+463.7000000000372 4.523585944672013e-05
+463.80000000003724 4.525551029007419e-05
+463.90000000003727 4.527516478228905e-05
+464.0000000000373 4.529484040058775e-05
+464.1000000000373 4.5300141334488414e-05
+464.20000000003733 4.5305488509443645e-05
+464.30000000003736 4.53108947476911e-05
+464.4000000000374 4.531637131777048e-05
+464.5000000000374 4.532192793350172e-05
+464.6000000000374 4.5338365032358336e-05
+464.70000000003745 4.535490224663736e-05
+464.80000000003747 4.537154545286902e-05
+464.9000000000375 4.538829901962458e-05
+465.0000000000375 4.540516580462936e-05
+465.10000000003754 4.5418451178067174e-05
+465.20000000003756 4.543184870717662e-05
+465.3000000000376 4.544535667339152e-05
+465.4000000000376 4.545897183695963e-05
+465.50000000003763 4.547268943460483e-05
+465.60000000003765 4.548650317709943e-05
+465.7000000000377 4.550040266204719e-05
+465.8000000000377 4.551437777831304e-05
+465.9000000000377 4.552841683465194e-05
+466.00000000003774 4.554250655695346e-05
+466.10000000003777 4.556032144205821e-05
+466.2000000000378 4.557815811364742e-05
+466.3000000000378 4.559599853463661e-05
+466.40000000003783 4.56138230689533e-05
+466.50000000003786 4.5631610478425086e-05
+466.6000000000379 4.5638523103726255e-05
+466.7000000000379 4.564543626396494e-05
+466.8000000000379 4.565234995920881e-05
+466.90000000003795 4.565926418958284e-05
+467.00000000003797 4.5666178955158376e-05
+467.100000000038 4.568250602767295e-05
+467.200000000038 4.5698835891880644e-05
+467.30000000003804 4.571516854806212e-05
+467.40000000003806 4.5731503996326254e-05
+467.5000000000381 4.574784223694957e-05
+467.6000000000381 4.575335407381466e-05
+467.70000000003813 4.575886609422493e-05
+467.80000000003815 4.576437829822498e-05
+467.9000000000382 4.576989068585956e-05
+468.0000000000382 4.577540325717773e-05
+468.1000000000382 4.5792178416724874e-05
+468.20000000003824 4.580895667109063e-05
+468.30000000003827 4.582573802051523e-05
+468.4000000000383 4.5842522465296245e-05
+468.5000000000383 4.5859310005669785e-05
+468.60000000003834 4.586525779146929e-05
+468.70000000003836 4.587120586111539e-05
+468.8000000000384 4.5877154214714235e-05
+468.9000000000384 4.588310285231463e-05
+469.0000000000384 4.588905177402622e-05
+469.10000000003845 4.590365952396377e-05
+469.2000000000385 4.591826901201229e-05
+469.3000000000385 4.593288023820029e-05
+469.4000000000385 4.594749320261364e-05
+469.50000000003854 4.596210790533412e-05
+469.60000000003856 4.5965870539965206e-05
+469.7000000000386 4.596963313610998e-05
+469.8000000000386 4.59733956938923e-05
+469.90000000003863 4.5977158213378925e-05
+470.00000000003865 4.598092069469868e-05
+470.1000000000387 4.599701578902464e-05
+470.2000000000387 4.6013113426669846e-05
+470.3000000000387 4.602921360764293e-05
+470.40000000003874 4.604531633212494e-05
+470.50000000003877 4.606142160018191e-05
+470.6000000000388 4.6077529411937384e-05
+470.7000000000388 4.609363976745729e-05
+470.80000000003884 4.61097526668651e-05
+470.90000000003886 4.612586811028415e-05
+471.0000000000389 4.6141986097775935e-05
+471.1000000000389 4.6146709640492414e-05
+471.2000000000389 4.615143326007214e-05
+471.30000000003895 4.615615695657035e-05
+471.400000000039 4.616088073004224e-05
+471.500000000039 4.616560458066232e-05
+471.600000000039 4.618120491091029e-05
+471.70000000003904 4.619680754411302e-05
+471.80000000003906 4.6212412480309936e-05
+471.9000000000391 4.622801971977071e-05
+472.0000000000391 4.624362926253087e-05
+472.10000000003913 4.624913403451979e-05
+472.20000000003915 4.625463897636003e-05
+472.3000000000392 4.626014408803703e-05
+472.4000000000392 4.626564936970888e-05
+472.5000000000392 4.627115482142301e-05
+472.60000000003924 4.6287549069119163e-05
+472.70000000003927 4.6303946078004126e-05
+472.8000000000393 4.632034584816974e-05
+472.9000000000393 4.6336748379822954e-05
+473.00000000003934 4.635315367316543e-05
+473.10000000003936 4.635610242689744e-05
+473.2000000000394 4.635905098007965e-05
+473.3000000000394 4.63619993328343e-05
+473.4000000000394 4.636494748522599e-05
+473.50000000003945 4.636789543726606e-05
+473.6000000000395 4.6381741154615547e-05
+473.7000000000395 4.639558805731449e-05
+473.8000000000395 4.640943614532933e-05
+473.90000000003954 4.642328541856874e-05
+474.00000000003956 4.643713587693803e-05
+474.1000000000396 4.644237142539062e-05
+474.2000000000396 4.644760714919783e-05
+474.30000000003963 4.6452843048358806e-05
+474.40000000003965 4.6458079123045716e-05
+474.5000000000397 4.6463315373257815e-05
+474.6000000000397 4.6468551799052045e-05
+474.7000000000397 4.647378840060067e-05
+474.80000000003974 4.647902517796072e-05
+474.90000000003977 4.648426213118938e-05
+475.0000000000398 4.6489499260348126e-05
+475.1000000000398 4.650609251381035e-05
+475.20000000003984 4.652268854867531e-05
+475.30000000003986 4.653928736508512e-05
+475.4000000000399 4.655588896306655e-05
+475.5000000000399 4.6572493342815006e-05
+475.6000000000399 4.657817947757678e-05
+475.70000000003995 4.65838657278963e-05
+475.80000000004 4.658955209379341e-05
+475.90000000004 4.6595238575288035e-05
+476.00000000004 4.660092517240312e-05
+476.10000000004004 4.661412577335538e-05
+476.20000000004006 4.662732718998863e-05
+476.3000000000401 4.6640529422302616e-05
+476.4000000000401 4.6653732470181475e-05
+476.50000000004013 4.666693633356273e-05
+476.60000000004015 4.666921145462689e-05
+476.7000000000402 4.6671486325484536e-05
+476.8000000000402 4.667376094632892e-05
+476.9000000000402 4.6676035317122184e-05
+477.00000000004025 4.667830943805888e-05
+477.10000000004027 4.668350073018063e-05
+477.2000000000403 4.6688692164586935e-05
+477.3000000000403 4.669388374127173e-05
+477.40000000004034 4.6699075460344524e-05
+477.50000000004036 4.67042673218615e-05
+477.6000000000404 4.672039830939833e-05
+477.7000000000404 4.673653187135912e-05
+477.8000000000404 4.6752668008050455e-05
+477.90000000004045 4.676880671954781e-05
+478.0000000000405 4.6784948006094956e-05
+478.1000000000405 4.6788419819159274e-05
+478.2000000000405 4.679189151279791e-05
+478.30000000004054 4.679536308695543e-05
+478.40000000004056 4.6798834541807806e-05
+478.5000000000406 4.680230587741536e-05
+478.6000000000406 4.6805777093838486e-05
+478.70000000004063 4.6809248191137535e-05
+478.80000000004065 4.681271916948867e-05
+478.9000000000407 4.681619002883659e-05
+479.0000000000407 4.681966076935729e-05
+479.1000000000407 4.682244244501201e-05
+479.20000000004075 4.682522390375841e-05
+479.30000000004077 4.682800514566384e-05
+479.4000000000408 4.683078617085353e-05
+479.5000000000408 4.683356697939499e-05
+479.60000000004084 4.683634757129776e-05
+479.70000000004086 4.683912794680296e-05
+479.8000000000409 4.684190810586232e-05
+479.9000000000409 4.6844688048659145e-05
+480.0000000000409 4.684746777515003e-05
+480.10000000004095 4.686206041303265e-05
+480.200000000041 4.687665461655455e-05
+480.300000000041 4.689125038571209e-05
+480.400000000041 4.690584772044381e-05
+480.50000000004104 4.692044662079941e-05
+480.60000000004106 4.692408351580917e-05
+480.7000000000411 4.692772027694094e-05
+480.8000000000411 4.693135690424858e-05
+480.90000000004113 4.6934993397843885e-05
+481.00000000004115 4.693862975772672e-05
+481.1000000000412 4.695169524836021e-05
+481.2000000000412 4.696476146277791e-05
+481.3000000000412 4.697782840097475e-05
+481.40000000004125 4.699089606288781e-05
+481.50000000004127 4.70039644483916e-05
+481.6000000000413 4.7006063647590884e-05
+481.7000000000413 4.700816259054292e-05
+481.80000000004134 4.701026127738671e-05
+481.90000000004136 4.701235970820324e-05
+482.0000000000414 4.7014457883020996e-05
+482.1000000000414 4.70297736514211e-05
+482.2000000000414 4.704509138288338e-05
+482.30000000004145 4.7060411077439416e-05
+482.4000000000415 4.707573273506273e-05
+482.5000000000415 4.7091056355780265e-05
+482.6000000000415 4.709540398997391e-05
+482.70000000004154 4.709975156042298e-05
+482.80000000004156 4.7104099067226964e-05
+482.9000000000416 4.7108446510427316e-05
+483.0000000000416 4.711279389007017e-05
+483.10000000004163 4.7128086213660634e-05
+483.20000000004165 4.714338051838446e-05
+483.3000000000417 4.715867680424663e-05
+483.4000000000417 4.7173975071367924e-05
+483.5000000000417 4.7189275319753295e-05
+483.60000000004175 4.720463967044849e-05
+483.70000000004177 4.722004599087099e-05
+483.8000000000418 4.723547365055038e-05
+483.9000000000418 4.7250903523696416e-05
+484.00000000004184 4.726631799170939e-05
+484.10000000004186 4.726829119687319e-05
+484.2000000000419 4.727021604417549e-05
+484.3000000000419 4.7272079503658496e-05
+484.4000000000419 4.727387007580998e-05
+484.50000000004195 4.727557779186311e-05
+484.600000000042 4.7288188910514366e-05
+484.700000000042 4.730070253564771e-05
+484.800000000042 4.7313113221044206e-05
+484.90000000004204 4.7325417049097336e-05
+485.00000000004206 4.733761163319297e-05
+485.1000000000421 4.733898597057655e-05
+485.2000000000421 4.734025037162774e-05
+485.30000000004213 4.7341407127417526e-05
+485.40000000004216 4.734246006429902e-05
+485.5000000000422 4.734341454433178e-05
+485.6000000000422 4.7355278869490945e-05
+485.7000000000422 4.736706293794416e-05
+485.80000000004225 4.737877537447832e-05
+485.90000000004227 4.739042644531725e-05
+486.0000000000423 4.7402028060130165e-05
+486.1000000000423 4.7413064511196184e-05
+486.20000000004234 4.742408008500687e-05
+486.30000000004236 4.743509163375964e-05
+486.4000000000424 4.744611766043008e-05
+486.5000000000424 4.7457178320775385e-05
+486.6000000000424 4.745729330662423e-05
+486.70000000004245 4.745739928932654e-05
+486.8000000000425 4.745749723016193e-05
+486.9000000000425 4.7457588090405166e-05
+487.0000000000425 4.7457672831564555e-05
+487.10000000004254 4.747373313677766e-05
+487.20000000004256 4.7489791880447295e-05
+487.3000000000426 4.750585002101771e-05
+487.4000000000426 4.7521908518276026e-05
+487.50000000004263 4.753796833352088e-05
+487.60000000004266 4.754302901035267e-05
+487.7000000000427 4.754809310559404e-05
+487.8000000000427 4.7553160283186704e-05
+487.9000000000427 4.755823030339898e-05
+488.00000000004275 4.7563303022648456e-05
+488.10000000004277 4.7563979588604276e-05
+488.2000000000428 4.756465855065325e-05
+488.3000000000428 4.756534005376657e-05
+488.40000000004284 4.756602433914722e-05
+488.50000000004286 4.756671174470687e-05
+488.6000000000429 4.7567336167637605e-05
+488.7000000000429 4.7567916489480567e-05
+488.8000000000429 4.7568473868714216e-05
+488.90000000004295 4.756902782673435e-05
+489.000000000043 4.756959624785861e-05
+489.100000000043 4.7581227496487405e-05
+489.200000000043 4.759290436714368e-05
+489.30000000004304 4.7604639872393766e-05
+489.40000000004306 4.7616445397554924e-05
+489.5000000000431 4.762833069868035e-05
+489.6000000000431 4.76292913477375e-05
+489.70000000004313 4.763035131699897e-05
+489.80000000004316 4.7631516987698194e-05
+489.9000000000432 4.7632793197444264e-05
+490.0000000000432 4.763418324022478e-05
+490.1000000000432 4.764716375952023e-05
+490.20000000004325 4.766026099178993e-05
+490.30000000004327 4.767347368132235e-05
+490.4000000000433 4.768679902471541e-05
+490.5000000000433 4.770023266906188e-05
+490.60000000004334 4.7702751907408676e-05
+490.70000000004336 4.770535945131347e-05
+490.8000000000434 4.7708044629847416e-05
+490.9000000000434 4.7710795125951336e-05
+491.0000000000434 4.771359697585395e-05
+491.10000000004345 4.7726179970600546e-05
+491.2000000000435 4.773878217565444e-05
+491.3000000000435 4.775138468313977e-05
+491.4000000000435 4.7763966919407765e-05
+491.50000000004354 4.7776506643014696e-05
+491.60000000004356 4.777795849869425e-05
+491.7000000000436 4.7779410082856254e-05
+491.8000000000436 4.778086139553701e-05
+491.90000000004363 4.778231243688911e-05
+492.00000000004366 4.778376320695412e-05
+492.1000000000437 4.779716143653817e-05
+492.2000000000437 4.781056055108645e-05
+492.3000000000437 4.782396055055859e-05
+492.40000000004375 4.783736143485609e-05
+492.50000000004377 4.785076320393371e-05
+492.6000000000438 4.785313978868672e-05
+492.7000000000438 4.78555161629798e-05
+492.80000000004384 4.785789232689223e-05
+492.90000000004386 4.78602682805614e-05
+493.0000000000439 4.786264402400861e-05
+493.1000000000439 4.786568143401042e-05
+493.20000000004393 4.7868718654223726e-05
+493.30000000004395 4.787175568465558e-05
+493.400000000044 4.7874792525487615e-05
+493.500000000044 4.7877829176673614e-05
+493.600000000044 4.7891898095893084e-05
+493.70000000004404 4.7905968224871145e-05
+493.80000000004407 4.792003956350896e-05
+493.9000000000441 4.793411211176595e-05
+494.0000000000441 4.794818586965434e-05
+494.10000000004413 4.795010437947554e-05
+494.20000000004416 4.795202262661979e-05
+494.3000000000442 4.795394061111461e-05
+494.4000000000442 4.7955858333103755e-05
+494.5000000000442 4.795777579267286e-05
+494.60000000004425 4.79596929898494e-05
+494.70000000004427 4.796160992483545e-05
+494.8000000000443 4.796352659760029e-05
+494.9000000000443 4.7965443008287795e-05
+495.00000000004434 4.796735915704673e-05
+495.10000000004436 4.798000257678413e-05
+495.2000000000444 4.799264641002094e-05
+495.3000000000444 4.8005290656699845e-05
+495.40000000004443 4.8017935316589e-05
+495.50000000004445 4.803058038968437e-05
+495.6000000000445 4.8032183994330504e-05
+495.7000000000445 4.8033787274729504e-05
+495.8000000000445 4.8035390230966e-05
+495.90000000004454 4.8036992863008327e-05
+496.00000000004457 4.8038595171115865e-05
+496.1000000000446 4.804014101664564e-05
+496.2000000000446 4.80416865922468e-05
+496.30000000004463 4.80432318979541e-05
+496.40000000004466 4.8044776933977016e-05
+496.5000000000447 4.804632170029194e-05
+496.6000000000447 4.804786619705015e-05
+496.7000000000447 4.804941042428633e-05
+496.80000000004475 4.805095438221003e-05
+496.90000000004477 4.805249807079773e-05
+497.0000000000448 4.80540414902646e-05
+497.1000000000448 4.806820687336472e-05
+497.20000000004484 4.808237354120664e-05
+497.30000000004486 4.809654149366221e-05
+497.4000000000449 4.811071073083637e-05
+497.5000000000449 4.812488125259596e-05
+497.60000000004493 4.812800185304009e-05
+497.70000000004495 4.8131122305047624e-05
+497.800000000045 4.8134242608570884e-05
+497.900000000045 4.8137362763737035e-05
+498.000000000045 4.814048277067332e-05
+498.10000000004504 4.814378917051842e-05
+498.20000000004507 4.8147095415438935e-05
+498.3000000000451 4.81504015055563e-05
+498.4000000000451 4.815370744087556e-05
+498.50000000004513 4.815701322145998e-05
+498.60000000004516 4.816031884737275e-05
+498.7000000000452 4.816362431873563e-05
+498.8000000000452 4.8166929635553575e-05
+498.9000000000452 4.817023479789003e-05
+499.00000000004525 4.817353980587113e-05
+499.10000000004527 4.818676082963822e-05
+499.2000000000453 4.8199982603342995e-05
+499.3000000000453 4.8213205126863995e-05
+499.40000000004534 4.822642840013814e-05
+499.50000000004536 4.8239652422980546e-05
+499.6000000000454 4.8241812559589093e-05
+499.7000000000454 4.824397245482186e-05
+499.80000000004543 4.824613210887812e-05
+499.90000000004545 4.8248291521782344e-05
+500.0000000000455 4.825045069366989e-05
+500.1000000000455 4.8240394807645255e-05
+500.2000000000455 4.823033818427971e-05
+500.30000000004554 4.8220280823903556e-05
+500.40000000004557 4.821022272673045e-05
+500.5000000000456 4.820016389309577e-05
+500.6000000000456 4.8201172330700465e-05
+500.70000000004563 4.8202180495395665e-05
+500.80000000004566 4.820318838728487e-05
+500.9000000000457 4.820419600647149e-05
+501.0000000000457 4.820520335311767e-05
+501.1000000000457 4.820697162053707e-05
+501.20000000004575 4.820873965327924e-05
+501.30000000004577 4.821050745143512e-05
+501.4000000000458 4.821227501515391e-05
+501.5000000000458 4.821404234435149e-05
+501.60000000004584 4.821580943929385e-05
+501.70000000004586 4.821757630001355e-05
+501.8000000000459 4.8219342926543214e-05
+501.9000000000459 4.8221109319032076e-05
+502.00000000004593 4.822287547757106e-05
+502.10000000004595 4.8224328841675384e-05
+502.200000000046 4.822578194710326e-05
+502.300000000046 4.822723479395082e-05
+502.400000000046 4.8228687382372525e-05
+502.50000000004604 4.823013971240106e-05
+502.60000000004607 4.822051679182655e-05
+502.7000000000461 4.8210892946364414e-05
+502.8000000000461 4.820126817621258e-05
+502.90000000004613 4.819164248168558e-05
+503.00000000004616 4.818201586310432e-05
+503.1000000000462 4.818590612228544e-05
+503.2000000000462 4.8189796266396734e-05
+503.3000000000462 4.81936862954335e-05
+503.40000000004625 4.819757620950771e-05
+503.50000000004627 4.8201466008668043e-05
+503.6000000000463 4.81943394439912e-05
+503.7000000000463 4.818725302026164e-05
+503.80000000004634 4.8180184965198834e-05
+503.90000000004636 4.817311513037739e-05
+504.0000000000464 4.8166024990315575e-05
+504.1000000000464 4.8176091384501685e-05
+504.20000000004643 4.8186106466880135e-05
+504.30000000004645 4.819605650450625e-05
+504.4000000000465 4.820592936557236e-05
+504.5000000000465 4.8215714521133394e-05
+504.6000000000465 4.8225403045948965e-05
+504.70000000004654 4.8234987622417935e-05
+504.80000000004657 4.824446254099464e-05
+504.9000000000466 4.825382370207396e-05
+505.0000000000466 4.8263068617372216e-05
+505.10000000004663 4.8264555752796665e-05
+505.20000000004666 4.826592734793807e-05
+505.3000000000467 4.826718581245612e-05
+505.4000000000467 4.826833517121613e-05
+505.5000000000467 4.826938106455822e-05
+505.60000000004675 4.827033074955998e-05
+505.70000000004677 4.827119309770237e-05
+505.8000000000468 4.8271978596468195e-05
+505.9000000000468 4.827269934939421e-05
+506.00000000004684 4.8273369076120465e-05
+506.10000000004686 4.828636913663872e-05
+506.2000000000469 4.8299351341392326e-05
+506.3000000000469 4.831233425911863e-05
+506.40000000004693 4.832533809587493e-05
+506.50000000004695 4.833838469739939e-05
+506.600000000047 4.835149954084034e-05
+506.700000000047 4.836461628660392e-05
+506.800000000047 4.837773427367322e-05
+506.90000000004704 4.8390852889261646e-05
+507.00000000004707 4.8403971568816905e-05
+507.1000000000471 4.840343346694176e-05
+507.2000000000471 4.840289356217199e-05
+507.30000000004713 4.84023514373495e-05
+507.40000000004716 4.840180672448026e-05
+507.5000000000472 4.8401259104739285e-05
+507.6000000000472 4.8411792687218126e-05
+507.7000000000472 4.8422320055463514e-05
+507.80000000004725 4.8432842359352586e-05
+507.90000000004727 4.844336070095994e-05
+508.0000000000473 4.845387613397119e-05
+508.1000000000473 4.845448554813418e-05
+508.20000000004734 4.845509421062472e-05
+508.30000000004736 4.845570303042477e-05
+508.4000000000474 4.845631286761438e-05
+508.5000000000474 4.8456924533370324e-05
+508.60000000004743 4.846856362557459e-05
+508.70000000004745 4.848016521625313e-05
+508.8000000000475 4.8491751180783815e-05
+508.9000000000475 4.8503341793639364e-05
+509.0000000000475 4.851495572633376e-05
+509.10000000004754 4.852529527560401e-05
+509.20000000004757 4.853569014233205e-05
+509.3000000000476 4.85461541717367e-05
+509.4000000000476 4.855669959673339e-05
+509.50000000004763 4.856733703656561e-05
+509.60000000004766 4.856698714156572e-05
+509.7000000000477 4.8566742999892476e-05
+509.8000000000477 4.8566609488228356e-05
+509.9000000000477 4.856658980946913e-05
+510.00000000004775 4.856668549268075e-05
+510.10000000004777 4.8579064545104935e-05
+510.2000000000478 4.8591557637195036e-05
+510.3000000000478 4.860416135885819e-05
+510.40000000004784 4.86168706205308e-05
+510.50000000004786 4.862967865101261e-05
+510.6000000000479 4.863148657641615e-05
+510.7000000000479 4.863337934598379e-05
+510.80000000004793 4.8635346711557025e-05
+510.90000000004795 4.863737684527645e-05
+511.000000000048 4.863945633915722e-05
+511.100000000048 4.865374121314056e-05
+511.200000000048 4.86680454301995e-05
+511.30000000004804 4.8682350839179525e-05
+511.40000000004807 4.869663768750394e-05
+511.5000000000481 4.871088461881958e-05
+511.6000000000481 4.8713972093959994e-05
+511.70000000004814 4.871705943906799e-05
+511.80000000004816 4.87201466542799e-05
+511.9000000000482 4.8723233739673674e-05
+512.0000000000482 4.872632069526765e-05
+512.1000000000482 4.87271246144787e-05
+512.2000000000482 4.872792831185991e-05
+512.3000000000483 4.8728731787580326e-05
+512.4000000000483 4.872953504175053e-05
+512.5000000000483 4.8730338074428034e-05
+512.6000000000483 4.87422413734239e-05
+512.7000000000484 4.875414481676258e-05
+512.8000000000484 4.876604840447223e-05
+512.9000000000484 4.8777952136405645e-05
+513.0000000000484 4.8789856012586325e-05
+513.1000000000485 4.8792070636043946e-05
+513.2000000000485 4.8794285055403016e-05
+513.3000000000485 4.8796499270808526e-05
+513.4000000000485 4.8798713282288515e-05
+513.5000000000485 4.88009270898711e-05
+513.6000000000486 4.880314069375965e-05
+513.7000000000486 4.8805354093923925e-05
+513.8000000000486 4.8807567290508916e-05
+513.9000000000486 4.880978028348426e-05
+514.0000000000487 4.881199307305911e-05
+514.1000000000487 4.8825562602897945e-05
+514.2000000000487 4.883913310162435e-05
+514.3000000000487 4.885270456911568e-05
+514.4000000000487 4.8866277005424515e-05
+514.5000000000488 4.887985041053964e-05
+514.6000000000488 4.8882315167285496e-05
+514.7000000000488 4.888477977241489e-05
+514.8000000000488 4.8887244226133466e-05
+514.9000000000489 4.8889708528412894e-05
+515.0000000000489 4.889217267940051e-05
+515.1000000000489 4.88948919154517e-05
+515.2000000000489 4.8897611057633613e-05
+515.300000000049 4.8900330105919693e-05
+515.400000000049 4.890304906045882e-05
+515.500000000049 4.8905767921282986e-05
+515.600000000049 4.890848668848262e-05
+515.700000000049 4.8911205362148165e-05
+515.8000000000491 4.8913923942311674e-05
+515.9000000000491 4.891664242912216e-05
+516.0000000000491 4.8919360822616e-05
+516.1000000000491 4.893109529346484e-05
+516.2000000000492 4.894282983003691e-05
+516.3000000000492 4.895456443224927e-05
+516.4000000000492 4.896629910013606e-05
+516.5000000000492 4.897803383355035e-05
+516.6000000000492 4.8978649756280915e-05
+516.7000000000493 4.897926546500779e-05
+516.8000000000493 4.89798809597279e-05
+516.9000000000493 4.898049624055511e-05
+517.0000000000493 4.898111130766246e-05
+517.1000000000494 4.898286783263817e-05
+517.2000000000494 4.898462417457572e-05
+517.3000000000494 4.89863803335152e-05
+517.4000000000494 4.8988136309613776e-05
+517.5000000000495 4.898989210291156e-05
+517.6000000000495 4.899164771344866e-05
+517.7000000000495 4.899340314144084e-05
+517.8000000000495 4.8995158386811155e-05
+517.9000000000495 4.899691344977536e-05
+518.0000000000496 4.899866833031576e-05
+518.1000000000496 4.900175671329744e-05
+518.2000000000496 4.900484498716011e-05
+518.3000000000496 4.900793315210272e-05
+518.4000000000497 4.9011021208090116e-05
+518.5000000000497 4.9014109155262745e-05
+518.6000000000497 4.9017196993702575e-05
+518.7000000000497 4.902028472337448e-05
+518.8000000000497 4.902337234441901e-05
+518.9000000000498 4.902645985691816e-05
+519.0000000000498 4.9029547260900646e-05
+519.1000000000498 4.9043143461577075e-05
+519.2000000000498 4.9056740676186385e-05
+519.3000000000499 4.9070338904874165e-05
+519.4000000000499 4.908393814761033e-05
+519.5000000000499 4.909753840441776e-05
+519.6000000000499 4.910000588707134e-05
+519.70000000005 4.910247326480084e-05
+519.80000000005 4.910494053764216e-05
+519.90000000005 4.910740770574833e-05
+520.00000000005 4.910987476915552e-05
+520.10000000005 4.9112782946700935e-05
+520.2000000000501 4.9115691050756223e-05
+520.3000000000501 4.91185990813532e-05
+520.4000000000501 4.9121507038582425e-05
+520.5000000000501 4.91244149224758e-05
+520.6000000000502 4.912732273318237e-05
+520.7000000000502 4.913023047079278e-05
+520.8000000000502 4.913313813528037e-05
+520.9000000000502 4.9136045726794305e-05
+521.0000000000502 4.913895324536554e-05
+521.1000000000503 4.913971331679797e-05
+521.2000000000503 4.914047318140755e-05
+521.3000000000503 4.9141232839248075e-05
+521.4000000000503 4.914199229043187e-05
+521.5000000000504 4.914275153512996e-05
+521.6000000000504 4.9143510573337475e-05
+521.7000000000504 4.914426940516677e-05
+521.8000000000504 4.9145028030730316e-05
+521.9000000000505 4.9145786450140415e-05
+522.0000000000505 4.914654466345188e-05
+522.1000000000505 4.9149297260065345e-05
+522.2000000000505 4.9152049761200965e-05
+522.3000000000505 4.9154802166949894e-05
+522.4000000000506 4.9157554477344576e-05
+522.5000000000506 4.916030669241758e-05
+522.6000000000506 4.916305881231865e-05
+522.7000000000506 4.9165810837138976e-05
+522.8000000000507 4.916856276685248e-05
+522.9000000000507 4.9171314601609006e-05
+523.0000000000507 4.917406634149942e-05
+523.1000000000507 4.917605836301819e-05
+523.2000000000507 4.917805024361874e-05
+523.3000000000508 4.918004198340052e-05
+523.4000000000508 4.9182033582345656e-05
+523.5000000000508 4.918402504061238e-05
+523.6000000000508 4.9186016358300185e-05
+523.7000000000509 4.918800753544995e-05
+523.8000000000509 4.9189998572161225e-05
+523.9000000000509 4.9191989468474925e-05
+524.0000000000509 4.919398022449095e-05
+524.100000000051 4.919669679754904e-05
+524.200000000051 4.91994132976841e-05
+524.300000000051 4.920212972504917e-05
+524.400000000051 4.920484607968006e-05
+524.500000000051 4.920756236161246e-05
+524.6000000000511 4.9210278570940876e-05
+524.7000000000511 4.921299470775971e-05
+524.8000000000511 4.921571077210478e-05
+524.9000000000511 4.921842676412928e-05
+525.0000000000512 4.922114268386213e-05
+525.1000000000512 4.921031792080412e-05
+525.2000000000512 4.919949281319835e-05
+525.3000000000512 4.9188667361409594e-05
+525.4000000000513 4.917784156550921e-05
+525.5000000000513 4.9167015425808965e-05
+525.6000000000513 4.9167350656671484e-05
+525.7000000000513 4.916768569624606e-05
+525.8000000000513 4.916802054470992e-05
+525.9000000000514 4.9168355202122856e-05
+526.0000000000514 4.916868966854554e-05
+526.1000000000514 4.9170777013550885e-05
+526.2000000000514 4.9172864231644164e-05
+526.3000000000515 4.9174951322748855e-05
+526.4000000000515 4.917703828714047e-05
+526.5000000000515 4.917912512474246e-05
+526.6000000000515 4.91812118356544e-05
+526.7000000000515 4.918329842009312e-05
+526.8000000000516 4.918538487798216e-05
+526.9000000000516 4.918747120942107e-05
+527.0000000000516 4.918955741456954e-05
+527.1000000000516 4.9194450618517805e-05
+527.2000000000517 4.9199344006394694e-05
+527.3000000000517 4.9204237578286456e-05
+527.4000000000517 4.9209131334103216e-05
+527.5000000000517 4.921402527410741e-05
+527.6000000000518 4.921891939820918e-05
+527.7000000000518 4.922381370655363e-05
+527.8000000000518 4.922870819916844e-05
+527.9000000000518 4.9233602876139975e-05
+528.0000000000518 4.92384977374942e-05
+528.1000000000519 4.9239992343113864e-05
+528.2000000000519 4.9241486800021346e-05
+528.3000000000519 4.9242981108381746e-05
+528.4000000000519 4.924447526818387e-05
+528.500000000052 4.9245969279651544e-05
+528.600000000052 4.9247463142714885e-05
+528.700000000052 4.9248956857538983e-05
+528.800000000052 4.9250450424230206e-05
+528.900000000052 4.9251943842836156e-05
+529.0000000000521 4.9253437113405595e-05
+529.1000000000521 4.925706289708e-05
+529.2000000000521 4.9260688697341884e-05
+529.3000000000521 4.9264314514221946e-05
+529.4000000000522 4.9267940347868455e-05
+529.5000000000522 4.927156619825338e-05
+529.6000000000522 4.9275192065466265e-05
+529.7000000000522 4.927881794959669e-05
+529.8000000000523 4.928244385073423e-05
+529.9000000000523 4.928606976890968e-05
+530.0000000000523 4.928969570421245e-05
+530.1000000000523 4.929271331569933e-05
+530.2000000000523 4.92957308860558e-05
+530.3000000000524 4.9298748415375526e-05
+530.4000000000524 4.930176590369352e-05
+530.5000000000524 4.930478335104469e-05
+530.6000000000524 4.930780075758167e-05
+530.7000000000525 4.931081812333944e-05
+530.8000000000525 4.9313835448353016e-05
+530.9000000000525 4.93168527327751e-05
+531.0000000000525 4.93198699765808e-05
+531.1000000000525 4.932090770470303e-05
+531.2000000000526 4.932194526837221e-05
+531.3000000000526 4.9322982667699626e-05
+531.4000000000526 4.9324019902737774e-05
+531.5000000000526 4.932505697353912e-05
+531.6000000000527 4.9326093880273837e-05
+531.7000000000527 4.932713062293555e-05
+531.8000000000527 4.932816720169444e-05
+531.9000000000527 4.9329203616603e-05
+532.0000000000528 4.933023986771375e-05
+532.1000000000528 4.933129555048751e-05
+532.2000000000528 4.9332351062348796e-05
+532.3000000000528 4.9333406403349284e-05
+532.4000000000528 4.933446157359965e-05
+532.5000000000529 4.933551657321052e-05
+532.6000000000529 4.933657140217484e-05
+532.7000000000529 4.933762606066208e-05
+532.8000000000529 4.933868054872407e-05
+532.900000000053 4.933973486647146e-05
+533.000000000053 4.93407890139626e-05
+533.100000000053 4.935421054821675e-05
+533.200000000053 4.936763299473962e-05
+533.300000000053 4.9381056353504654e-05
+533.4000000000531 4.939448062454412e-05
+533.5000000000531 4.9407905807884405e-05
+533.6000000000531 4.941012779297504e-05
+533.7000000000531 4.941234968266645e-05
+533.8000000000532 4.941457147711851e-05
+533.9000000000532 4.941679317631445e-05
+534.0000000000532 4.941901478047417e-05
+534.1000000000532 4.942345866704261e-05
+534.2000000000533 4.942790269859004e-05
+534.3000000000533 4.9432346875268225e-05
+534.4000000000533 4.943679119705246e-05
+534.5000000000533 4.944123566410057e-05
+534.6000000000533 4.945689244883994e-05
+534.7000000000534 4.947255139471272e-05
+534.8000000000534 4.948821250184758e-05
+534.9000000000534 4.95038757703731e-05
+535.0000000000534 4.951954120058771e-05
+535.1000000000535 4.952209280320606e-05
+535.2000000000535 4.9524644309358e-05
+535.3000000000535 4.952719571902136e-05
+535.4000000000535 4.9529747032350915e-05
+535.5000000000535 4.953229824933063e-05
+535.6000000000536 4.954606904145595e-05
+535.7000000000536 4.95598408930659e-05
+535.8000000000536 4.9573613804068e-05
+535.9000000000536 4.9587387774546656e-05
+536.0000000000537 4.960116280446297e-05
+536.1000000000537 4.9605055427085e-05
+536.2000000000537 4.960894811380161e-05
+536.3000000000537 4.961284086470534e-05
+536.4000000000538 4.961673367988855e-05
+536.5000000000538 4.962062655932587e-05
+536.6000000000538 4.962451950310985e-05
+536.7000000000538 4.9628412511391893e-05
+536.8000000000538 4.9632305584146666e-05
+536.9000000000539 4.9636198721407796e-05
+537.0000000000539 4.964009192338584e-05
+537.1000000000539 4.964407392065432e-05
+537.2000000000539 4.964805600884324e-05
+537.300000000054 4.9652038187929833e-05
+537.400000000054 4.96560204581272e-05
+537.500000000054 4.966000281935965e-05
+537.600000000054 4.967522146752307e-05
+537.700000000054 4.969044200901615e-05
+537.8000000000541 4.9705664443871714e-05
+537.9000000000541 4.9720888772299604e-05
+538.0000000000541 4.973611499432629e-05
+538.1000000000541 4.973943926020663e-05
+538.2000000000542 4.9742763506013715e-05
+538.3000000000542 4.974608773183905e-05
+538.4000000000542 4.9749411937714985e-05
+538.5000000000542 4.975273612379208e-05
+538.6000000000543 4.9756129938114795e-05
+538.7000000000543 4.975956851896075e-05
+538.8000000000543 4.976302871345473e-05
+538.9000000000543 4.9766489078344885e-05
+539.0000000000543 4.9769929880439404e-05
+539.1000000000544 4.977269982926532e-05
+539.2000000000544 4.977541583631573e-05
+539.3000000000544 4.977806330508106e-05
+539.4000000000544 4.9780629352287706e-05
+539.5000000000545 4.9783102808543316e-05
+539.6000000000545 4.978547217031659e-05
+539.7000000000545 4.978773042939757e-05
+539.8000000000545 4.9789872242759865e-05
+539.9000000000545 4.9791893933279056e-05
+540.0000000000546 4.979379349006162e-05
+540.1000000000546 4.979690229372672e-05
+540.2000000000546 4.979989003392894e-05
+540.3000000000546 4.980275969114898e-05
+540.4000000000547 4.980551591404374e-05
+540.5000000000547 4.9808165019913426e-05
+540.6000000000547 4.97994583352164e-05
+540.7000000000547 4.979066106268495e-05
+540.8000000000548 4.978178458129619e-05
+540.9000000000548 4.977284192840341e-05
+541.0000000000548 4.9763847798341205e-05
+541.1000000000548 4.976492217612368e-05
+541.2000000000548 4.976598037862772e-05
+541.3000000000549 4.9767042064062174e-05
+541.4000000000549 4.976812855889415e-05
+541.5000000000549 4.9769262858347824e-05
+541.6000000000549 4.977046962771134e-05
+541.700000000055 4.9771678913664e-05
+541.800000000055 4.977289038827181e-05
+541.900000000055 4.977410367320753e-05
+542.000000000055 4.977531833944886e-05
+542.100000000055 4.97797037686114e-05
+542.2000000000551 4.978408985503082e-05
+542.3000000000551 4.978847601810626e-05
+542.4000000000551 4.979286162652281e-05
+542.5000000000551 4.979724599829259e-05
+542.6000000000552 4.981289778786161e-05
+542.7000000000552 4.982855296017971e-05
+542.8000000000552 4.98442108342102e-05
+542.9000000000552 4.9859870778404994e-05
+543.0000000000553 4.987553221095494e-05
+543.1000000000553 4.987566868191289e-05
+543.2000000000553 4.987580334341223e-05
+543.3000000000553 4.987593576532412e-05
+543.4000000000553 4.987606556800704e-05
+543.5000000000554 4.987619242236858e-05
+543.6000000000554 4.987624620539086e-05
+543.7000000000554 4.987625163292432e-05
+543.8000000000554 4.987623175136633e-05
+543.9000000000555 4.9876207938253606e-05
+544.0000000000555 4.987619990241602e-05
+544.1000000000555 4.987668824105594e-05
+544.2000000000555 4.987722674874376e-05
+544.3000000000555 4.98778301296424e-05
+544.4000000000556 4.987851141925486e-05
+544.5000000000556 4.987928198470713e-05
+544.6000000000556 4.9880151524551434e-05
+544.7000000000556 4.9881128066692836e-05
+544.8000000000557 4.988221797167428e-05
+544.9000000000557 4.9883425931079384e-05
+545.0000000000557 4.988475496723936e-05
+545.1000000000557 4.98872821043193e-05
+545.2000000000558 4.9889931438923254e-05
+545.3000000000558 4.989270099249216e-05
+545.4000000000558 4.989558711575053e-05
+545.5000000000558 4.989858448851016e-05
+545.6000000000558 4.990168611872778e-05
+545.7000000000559 4.990488050304951e-05
+545.8000000000559 4.990815646852006e-05
+545.9000000000559 4.991150111783812e-05
+546.0000000000559 4.991489982848435e-05
+546.100000000056 4.991968984133576e-05
+546.200000000056 4.992449969938009e-05
+546.300000000056 4.9929309600697444e-05
+546.400000000056 4.993409801293982e-05
+546.500000000056 4.9938841673075015e-05
+546.6000000000561 4.9943515586317326e-05
+546.7000000000561 4.994818968944358e-05
+546.8000000000561 4.995286398243429e-05
+546.9000000000561 4.995753846544761e-05
+547.0000000000562 4.996221313846929e-05
+547.1000000000562 4.99762607058737e-05
+547.2000000000562 4.9990309457170474e-05
+547.3000000000562 5.00043593924032e-05
+547.4000000000563 5.00184105116747e-05
+547.5000000000563 5.003246281490373e-05
+547.6000000000563 5.0035221669715425e-05
+547.7000000000563 5.003798046308685e-05
+547.8000000000563 5.00407391950561e-05
+547.9000000000564 5.004349786566135e-05
+548.0000000000564 5.004625647505966e-05
+548.1000000000564 5.004955105741905e-05
+548.2000000000564 5.0052845615418984e-05
+548.3000000000565 5.005614014897537e-05
+548.4000000000565 5.005943465824141e-05
+548.5000000000565 5.0062729143251605e-05
+548.6000000000565 5.006602360404053e-05
+548.7000000000565 5.006931804070212e-05
+548.8000000000566 5.007261245327094e-05
+548.9000000000566 5.007590684184092e-05
+549.0000000000566 5.0079201206387597e-05
+549.1000000000566 5.008283522932321e-05
+549.2000000000567 5.008646928043152e-05
+549.3000000000567 5.0090103359748416e-05
+549.4000000000567 5.0093737467309824e-05
+549.5000000000567 5.0097371603276706e-05
+549.6000000000568 5.0112315249663245e-05
+549.7000000000568 5.012726056527298e-05
+549.8000000000568 5.0142207550147894e-05
+549.9000000000568 5.015715620438908e-05
+550.0000000000568 5.017210652797329e-05
+550.1000000000569 5.0176690583707815e-05
+550.2000000000569 5.018127477934155e-05
+550.3000000000569 5.018585911490593e-05
+550.4000000000569 5.0190443590491805e-05
+550.500000000057 5.0195028206071176e-05
+550.600000000057 5.0199612961794364e-05
+550.700000000057 5.020419785769279e-05
+550.800000000057 5.020878289379805e-05
+550.900000000057 5.0213368070141635e-05
+551.0000000000571 5.021795338681448e-05
+551.1000000000571 5.022243746156168e-05
+551.2000000000571 5.022692169573954e-05
+551.3000000000571 5.023140608944678e-05
+551.4000000000572 5.0235890642782286e-05
+551.5000000000572 5.024037535572605e-05
+551.6000000000572 5.0244860228376875e-05
+551.7000000000572 5.024934526083368e-05
+551.8000000000573 5.0253830453135954e-05
+551.9000000000573 5.0258315805382596e-05
+552.0000000000573 5.026280131755189e-05
+552.1000000000573 5.026398311299942e-05
+552.2000000000573 5.026516470684061e-05
+552.3000000000574 5.026634609918697e-05
+552.4000000000574 5.026752729015017e-05
+552.5000000000574 5.0268708279723006e-05
+552.6000000000574 5.0269889068017025e-05
+552.7000000000575 5.027106965508445e-05
+552.8000000000575 5.027225004103696e-05
+552.9000000000575 5.027343022586724e-05
+553.0000000000575 5.027461020980854e-05
+553.1000000000575 5.028038430065593e-05
+553.2000000000576 5.0286158729356074e-05
+553.3000000000576 5.029193349594589e-05
+553.4000000000576 5.0297708600521755e-05
+553.5000000000576 5.030348404318015e-05
+553.6000000000577 5.0309259823898517e-05
+553.7000000000577 5.03150359427734e-05
+553.8000000000577 5.0320812399901304e-05
+553.9000000000577 5.0326589195259746e-05
+554.0000000000578 5.033236632888512e-05
+554.1000000000578 5.0336852715166795e-05
+554.2000000000578 5.0341339216715e-05
+554.3000000000578 5.034582583362291e-05
+554.4000000000578 5.0350312565924136e-05
+554.5000000000579 5.0354799413777965e-05
+554.6000000000579 5.037064134584357e-05
+554.7000000000579 5.038648541694464e-05
+554.8000000000579 5.040233162729594e-05
+554.900000000058 5.041817997699322e-05
+555.000000000058 5.043403046606553e-05
+555.100000000058 5.043764318432672e-05
+555.200000000058 5.0441255916223306e-05
+555.300000000058 5.044486866190852e-05
+555.4000000000581 5.044848142147598e-05
+555.5000000000581 5.04520941948407e-05
+555.6000000000581 5.0455706982155914e-05
+555.7000000000581 5.045931978351535e-05
+555.8000000000582 5.0462932598834006e-05
+555.9000000000582 5.0466545428324834e-05
+556.0000000000582 5.047015827189611e-05
+556.1000000000582 5.0462271045466635e-05
+556.2000000000583 5.045438224890517e-05
+556.3000000000583 5.04464918823244e-05
+556.4000000000583 5.043859994577744e-05
+556.5000000000583 5.043070643938359e-05
+556.6000000000583 5.043418321946358e-05
+556.7000000000584 5.043765999766994e-05
+556.8000000000584 5.04411367740373e-05
+556.9000000000584 5.044461354854078e-05
+557.0000000000584 5.044809032133504e-05
+557.1000000000585 5.045283850518441e-05
+557.2000000000585 5.045758684916255e-05
+557.3000000000585 5.0462335353304675e-05
+557.4000000000585 5.04670840177058e-05
+557.5000000000585 5.04718328424012e-05
+557.6000000000586 5.047658182742628e-05
+557.7000000000586 5.048133097281636e-05
+557.8000000000586 5.0486080278726176e-05
+557.9000000000586 5.0490829745071865e-05
+558.0000000000587 5.049557937200755e-05
+558.1000000000587 5.0499311321393394e-05
+558.2000000000587 5.050304326565403e-05
+558.3000000000587 5.0506775205000446e-05
+558.4000000000588 5.051050713928553e-05
+558.5000000000588 5.0514239068720344e-05
+558.6000000000588 5.051797099333677e-05
+558.7000000000588 5.05217029131072e-05
+558.8000000000588 5.052543482812326e-05
+558.9000000000589 5.052916673841703e-05
+559.0000000000589 5.0532898644079896e-05
+559.1000000000589 5.053604280055793e-05
+559.2000000000589 5.053918692035072e-05
+559.300000000059 5.0542331003494916e-05
+559.400000000059 5.054547505014682e-05
+559.500000000059 5.0548619060216986e-05
+559.600000000059 5.054036466564641e-05
+559.700000000059 5.053210881692182e-05
+559.8000000000591 5.0523851514063664e-05
+559.9000000000591 5.051559275721218e-05
+560.0000000000591 5.050733254639773e-05
+560.1000000000591 5.0515536819409935e-05
+560.2000000000592 5.0523742008473643e-05
+560.3000000000592 5.0531948113803804e-05
+560.4000000000592 5.054015513549591e-05
+560.5000000000592 5.0548363073585585e-05
+560.6000000000593 5.055657192828799e-05
+560.7000000000593 5.056478169963879e-05
+560.8000000000593 5.057299238779345e-05
+560.9000000000593 5.058120399284749e-05
+561.0000000000593 5.058941651489267e-05
+561.1000000000594 5.059089892572592e-05
+561.2000000000594 5.0592381094090495e-05
+561.3000000000594 5.0593863019916214e-05
+561.4000000000594 5.059534470337233e-05
+561.5000000000595 5.0596826144441805e-05
+561.6000000000595 5.058688560353718e-05
+561.7000000000595 5.05769441517412e-05
+561.8000000000595 5.056700178946704e-05
+561.9000000000595 5.055705851676873e-05
+562.0000000000596 5.0547114334008246e-05
+562.1000000000596 5.055156556102542e-05
+562.2000000000596 5.055601688951305e-05
+562.3000000000596 5.056046831968267e-05
+562.4000000000597 5.056491985144652e-05
+562.5000000000597 5.056937148495637e-05
+562.6000000000597 5.057382322024423e-05
+562.7000000000597 5.0578275057342194e-05
+562.8000000000598 5.058272699628226e-05
+562.9000000000598 5.058717903709654e-05
+563.0000000000598 5.059163117987748e-05
+563.1000000000598 5.059691729826425e-05
+563.2000000000598 5.0602203664686814e-05
+563.3000000000599 5.060749027912217e-05
+563.4000000000599 5.0612777141667136e-05
+563.5000000000599 5.06180642523587e-05
+563.6000000000599 5.0623351611233815e-05
+563.70000000006 5.062863921838944e-05
+563.80000000006 5.0633927073862585e-05
+563.90000000006 5.063921517769028e-05
+564.00000000006 5.064450352990144e-05
+564.10000000006 5.0636161712920704e-05
+564.2000000000601 5.0627818411938664e-05
+564.3000000000601 5.061947362700709e-05
+564.4000000000601 5.061112735829799e-05
+564.5000000000601 5.060277960587018e-05
+564.6000000000602 5.060587966383396e-05
+564.7000000000602 5.060897964107145e-05
+564.8000000000602 5.061207953755836e-05
+564.9000000000602 5.0615179353330326e-05
+565.0000000000603 5.061827908848531e-05
+565.1000000000603 5.062512015309487e-05
+565.2000000000603 5.063196182515184e-05
+565.3000000000603 5.063880410466808e-05
+565.4000000000603 5.064564699171543e-05
+565.5000000000604 5.065249048642576e-05
+565.6000000000604 5.065933458893114e-05
+565.7000000000604 5.066617929924341e-05
+565.8000000000604 5.067302461749461e-05
+565.9000000000605 5.067987054375675e-05
+566.0000000000605 5.0686717078100175e-05
+566.1000000000605 5.069066622594297e-05
+566.2000000000605 5.069461534787842e-05
+566.3000000000605 5.069856444381578e-05
+566.4000000000606 5.070251351384472e-05
+566.5000000000606 5.070646255799473e-05
+566.6000000000606 5.071041157641556e-05
+566.7000000000606 5.071436056901655e-05
+566.8000000000607 5.07183095358874e-05
+566.9000000000607 5.0722258477117795e-05
+567.0000000000607 5.072620739267823e-05
+567.1000000000607 5.073164888934772e-05
+567.2000000000608 5.073709065336786e-05
+567.3000000000608 5.0742532684774935e-05
+567.4000000000608 5.074797498366532e-05
+567.5000000000608 5.075341755007537e-05
+567.6000000000608 5.075886038398126e-05
+567.7000000000609 5.0764303485539634e-05
+567.8000000000609 5.076974685472669e-05
+567.9000000000609 5.077519049163906e-05
+568.0000000000609 5.078063439630502e-05
+568.100000000061 5.077281936125576e-05
+568.200000000061 5.076500265534681e-05
+568.300000000061 5.0757184278580604e-05
+568.400000000061 5.0749364231019916e-05
+568.500000000061 5.074154251272739e-05
+568.6000000000611 5.0733719123765964e-05
+568.7000000000611 5.07258940641382e-05
+568.8000000000611 5.071806733396714e-05
+568.9000000000611 5.071023893325556e-05
+569.0000000000612 5.070240886207509e-05
+569.1000000000612 5.070881397122196e-05
+569.2000000000612 5.071521952543075e-05
+569.3000000000612 5.072162552475003e-05
+569.4000000000613 5.0728031969228384e-05
+569.5000000000613 5.073443885891434e-05
+569.6000000000613 5.074084619397705e-05
+569.7000000000613 5.074725397434459e-05
+569.8000000000613 5.0753662200125965e-05
+569.9000000000614 5.0760070871430105e-05
+570.0000000000614 5.076647998825069e-05
+570.1000000000614 5.0781543489413996e-05
+570.2000000000614 5.0796608577401214e-05
+570.3000000000615 5.0811675252146006e-05
+570.4000000000615 5.082674351376287e-05
+570.5000000000615 5.0841813362298916e-05
+570.6000000000615 5.0845368293012785e-05
+570.7000000000616 5.084892320027734e-05
+570.8000000000616 5.0852478084187324e-05
+570.9000000000616 5.085603294477739e-05
+571.0000000000616 5.085958778208335e-05
+571.1000000000616 5.086530800984137e-05
+571.2000000000617 5.087102851799481e-05
+571.3000000000617 5.087674930639696e-05
+571.4000000000617 5.0882470375202986e-05
+571.5000000000617 5.088819172450756e-05
+571.6000000000618 5.0893913354224414e-05
+571.7000000000618 5.0899635264508744e-05
+571.8000000000618 5.090535745533469e-05
+571.9000000000618 5.091107992679707e-05
+572.0000000000618 5.091680267886947e-05
+572.1000000000619 5.092158640862337e-05
+572.2000000000619 5.0926370247768594e-05
+572.3000000000619 5.093115419639564e-05
+572.4000000000619 5.093593825447431e-05
+572.500000000062 5.094072242209526e-05
+572.600000000062 5.094550669928865e-05
+572.700000000062 5.09502910860848e-05
+572.800000000062 5.0955075582574354e-05
+572.900000000062 5.0959860188727225e-05
+573.0000000000621 5.096464490464224e-05
+573.1000000000621 5.0982527774315496e-05
+573.2000000000621 5.100041396258233e-05
+573.3000000000621 5.101830346995012e-05
+573.4000000000622 5.103619629662396e-05
+573.5000000000622 5.1054092443043606e-05
+573.6000000000622 5.1060439773933336e-05
+573.7000000000622 5.1066787552970316e-05
+573.8000000000623 5.107313578020275e-05
+573.9000000000623 5.1079484455799814e-05
+574.0000000000623 5.1085833579690174e-05
+574.1000000000623 5.109462652932976e-05
+574.2000000000623 5.1103420541409424e-05
+574.3000000000624 5.111221561598601e-05
+574.4000000000624 5.1121011753237544e-05
+574.5000000000624 5.112980895322091e-05
+574.6000000000624 5.113860721617476e-05
+574.7000000000625 5.114740654209546e-05
+574.8000000000625 5.115620693122185e-05
+574.9000000000625 5.1165008383671506e-05
+575.0000000000625 5.1173810899506376e-05
+575.1000000000626 5.1190449989808595e-05
+575.2000000000626 5.120709152639913e-05
+575.3000000000626 5.122373550957073e-05
+575.4000000000626 5.124038193937349e-05
+575.5000000000626 5.125703081591109e-05
+575.6000000000627 5.126209748463932e-05
+575.7000000000627 5.126716431035542e-05
+575.8000000000627 5.1272231293151684e-05
+575.9000000000627 5.127729843299915e-05
+576.0000000000628 5.1282365729998e-05
+576.1000000000628 5.1299848274632955e-05
+576.2000000000628 5.1317333812344544e-05
+576.3000000000628 5.133482234349289e-05
+576.4000000000628 5.135231386825607e-05
+576.5000000000629 5.136980838704773e-05
+576.6000000000629 5.137570867458928e-05
+576.7000000000629 5.138160929268326e-05
+576.8000000000629 5.1387510241433124e-05
+576.900000000063 5.139341152088158e-05
+577.000000000063 5.139931313101819e-05
+577.100000000063 5.141694454803286e-05
+577.200000000063 5.1434579035673775e-05
+577.300000000063 5.145221659419105e-05
+577.4000000000631 5.146985722389551e-05
+577.5000000000631 5.148750092502998e-05
+577.6000000000631 5.14935369793372e-05
+577.7000000000631 5.14995733834965e-05
+577.8000000000632 5.150561013754964e-05
+577.9000000000632 5.1511647241599206e-05
+578.0000000000632 5.151768469569181e-05
+578.1000000000632 5.153140079119576e-05
+578.2000000000633 5.154511752929949e-05
+578.3000000000633 5.1558834909746485e-05
+578.4000000000633 5.157255293240182e-05
+578.5000000000633 5.1586271597183915e-05
+578.6000000000633 5.1588371901166236e-05
+578.7000000000634 5.159047190101413e-05
+578.8000000000634 5.159257159670528e-05
+578.9000000000634 5.1594670988278206e-05
+579.0000000000634 5.159677007589632e-05
+579.1000000000635 5.160386201907617e-05
+579.2000000000635 5.161095154988568e-05
+579.3000000000635 5.161803866831014e-05
+579.4000000000635 5.1625123374334845e-05
+579.5000000000636 5.1632205667755494e-05
+579.6000000000636 5.16276707746605e-05
+579.7000000000636 5.162313550961379e-05
+579.8000000000636 5.1618599872820606e-05
+579.9000000000636 5.1614063864485976e-05
+580.0000000000637 5.1609527484881824e-05
+580.1000000000637 5.1614509812886864e-05
+580.2000000000637 5.161949228169204e-05
+580.3000000000637 5.1624474891329405e-05
+580.4000000000638 5.162945764183104e-05
+580.5000000000638 5.1634440533236464e-05
+580.6000000000638 5.165104098369536e-05
+580.7000000000638 5.166764381733064e-05
+580.8000000000638 5.1684249034179165e-05
+580.9000000000639 5.170085663446003e-05
+581.0000000000639 5.1717466618264955e-05
+581.1000000000639 5.1724893473583484e-05
+581.2000000000639 5.1732320977567623e-05
+581.300000000064 5.1739749130217786e-05
+581.400000000064 5.1747177931595196e-05
+581.500000000064 5.1754607381890334e-05
+581.600000000064 5.177366939964537e-05
+581.700000000064 5.1792735405984015e-05
+581.8000000000641 5.181180540149674e-05
+581.9000000000641 5.1830879386652225e-05
+582.0000000000641 5.184995736197102e-05
+582.1000000000641 5.185486123266674e-05
+582.2000000000642 5.185976515796556e-05
+582.3000000000642 5.186466913777183e-05
+582.4000000000642 5.1869573172233675e-05
+582.5000000000642 5.187447726138484e-05
+582.6000000000643 5.18910266086773e-05
+582.7000000000643 5.190757821237479e-05
+582.8000000000643 5.19241320724489e-05
+582.9000000000643 5.1940688189114806e-05
+583.0000000000643 5.195724656233724e-05
+583.1000000000644 5.196312534653187e-05
+583.2000000000644 5.196900444551288e-05
+583.3000000000644 5.1974883859381965e-05
+583.4000000000644 5.198076358824115e-05
+583.5000000000645 5.198664363200934e-05
+583.6000000000645 5.1992451171345014e-05
+583.7000000000645 5.199821219147358e-05
+583.8000000000645 5.20039508957309e-05
+583.9000000000646 5.2009689703783516e-05
+584.0000000000646 5.2015449251082084e-05
+584.1000000000646 5.2018177111406164e-05
+584.2000000000646 5.202096110471278e-05
+584.3000000000646 5.202381649489473e-05
+584.4000000000647 5.2026756754389655e-05
+584.5000000000647 5.202979356425747e-05
+584.6000000000647 5.204460553400406e-05
+584.7000000000647 5.2059534879644785e-05
+584.8000000000648 5.2074587274403366e-05
+584.9000000000648 5.208976665458096e-05
+585.0000000000648 5.2105075216572835e-05
+585.1000000000648 5.210833267254438e-05
+585.2000000000648 5.211171657852173e-05
+585.3000000000649 5.211522381071176e-05
+585.4000000000649 5.211884950027231e-05
+585.5000000000649 5.212258703241301e-05
+585.6000000000649 5.2126428047346126e-05
+585.700000000065 5.213036243650698e-05
+585.800000000065 5.2134378343513466e-05
+585.900000000065 5.213846216347081e-05
+586.000000000065 5.214259854263421e-05
+586.100000000065 5.214542456444666e-05
+586.2000000000651 5.214826706084326e-05
+586.3000000000651 5.215110542694012e-05
+586.4000000000651 5.215391730836615e-05
+586.5000000000651 5.215667860094006e-05
+586.6000000000652 5.215936344932961e-05
+586.7000000000652 5.216204517845322e-05
+586.8000000000652 5.216472413213666e-05
+586.9000000000652 5.2167400707213054e-05
+587.0000000000653 5.217007535328508e-05
+587.1000000000653 5.216526401007617e-05
+587.2000000000653 5.216044945049862e-05
+587.3000000000653 5.2155632283017974e-05
+587.4000000000653 5.215081316859992e-05
+587.5000000000654 5.2145992820859185e-05
+587.6000000000654 5.212947639262952e-05
+587.7000000000654 5.211295289079474e-05
+587.8000000000654 5.20964230295406e-05
+587.9000000000655 5.207988746931683e-05
+588.0000000000655 5.206334681679257e-05
+588.1000000000655 5.2035656795874095e-05
+588.2000000000655 5.200795912022333e-05
+588.3000000000656 5.1980254233970844e-05
+588.4000000000656 5.19525425277826e-05
+588.5000000000656 5.192482433870314e-05
+588.6000000000656 5.190895493095862e-05
+588.7000000000656 5.189317620828731e-05
+588.8000000000657 5.187743996274266e-05
+588.9000000000657 5.186170157149621e-05
+589.0000000000657 5.184591999092095e-05
+589.1000000000657 5.185467193071572e-05
+589.2000000000658 5.186331633707767e-05
+589.3000000000658 5.1871822675141164e-05
+589.4000000000658 5.188016391712478e-05
+589.5000000000658 5.1888316545293004e-05
+589.6000000000658 5.188453045162849e-05
+589.7000000000659 5.1880514392752234e-05
+589.8000000000659 5.187625627241301e-05
+589.9000000000659 5.187174747277983e-05
+590.0000000000659 5.1866982852688675e-05
+590.100000000066 5.189695676502848e-05
+590.200000000066 5.1926683533257485e-05
+590.300000000066 5.19561679371205e-05
+590.400000000066 5.198541824957796e-05
+590.500000000066 5.201444624722867e-05
+590.6000000000661 5.2043267218037285e-05
+590.7000000000661 5.207190293511903e-05
+590.8000000000661 5.2100376618279145e-05
+590.9000000000661 5.212871508292999e-05
+591.0000000000662 5.215694874925823e-05
+591.1000000000662 5.2152422724379005e-05
+591.2000000000662 5.2147856691259904e-05
+591.3000000000662 5.214329193373778e-05
+591.4000000000663 5.213877326630228e-05
+591.5000000000663 5.2134349032843297e-05
+591.6000000000663 5.211831421243839e-05
+591.7000000000663 5.210227604406525e-05
+591.8000000000663 5.2086234180825545e-05
+591.9000000000664 5.2070188223618604e-05
+592.0000000000664 5.2054137720989574e-05
+592.1000000000664 5.205967484258528e-05
+592.2000000000664 5.206521271062793e-05
+592.3000000000665 5.207075071799291e-05
+592.4000000000665 5.207628820428715e-05
+592.5000000000665 5.2081824456334324e-05
+592.6000000000665 5.2122674316454135e-05
+592.7000000000666 5.216353320701907e-05
+592.8000000000666 5.220440041675723e-05
+592.9000000000666 5.224527528503788e-05
+593.0000000000666 5.228615720218642e-05
+593.1000000000666 5.230211047605144e-05
+593.2000000000667 5.231806387570119e-05
+593.3000000000667 5.233401694803611e-05
+593.4000000000667 5.234996929264851e-05
+593.5000000000667 5.236592056151284e-05
+593.6000000000668 5.234637846054216e-05
+593.7000000000668 5.232673501884776e-05
+593.8000000000668 5.230703887065402e-05
+593.9000000000668 5.2287335026007705e-05
+594.0000000000668 5.2267664876596846e-05
+594.1000000000669 5.2226915817785226e-05
+594.2000000000669 5.2186264754984075e-05
+594.3000000000669 5.214574209425863e-05
+594.4000000000669 5.210537460636343e-05
+594.500000000067 5.2065185440639e-05
+594.600000000067 5.209596281397375e-05
+594.700000000067 5.212697553072628e-05
+594.800000000067 5.21582362274338e-05
+594.900000000067 5.218975407774152e-05
+595.0000000000671 5.22215347820991e-05
+595.1000000000671 5.2262648196355066e-05
+595.2000000000671 5.230402500607856e-05
+595.3000000000671 5.2345660558425634e-05
+595.4000000000672 5.238754667843249e-05
+595.5000000000672 5.242967165510247e-05
+595.6000000000672 5.244840014269342e-05
+595.7000000000672 5.2467324006562185e-05
+595.8000000000673 5.2486419726054055e-05
+595.9000000000673 5.250566017930465e-05
+596.0000000000673 5.252501463651895e-05
+596.1000000000673 5.2536585043714835e-05
+596.2000000000673 5.254819498609476e-05
+596.3000000000674 5.255980287049026e-05
+596.4000000000674 5.257136349591468e-05
+596.5000000000674 5.258282805023867e-05
+596.6000000000674 5.258231190181489e-05
+596.7000000000675 5.258178969250478e-05
+596.8000000000675 5.258126176829533e-05
+596.9000000000675 5.2580728528516676e-05
+597.0000000000675 5.2580190425905386e-05
+597.1000000000676 5.2589263752422356e-05
+597.2000000000676 5.259833756676584e-05
+597.3000000000676 5.2607412482616436e-05
+597.4000000000676 5.2616489167273466e-05
+597.5000000000676 5.2625568341768964e-05
+597.6000000000677 5.2646503265039855e-05
+597.7000000000677 5.266744198398705e-05
+597.8000000000677 5.268838521927873e-05
+597.9000000000677 5.270933363938393e-05
+598.0000000000678 5.2730287860210886e-05
+598.1000000000678 5.273636266398432e-05
+598.2000000000678 5.2742439426039194e-05
+598.3000000000678 5.274851860184801e-05
+598.4000000000678 5.2754600593588666e-05
+598.5000000000679 5.276068574999214e-05
+598.6000000000679 5.27669221149492e-05
+598.7000000000679 5.2773257202769246e-05
+598.8000000000679 5.277964209347335e-05
+598.900000000068 5.2786031432722465e-05
+599.000000000068 5.2792383434092025e-05
+599.100000000068 5.281021782817635e-05
+599.200000000068 5.282794456720282e-05
+599.300000000068 5.2845532487253814e-05
+599.4000000000681 5.286295397675052e-05
+599.5000000000681 5.288018498286796e-05
+599.6000000000681 5.2885318499603616e-05
+599.7000000000681 5.289022052558365e-05
+599.8000000000682 5.2894878609393714e-05
+599.9000000000682 5.289928383830921e-05
+600.0000000000682 5.2903430839753276e-05
+600.1000000000682 5.291882396896299e-05
+600.2000000000683 5.2933960170732246e-05
+600.3000000000683 5.294884453731627e-05
+600.4000000000683 5.2963485714339294e-05
+600.5000000000683 5.297789590551012e-05
+600.6000000000683 5.2980198575752986e-05
+600.7000000000684 5.2982307427423574e-05
+600.8000000000684 5.298424637009817e-05
+600.9000000000684 5.298604291947169e-05
+601.0000000000684 5.298772819743219e-05
+601.1000000000685 5.299108005146028e-05
+601.2000000000685 5.299439384993069e-05
+601.3000000000685 5.2997711536356494e-05
+601.4000000000685 5.300107866855148e-05
+601.5000000000686 5.3004544420155546e-05
+601.6000000000686 5.30081615835745e-05
+601.7000000000686 5.3011781459683196e-05
+601.8000000000686 5.3015403699542186e-05
+601.9000000000686 5.30190279002217e-05
+602.0000000000687 5.302265360522718e-05
+602.1000000000687 5.3041974232910235e-05
+602.2000000000687 5.306129929395276e-05
+602.3000000000687 5.308062817028326e-05
+602.4000000000688 5.3099960189002284e-05
+602.5000000000688 5.3119294622211106e-05
+602.6000000000688 5.3126721053724316e-05
+602.7000000000688 5.31341493800247e-05
+602.8000000000688 5.314157887404739e-05
+602.9000000000689 5.314900886217697e-05
+603.0000000000689 5.315643872428762e-05
+603.1000000000689 5.316424882798942e-05
+603.2000000000689 5.3172057813836053e-05
+603.300000000069 5.317986522243023e-05
+603.400000000069 5.318767064795012e-05
+603.500000000069 5.3195473738199644e-05
+603.600000000069 5.32151286599548e-05
+603.700000000069 5.323473622104171e-05
+603.8000000000691 5.325432097223198e-05
+603.9000000000691 5.327390571809799e-05
+604.0000000000691 5.329351151371448e-05
+604.1000000000691 5.329958466997178e-05
+604.2000000000692 5.330571190575723e-05
+604.3000000000692 5.331190895414381e-05
+604.4000000000692 5.331818977139943e-05
+604.5000000000692 5.33245665357408e-05
+604.6000000000693 5.334299389054874e-05
+604.7000000000693 5.336153916458298e-05
+604.8000000000693 5.3380209277427284e-05
+604.9000000000693 5.339900937098775e-05
+605.0000000000693 5.3417942806557936e-05
+605.1000000000694 5.3423861687115134e-05
+605.2000000000694 5.34299117018007e-05
+605.3000000000694 5.343609075502463e-05
+605.4000000000694 5.3442394961335367e-05
+605.5000000000695 5.344881864454954e-05
+605.6000000000695 5.3467313028337126e-05
+605.7000000000695 5.34859100861922e-05
+605.8000000000695 5.3504597924769445e-05
+605.9000000000696 5.35233627882038e-05
+606.0000000000696 5.354218905423346e-05
+606.1000000000696 5.355256696821443e-05
+606.2000000000696 5.356296744537043e-05
+606.3000000000696 5.3573369244695336e-05
+606.4000000000697 5.358374926034447e-05
+606.5000000000697 5.3594082519699755e-05
+606.6000000000697 5.361632080575464e-05
+606.7000000000697 5.3638565129186805e-05
+606.8000000000698 5.366081549098803e-05
+606.9000000000698 5.368307189233796e-05
+607.0000000000698 5.3705334334469216e-05
+607.1000000000698 5.3713388187579566e-05
+607.2000000000698 5.372144278061376e-05
+607.3000000000699 5.372949811364462e-05
+607.4000000000699 5.373755418668243e-05
+607.5000000000699 5.374561099993376e-05
+607.6000000000699 5.376566714001501e-05
+607.70000000007 5.378572761781546e-05
+607.80000000007 5.380579243386131e-05
+607.90000000007 5.382586158880422e-05
+608.00000000007 5.384593508309862e-05
+608.10000000007 5.3852794377707737e-05
+608.2000000000701 5.385965411891239e-05
+608.3000000000701 5.386651430688633e-05
+608.4000000000701 5.387337494155251e-05
+608.5000000000701 5.3880236023093016e-05
+608.6000000000702 5.389911251187115e-05
+608.7000000000702 5.3917992507481365e-05
+608.8000000000702 5.393687601035354e-05
+608.9000000000702 5.39557630207294e-05
+609.0000000000703 5.397465353896823e-05
+609.1000000000703 5.39823407374245e-05
+609.2000000000703 5.399002852765971e-05
+609.3000000000703 5.399771690954627e-05
+609.4000000000703 5.400540588327064e-05
+609.5000000000704 5.401309544883927e-05
+609.6000000000704 5.403281696168426e-05
+609.7000000000704 5.405254249222309e-05
+609.8000000000704 5.4072272040868856e-05
+609.9000000000705 5.409200560809743e-05
+610.0000000000705 5.411174319438479e-05
+610.1000000000705 5.4131466299921894e-05
+610.2000000000705 5.415119348428983e-05
+610.3000000000706 5.4170924747957224e-05
+610.4000000000706 5.4190660091518346e-05
+610.5000000000706 5.421039951537052e-05
+610.6000000000706 5.4218094554672585e-05
+610.7000000000706 5.422579025503148e-05
+610.8000000000707 5.423348661658196e-05
+610.9000000000707 5.424118363926994e-05
+611.0000000000707 5.4248881323238645e-05
+611.1000000000707 5.426850088176016e-05
+611.2000000000708 5.42881244081085e-05
+611.3000000000708 5.43077519028941e-05
+611.4000000000708 5.432738336653834e-05
+611.5000000000708 5.434701879945416e-05
+611.6000000000708 5.435459280979369e-05
+611.7000000000709 5.436216742752221e-05
+611.8000000000709 5.4369742652826904e-05
+611.9000000000709 5.437731848576907e-05
+612.0000000000709 5.4384894926288945e-05
+612.100000000071 5.439948940370646e-05
+612.200000000071 5.44140846908202e-05
+612.300000000071 5.442868078742441e-05
+612.400000000071 5.4443277693439485e-05
+612.500000000071 5.445787540865123e-05
+612.6000000000711 5.446039845653416e-05
+612.7000000000711 5.446292119459283e-05
+612.8000000000711 5.446544362280927e-05
+612.9000000000711 5.4467965741228603e-05
+613.0000000000712 5.447048754997036e-05
+613.1000000000712 5.448898981690955e-05
+613.2000000000712 5.4507495194371794e-05
+613.3000000000712 5.452600368252012e-05
+613.4000000000713 5.454451528164379e-05
+613.5000000000713 5.4563029991779614e-05
+613.6000000000713 5.458154781327993e-05
+613.7000000000713 5.460006874630781e-05
+613.8000000000713 5.4618592791026225e-05
+613.9000000000714 5.463711994766136e-05
+614.0000000000714 5.465565021643064e-05
+614.1000000000714 5.466219605399697e-05
+614.2000000000714 5.4668742258990104e-05
+614.3000000000715 5.467528883132824e-05
+614.4000000000715 5.468183577111896e-05
+614.5000000000715 5.468838307841536e-05
+614.6000000000715 5.470703140164216e-05
+614.7000000000716 5.472568298984073e-05
+614.8000000000716 5.4744337843190804e-05
+614.9000000000716 5.476299596206172e-05
+615.0000000000716 5.478165734668689e-05
+615.1000000000716 5.478700830198404e-05
+615.2000000000717 5.4792359368532904e-05
+615.3000000000717 5.4797710546300946e-05
+615.4000000000717 5.480306183544513e-05
+615.5000000000717 5.480841323594173e-05
+615.6000000000718 5.4825878286967816e-05
+615.7000000000718 5.48433458147479e-05
+615.8000000000718 5.486081581934063e-05
+615.9000000000718 5.487828830086768e-05
+616.0000000000719 5.489576325950586e-05
+616.1000000000719 5.490158699433798e-05
+616.2000000000719 5.490741086383173e-05
+616.3000000000719 5.491323486808206e-05
+616.4000000000719 5.491905900705736e-05
+616.500000000072 5.492488328073465e-05
+616.600000000072 5.494283367330509e-05
+616.700000000072 5.496078677213116e-05
+616.800000000072 5.497874257747734e-05
+616.900000000072 5.4996701089418216e-05
+617.0000000000721 5.501466230801938e-05
+617.1000000000721 5.502017063033537e-05
+617.2000000000721 5.50256791041068e-05
+617.3000000000721 5.503118772943197e-05
+617.4000000000722 5.5036696506219256e-05
+617.5000000000722 5.5042205434639134e-05
+617.6000000000722 5.505985293011568e-05
+617.7000000000722 5.507750300691976e-05
+617.8000000000723 5.5095155665076654e-05
+617.9000000000723 5.51128109047382e-05
+618.0000000000723 5.513046872611053e-05
+618.1000000000723 5.513547715933567e-05
+618.2000000000724 5.514048556129594e-05
+618.3000000000724 5.514549393195647e-05
+618.4000000000724 5.5150502271345784e-05
+618.5000000000724 5.515551057942899e-05
+618.6000000000724 5.516051885636152e-05
+618.7000000000725 5.516552710204504e-05
+618.8000000000725 5.517053531657168e-05
+618.9000000000725 5.517554349996994e-05
+619.0000000000725 5.518055165221436e-05
+619.1000000000726 5.519833703025064e-05
+619.2000000000726 5.52161250617994e-05
+619.3000000000726 5.523391574702711e-05
+619.4000000000726 5.5251709086036704e-05
+619.5000000000726 5.526950507898579e-05
+619.6000000000727 5.527514197860099e-05
+619.7000000000727 5.5280779051907206e-05
+619.8000000000727 5.528641629887702e-05
+619.9000000000727 5.5292053719609875e-05
+620.0000000000728 5.529769131408541e-05
+620.1000000000728 5.531306766006657e-05
+620.2000000000728 5.532844519555473e-05
+620.3000000000728 5.53438239203945e-05
+620.4000000000729 5.535920383443045e-05
+620.5000000000729 5.5374584937625384e-05
+620.6000000000729 5.537779628561567e-05
+620.7000000000729 5.538100741099357e-05
+620.8000000000729 5.538421831386192e-05
+620.900000000073 5.5387428994196696e-05
+621.000000000073 5.539063945204067e-05
+621.100000000073 5.539848694289138e-05
+621.200000000073 5.540633502238257e-05
+621.300000000073 5.5414183690633845e-05
+621.4000000000731 5.5422032947637774e-05
+621.5000000000731 5.542988279358652e-05
+621.6000000000731 5.544991734553939e-05
+621.7000000000731 5.5469955937479125e-05
+621.8000000000732 5.5489998569801774e-05
+621.9000000000732 5.5510045242966975e-05
+622.0000000000732 5.553009595729807e-05
+622.1000000000732 5.553760694782773e-05
+622.2000000000733 5.554511853782284e-05
+622.3000000000733 5.5552630727289e-05
+622.4000000000733 5.556014351629548e-05
+622.5000000000733 5.556765690504797e-05
+622.6000000000734 5.558737180908227e-05
+622.7000000000734 5.560709061237208e-05
+622.8000000000734 5.5626813315396536e-05
+622.9000000000734 5.564653991857109e-05
+623.0000000000734 5.5666270422363876e-05
+623.1000000000735 5.5670736242427966e-05
+623.2000000000735 5.5675201932188125e-05
+623.3000000000735 5.567966749167537e-05
+623.4000000000735 5.568413292085699e-05
+623.5000000000736 5.568859821976391e-05
+623.6000000000736 5.569298538596911e-05
+623.7000000000736 5.569732226115456e-05
+623.8000000000736 5.570163477429177e-05
+623.9000000000736 5.570594694102265e-05
+624.0000000000737 5.5710280862432656e-05
+624.1000000000737 5.57286424907535e-05
+624.2000000000737 5.574706747061509e-05
+624.3000000000737 5.576557221393947e-05
+624.4000000000738 5.5784171230274954e-05
+624.5000000000738 5.580287712362194e-05
+624.6000000000738 5.5809477372370956e-05
+624.7000000000738 5.581620251045337e-05
+624.8000000000739 5.5823058557599956e-05
+624.9000000000739 5.583004966758932e-05
+625.0000000000739 5.583717812732614e-05
+625.1000000000739 5.5843646549923294e-05
+625.2000000000739 5.585025110091932e-05
+625.300000000074 5.585698845404391e-05
+625.400000000074 5.586385341168166e-05
+625.500000000074 5.587083890380927e-05
+625.600000000074 5.5890176499921464e-05
+625.700000000074 5.590961802290268e-05
+625.8000000000741 5.592915083563504e-05
+625.9000000000741 5.594876041106519e-05
+626.0000000000741 5.596843032875662e-05
+626.1000000000741 5.597588879334559e-05
+626.2000000000742 5.598336570453666e-05
+626.3000000000742 5.5990838944522364e-05
+626.4000000000742 5.5998284510184124e-05
+626.5000000000742 5.60056765119933e-05
+626.6000000000743 5.600073050022051e-05
+626.7000000000743 5.5995778676987834e-05
+626.8000000000743 5.599082141233378e-05
+626.9000000000743 5.598585913284882e-05
+627.0000000000744 5.5980892321766074e-05
+627.1000000000744 5.5877581263230006e-05
+627.2000000000744 5.577424215803629e-05
+627.3000000000744 5.5670875656421356e-05
+627.4000000000744 5.556748246017243e-05
+627.5000000000745 5.546406332192353e-05
+627.6000000000745 5.529925496536843e-05
+627.7000000000745 5.513440223163409e-05
+627.8000000000745 5.4969505882311724e-05
+627.9000000000746 5.480456661411364e-05
+628.0000000000746 5.463958506045842e-05
+628.1000000000746 5.471104942142786e-05
+628.2000000000746 5.4782539469456226e-05
+628.3000000000746 5.4854055688989655e-05
+628.4000000000747 5.492559851117624e-05
+628.5000000000747 5.4997168313663864e-05
+628.6000000000747 5.510579612284909e-05
+628.7000000000747 5.5214565091011314e-05
+628.8000000000748 5.532342451958584e-05
+628.9000000000748 5.543232707580813e-05
+629.0000000000748 5.5541228828832804e-05
+629.1000000000748 5.5545326709763306e-05
+629.2000000000749 5.554930817967604e-05
+629.3000000000749 5.5553140569634764e-05
+629.4000000000749 5.555679497880831e-05
+629.5000000000749 5.5560246275942914e-05
+629.6000000000749 5.557577723060647e-05
+629.700000000075 5.559106597748244e-05
+629.800000000075 5.560609929372017e-05
+629.900000000075 5.562086766743759e-05
+630.000000000075 5.563536530312291e-05
+630.100000000075 5.568816591181277e-05
+630.2000000000751 5.57407006398523e-05
+630.3000000000751 5.579297431705584e-05
+630.4000000000751 5.584499553442553e-05
+630.5000000000751 5.5896776661444814e-05
+630.6000000000752 5.593602128877548e-05
+630.7000000000752 5.5975064226589466e-05
+630.8000000000752 5.601393034768523e-05
+630.9000000000752 5.605264840620692e-05
+631.0000000000753 5.609125104992849e-05
+631.1000000000753 5.611997511950808e-05
+631.2000000000753 5.614866249486637e-05
+631.3000000000753 5.6177357581721965e-05
+631.4000000000754 5.620610869855696e-05
+631.5000000000754 5.623496808631107e-05
+631.6000000000754 5.62639919206149e-05
+631.7000000000754 5.62930225142956e-05
+631.8000000000754 5.632205950046533e-05
+631.9000000000755 5.6351102454514283e-05
+632.0000000000755 5.638015089357641e-05
+632.1000000000755 5.640971677488549e-05
+632.2000000000755 5.6439287621670546e-05
+632.3000000000756 5.646886277626261e-05
+632.4000000000756 5.649844152230159e-05
+632.5000000000756 5.652802308463802e-05
+632.6000000000756 5.654527897931175e-05
+632.7000000000756 5.656253853196423e-05
+632.8000000000757 5.6579800969258436e-05
+632.9000000000757 5.659706557426224e-05
+633.0000000000757 5.661433168647407e-05
+633.1000000000757 5.663177757670764e-05
+633.2000000000758 5.664922383314665e-05
+633.3000000000758 5.666666996530393e-05
+633.4000000000758 5.668411553941219e-05
+633.5000000000758 5.670156017883639e-05
+633.6000000000759 5.671892413718042e-05
+633.7000000000759 5.6736235453747306e-05
+633.8000000000759 5.675352030246507e-05
+633.9000000000759 5.677080298963484e-05
+634.0000000000759 5.678810595151621e-05
+634.100000000076 5.679090847868623e-05
+634.200000000076 5.6793768134506796e-05
+634.300000000076 5.679670166949996e-05
+634.400000000076 5.679972393677173e-05
+634.500000000076 5.680284789175668e-05
+634.6000000000761 5.681843374050367e-05
+634.7000000000761 5.683414295077157e-05
+634.8000000000761 5.684998286549065e-05
+634.9000000000761 5.6865958932474054e-05
+635.0000000000762 5.6882074701702e-05
+635.1000000000762 5.688504958398247e-05
+635.2000000000762 5.688816369052356e-05
+635.3000000000762 5.68914147657134e-05
+635.4000000000763 5.689479864917477e-05
+635.5000000000763 5.689830927487315e-05
+635.6000000000763 5.691429522622318e-05
+635.7000000000763 5.693038845319171e-05
+635.8000000000764 5.6946576276425735e-05
+635.9000000000764 5.69628440374596e-05
+636.0000000000764 5.697917509569833e-05
+636.1000000000764 5.6985333438994335e-05
+636.2000000000764 5.699151438051004e-05
+636.3000000000765 5.6997695315739837e-05
+636.4000000000765 5.700385166373816e-05
+636.5000000000765 5.7009956866560896e-05
+636.6000000000765 5.7028350280056605e-05
+636.7000000000766 5.7046746464824146e-05
+636.8000000000766 5.7065145420946325e-05
+636.9000000000766 5.708354714857049e-05
+637.0000000000766 5.7101951647769276e-05
+637.1000000000766 5.7107164997553815e-05
+637.2000000000767 5.711237844385681e-05
+637.3000000000767 5.711759198671825e-05
+637.4000000000767 5.712280562624265e-05
+637.5000000000767 5.712801936235055e-05
+637.6000000000768 5.714561309392593e-05
+637.7000000000768 5.716320918178853e-05
+637.8000000000768 5.7180807625986424e-05
+637.9000000000768 5.719840842663197e-05
+638.0000000000769 5.721601158369955e-05
+638.1000000000769 5.7221769986495225e-05
+638.2000000000769 5.7227528575566996e-05
+638.3000000000769 5.723328735089049e-05
+638.400000000077 5.723904631257034e-05
+638.500000000077 5.724480546052714e-05
+638.600000000077 5.7262956692003445e-05
+638.700000000077 5.728111060317847e-05
+638.800000000077 5.7299267194222695e-05
+638.9000000000771 5.731742646517737e-05
+639.0000000000771 5.733558841633415e-05
+639.1000000000771 5.734345214793382e-05
+639.2000000000771 5.735131644224478e-05
+639.3000000000771 5.735918129919477e-05
+639.4000000000772 5.736704671884085e-05
+639.5000000000772 5.737491270130468e-05
+639.6000000000772 5.738277924657873e-05
+639.7000000000772 5.7390646354655424e-05
+639.8000000000773 5.739851402572119e-05
+639.9000000000773 5.740638225963916e-05
+640.0000000000773 5.741425105660642e-05
+640.1000000000773 5.743576399553227e-05
+640.2000000000774 5.745728183831715e-05
+640.3000000000774 5.747880458570792e-05
+640.4000000000774 5.750033223845142e-05
+640.5000000000774 5.752186479728506e-05
+640.6000000000774 5.753097656606323e-05
+640.7000000000775 5.754008930598363e-05
+640.8000000000775 5.754920301715559e-05
+640.9000000000775 5.755831769962368e-05
+641.0000000000775 5.756743335356664e-05
+641.1000000000776 5.758247719669203e-05
+641.2000000000776 5.759752188082795e-05
+641.3000000000776 5.761256740584784e-05
+641.4000000000776 5.762761377162507e-05
+641.5000000000776 5.764266097795858e-05
+641.6000000000777 5.764527207288411e-05
+641.7000000000777 5.7647882881462334e-05
+641.8000000000777 5.765049340387327e-05
+641.9000000000777 5.765310364003775e-05
+642.0000000000778 5.765571359000695e-05
+642.1000000000778 5.7659253192915674e-05
+642.2000000000778 5.766279252526166e-05
+642.3000000000778 5.7666331587088224e-05
+642.4000000000779 5.766987037837394e-05
+642.5000000000779 5.767340889923675e-05
+642.6000000000779 5.768939093547344e-05
+642.7000000000779 5.770537422793615e-05
+642.800000000078 5.7721358776436435e-05
+642.900000000078 5.7737344580915484e-05
+643.000000000078 5.7753331641109974e-05
+643.100000000078 5.775658960491718e-05
+643.200000000078 5.7759847362900056e-05
+643.3000000000781 5.7763104915103354e-05
+643.4000000000781 5.7766362261571884e-05
+643.5000000000781 5.7769619402285595e-05
+643.6000000000781 5.7772876337354186e-05
+643.7000000000781 5.7776133066757534e-05
+643.8000000000782 5.77793895904757e-05
+643.9000000000782 5.7782645908618396e-05
+644.0000000000782 5.7785902021237695e-05
+644.1000000000782 5.779841370404799e-05
+644.2000000000783 5.7810924894723895e-05
+644.3000000000783 5.78234355930297e-05
+644.4000000000783 5.783594579859986e-05
+644.5000000000783 5.784845551125378e-05
+644.6000000000784 5.7848510799522647e-05
+644.7000000000784 5.784856557077275e-05
+644.8000000000784 5.7848619825030276e-05
+644.9000000000784 5.784867356251596e-05
+645.0000000000784 5.784872678313034e-05
+645.1000000000785 5.785404920432544e-05
+645.2000000000785 5.785937173131097e-05
+645.3000000000785 5.786469436412653e-05
+645.4000000000785 5.787001710274673e-05
+645.5000000000786 5.78753399472663e-05
+645.6000000000786 5.786820204454585e-05
+645.7000000000786 5.7861061955714045e-05
+645.8000000000786 5.785391968086494e-05
+645.9000000000786 5.784677521989798e-05
+646.0000000000787 5.783962857278094e-05
+646.1000000000787 5.7836848461716026e-05
+646.2000000000787 5.7834065257026835e-05
+646.3000000000787 5.783127895818234e-05
+646.4000000000788 5.782848956452165e-05
+646.5000000000788 5.782569707543883e-05
+646.6000000000788 5.781042352285492e-05
+646.7000000000788 5.7795142695279764e-05
+646.8000000000789 5.777985459141035e-05
+646.9000000000789 5.776455920987881e-05
+647.0000000000789 5.774925654945587e-05
+647.1000000000789 5.774506693409901e-05
+647.200000000079 5.774087448608279e-05
+647.300000000079 5.773667920506159e-05
+647.400000000079 5.773248109049457e-05
+647.500000000079 5.772828014203611e-05
+647.600000000079 5.7724076359275434e-05
+647.7000000000791 5.771986974173674e-05
+647.8000000000791 5.7715660289074494e-05
+647.9000000000791 5.7711448000812795e-05
+648.0000000000791 5.7707232876567546e-05
+648.1000000000791 5.773652600904261e-05
+648.2000000000792 5.7765822703188635e-05
+648.3000000000792 5.779512295892701e-05
+648.4000000000792 5.782442677604864e-05
+648.5000000000792 5.785373415439976e-05
+648.6000000000793 5.787061153572678e-05
+648.7000000000793 5.788753972151409e-05
+648.8000000000793 5.790449337397146e-05
+648.9000000000793 5.792144900650782e-05
+649.0000000000794 5.793838498590236e-05
+649.1000000000794 5.794171717182103e-05
+649.2000000000794 5.794499009326433e-05
+649.3000000000794 5.794818774782071e-05
+649.4000000000794 5.7951296011328304e-05
+649.5000000000795 5.795430263842815e-05
+649.6000000000795 5.7994755300118104e-05
+649.7000000000795 5.803509414865149e-05
+649.8000000000795 5.8075310747669345e-05
+649.9000000000796 5.811539864324898e-05
+650.0000000000796 5.815535337108971e-05
+650.1000000000796 5.8188351675486826e-05
+650.2000000000796 5.822121873167575e-05
+650.3000000000796 5.825395613540904e-05
+650.4000000000797 5.8286567497885995e-05
+650.5000000000797 5.831905845132649e-05
+650.6000000000797 5.8313844752174504e-05
+650.7000000000797 5.830851715951378e-05
+650.8000000000798 5.830308838973396e-05
+650.9000000000798 5.829757310785028e-05
+651.0000000000798 5.829198792606342e-05
+651.1000000000798 5.825781717823221e-05
+651.2000000000799 5.822361366491477e-05
+651.3000000000799 5.818939984374717e-05
+651.4000000000799 5.81552000685949e-05
+651.5000000000799 5.8121040583307326e-05
+651.60000000008 5.811203023576756e-05
+651.70000000008 5.8103015596767106e-05
+651.80000000008 5.809399764068979e-05
+651.90000000008 5.808497740008328e-05
+652.00000000008 5.8075955966190514e-05
+652.1000000000801 5.813103148387128e-05
+652.2000000000801 5.818611831099831e-05
+652.3000000000801 5.8241217726713564e-05
+652.4000000000801 5.829633107423077e-05
+652.5000000000801 5.8351459760970036e-05
+652.6000000000802 5.838150573123459e-05
+652.7000000000802 5.841155913699092e-05
+652.8000000000802 5.8441619597552306e-05
+652.9000000000802 5.8471686672105424e-05
+653.0000000000803 5.850175985940579e-05
+653.1000000000803 5.8508041277912135e-05
+653.2000000000803 5.851432356520023e-05
+653.3000000000803 5.85206060384721e-05
+653.4000000000804 5.85268879551031e-05
+653.5000000000804 5.853316851281316e-05
+653.6000000000804 5.8551929334679276e-05
+653.7000000000804 5.857064178094494e-05
+653.8000000000804 5.858933229517725e-05
+653.9000000000805 5.860802539276316e-05
+654.0000000000805 5.8626743657810134e-05
+654.1000000000805 5.861617396022629e-05
+654.2000000000805 5.860566472287358e-05
+654.3000000000806 5.8595232598973885e-05
+654.4000000000806 5.858489226826413e-05
+654.5000000000806 5.8574656438718824e-05
+654.6000000000806 5.8577106042612576e-05
+654.7000000000806 5.857968076292641e-05
+654.8000000000807 5.8582387488464996e-05
+654.9000000000807 5.858523114760732e-05
+655.0000000000807 5.858821470778835e-05
+655.1000000000807 5.859266595107816e-05
+655.2000000000808 5.859725731223212e-05
+655.3000000000808 5.8601985881794554e-05
+655.4000000000808 5.86068467864584e-05
+655.5000000000808 5.8611833188369045e-05
+655.6000000000809 5.8629515025718833e-05
+655.7000000000809 5.864730501991001e-05
+655.8000000000809 5.8665190492588346e-05
+655.9000000000809 5.868315678429284e-05
+656.000000000081 5.870118725105056e-05
+656.100000000081 5.872131614389069e-05
+656.200000000081 5.874147129259406e-05
+656.300000000081 5.8761630081733535e-05
+656.400000000081 5.878176789542373e-05
+656.5000000000811 5.880185811410572e-05
+656.6000000000811 5.882187211160868e-05
+656.7000000000811 5.884188984131319e-05
+656.8000000000811 5.8861911303576896e-05
+656.9000000000811 5.8881936498757395e-05
+657.0000000000812 5.890196542739758e-05
+657.1000000000812 5.890798647868877e-05
+657.2000000000812 5.891400776997415e-05
+657.3000000000812 5.892002930143354e-05
+657.4000000000813 5.892605107298447e-05
+657.5000000000813 5.893207308468598e-05
+657.6000000000813 5.8950702415806803e-05
+657.7000000000813 5.896933456366375e-05
+657.8000000000814 5.8987969528331665e-05
+657.9000000000814 5.900660731008229e-05
+658.0000000000814 5.902524790905367e-05
+658.1000000000814 5.904089385362387e-05
+658.2000000000814 5.905654087126539e-05
+658.3000000000815 5.907218896182302e-05
+658.4000000000815 5.9087838125272586e-05
+658.5000000000815 5.910348836139319e-05
+658.6000000000815 5.911913967009499e-05
+658.7000000000816 5.913479205135398e-05
+658.8000000000816 5.9150445504949156e-05
+658.9000000000816 5.91661000308564e-05
+659.0000000000816 5.918175562891451e-05
+659.1000000000816 5.919027183168692e-05
+659.2000000000817 5.919878881297897e-05
+659.3000000000817 5.9207306572812734e-05
+659.4000000000817 5.921582511127593e-05
+659.5000000000817 5.922434442846672e-05
+659.6000000000818 5.924549413298184e-05
+659.7000000000818 5.926664824998511e-05
+659.8000000000818 5.92878067800652e-05
+659.9000000000818 5.9308969723745e-05
+660.0000000000819 5.9330137081534474e-05
+660.1000000000819 5.9335295199927986e-05
+660.2000000000819 5.934045338841348e-05
+660.3000000000819 5.9345611647097976e-05
+660.400000000082 5.93507699760227e-05
+660.500000000082 5.9355928375173595e-05
+660.600000000082 5.9373730313536414e-05
+660.700000000082 5.9391534519612675e-05
+660.800000000082 5.940934099349092e-05
+660.9000000000821 5.942714973525964e-05
+661.0000000000821 5.9444960744865644e-05
+661.1000000000821 5.945062939570015e-05
+661.2000000000821 5.945629826621194e-05
+661.3000000000822 5.946196735644828e-05
+661.4000000000822 5.9467636666456566e-05
+661.5000000000822 5.9473306196294534e-05
+661.6000000000822 5.94916310471775e-05
+661.7000000000822 5.9509958530673795e-05
+661.8000000000823 5.9528288646907235e-05
+661.9000000000823 5.954662139613343e-05
+662.0000000000823 5.95649567784677e-05
+662.1000000000823 5.957303023642451e-05
+662.2000000000824 5.958110435687677e-05
+662.3000000000824 5.958917913983492e-05
+662.4000000000824 5.9597254585441316e-05
+662.5000000000824 5.960533069370656e-05
+662.6000000000824 5.9613407464707035e-05
+662.7000000000825 5.962148489845334e-05
+662.8000000000825 5.9629562995021934e-05
+662.9000000000825 5.9637641754489345e-05
+663.0000000000825 5.964572117693625e-05
+663.1000000000826 5.965866990670806e-05
+663.2000000000826 5.967161840664158e-05
+663.3000000000826 5.9684566676532786e-05
+663.4000000000826 5.9697514716243505e-05
+663.5000000000827 5.971046252555926e-05
+663.6000000000827 5.971081634268143e-05
+663.7000000000827 5.9711223607514264e-05
+663.8000000000827 5.971165649745965e-05
+663.9000000000827 5.9712089250223626e-05
+664.0000000000828 5.971249816378436e-05
+664.1000000000828 5.972177511127534e-05
+664.2000000000828 5.97309882828975e-05
+664.3000000000828 5.974012012181606e-05
+664.4000000000829 5.974915512295656e-05
+664.5000000000829 5.975807983494342e-05
+664.6000000000829 5.977956482922626e-05
+664.7000000000829 5.9800917722172686e-05
+664.800000000083 5.982213359938001e-05
+664.900000000083 5.9843209423333665e-05
+665.000000000083 5.9864144037138805e-05
+665.100000000083 5.986434299489509e-05
+665.200000000083 5.9864399818362765e-05
+665.3000000000831 5.986431915346088e-05
+665.4000000000831 5.9864107531060995e-05
+665.5000000000831 5.9863773366620214e-05
+665.6000000000831 5.986333436280448e-05
+665.7000000000832 5.986280006087615e-05
+665.8000000000832 5.986218206873678e-05
+665.9000000000832 5.986149406115727e-05
+666.0000000000832 5.986075177941822e-05
+666.1000000000832 5.987789466771083e-05
+666.2000000000833 5.9895023068635416e-05
+666.3000000000833 5.991215892750829e-05
+666.4000000000833 5.9929326284591707e-05
+666.5000000000833 5.994655127841922e-05
+666.6000000000834 5.995115816172701e-05
+666.7000000000834 5.995576155834101e-05
+666.8000000000834 5.996036046233154e-05
+666.9000000000834 5.9964953806628524e-05
+667.0000000000834 5.996954046292846e-05
+667.1000000000835 5.9972418106851314e-05
+667.2000000000835 5.997528652723077e-05
+667.3000000000835 5.997814441294856e-05
+667.4000000000835 5.9980990391444994e-05
+667.5000000000836 5.998382302911028e-05
+667.6000000000836 5.9999349863177355e-05
+667.7000000000836 6.001487174772238e-05
+667.8000000000836 6.003039008049445e-05
+667.9000000000837 6.004590638249854e-05
+668.0000000000837 6.006142229861299e-05
+668.1000000000837 6.006452293281609e-05
+668.2000000000837 6.0067625594021084e-05
+668.3000000000837 6.0070732296418755e-05
+668.4000000000838 6.007384517651336e-05
+668.5000000000838 6.00769664934267e-05
+668.6000000000838 6.008001687909145e-05
+668.7000000000838 6.008301775136045e-05
+668.8000000000839 6.008599589090217e-05
+668.9000000000839 6.008897601020977e-05
+669.0000000000839 6.009198075280555e-05
+669.1000000000839 6.010482186559398e-05
+669.200000000084 6.0117726676027756e-05
+669.300000000084 6.013071165616782e-05
+669.400000000084 6.014379121647094e-05
+669.500000000084 6.015697770296573e-05
+669.600000000084 6.0157563094894775e-05
+669.7000000000841 6.015827702959405e-05
+669.8000000000841 6.0159126572151283e-05
+669.9000000000841 6.0160116772241047e-05
+670.0000000000841 6.016125066418665e-05
+670.1000000000842 6.016866914279287e-05
+670.2000000000842 6.0176232113836264e-05
+670.3000000000842 6.018393660687464e-05
+670.4000000000842 6.0191777632966416e-05
+670.5000000000842 6.0199748183211645e-05
+670.6000000000843 6.0220568157277555e-05
+670.7000000000843 6.0241501042294495e-05
+670.8000000000843 6.0262533822640294e-05
+670.9000000000843 6.028365144403847e-05
+671.0000000000844 6.0304836809792e-05
+671.1000000000844 6.0306638082319256e-05
+671.2000000000844 6.030846215213701e-05
+671.3000000000844 6.031028577307329e-05
+671.4000000000844 6.031208367493496e-05
+671.5000000000845 6.031382856265426e-05
+671.6000000000845 6.0315491116647026e-05
+671.7000000000845 6.031715341496208e-05
+671.8000000000845 6.031881545772895e-05
+671.9000000000846 6.032047724501088e-05
+672.0000000000846 6.032213877682048e-05
+672.1000000000846 6.034236727448157e-05
+672.2000000000846 6.0362599506314264e-05
+672.3000000000847 6.0382835472751886e-05
+672.4000000000847 6.040307517416143e-05
+672.5000000000847 6.042331861096543e-05
+672.6000000000847 6.0430816666221535e-05
+672.7000000000847 6.043831529364529e-05
+672.8000000000848 6.0445814493441776e-05
+672.9000000000848 6.04533142655508e-05
+673.0000000000848 6.046081461010716e-05
+673.1000000000848 6.0463585932243236e-05
+673.2000000000849 6.046635709171334e-05
+673.3000000000849 6.046912808863699e-05
+673.4000000000849 6.0471898923000975e-05
+673.5000000000849 6.0474669594858514e-05
+673.600000000085 6.047744010419635e-05
+673.700000000085 6.0480210451067736e-05
+673.800000000085 6.048298063552582e-05
+673.900000000085 6.04857506576238e-05
+674.000000000085 6.048852051736034e-05
+674.1000000000851 6.050514955754224e-05
+674.2000000000851 6.0521780194221455e-05
+674.3000000000851 6.053841242742299e-05
+674.4000000000851 6.055504625710551e-05
+674.5000000000852 6.0571681683216765e-05
+674.6000000000852 6.057555251991978e-05
+674.7000000000852 6.0579423321588175e-05
+674.8000000000852 6.0583294088270886e-05
+674.9000000000852 6.0587164819950597e-05
+675.0000000000853 6.0591035516677025e-05
+675.1000000000853 6.059590428361404e-05
+675.2000000000853 6.060077313441565e-05
+675.3000000000853 6.060564206912689e-05
+675.4000000000854 6.0610511087792575e-05
+675.5000000000854 6.061538019039126e-05
+675.6000000000854 6.062024937703433e-05
+675.7000000000854 6.062511864770034e-05
+675.8000000000854 6.0629988002367824e-05
+675.9000000000855 6.063485744114822e-05
+676.0000000000855 6.0639726963965194e-05
+676.1000000000855 6.065810826808772e-05
+676.2000000000855 6.067649214943718e-05
+676.3000000000856 6.069487860820046e-05
+676.4000000000856 6.0713267644564504e-05
+676.5000000000856 6.073165925870525e-05
+676.6000000000856 6.073726665783885e-05
+676.7000000000857 6.074287427390962e-05
+676.8000000000857 6.074848210703639e-05
+676.9000000000857 6.075409015727132e-05
+677.0000000000857 6.075969842453076e-05
+677.1000000000857 6.0761791012739444e-05
+677.2000000000858 6.0763883381087146e-05
+677.3000000000858 6.076597552963337e-05
+677.4000000000858 6.076806745843764e-05
+677.5000000000858 6.077015916750397e-05
+677.6000000000859 6.078504481482733e-05
+677.7000000000859 6.0799931123072856e-05
+677.8000000000859 6.081481809215878e-05
+677.9000000000859 6.082970572180366e-05
+678.000000000086 6.084459401205119e-05
+678.100000000086 6.085076441861466e-05
+678.200000000086 6.085693513248708e-05
+678.300000000086 6.0863106153790066e-05
+678.400000000086 6.0869277482379064e-05
+678.5000000000861 6.0875449118442166e-05
+678.6000000000861 6.088162106196788e-05
+678.7000000000861 6.0887793312944783e-05
+678.8000000000861 6.089396587149449e-05
+678.9000000000862 6.090013873753899e-05
+679.0000000000862 6.090631191119692e-05
+679.1000000000862 6.0908899783038916e-05
+679.2000000000862 6.0911487477053136e-05
+679.3000000000862 6.091407499322828e-05
+679.4000000000863 6.091666233161968e-05
+679.5000000000863 6.091924949234914e-05
+679.6000000000863 6.0921836475272276e-05
+679.7000000000863 6.092442328057753e-05
+679.8000000000864 6.092700990818694e-05
+679.9000000000864 6.092959635822257e-05
+680.0000000000864 6.0932182630685245e-05
+680.1000000000864 6.0948902320558664e-05
+680.2000000000864 6.096562368120583e-05
+680.3000000000865 6.0982346712692966e-05
+680.4000000000865 6.0999071415019606e-05
+680.5000000000865 6.101579778824091e-05
+680.6000000000865 6.101970656639909e-05
+680.7000000000866 6.102361537328362e-05
+680.8000000000866 6.10275242087462e-05
+680.9000000000866 6.1031433072971634e-05
+681.0000000000866 6.103534196594703e-05
+681.1000000000867 6.104159598964578e-05
+681.2000000000867 6.10478503064156e-05
+681.3000000000867 6.10541049162382e-05
+681.4000000000867 6.106035981929528e-05
+681.5000000000867 6.106661501543525e-05
+681.6000000000868 6.107287050483979e-05
+681.7000000000868 6.107912628735732e-05
+681.8000000000868 6.108538236316958e-05
+681.9000000000868 6.109163873225837e-05
+682.0000000000869 6.109789539467063e-05
+682.1000000000869 6.110242696270368e-05
+682.2000000000869 6.11069586354076e-05
+682.3000000000869 6.11114904127676e-05
+682.400000000087 6.111602229490231e-05
+682.500000000087 6.112055428174135e-05
+682.600000000087 6.11379277780582e-05
+682.700000000087 6.115530328338423e-05
+682.800000000087 6.117268079796697e-05
+682.9000000000871 6.119006032178685e-05
+683.0000000000871 6.120744185494391e-05
+683.1000000000871 6.120884871492596e-05
+683.2000000000871 6.121025530856207e-05
+683.3000000000872 6.121166163585283e-05
+683.4000000000872 6.121306769686551e-05
+683.5000000000872 6.121447349166755e-05
+683.6000000000872 6.121596233057805e-05
+683.7000000000872 6.121750446512944e-05
+683.8000000000873 6.121907219629504e-05
+683.9000000000873 6.122063987435199e-05
+684.0000000000873 6.122218389929949e-05
+684.1000000000873 6.12264407904923e-05
+684.2000000000874 6.123063330555536e-05
+684.3000000000874 6.123474398422353e-05
+684.4000000000874 6.123875741438648e-05
+684.5000000000874 6.124266023306137e-05
+684.6000000000874 6.124644365119749e-05
+684.7000000000875 6.125009750541399e-05
+684.8000000000875 6.125361374554572e-05
+684.9000000000875 6.12569864358206e-05
+685.0000000000875 6.126021175525902e-05
+685.1000000000876 6.126124074776577e-05
+685.2000000000876 6.126212095054056e-05
+685.3000000000876 6.126285490598072e-05
+685.4000000000876 6.126344727331103e-05
+685.5000000000877 6.126390482846247e-05
+685.6000000000877 6.11999457552502e-05
+685.7000000000877 6.113586808774191e-05
+685.8000000000877 6.107168695842944e-05
+685.9000000000877 6.100741942172467e-05
+686.0000000000878 6.09430844430709e-05
+686.1000000000878 6.0358523528822826e-05
+686.2000000000878 5.97738049019902e-05
+686.3000000000878 5.918895317046752e-05
+686.4000000000879 5.860399390294923e-05
+686.5000000000879 5.801895353140066e-05
+686.6000000000879 5.655897538960585e-05
+686.7000000000879 5.509866353158817e-05
+686.800000000088 5.363801663593249e-05
+686.900000000088 5.217703351397239e-05
+687.000000000088 5.0715713103825106e-05
+687.100000000088 5.002028784854451e-05
+687.200000000088 4.9324875196009466e-05
+687.3000000000881 4.862947458901447e-05
+687.4000000000881 4.7934085543234245e-05
+687.5000000000881 4.7238707645876674e-05
+687.6000000000881 4.8036432450978624e-05
+687.7000000000882 4.8834144367022094e-05
+687.8000000000882 4.963184294450084e-05
+687.9000000000882 5.042952766166296e-05
+688.0000000000882 5.122719791987201e-05
+688.1000000000882 5.188452907876547e-05
+688.2000000000883 5.254187815031169e-05
+688.3000000000883 5.319924432825172e-05
+688.4000000000883 5.38566267205917e-05
+688.5000000000883 5.4514024345189134e-05
+688.6000000000884 5.4334651156142534e-05
+688.7000000000884 5.415522238997711e-05
+688.8000000000884 5.397576388267672e-05
+688.9000000000884 5.37962993850908e-05
+689.0000000000884 5.3616850592350375e-05
+689.1000000000885 5.361887354281094e-05
+689.2000000000885 5.362095543759639e-05
+689.3000000000885 5.362311274291084e-05
+689.4000000000885 5.362536018472434e-05
+689.5000000000886 5.362771074862512e-05
+689.6000000000886 5.3874827139637395e-05
+689.7000000000886 5.4122084848952017e-05
+689.8000000000886 5.4369491531582256e-05
+689.9000000000887 5.461705306605761e-05
+690.0000000000887 5.4864773511672013e-05
+690.1000000000887 5.507165432764096e-05
+690.2000000000887 5.527867407597904e-05
+690.3000000000887 5.548583081147823e-05
+690.4000000000888 5.569312061366142e-05
+690.5000000000888 5.590053755110218e-05
+690.6000000000888 5.613383492804042e-05
+690.7000000000888 5.636724603449054e-05
+690.8000000000889 5.6600759795204095e-05
+690.9000000000889 5.683436302580817e-05
+691.0000000000889 5.706804039295718e-05
+691.1000000000889 5.724050488881072e-05
+691.200000000089 5.741302077648798e-05
+691.300000000089 5.758556604473705e-05
+691.400000000089 5.7758116479044066e-05
+691.500000000089 5.7930645632811566e-05
+691.600000000089 5.8090235906036e-05
+691.7000000000891 5.824985265047116e-05
+691.8000000000891 5.840949586755129e-05
+691.9000000000891 5.856916555877697e-05
+692.0000000000891 5.872886172563401e-05
+692.1000000000892 5.887159573757647e-05
+692.2000000000892 5.901433397508632e-05
+692.3000000000892 5.915707643707935e-05
+692.4000000000892 5.929982312247097e-05
+692.5000000000892 5.9442574030287826e-05
+692.6000000000893 5.955954022671427e-05
+692.7000000000893 5.9676509848860446e-05
+692.8000000000893 5.979348289578408e-05
+692.9000000000893 5.991045936674336e-05
+693.0000000000894 6.002743926066299e-05
+693.1000000000894 6.0070493907607175e-05
+693.2000000000894 6.011355427335957e-05
+693.3000000000894 6.0156620358128065e-05
+693.4000000000894 6.0199692162120355e-05
+693.5000000000895 6.024276968550964e-05
+693.6000000000895 6.02471502624406e-05
+693.7000000000895 6.025153093090635e-05
+693.8000000000895 6.025591169095895e-05
+693.9000000000896 6.026029254258338e-05
+694.0000000000896 6.02646734859111e-05
+694.1000000000896 6.028282863916532e-05
+694.2000000000896 6.0300986222746205e-05
+694.3000000000897 6.0319146236811787e-05
+694.4000000000897 6.033730868145296e-05
+694.5000000000897 6.0355473556862466e-05
+694.6000000000897 6.041237502113277e-05
+694.7000000000897 6.0469285662155836e-05
+694.8000000000898 6.052620548055337e-05
+694.9000000000898 6.058313447667861e-05
+695.0000000000898 6.0640072651056485e-05
+695.1000000000898 6.066398758918378e-05
+695.2000000000899 6.068790071271446e-05
+695.3000000000899 6.071181202162561e-05
+695.4000000000899 6.073572151569325e-05
+695.5000000000899 6.07596291946701e-05
+695.60000000009 6.07577081900554e-05
+695.70000000009 6.075578700335802e-05
+695.80000000009 6.075386563473513e-05
+695.90000000009 6.075194408414278e-05
+696.00000000009 6.075002235188032e-05
+696.1000000000901 6.083142591396883e-05
+696.2000000000901 6.091283950972524e-05
+696.3000000000901 6.09942631393485e-05
+696.4000000000901 6.107569680290309e-05
+696.5000000000902 6.115714050046536e-05
+696.6000000000902 6.125151104162364e-05
+696.7000000000902 6.134589328662379e-05
+696.8000000000902 6.144028723553283e-05
+696.9000000000902 6.153469288848447e-05
+697.0000000000903 6.16291102453403e-05
+697.1000000000903 6.164477990222739e-05
+697.2000000000903 6.16604506665137e-05
+697.3000000000903 6.16761225382858e-05
+697.4000000000904 6.169179551749616e-05
+697.5000000000904 6.17074696040738e-05
+697.6000000000904 6.169729758503356e-05
+697.7000000000904 6.168712436847631e-05
+697.8000000000904 6.167694995449407e-05
+697.9000000000905 6.166677434304466e-05
+698.0000000000905 6.165659753419943e-05
+698.1000000000905 6.162344999986249e-05
+698.2000000000905 6.159029565473657e-05
+698.3000000000906 6.155713449818133e-05
+698.4000000000906 6.152396652982488e-05
+698.5000000000906 6.149079174907067e-05
+698.6000000000906 6.1431744158024e-05
+698.7000000000907 6.137268502791781e-05
+698.8000000000907 6.131361435798233e-05
+698.9000000000907 6.125453214731374e-05
+699.0000000000907 6.119543839525971e-05
+699.1000000000907 6.119164130851545e-05
+699.2000000000908 6.11878441527704e-05
+699.3000000000908 6.11840469281316e-05
+699.4000000000908 6.118024963477327e-05
+699.5000000000908 6.117645227275874e-05
+699.6000000000909 6.11985206580545e-05
+699.7000000000909 6.122058576335117e-05
+699.8000000000909 6.124264758871911e-05
+699.9000000000909 6.126470613409427e-05
+700.000000000091 6.128676139946486e-05
+700.100000000091 6.129210845817427e-05
+700.200000000091 6.12974557544545e-05
+700.300000000091 6.130280328842874e-05
+700.400000000091 6.130815106001884e-05
+700.5000000000911 6.131349906934806e-05
+700.6000000000911 6.13188473164726e-05
+700.7000000000911 6.13241958013143e-05
+700.8000000000911 6.132954452392932e-05
+700.9000000000912 6.133489348437377e-05
+701.0000000000912 6.134024268263693e-05
+701.1000000000912 6.134572663869778e-05
+701.2000000000912 6.135121081729925e-05
+701.3000000000912 6.135669521842349e-05
+701.4000000000913 6.136217984211979e-05
+701.5000000000913 6.136766468838208e-05
+701.6000000000913 6.138609767914221e-05
+701.7000000000913 6.140453320697233e-05
+701.8000000000914 6.142297127205373e-05
+701.9000000000914 6.144141187450047e-05
+702.0000000000914 6.14598550145441e-05
+702.1000000000914 6.14597765726784e-05
+702.2000000000914 6.145969795216801e-05
+702.3000000000915 6.145961915288422e-05
+702.4000000000915 6.145954017503462e-05
+702.5000000000915 6.145946101864868e-05
+702.6000000000915 6.148528658637888e-05
+702.7000000000916 6.15111119085306e-05
+702.8000000000916 6.153693698499994e-05
+702.9000000000916 6.156276181561588e-05
+703.0000000000916 6.158858640016517e-05
+703.1000000000917 6.164175650759343e-05
+703.2000000000917 6.169492877074312e-05
+703.3000000000917 6.174810318924128e-05
+703.4000000000917 6.180127976284912e-05
+703.5000000000917 6.18544584910789e-05
+703.6000000000918 6.185582297770506e-05
+703.7000000000918 6.185718733269703e-05
+703.8000000000918 6.185855155605012e-05
+703.9000000000918 6.185991564789433e-05
+704.0000000000919 6.18612796080933e-05
+704.1000000000919 6.186548389075038e-05
+704.2000000000919 6.186968824285791e-05
+704.3000000000919 6.187389266439818e-05
+704.400000000092 6.187809715535347e-05
+704.500000000092 6.188230171584061e-05
+704.600000000092 6.188650634590918e-05
+704.700000000092 6.189071104540697e-05
+704.800000000092 6.189491581451811e-05
+704.9000000000921 6.189912065315767e-05
+705.0000000000921 6.19033255614372e-05
+705.1000000000921 6.190176334200643e-05
+705.2000000000921 6.190020099960077e-05
+705.3000000000922 6.189863853423323e-05
+705.4000000000922 6.189707594591653e-05
+705.5000000000922 6.189551323481018e-05
+705.6000000000922 6.190691248468272e-05
+705.7000000000922 6.191831095714766e-05
+705.8000000000923 6.192970865219806e-05
+705.9000000000923 6.194110556975966e-05
+706.0000000000923 6.195250170989632e-05
+706.1000000000923 6.196758212151585e-05
+706.2000000000924 6.19826633306665e-05
+706.3000000000924 6.199774533734096e-05
+706.4000000000924 6.201282814159918e-05
+706.5000000000924 6.202791174329929e-05
+706.6000000000925 6.204299614250124e-05
+706.7000000000925 6.205808133913045e-05
+706.8000000000925 6.207316733324692e-05
+706.9000000000925 6.208825412464138e-05
+707.0000000000925 6.210334171343078e-05
+707.1000000000926 6.210721061327672e-05
+707.2000000000926 6.21110795605947e-05
+707.3000000000926 6.21149485555702e-05
+707.4000000000926 6.211881759818694e-05
+707.5000000000927 6.212268668836126e-05
+707.6000000000927 6.212655582621137e-05
+707.7000000000927 6.213042501178827e-05
+707.8000000000927 6.213429424500836e-05
+707.9000000000927 6.213816352598988e-05
+708.0000000000928 6.214203285472514e-05
+708.1000000000928 6.215516994388004e-05
+708.2000000000928 6.2168306929161e-05
+708.3000000000928 6.21814438105883e-05
+708.4000000000929 6.219458058811481e-05
+708.5000000000929 6.22077172615587e-05
+708.6000000000929 6.222085383094029e-05
+708.7000000000929 6.223399029614515e-05
+708.800000000093 6.22471266571935e-05
+708.900000000093 6.226026291390357e-05
+709.000000000093 6.227339906622011e-05
+709.100000000093 6.22777098475614e-05
+709.200000000093 6.228202074651525e-05
+709.3000000000931 6.228633176306916e-05
+709.4000000000931 6.229064289734552e-05
+709.5000000000931 6.229495414919734e-05
+709.6000000000931 6.229926551881425e-05
+709.7000000000932 6.230357700618394e-05
+709.8000000000932 6.230788861122669e-05
+709.9000000000932 6.231220033413234e-05
+710.0000000000932 6.231651217474881e-05
+710.1000000000932 6.231551205799594e-05
+710.2000000000933 6.231451181649661e-05
+710.3000000000933 6.231351145025964e-05
+710.4000000000933 6.231251095949602e-05
+710.5000000000933 6.231151034407977e-05
+710.6000000000934 6.231050960415451e-05
+710.7000000000934 6.230950873972906e-05
+710.8000000000934 6.230850775087959e-05
+710.9000000000934 6.230750663761492e-05
+711.0000000000935 6.230650540009517e-05
+711.1000000000935 6.23232269365539e-05
+711.2000000000935 6.233995009387585e-05
+711.3000000000935 6.2356674872144e-05
+711.4000000000935 6.237340127137414e-05
+711.5000000000936 6.239012929164922e-05
+711.6000000000936 6.24068589330523e-05
+711.7000000000936 6.242359019559912e-05
+711.8000000000936 6.244032307944004e-05
+711.9000000000937 6.245705758459076e-05
+712.0000000000937 6.24737937109733e-05
+712.1000000000937 6.246252102118639e-05
+712.2000000000937 6.245124753742772e-05
+712.3000000000937 6.243997325968498e-05
+712.4000000000938 6.242869818808064e-05
+712.5000000000938 6.241742232274937e-05
+712.6000000000938 6.241913611858958e-05
+712.7000000000938 6.242084983419664e-05
+712.8000000000939 6.242256346949661e-05
+712.9000000000939 6.242427702448289e-05
+713.0000000000939 6.242599049928689e-05
+713.1000000000939 6.243126559180454e-05
+713.200000000094 6.243654086843237e-05
+713.300000000094 6.244181632935334e-05
+713.400000000094 6.244709197448075e-05
+713.500000000094 6.24523678039302e-05
+713.600000000094 6.245772886324438e-05
+713.7000000000941 6.246314479825406e-05
+713.8000000000941 6.246858733936731e-05
+713.9000000000941 6.247403030274793e-05
+714.0000000000941 6.247944959075737e-05
+714.1000000000942 6.246736835516441e-05
+714.2000000000942 6.245522085389683e-05
+714.3000000000942 6.24429893245154e-05
+714.4000000000942 6.243065811271577e-05
+714.5000000000942 6.241821367009487e-05
+714.6000000000943 6.24056445548728e-05
+714.7000000000943 6.23929414241988e-05
+714.8000000000943 6.238009703539562e-05
+714.9000000000943 6.236710624409994e-05
+715.0000000000944 6.235396600222196e-05
+715.1000000000944 6.233842785070288e-05
+715.2000000000944 6.232274148901021e-05
+715.3000000000944 6.23069101608408e-05
+715.4000000000945 6.229093919682963e-05
+715.5000000000945 6.227483601194903e-05
+715.6000000000945 6.224560976636535e-05
+715.7000000000945 6.221627376524074e-05
+715.8000000000945 6.218684172173474e-05
+715.9000000000946 6.215732940915644e-05
+716.0000000000946 6.212775465584524e-05
+716.1000000000946 6.20092785901723e-05
+716.2000000000946 6.189078438967904e-05
+716.3000000000947 6.177229601854864e-05
+716.4000000000947 6.165383932750405e-05
+716.5000000000947 6.15354420337736e-05
+716.6000000000947 6.127418226729671e-05
+716.7000000000947 6.101293376243072e-05
+716.8000000000948 6.0751696522143844e-05
+716.9000000000948 6.0490470549195845e-05
+717.0000000000948 6.022925584655567e-05
+717.1000000000948 5.998338618450557e-05
+717.2000000000949 5.9737507943692784e-05
+717.3000000000949 5.9491621127389665e-05
+717.4000000000949 5.9245725738458905e-05
+717.5000000000949 5.8999821780294437e-05
+717.600000000095 5.8896862808513797e-05
+717.700000000095 5.8793900151638684e-05
+717.800000000095 5.86909338098908e-05
+717.900000000095 5.858796378342092e-05
+718.000000000095 5.848499007223227e-05
+718.1000000000951 5.830074270195286e-05
+718.2000000000951 5.8116509598099325e-05
+718.3000000000951 5.793229076047293e-05
+718.4000000000951 5.7748086189013625e-05
+718.5000000000952 5.7563895883860855e-05
+718.6000000000952 5.744468782164092e-05
+718.7000000000952 5.732548890897674e-05
+718.8000000000952 5.720629914672534e-05
+718.9000000000952 5.7087118535337596e-05
+719.0000000000953 5.6967947075641495e-05
+719.1000000000953 5.696483251144413e-05
+719.2000000000953 5.696171382566519e-05
+719.3000000000953 5.695859102016737e-05
+719.4000000000954 5.695546409680797e-05
+719.5000000000954 5.695233305726006e-05
+719.6000000000954 5.697513460939981e-05
+719.7000000000954 5.6997915867867206e-05
+719.8000000000955 5.702067761968803e-05
+719.9000000000955 5.7043420595282434e-05
+720.0000000000955 5.7066145468581095e-05
+720.1000000000955 5.719493143135269e-05
+720.2000000000955 5.732371565203108e-05
+720.3000000000956 5.745249863920245e-05
+720.4000000000956 5.758128084708977e-05
+720.5000000000956 5.771006267588813e-05
+720.6000000000956 5.803315668822508e-05
+720.7000000000957 5.835624903069492e-05
+720.8000000000957 5.867933841344849e-05
+720.9000000000957 5.900242357550092e-05
+721.0000000000957 5.932550328643139e-05
+721.1000000000957 5.963458255007718e-05
+721.2000000000958 5.994364353902942e-05
+721.3000000000958 6.0252685126152485e-05
+721.4000000000958 6.0561706222730244e-05
+721.5000000000958 6.087070577930631e-05
+721.6000000000959 6.0972467122490027e-05
+721.7000000000959 6.107421590764214e-05
+721.8000000000959 6.117595210289222e-05
+721.9000000000959 6.127767567671991e-05
+722.000000000096 6.137938659722935e-05
+722.100000000096 6.135290769087002e-05
+722.200000000096 6.132642291478186e-05
+722.300000000096 6.12999322773681e-05
+722.400000000096 6.127343578698097e-05
+722.5000000000961 6.124693345168074e-05
+722.6000000000961 6.103914652266349e-05
+722.7000000000961 6.083136088789087e-05
+722.8000000000961 6.062357759442187e-05
+722.9000000000962 6.041579773681262e-05
+723.0000000000962 6.0208022455827904e-05
+723.1000000000962 5.989649576356065e-05
+723.2000000000962 5.95849799334365e-05
+723.3000000000962 5.9273476217926055e-05
+723.4000000000963 5.8961985902569274e-05
+723.5000000000963 5.865051030438741e-05
+723.6000000000963 5.8610857272610236e-05
+723.7000000000963 5.857115708218225e-05
+723.8000000000964 5.853143597015489e-05
+723.9000000000964 5.849171808073925e-05
+724.0000000000964 5.845202547208407e-05
+724.1000000000964 5.8476088915134445e-05
+724.2000000000965 5.8500213031916406e-05
+724.3000000000965 5.852441391858222e-05
+724.4000000000965 5.854870567344682e-05
+724.5000000000965 5.857310039284883e-05
+724.6000000000965 5.86234962197731e-05
+724.7000000000966 5.867401541454266e-05
+724.8000000000966 5.872466520561649e-05
+724.9000000000966 5.877545087264292e-05
+725.0000000000966 5.882637573782628e-05
+725.1000000000967 5.887851870127667e-05
+725.2000000000967 5.893080348724789e-05
+725.3000000000967 5.898322750206982e-05
+725.4000000000967 5.9035786159705355e-05
+725.5000000000967 5.908847287329405e-05
+725.6000000000968 5.9193055170752434e-05
+725.7000000000968 5.929774830740233e-05
+725.8000000000968 5.9402539887350265e-05
+725.9000000000968 5.950741542557274e-05
+726.0000000000969 5.961235832999902e-05
+726.1000000000969 5.9611334691608076e-05
+726.2000000000969 5.9610333796806554e-05
+726.3000000000969 5.960933262803835e-05
+726.400000000097 5.9608306167995886e-05
+726.500000000097 5.960722739989042e-05
+726.600000000097 5.959312353626357e-05
+726.700000000097 5.957902010871309e-05
+726.800000000097 5.956491711737077e-05
+726.9000000000971 5.9550814562234325e-05
+727.0000000000971 5.953671244333453e-05
+727.1000000000971 5.941856313410131e-05
+727.2000000000971 5.9300420287625386e-05
+727.3000000000972 5.918228390435253e-05
+727.4000000000972 5.906415398459468e-05
+727.5000000000972 5.8946030529099344e-05
+727.6000000000972 5.893143824258206e-05
+727.7000000000972 5.891684661890711e-05
+727.8000000000973 5.890225565807222e-05
+727.9000000000973 5.888766536020932e-05
+728.0000000000973 5.8873075725802606e-05
+728.1000000000973 5.908264196365654e-05
+728.2000000000974 5.929222598712653e-05
+728.3000000000974 5.9501827796134806e-05
+728.4000000000974 5.971144739060272e-05
+728.5000000000974 5.992108476975543e-05
+728.6000000000975 5.989769372952147e-05
+728.7000000000975 5.987424804272265e-05
+728.8000000000975 5.985077489965209e-05
+728.9000000000975 5.9827299439382566e-05
+729.0000000000975 5.98038447538456e-05
+729.1000000000976 5.984269642385914e-05
+729.2000000000976 5.988161116038565e-05
+729.3000000000976 5.9920606187489435e-05
+729.4000000000976 5.995969676052767e-05
+729.5000000000977 5.99988961601397e-05
+729.6000000000977 6.0089995083544955e-05
+729.7000000000977 6.0181224501254994e-05
+729.8000000000977 6.0272592083009e-05
+729.9000000000977 6.0364103514929986e-05
+730.0000000000978 6.045576248451317e-05
+730.1000000000978 6.041795593118796e-05
+730.2000000000978 6.0380292715885914e-05
+730.3000000000978 6.0342769526665506e-05
+730.4000000000979 6.030538103518277e-05
+730.5000000000979 6.026811990282516e-05
+730.6000000000979 6.026981628812635e-05
+730.7000000000979 6.0271620080997636e-05
+730.800000000098 6.027351896200837e-05
+730.900000000098 6.027549852603524e-05
+731.000000000098 6.027754228228394e-05
+731.100000000098 6.031882956239435e-05
+731.200000000098 6.036014498879903e-05
+731.3000000000981 6.040146581502394e-05
+731.4000000000981 6.044276714246141e-05
+731.5000000000981 6.0484021913759055e-05
+731.6000000000981 6.057701434020852e-05
+731.7000000000982 6.067002087362705e-05
+731.8000000000982 6.0763040093845494e-05
+731.9000000000982 6.085607063385559e-05
+732.0000000000982 6.094911117999463e-05
+732.1000000000982 6.109446597400399e-05
+732.2000000000983 6.123983465384349e-05
+732.3000000000983 6.13852160676871e-05
+732.4000000000983 6.153060911561918e-05
+732.5000000000983 6.167601274968801e-05
+732.6000000000984 6.174367692765448e-05
+732.7000000000984 6.181134087219737e-05
+732.8000000000984 6.187900456258763e-05
+732.9000000000984 6.19466679781763e-05
+733.0000000000985 6.20143310981975e-05
+733.1000000000985 6.201725409207494e-05
+733.2000000000985 6.202017079368716e-05
+733.3000000000985 6.202308120224511e-05
+733.4000000000985 6.202598531737828e-05
+733.5000000000986 6.202888313863423e-05
+733.6000000000986 6.207075063875106e-05
+733.7000000000986 6.211267352298689e-05
+733.8000000000986 6.215462477603516e-05
+733.9000000000987 6.219657946121837e-05
+734.0000000000987 6.223851472780925e-05
+734.1000000000987 6.225295712777354e-05
+734.2000000000987 6.226733752115896e-05
+734.3000000000987 6.228163946218668e-05
+734.4000000000988 6.229584864463929e-05
+734.5000000000988 6.230995290465722e-05
+734.6000000000988 6.229800633378208e-05
+734.7000000000988 6.228592909704109e-05
+734.8000000000989 6.227371354791352e-05
+734.9000000000989 6.226135407311416e-05
+735.0000000000989 6.224884709023851e-05
+735.1000000000989 6.226367521037373e-05
+735.200000000099 6.227835556050633e-05
+735.300000000099 6.229289044535934e-05
+735.400000000099 6.230728420008663e-05
+735.500000000099 6.232154319237478e-05
+735.600000000099 6.230973505285519e-05
+735.7000000000991 6.229781367338426e-05
+735.8000000000991 6.22857927045767e-05
+735.9000000000991 6.227368787679073e-05
+736.0000000000991 6.226151699761732e-05
+736.1000000000992 6.224731926788362e-05
+736.2000000000992 6.22330981709227e-05
+736.3000000000992 6.221887773347113e-05
+736.4000000000992 6.22046840477938e-05
+736.5000000000992 6.219054526950877e-05
+736.6000000000993 6.220243091044697e-05
+736.7000000000993 6.221431602292012e-05
+736.8000000000993 6.222620060693656e-05
+736.9000000000993 6.223808466243744e-05
+737.0000000000994 6.22499681895273e-05
+737.1000000000994 6.229097965590539e-05
+737.2000000000994 6.233199367165521e-05
+737.3000000000994 6.237301023669986e-05
+737.4000000000995 6.241402935089514e-05
+737.5000000000995 6.245505101408405e-05
+737.6000000000995 6.248310385317796e-05
+737.7000000000995 6.251115836465736e-05
+737.8000000000995 6.253921454837793e-05
+737.9000000000996 6.25672724042625e-05
+738.0000000000996 6.259533193220413e-05
+738.1000000000996 6.259346742471314e-05
+738.2000000000996 6.259160287338337e-05
+738.3000000000997 6.258973827829032e-05
+738.4000000000997 6.258787363944207e-05
+738.5000000000997 6.258600895685972e-05
+738.6000000000997 6.259711503775132e-05
+738.7000000000997 6.260822030211749e-05
+738.8000000000998 6.261932474985501e-05
+738.9000000000998 6.263042838099492e-05
+739.0000000000998 6.264153119562668e-05
+739.1000000000998 6.264373842933687e-05
+739.2000000000999 6.2645945615229e-05
+739.3000000000999 6.264815275329471e-05
+739.4000000000999 6.265035984352568e-05
+739.5000000000999 6.265256688606092e-05
+739.6000000001 6.266774588377571e-05
+739.7000000001 6.268292574757721e-05
+739.8000000001 6.269810647747732e-05
+739.9000000001 6.271328807348798e-05
+740.0000000001 6.272847053568538e-05
+740.1000000001001 6.274078558390256e-05
+740.2000000001001 6.275310027799729e-05
+740.3000000001001 6.276541461790522e-05
+740.4000000001001 6.277772860362928e-05
+740.5000000001002 6.279004223510517e-05
+740.6000000001002 6.280235551240299e-05
+740.7000000001002 6.281466843539125e-05
+740.8000000001002 6.282698100420735e-05
+740.9000000001002 6.28392932187197e-05
+741.0000000001003 6.28516050789867e-05
+741.1000000001003 6.285222083301629e-05
+741.2000000001003 6.285283649679112e-05
+741.3000000001003 6.285345207044403e-05
+741.4000000001004 6.285406755390617e-05
+741.5000000001004 6.285468294725615e-05
+741.6000000001004 6.286827148029303e-05
+741.7000000001004 6.288186017717916e-05
+741.8000000001005 6.289544903797386e-05
+741.9000000001005 6.290903806266922e-05
+742.0000000001005 6.292262725104045e-05
+742.1000000001005 6.29210491740804e-05
+742.2000000001005 6.291947103499275e-05
+742.3000000001006 6.291789283391941e-05
+742.4000000001006 6.291631457086784e-05
+742.5000000001006 6.291473624584542e-05
+742.6000000001006 6.29131578589269e-05
+742.7000000001007 6.291157941018682e-05
+742.8000000001007 6.291000089963263e-05
+742.9000000001007 6.290842232727182e-05
+743.0000000001007 6.290684369325943e-05
+743.1000000001007 6.291844804914627e-05
+743.2000000001008 6.293005177980186e-05
+743.3000000001008 6.2941654885109e-05
+743.4000000001008 6.295325736515197e-05
+743.5000000001008 6.296485921986773e-05
+743.6000000001009 6.296349165601324e-05
+743.7000000001009 6.296212403026286e-05
+743.8000000001009 6.296075634262299e-05
+743.9000000001009 6.295938859316717e-05
+744.000000000101 6.295802078197124e-05
+744.100000000101 6.295899006127857e-05
+744.200000000101 6.295995923737451e-05
+744.300000000101 6.296092831038964e-05
+744.400000000101 6.296189728018582e-05
+744.5000000001011 6.296286614689359e-05
+744.6000000001011 6.296383491057638e-05
+744.7000000001011 6.296480357116319e-05
+744.8000000001011 6.296577212871741e-05
+744.9000000001012 6.296674058323531e-05
+745.0000000001012 6.296770893484668e-05
+745.1000000001012 6.296793833062384e-05
+745.2000000001012 6.296816763602332e-05
+745.3000000001012 6.296839685104519e-05
+745.4000000001013 6.296862597575667e-05
+745.5000000001013 6.296885501022503e-05
+745.6000000001013 6.296908395438315e-05
+745.7000000001013 6.296931280836542e-05
+745.8000000001014 6.296954157217194e-05
+745.9000000001014 6.296977024573555e-05
+746.0000000001014 6.296999882918852e-05
+746.1000000001014 6.296808760019023e-05
+746.2000000001015 6.296617633215377e-05
+746.3000000001015 6.29642650251543e-05
+746.4000000001015 6.296235367919976e-05
+746.5000000001015 6.296044229443244e-05
+746.6000000001015 6.295853087072591e-05
+746.7000000001016 6.295661940828956e-05
+746.8000000001016 6.295470790706419e-05
+746.9000000001016 6.295279636712486e-05
+747.0000000001016 6.295088478856422e-05
+747.1000000001017 6.296625408993063e-05
+747.2000000001017 6.298162434248023e-05
+747.3000000001017 6.299699554616138e-05
+747.4000000001017 6.30123677009895e-05
+747.5000000001017 6.302774080689973e-05
+747.6000000001018 6.303014569811892e-05
+747.7000000001018 6.303255055085399e-05
+747.8000000001018 6.303495536509595e-05
+747.9000000001018 6.30373601408357e-05
+748.0000000001019 6.303976487806e-05
+748.1000000001019 6.303798621872601e-05
+748.2000000001019 6.303620750984685e-05
+748.3000000001019 6.303442875156471e-05
+748.400000000102 6.303264994382015e-05
+748.500000000102 6.30308710866209e-05
+748.600000000102 6.302909218010907e-05
+748.700000000102 6.302731322429248e-05
+748.800000000102 6.3025534219246e-05
+748.9000000001021 6.302375516491023e-05
+749.0000000001021 6.302197606136217e-05
+749.1000000001021 6.302226672760302e-05
+749.2000000001021 6.302255730615273e-05
+749.3000000001022 6.302284779707829e-05
+749.4000000001022 6.30231382003795e-05
+749.5000000001022 6.302342851605621e-05
+749.6000000001022 6.302371874424252e-05
+749.7000000001022 6.302400888480398e-05
+749.8000000001023 6.302429893794189e-05
+749.9000000001023 6.302458890358887e-05
+750.0000000001023 6.302487878181111e-05
+750.1000000001023 6.302437107642329e-05
+750.2000000001024 6.302386328160646e-05
+750.3000000001024 6.302335539729659e-05
+750.4000000001024 6.302284742349682e-05
+750.5000000001024 6.302233936035783e-05
+750.6000000001025 6.303479866278152e-05
+750.7000000001025 6.304725766668448e-05
+750.8000000001025 6.30597163720624e-05
+750.9000000001025 6.307217477884386e-05
+751.0000000001025 6.308463288707811e-05
+751.1000000001026 6.308393184633567e-05
+751.2000000001026 6.308323072098361e-05
+751.3000000001026 6.308252951102567e-05
+751.4000000001026 6.308182821653298e-05
+751.5000000001027 6.308112683757652e-05
+751.6000000001027 6.3080425374093e-05
+751.7000000001027 6.307972382622057e-05
+751.8000000001027 6.307902219389594e-05
+751.9000000001028 6.307832047725728e-05
+752.0000000001028 6.307761867624124e-05
+752.1000000001028 6.307685204577885e-05
+752.2000000001028 6.307608533172472e-05
+752.3000000001028 6.3075318534083e-05
+752.4000000001029 6.307455165285777e-05
+752.5000000001029 6.307378468812029e-05
+752.6000000001029 6.307301763987473e-05
+752.7000000001029 6.307225050819228e-05
+752.800000000103 6.307148329314425e-05
+752.900000000103 6.307071599466763e-05
+753.000000000103 6.306994861284889e-05
+753.100000000103 6.308406706839086e-05
+753.200000000103 6.309818589958605e-05
+753.3000000001031 6.311230510634893e-05
+753.4000000001031 6.312642468866113e-05
+753.5000000001031 6.31405446464908e-05
+753.6000000001031 6.314161351061792e-05
+753.7000000001032 6.314262696837625e-05
+753.8000000001032 6.314361362327203e-05
+753.9000000001032 6.314459996166732e-05
+754.0000000001032 6.314561035262946e-05
+754.1000000001033 6.314483759892113e-05
+754.2000000001033 6.314413130656607e-05
+754.3000000001033 6.314350948484295e-05
+754.4000000001033 6.314298802326514e-05
+754.5000000001033 6.314258069237682e-05
+754.6000000001034 6.314229914648165e-05
+754.7000000001034 6.314215291720665e-05
+754.8000000001034 6.314214941775698e-05
+754.9000000001034 6.314229394301145e-05
+755.0000000001035 6.314258966957604e-05
+755.1000000001035 6.314275986416013e-05
+755.2000000001035 6.31430812392904e-05
+755.3000000001035 6.314355061537364e-05
+755.4000000001035 6.314416269456057e-05
+755.5000000001036 6.31449100607353e-05
+755.6000000001036 6.314578317682474e-05
+755.7000000001036 6.314677039100757e-05
+755.8000000001036 6.314785793271526e-05
+755.9000000001037 6.314902991249016e-05
+756.0000000001037 6.315026832163206e-05
+756.1000000001037 6.315237835346934e-05
+756.2000000001037 6.315451248853547e-05
+756.3000000001038 6.315664635943558e-05
+756.4000000001038 6.315875347744073e-05
+756.5000000001038 6.316080523237925e-05
+756.6000000001038 6.317574066073414e-05
+756.7000000001038 6.319067683984334e-05
+756.8000000001039 6.320561377039235e-05
+756.9000000001039 6.322055145312975e-05
+757.0000000001039 6.323548988858377e-05
+757.1000000001039 6.32363017722694e-05
+757.200000000104 6.323711355689046e-05
+757.300000000104 6.323792524309853e-05
+757.400000000104 6.323873683153759e-05
+757.500000000104 6.323954832291058e-05
+757.600000000104 6.324035972057781e-05
+757.7000000001041 6.324117102039023e-05
+757.8000000001041 6.324198222102667e-05
+757.9000000001041 6.324279332118026e-05
+758.0000000001041 6.324360431937081e-05
+758.1000000001042 6.319168745919563e-05
+758.2000000001042 6.313977051930166e-05
+758.3000000001042 6.308785349876728e-05
+758.4000000001042 6.303593639662385e-05
+758.5000000001043 6.298401921082949e-05
+758.6000000001043 6.240029325607001e-05
+758.7000000001043 6.181662017517958e-05
+758.8000000001043 6.123297070867663e-05
+758.9000000001043 6.0649318690064364e-05
+759.0000000001044 6.006564094422e-05
+759.1000000001044 5.773300516386424e-05
+759.2000000001044 5.5400106391878914e-05
+759.3000000001044 5.30669368738164e-05
+759.4000000001045 5.073349321946617e-05
+759.5000000001045 4.8399776009887556e-05
+759.6000000001045 4.498875828193905e-05
+759.7000000001045 4.157740554498973e-05
+759.8000000001045 3.816573526212442e-05
+759.9000000001046 3.475376766674524e-05
+760.0000000001046 3.134152519378183e-05
+760.1000000001046 2.9524297583678166e-05
+760.2000000001046 2.77070439058697e-05
+760.3000000001047 2.5889778526340826e-05
+760.4000000001047 2.4072516251879214e-05
+760.5000000001047 2.2255272029617686e-05
+760.6000000001047 2.244942532193837e-05
+760.7000000001048 2.2643529002790344e-05
+760.8000000001048 2.2837586997683857e-05
+760.9000000001048 2.3031604174066564e-05
+761.0000000001048 2.322558637706194e-05
+761.1000000001048 2.5068029181828308e-05
+761.2000000001049 2.691045667684872e-05
+761.3000000001049 2.875287783004893e-05
+761.4000000001049 3.059530547804485e-05
+761.5000000001049 3.2437756635085716e-05
+761.600000000105 3.4371078603839536e-05
+761.700000000105 3.6304404080773565e-05
+761.800000000105 3.823773305714742e-05
+761.900000000105 4.017106552421423e-05
+762.000000000105 4.2104401468632036e-05
+762.1000000001051 4.1830984676969774e-05
+762.2000000001051 4.1557580072733935e-05
+762.3000000001051 4.128418765664181e-05
+762.4000000001051 4.1010807429478755e-05
+762.5000000001052 4.0737439390418215e-05
+762.6000000001052 3.969865201745573e-05
+762.7000000001052 3.865991118926955e-05
+762.8000000001052 3.762121690862421e-05
+762.9000000001053 3.658256917828736e-05
+763.0000000001053 3.554396800333764e-05
+763.1000000001053 3.5556305420717434e-05
+763.2000000001053 3.5568642323318146e-05
+763.3000000001053 3.558097871119902e-05
+763.4000000001054 3.5593314584217816e-05
+763.5000000001054 3.56056499435723e-05
+763.6000000001054 3.618870267853116e-05
+763.7000000001054 3.677173450719578e-05
+763.8000000001055 3.7354745427198146e-05
+763.9000000001055 3.7937735435899895e-05
+764.0000000001055 3.852070453105643e-05
+764.1000000001055 3.922031949910703e-05
+764.2000000001055 3.991990723143719e-05
+764.3000000001056 4.0619467726038596e-05
+764.4000000001056 4.131900098076639e-05
+764.5000000001056 4.2018506993883856e-05
+764.6000000001056 4.2847669993909e-05
+764.7000000001057 4.367680071004961e-05
+764.8000000001057 4.4505899139824256e-05
+764.9000000001057 4.533496528081592e-05
+765.0000000001057 4.616399913038131e-05
+765.1000000001058 4.690289693040801e-05
+765.2000000001058 4.764178694521243e-05
+765.3000000001058 4.838066917169396e-05
+765.4000000001058 4.91195436066824e-05
+765.5000000001058 4.985841024684562e-05
+765.6000000001059 5.0441664981748445e-05
+765.7000000001059 5.102491354348224e-05
+765.8000000001059 5.1608155929532827e-05
+765.9000000001059 5.219139213751829e-05
+766.000000000106 5.277462216477413e-05
+766.100000000106 5.3279134021030225e-05
+766.200000000106 5.378362321795973e-05
+766.300000000106 5.428808975415985e-05
+766.400000000106 5.479253362822635e-05
+766.5000000001061 5.529695483871728e-05
+766.6000000001061 5.582728338091813e-05
+766.7000000001061 5.63575880970389e-05
+766.8000000001061 5.688786898549054e-05
+766.9000000001062 5.741812604474925e-05
+767.0000000001062 5.794835927290107e-05
+767.1000000001062 5.8298669518176884e-05
+767.2000000001062 5.864898311746165e-05
+767.3000000001063 5.8999300069120724e-05
+767.4000000001063 5.9349620371585385e-05
+767.5000000001063 5.9699944023122625e-05
+767.6000000001063 5.9894700372500446e-05
+767.7000000001063 6.0089458541285685e-05
+767.8000000001064 6.028421852880849e-05
+767.9000000001064 6.047898033406293e-05
+768.0000000001064 6.0673743956174246e-05
+768.1000000001064 6.0802082071954035e-05
+768.2000000001065 6.09304145599927e-05
+768.3000000001065 6.105874141998325e-05
+768.4000000001065 6.118706265161825e-05
+768.5000000001065 6.131537825448221e-05
+768.6000000001065 6.140471620373638e-05
+768.7000000001066 6.149399612182214e-05
+768.8000000001066 6.158324565782248e-05
+768.9000000001066 6.167249055396675e-05
+769.0000000001066 6.176175463078666e-05
+769.1000000001067 6.183951191098085e-05
+769.2000000001067 6.191733424869483e-05
+769.3000000001067 6.199523956334474e-05
+769.4000000001067 6.207324378139371e-05
+769.5000000001068 6.215136082360427e-05
+769.6000000001068 6.225552362532326e-05
+769.7000000001068 6.235981986581447e-05
+769.8000000001068 6.24642583945888e-05
+769.9000000001068 6.256884595433024e-05
+770.0000000001069 6.267358716294769e-05
+770.1000000001069 6.27395002001234e-05
+770.2000000001069 6.28055678328943e-05
+770.3000000001069 6.287178791869596e-05
+770.400000000107 6.293815613003297e-05
+770.500000000107 6.30046659430089e-05
+770.600000000107 6.303242093300803e-05
+770.700000000107 6.306029879690245e-05
+770.800000000107 6.30882844331093e-05
+770.9000000001071 6.311636066153606e-05
+771.0000000001071 6.31445082190178e-05
+771.1000000001071 6.315909776100851e-05
+771.2000000001071 6.317371259854503e-05
+771.3000000001072 6.318832719211828e-05
+771.4000000001072 6.320291392449955e-05
+771.5000000001072 6.321744309872187e-05
+771.6000000001072 6.321890973841152e-05
+771.7000000001073 6.322036820197482e-05
+771.8000000001073 6.322181935648844e-05
+771.9000000001073 6.322326400467381e-05
+772.0000000001073 6.322470288523088e-05
+772.1000000001073 6.322761401425613e-05
+772.2000000001074 6.323052074728002e-05
+772.3000000001074 6.323342363015813e-05
+772.4000000001074 6.323632314461506e-05
+772.5000000001074 6.323921970830006e-05
+772.6000000001075 6.324211628158579e-05
+772.7000000001075 6.324501582533847e-05
+772.8000000001075 6.324791875786329e-05
+772.9000000001075 6.325082556180611e-05
+773.0000000001075 6.32537367839765e-05
+773.1000000001076 6.326773379344414e-05
+773.2000000001076 6.328173680389256e-05
+773.3000000001076 6.329574655840435e-05
+773.4000000001076 6.330976386509267e-05
+773.5000000001077 6.332378959688698e-05
+773.6000000001077 6.332493448267683e-05
+773.7000000001077 6.332613749218263e-05
+773.8000000001077 6.332736890453085e-05
+773.9000000001078 6.33286010564837e-05
+774.0000000001078 6.33298083362491e-05
+774.1000000001078 5.699905708384301e-05
+774.2000000001078 5.066775451859772e-05
+774.3000000001078 4.433590797915064e-05
+774.4000000001079 3.8003533812710223e-05
+774.5000000001079 3.1670656346960593e-05
+774.6000000001079 2.533730686125736e-05
+774.7000000001079 1.9003524723293256e-05
+774.800000000108 1.266935028826068e-05
+774.900000000108 6.334826939232095e-06
+775.000000000108 0.0
+775.100000000108 0.0
+775.200000000108 0.0
+775.3000000001081 0.0
+775.4000000001081 0.0
+775.5000000001081 0.0
+775.6000000001081 0.0
+775.7000000001082 0.0
+775.8000000001082 0.0
+775.9000000001082 0.0
+776.0000000001082 0.0
+776.1000000001083 0.0
+776.2000000001083 0.0
+776.3000000001083 0.0
+776.4000000001083 0.0
+776.5000000001083 0.0
+776.6000000001084 0.0
+776.7000000001084 0.0
+776.8000000001084 0.0
+776.9000000001084 0.0
+777.0000000001085 7.55723493555898e-15
+777.1000000001085 6.9677747333791745e-06
+777.2000000001085 1.3935220182132673e-05
+777.3000000001085 2.090233633750643e-05
+777.4000000001085 2.786912318316219e-05
+777.5000000001086 3.483558070280864e-05
+777.6000000001086 4.1801708880142244e-05
+777.7000000001086 4.876750769891376e-05
+777.8000000001086 5.5732977142847045e-05
+777.9000000001087 6.269811719566851e-05
+778.0000000001087 6.966292783629159e-05
+778.1000000001087 7.21969105206458e-05
+778.2000000001087 7.473094821143133e-05
+778.3000000001088 7.726504089809494e-05
+778.4000000001088 7.979918857024148e-05
+778.5000000001088 8.233339121757353e-05
+778.6000000001088 8.486764882945488e-05
+778.7000000001088 8.74019613955982e-05
+778.8000000001089 8.993632890554663e-05
+778.9000000001089 9.247075134884284e-05
+779.0000000001089 9.500522871515081e-05
+779.1000000001089 9.755925131706573e-05
+779.200000000109 0.0001001143415376445
+779.300000000109 0.000102670499383841
+779.400000000109 0.00010522772486291962
+779.500000000109 0.00010778601798190133
+779.600000000109 0.00011032279475716373
+779.7000000001091 0.00011285960057632904
+779.8000000001091 0.00011539643542863788
+779.9000000001091 0.00011793329930333049
+780.0000000001091 0.00012047019217718689
+780.1000000001092 0.00011159051844289413
+780.2000000001092 0.0001027113095921685
+780.3000000001092 9.383256565030325e-05
+780.4000000001092 8.49542866420254e-05
+780.5000000001093 7.60764725924555e-05
+780.6000000001093 6.719912352649316e-05
+780.7000000001093 5.832223946903417e-05
+780.8000000001093 4.94458204450229e-05
+780.9000000001093 4.056986647931959e-05
+781.0000000001094 3.169437760648762e-05
+781.1000000001094 3.169459191675836e-05
+781.2000000001094 3.1694806182618206e-05
+781.3000000001094 3.1695020404100177e-05
+781.4000000001095 3.169523458120381e-05
+781.5000000001095 3.16954487139286e-05
+781.6000000001095 3.169566280230758e-05
+781.7000000001095 3.169587684634031e-05
+781.8000000001095 3.1696090846059804e-05
+781.9000000001096 3.169630480143202e-05
+782.0000000001096 3.1696518715996564e-05
+782.1000000001096 3.486562835045725e-05
+782.2000000001096 3.803463935714112e-05
+782.3000000001097 4.120355172632089e-05
+782.4000000001097 4.4372365448203005e-05
+782.5000000001097 4.7541080513045095e-05
+782.6000000001097 5.0709696910958065e-05
+782.7000000001098 5.3878214632311966e-05
+782.8000000001098 5.704663366727635e-05
+782.9000000001098 6.0214954006135716e-05
+783.0000000001098 6.33831756322283e-05
+783.1000000001098 6.02132919359011e-05
+783.2000000001099 5.704348445952766e-05
+783.3000000001099 5.3873753217527186e-05
+783.4000000001099 5.0704098224438946e-05
+783.5000000001099 4.7534519494687396e-05
+783.60000000011 4.436501704289775e-05
+783.70000000011 4.11955908834361e-05
+783.80000000011 3.802624103081557e-05
+783.90000000011 3.4856967499535165e-05
+784.00000000011 3.168777030823113e-05
+784.1000000001101 3.232141571872595e-05
+784.2000000001101 3.295505677359309e-05
+784.3000000001101 3.358869347033501e-05
+784.4000000001101 3.422232580659377e-05
+784.5000000001102 3.485595377990615e-05
+784.6000000001102 3.548957738795661e-05
+784.7000000001102 3.6123196628208235e-05
+784.8000000001102 3.6756811498349636e-05
+784.9000000001103 3.7390421995919206e-05
+785.0000000001103 3.802402812272605e-05
+785.1000000001103 4.2459761217521384e-05
+785.2000000001103 4.689540993995976e-05
+785.3000000001103 5.133097427460872e-05
+785.4000000001104 5.5766454205856894e-05
+785.5000000001104 6.020184971820231e-05
+785.6000000001104 6.463716079609424e-05
+785.7000000001104 6.907238742405588e-05
+785.8000000001105 7.35075295864744e-05
+785.9000000001105 7.794258726796651e-05
+786.0000000001105 8.237756045080873e-05
+786.1000000001105 8.489621897555932e-05
+786.2000000001105 8.741391947179224e-05
+786.3000000001106 8.993066188076381e-05
+786.4000000001106 9.2446446143742e-05
+786.5000000001106 9.496127220212808e-05
+786.6000000001106 9.749511850486407e-05
+786.7000000001107 0.00010002904498002426
+786.8000000001107 0.00010256305161816755
+786.9000000001107 0.00010509713840974089
+787.0000000001107 0.0001076313053349781
+787.1000000001108 0.00010064472663362594
+787.2000000001108 9.3661220152146e-05
+787.3000000001108 8.668078577819162e-05
+787.4000000001108 7.97034233990733e-05
+787.5000000001108 7.272913290219417e-05
+787.6000000001109 6.577140574525002e-05
+787.7000000001109 5.8813895882257235e-05
+787.8000000001109 5.185660333414626e-05
+787.9000000001109 4.4899528121970484e-05
+788.000000000111 3.794267027933381e-05
+788.100000000111 4.236054107382371e-05
+788.200000000111 4.6776578436813355e-05
+788.300000000111 5.119078235601701e-05
+788.400000000111 5.560315281917543e-05
+788.5000000001111 6.001368981404174e-05
+788.6000000001111 6.440916219408153e-05
+788.7000000001111 6.880098509898458e-05
+788.8000000001111 7.31891585274901e-05
+788.9000000001112 7.757368247824357e-05
+789.0000000001112 8.195455695211264e-05
+789.1000000001112 8.822114397550371e-05
+789.2000000001112 9.448235923018421e-05
+789.3000000001113 0.00010073820292458412
+789.4000000001113 0.00010698867526698687
+789.5000000001113 0.00011323377646599634
+789.6000000001113 0.00011952279447994113
+789.7000000001113 0.0001258116284344161
+789.8000000001114 0.00013210027831016513
+789.9000000001114 0.0001383887440879336
+790.0000000001114 0.0001446770257452739
+790.1000000001114 0.00014782091625171762
+790.2000000001115 0.0001509647528713382
+790.3000000001115 0.0001541085355930381
+790.4000000001115 0.00015725226440621004
+790.5000000001115 0.00016039593929993194
+790.6000000001115 0.00016353956026328217
+790.7000000001116 0.0001666831272851623
+790.8000000001116 0.00016982664035518482
+790.9000000001116 0.00017297009946226543
+791.0000000001116 0.00017611350461172847
+791.1000000001117 0.00019380505222578584
+791.2000000001117 0.0002115111811529781
+791.3000000001117 0.00022923189139606554
+791.4000000001117 0.0002469671829574517
+791.5000000001118 0.0002647170558398137
+791.6000000001118 0.0002823653103301973
+791.7000000001118 0.00030001362078803287
+791.8000000001118 0.00031766198714717244
+791.9000000001118 0.00033531040934054834
+792.0000000001119 0.0003529588872777155
+792.1000000001119 0.0003491062385716367
+792.2000000001119 0.0003452551257939095
+792.3000000001119 0.000341405548971739
+792.400000000112 0.0003375575081323117
+792.500000000112 0.0003337110033033046
+792.600000000112 0.0003300019496463377
+792.700000000112 0.0003262913201850552
+792.800000000112 0.0003225791149210543
+792.9000000001121 0.0003188653338573389
+793.0000000001121 0.00031514997699351064
+793.1000000001121 0.0003084061667932023
+793.2000000001121 0.0003016538302123649
+793.3000000001122 0.00029489296734000784
+793.4000000001122 0.000288123578265208
+793.5000000001122 0.00028134566307770804
+793.6000000001122 0.0002745592218663875
+793.7000000001123 0.0002677642547210747
+793.8000000001123 0.00026096076173105537
+793.9000000001123 0.00025414874298541445
+794.0000000001123 0.0002473281985974567
+794.1000000001123 0.0002612797893901834
+794.2000000001124 0.00027523135235368976
+794.3000000001124 0.0002891828874185307
+794.4000000001124 0.00030313439451558176
+794.5000000001124 0.000317085873575369
+794.6000000001125 0.00033096962773425647
+794.7000000001125 0.0003448476476143671
+794.8000000001125 0.00035871993316347316
+794.9000000001125 0.00037258648433015666
+795.0000000001125 0.0003864473010760809
+795.1000000001126 0.0004128829079249183
+795.2000000001126 0.00043929632655496936
+795.3000000001126 0.00046568755737070504
+795.4000000001126 0.0004920566007767287
+795.5000000001127 0.0005184034571779639
+795.6000000001127 0.0005443927720906713
+795.7000000001127 0.000570327226549502
+795.8000000001127 0.0005962068217046988
+795.9000000001128 0.0006220315587075465
+796.0000000001128 0.0006478014387216294
+796.1000000001128 0.0006839998338427452
+796.2000000001128 0.0007201684002712853
+796.3000000001128 0.0007563071375498236
+796.4000000001129 0.0007924160452197531
+796.5000000001129 0.0008284951228255922
+796.6000000001129 0.000865616562179468
+796.7000000001129 0.00090279843559722
+796.800000000113 0.0009400407435783642
+796.900000000113 0.000977343486624096
+797.000000000113 0.0010147066652533723
+797.100000000113 0.001072702409829568
+797.200000000113 0.0011307669012584358
+797.3000000001131 0.0011889001356190129
+797.4000000001131 0.0012471021089875134
+797.5000000001131 0.0013053728174430297
+797.6000000001131 0.0013631531294482923
+797.7000000001132 0.0014209549902683217
+797.8000000001132 0.001478778398491947
+797.9000000001132 0.001536623352708031
+798.0000000001132 0.0015944898515535863
+798.1000000001133 0.0016963522832765053
+798.2000000001133 0.0017982137816789662
+798.3000000001133 0.0019000743464042233
+798.4000000001133 0.002001933977087919
+798.5000000001133 0.0021037926733737597
+798.6000000001134 0.0022056504349016494
+798.7000000001134 0.0023075072613139526
+798.8000000001134 0.0024093631522458165
+798.9000000001134 0.0025112181073448357
+799.0000000001135 0.0026130721263184884
+799.1000000001135 0.002773879080473327
+799.2000000001135 0.0029346976037063813
+799.3000000001135 0.0030955276957385907
+799.4000000001136 0.003256369356294269
+799.5000000001136 0.003417222585093118
+799.6000000001136 0.003576620952608156
+799.7000000001136 0.0037358990219405978
+799.8000000001136 0.0038950567785888458
+799.9000000001137 0.004054094208060167
+800.0000000001137 0.004213011296051753
+800.1000000001137 0.004545233350726631
+800.2000000001137 0.004877174249566382
+800.3000000001138 0.005208833999881465
+800.4000000001138 0.005540212608973485
+800.5000000001138 0.005871310084165569
+800.6000000001138 0.006204679798933602
+800.7000000001138 0.006538042767245057
+800.8000000001139 0.006871398988079459
+800.9000000001139 0.007204748460430291
+801.0000000001139 0.007538091183464183
+801.1000000001139 0.008029168962575058
+801.200000000114 0.008520258155994595
+801.300000000114 0.009011358761973082
+801.400000000114 0.00950247077877085
+801.500000000114 0.0099935942046526
+801.600000000114 0.010486886389505777
+801.7000000001141 0.01098039209772785
+801.8000000001141 0.011474111334641338
+801.9000000001141 0.011968044105509045
+802.0000000001141 0.012462190415845394
+802.1000000001142 0.013136221348742497
+802.2000000001142 0.013810265209304808
+802.3000000001142 0.014484321995132951
+802.4000000001142 0.015158391703872938
+802.5000000001143 0.015832474333125967
+802.6000000001143 0.016506569880525394
+802.7000000001143 0.017180678343707366
+802.8000000001143 0.01785479972027289
+802.9000000001143 0.018528934007859415
+803.0000000001144 0.019203081204601825
+803.1000000001144 0.020309920728220326
+803.2000000001144 0.02141716757381331
+803.3000000001144 0.022524821710425014
+803.4000000001145 0.02363288310712093
+803.5000000001145 0.024741351732935495
+803.6000000001145 0.025844920591735418
+803.7000000001145 0.026948443425665946
+803.8000000001146 0.028051920232129927
+803.9000000001146 0.029155351008530565
+804.0000000001146 0.03025873575252375
+804.1000000001146 0.03152632015929529
+804.2000000001146 0.032793905679230434
+804.3000000001147 0.03406149230784179
+804.4000000001147 0.03532908004064192
+804.5000000001147 0.03659666887319958
+804.6000000001147 0.0378798088045695
+804.7000000001148 0.03916399096928542
+804.8000000001148 0.04044921536412888
+804.9000000001148 0.041735481986040976
+805.0000000001148 0.043022790832153386
+805.1000000001148 0.04455281830408025
+805.2000000001149 0.046084116938842186
+805.3000000001149 0.047616686770593365
+805.4000000001149 0.04915052783333693
+805.5000000001149 0.0506856401611453
+805.600000000115 0.05220067381921471
+805.700000000115 0.05371573949285901
+805.800000000115 0.055230837176928484
+805.900000000115 0.05674596686616632
+806.000000000115 0.05826112855553166
+806.1000000001151 0.06001781035523654
+806.2000000001151 0.061774445686235
+806.3000000001151 0.06353103454367073
+806.4000000001151 0.06528757692269517
+806.5000000001152 0.067044072818326
+806.6000000001152 0.06880052222564628
+806.7000000001152 0.07055692513988888
+806.8000000001152 0.07231328155614879
+806.9000000001153 0.07406959146952152
+807.0000000001153 0.07582585487502017
+807.1000000001153 0.07751035473461801
+807.2000000001153 0.0791948901115428
+807.3000000001153 0.08087946099980506
+807.4000000001154 0.08256406739383676
+807.5000000001154 0.08424870928764615
+807.6000000001154 0.08593338667559014
+807.7000000001154 0.08761809955185466
+807.8000000001155 0.08930284791053099
+807.9000000001155 0.09098763174599149
+808.0000000001155 0.09267245105252418
+808.1000000001155 0.09444125516464989
+808.2000000001156 0.09620938529796529
+808.3000000001156 0.09797684141257038
+808.4000000001156 0.09974362346877541
+808.5000000001156 0.10150973142669009
+808.6000000001156 0.10327516524642362
+808.7000000001157 0.10503992488841749
+808.8000000001157 0.1068040103127962
+808.9000000001157 0.10856742147979849
+809.0000000001157 0.11033015834968019
+809.1000000001158 0.11220221086470161
+809.2000000001158 0.11407345740407791
+809.3000000001158 0.1159438979796225
+809.4000000001158 0.11781353260327444
+809.5000000001158 0.11968236128713657
+809.6000000001159 0.12157532257067442
+809.7000000001159 0.12346825452563184
+809.8000000001159 0.1253611571460049
+809.9000000001159 0.12725403042566316
+810.000000000116 0.12914687435842837
+810.100000000116 0.1308803668698507
+810.200000000116 0.1326139168049909
+810.300000000116 0.13434752415839568
+810.400000000116 0.13608118892475574
+810.5000000001161 0.1378149110984109
+810.6000000001161 0.13949143992951382
+810.7000000001161 0.1411666035217453
+810.8000000001161 0.14284040179930277
+810.9000000001162 0.14451283468609938
+811.0000000001162 0.14618390210608084
+811.1000000001162 0.1480083085884918
+811.2000000001162 0.14983039083990407
+811.3000000001163 0.15165014878369054
+811.4000000001163 0.15346758234339536
+811.5000000001163 0.15528269144294543
+811.6000000001163 0.1571278868731948
+811.7000000001163 0.1589715453420733
+811.8000000001164 0.16081366679683332
+811.9000000001164 0.16265425118473525
+812.0000000001164 0.16449329845317712
+812.1000000001164 0.16644327983606777
+812.2000000001165 0.16839256139809897
+812.3000000001165 0.17034114306333273
+812.4000000001165 0.17228902475529204
+812.5000000001165 0.17423620639775195
+812.6000000001166 0.17592756197088288
+812.7000000001166 0.17761247532091143
+812.8000000001166 0.17929094585036964
+812.9000000001166 0.18096297296142444
+813.0000000001166 0.18262855605603712
+813.1000000001167 0.18410331438643818
+813.2000000001167 0.18556513737166944
+813.3000000001167 0.1870140258945198
+813.4000000001167 0.18844998083803327
+813.5000000001168 0.18987300308593996
+813.6000000001168 0.19164899104186428
+813.7000000001168 0.19341975079630022
+813.8000000001168 0.19518528270001326
+813.9000000001168 0.19694558710400384
+814.0000000001169 0.1987006643600762
+814.1000000001169 0.20111665936056902
+814.2000000001169 0.2035295012635245
+814.3000000001169 0.20593918986713747
+814.400000000117 0.20834572496938913
+814.500000000117 0.21074910636812885
+814.600000000117 0.2128299748438273
+814.700000000117 0.2149000911873145
+814.800000000117 0.21695945473835043
+814.9000000001171 0.2190080648355464
+815.0000000001171 0.2210459208191288
+815.1000000001171 0.2233864538782393
+815.2000000001171 0.225713391705368
+815.3000000001172 0.22802673377976068
+815.4000000001172 0.2303264795799849
+815.5000000001172 0.2326126285860401
+815.6000000001172 0.234936701483022
+815.7000000001173 0.23724841915092787
+815.8000000001173 0.2395477811155708
+815.9000000001173 0.2418347869031134
+816.0000000001173 0.2441094360409031
+816.1000000001173 0.24707500719217818
+816.2000000001174 0.25003190569945116
+816.3000000001174 0.25298013126504565
+816.4000000001174 0.25591968359134243
+816.5000000001174 0.2588505623830238
+816.6000000001175 0.2629403532753758
+816.7000000001175 0.2670506241812893
+816.8000000001175 0.2711813757662797
+816.9000000001175 0.2753326086963579
+817.0000000001176 0.27950432363552147
+817.1000000001176 0.2828596497743626
+817.2000000001176 0.28621498170410126
+817.3000000001176 0.28957031941470995
+817.4000000001176 0.2929256628958297
+817.5000000001177 0.2962810121350393
+817.6000000001177 0.29845359199472504
+817.7000000001177 0.3005996879049247
+817.8000000001177 0.30271929978879736
+817.9000000001178 0.30481242756795707
+818.0000000001178 0.30687907117062985
+818.1000000001178 0.3111396031260327
+818.2000000001178 0.31542076669094476
+818.3000000001178 0.3197225621233431
+818.4000000001179 0.32404498968142975
+818.5000000001179 0.3283880496226547
+818.6000000001179 0.33253253815958306
+818.7000000001179 0.3366932444819305
+818.800000000118 0.34087016878959986
+818.900000000118 0.34506331128277296
+819.000000000118 0.34927267215930713
+819.100000000118 0.3532594844000466
+819.200000000118 0.35724825852881176
+819.3000000001181 0.36123899471451454
+819.4000000001181 0.36523169312527165
+819.5000000001181 0.36922635392950953
+819.6000000001181 0.3731418595003139
+819.7000000001182 0.3770576252944723
+819.8000000001182 0.3809736513109974
+819.9000000001182 0.3848899375484874
+820.0000000001182 0.38880648401032614
+820.1000000001183 0.3945767172793621
+820.2000000001183 0.40038558730114815
+820.3000000001183 0.4062330909074351
+820.4000000001183 0.4121192249294166
+820.5000000001183 0.41804398619709293
+820.6000000001184 0.4234711058965856
+820.7000000001184 0.42892713943225896
+820.8000000001184 0.4344120844251631
+820.9000000001184 0.43992593849718503
+821.0000000001185 0.4454686992653439
+821.1000000001185 0.44858693721006593
+821.2000000001185 0.45170273167152075
+821.3000000001185 0.45481608227664705
+821.4000000001186 0.4579269886523701
+821.5000000001186 0.4610354504240789
+821.6000000001186 0.46327083921035883
+821.7000000001186 0.4654914084206016
+821.8000000001186 0.4676971559695006
+821.9000000001187 0.46988807977067704
+822.0000000001187 0.47206417773123205
+822.1000000001187 0.4709527580699981
+822.2000000001187 0.4697926543709617
+822.3000000001188 0.46858386451871703
+822.4000000001188 0.4673263863997299
+822.5000000001188 0.4660202178954804
+822.6000000001188 0.4633244801755493
+822.7000000001188 0.460564196179275
+822.8000000001189 0.45773936310948604
+822.9000000001189 0.45484997816834305
+823.0000000001189 0.45189603857806643
+823.1000000001189 0.4567845254463261
+823.200000000119 0.46169920153185257
+823.300000000119 0.4666400650836444
+823.400000000119 0.4716071143494847
+823.500000000119 0.47660034758471
+823.600000000119 0.4847811421832796
+823.7000000001191 0.49302126768369225
+823.8000000001191 0.5013207201314712
+823.9000000001191 0.509679495571311
+824.0000000001191 0.5180975900392351
+824.1000000001192 0.522846490576175
+824.2000000001192 0.5276170430567947
+824.3000000001192 0.5324092483111009
+824.4000000001192 0.5372231071707311
+824.5000000001193 0.5420586204610867
+824.6000000001193 0.545197728951652
+824.7000000001193 0.5483423011848358
+824.8000000001193 0.5514923373639498
+824.9000000001193 0.5546478376922857
+825.0000000001194 0.5578088023682908
+825.1000000001194 0.5589465512334596
+825.2000000001194 0.5600807409435025
+825.3000000001194 0.5612113713503484
+825.4000000001195 0.5623384423065635
+825.5000000001195 0.5634619536629063
+825.6000000001195 0.5645819052719868
+825.7000000001195 0.5656982969864449
+825.8000000001196 0.5668111286570996
+825.9000000001196 0.5679204001366376
+826.0000000001196 0.569026111281859
+826.1000000001196 0.571990185306831
+826.2000000001196 0.5749619610176971
+826.3000000001197 0.577941438458406
+826.4000000001197 0.5809286176728544
+826.5000000001197 0.5839234987024704
+826.6000000001197 0.5859482788770325
+826.7000000001198 0.5879756306511019
+826.8000000001198 0.5900055540353074
+826.9000000001198 0.5920380490415265
+827.0000000001198 0.5940731156728776
+827.1000000001198 0.5925242251311158
+827.2000000001199 0.5909611403675812
+827.3000000001199 0.5893838613758997
+827.4000000001199 0.5877923881478743
+827.5000000001199 0.586186720680749
+827.60000000012 0.5858196812059793
+827.70000000012 0.5854443618107684
+827.80000000012 0.5850607624910085
+827.90000000012 0.5846688832407103
+828.00000000012 0.5842687240602076
+828.1000000001201 0.5858305342150156
+828.2000000001201 0.5873939696048924
+828.3000000001201 0.5889590300989372
+828.4000000001201 0.5905257155675394
+828.5000000001202 0.5920940258777412
+828.6000000001202 0.5925208338949979
+828.7000000001202 0.5929476197344448
+828.8000000001202 0.5933743833949354
+828.9000000001203 0.5938011248746686
+829.0000000001203 0.5942278441735709
+829.1000000001203 0.5949967132241322
+829.2000000001203 0.5957660106174372
+829.3000000001203 0.5965357363100383
+829.4000000001204 0.5973058902604551
+829.5000000001204 0.5980764724268096
+829.6000000001204 0.5996137623315756
+829.7000000001204 0.6011521466821169
+829.8000000001205 0.6026916253739366
+829.9000000001205 0.6042321983031791
+830.0000000001205 0.6057738653619086
+830.1000000001205 0.6061286795606289
+830.2000000001206 0.6064835685425618
+830.3000000001206 0.6068385322962504
+830.4000000001206 0.6071935708095765
+830.5000000001206 0.6075486840728238
+830.6000000001206 0.6088002965698873
+830.7000000001207 0.6100522760586018
+830.8000000001207 0.6113046224877688
+830.9000000001207 0.61255733580684
+831.0000000001207 0.6138104159612846
+831.1000000001208 0.6134117927212672
+831.2000000001208 0.6130132808756895
+831.3000000001208 0.6126148804292538
+831.4000000001208 0.6122165913866625
+831.5000000001208 0.6118184137489341
+831.6000000001209 0.6100144897050498
+831.7000000001209 0.6082119196647269
+831.8000000001209 0.6064107036427712
+831.9000000001209 0.6046108416552798
+832.000000000121 0.6028123337245156
+832.100000000121 0.604515302722918
+832.200000000121 0.6062204948040785
+832.300000000121 0.6079279095448182
+832.400000000121 0.6096375465246027
+832.5000000001211 0.6113494053220556
+832.6000000001211 0.6134488176858002
+832.7000000001211 0.615551315379847
+832.8000000001211 0.6176568978241386
+832.9000000001212 0.6197655644386263
+833.0000000001212 0.6218773146362243
+833.1000000001212 0.6209183437141376
+833.2000000001212 0.619960005608367
+833.3000000001213 0.6190023002589413
+833.4000000001213 0.6180452276092039
+833.5000000001213 0.6170887876003002
+833.6000000001213 0.6165182615820489
+833.7000000001213 0.6159480329039044
+833.8000000001214 0.6153778216294747
+833.9000000001214 0.614807369463633
+834.0000000001214 0.6142364396625547
+834.1000000001214 0.6156806684143639
+834.2000000001215 0.6171256120446014
+834.3000000001215 0.61857108953631
+834.4000000001215 0.6200169389991518
+834.5000000001215 0.6214630179090368
+834.6000000001216 0.622268771254505
+834.7000000001216 0.6230736794087204
+834.8000000001216 0.6238776554153764
+834.9000000001216 0.6246806334685789
+835.0000000001216 0.6254825690524702
+835.1000000001217 0.6251104841520483
+835.2000000001217 0.6247369876953086
+835.3000000001217 0.6243621083644934
+835.4000000001217 0.6239858963378122
+835.5000000001218 0.6236084232218536
+835.6000000001218 0.6234863093208276
+835.7000000001218 0.6233630071328269
+835.8000000001218 0.6232386680128772
+835.9000000001218 0.6231134634614208
+836.0000000001219 0.6229875851053225
+836.1000000001219 0.6232577896330938
+836.2000000001219 0.6235277552986387
+836.3000000001219 0.6237977339895893
+836.400000000122 0.6240679983288048
+836.500000000122 0.6243388417226325
+836.600000000122 0.6246106299214739
+836.700000000122 0.6248825043891878
+836.800000000122 0.6251544566502099
+836.9000000001221 0.6254264788493261
+837.0000000001221 0.6256985637523595
+837.1000000001221 0.6253770109903368
+837.2000000001221 0.6250554023005923
+837.3000000001222 0.6247337322645108
+837.4000000001222 0.6244119961109096
+837.5000000001222 0.624090189708347
+837.6000000001222 0.6236406194528827
+837.7000000001223 0.6231911046448432
+837.8000000001223 0.6227416412248098
+837.9000000001223 0.6222922245125132
+838.0000000001223 0.6218428492119504
+838.1000000001223 0.6221293264947253
+838.2000000001224 0.6224157631957989
+838.3000000001224 0.6227021519448594
+838.4000000001224 0.6229884847272515
+838.5000000001224 0.6232747528777433
+838.6000000001225 0.6234336117643035
+838.7000000001225 0.6235924449730162
+838.8000000001225 0.6237512629388967
+838.9000000001225 0.6239100767410329
+839.0000000001226 0.6240688981028745
+839.1000000001226 0.6243111468053026
+839.2000000001226 0.6245533862269801
+839.3000000001226 0.6247956300592192
+839.4000000001226 0.6250378926472491
+839.5000000001227 0.6252801889968916
+839.6000000001227 0.6256501924570392
+839.7000000001227 0.6260202892597182
+839.8000000001227 0.6263904753014512
+839.9000000001228 0.6267607458322638
+840.0000000001228 0.6271310954534802
+840.1000000001228 0.6272672682259005
+840.2000000001228 0.6274032878639251
+840.3000000001228 0.6275391470714559
+840.4000000001229 0.6276748379095632
+840.5000000001229 0.6278103517911574
+840.6000000001229 0.6279456794869009
+840.7000000001229 0.6280808469053555
+840.800000000123 0.6282158540738336
+840.900000000123 0.6283507010215829
+841.000000000123 0.6284853877742638
+841.100000000123 0.6284397655103793
+841.200000000123 0.6283940914441003
+841.3000000001231 0.6283483655809728
+841.4000000001231 0.6283025879271346
+841.5000000001231 0.6282567584873154
+841.6000000001231 0.6282108772403129
+841.7000000001232 0.6281649442373088
+841.8000000001232 0.6281189595025793
+841.9000000001232 0.6280729230612015
+842.0000000001232 0.6280268349388636
+842.1000000001233 0.6283526988461058
+842.2000000001233 0.6286785926984517
+842.3000000001233 0.6290045164800472
+842.4000000001233 0.6293304701785306
+842.5000000001234 0.6296564537769272
+842.6000000001234 0.6298541874157142
+842.7000000001234 0.6300518703848285
+842.8000000001234 0.630249502680608
+842.9000000001234 0.6304470842999592
+843.0000000001235 0.630644615237388
+843.1000000001235 0.6295005691033714
+843.2000000001235 0.6283570881844385
+843.3000000001235 0.6272141723858115
+843.4000000001236 0.6260718216100679
+843.5000000001236 0.6249300357614161
+843.6000000001236 0.6240415145547298
+843.7000000001236 0.6231516446390344
+843.8000000001236 0.6222609944770607
+843.9000000001237 0.6213700876393454
+844.0000000001237 0.6204794030946739
+844.1000000001237 0.6207907596452934
+844.2000000001237 0.621103340536151
+844.3000000001238 0.6214175022741067
+844.4000000001238 0.6217335603780686
+844.5000000001238 0.6220517892778306
+844.6000000001238 0.6224991783344195
+844.7000000001239 0.6229492950864669
+844.8000000001239 0.6234022917616936
+844.9000000001239 0.6238582791699604
+845.0000000001239 0.6243173265598417
+845.1000000001239 0.6243635801368891
+845.200000000124 0.6244127935992363
+845.300000000124 0.624464904770152
+845.400000000124 0.6245198095676956
+845.500000000124 0.6245773619867605
+845.600000000124 0.6245104410291266
+845.7000000001241 0.6244457760472888
+845.8000000001241 0.6243830939154621
+845.9000000001241 0.6243220797437173
+846.0000000001241 0.6242623768950052
+846.1000000001242 0.6240445480050018
+846.2000000001242 0.6238272324174495
+846.3000000001242 0.6236099483692252
+846.4000000001242 0.6233921729600742
+846.5000000001243 0.6231733422291318
+846.6000000001243 0.6232063932993772
+846.7000000001243 0.6232394062679608
+846.8000000001243 0.6232723811438772
+846.9000000001244 0.6233053179354257
+847.0000000001244 0.6233382166503544
+847.1000000001244 0.6240140394003991
+847.2000000001244 0.6246898078366919
+847.3000000001244 0.6253655219491496
+847.4000000001245 0.6260411817296069
+847.5000000001245 0.6267167871670595
+847.6000000001245 0.6272648195128726
+847.7000000001245 0.6278125228853586
+847.8000000001246 0.6283598972883868
+847.9000000001246 0.6289069427259328
+848.0000000001246 0.6294536592004191
+848.1000000001246 0.6286540909844613
+848.2000000001246 0.6278545463832566
+848.3000000001247 0.6270550254038496
+848.4000000001247 0.626255528054164
+848.5000000001247 0.6254560543416771
+848.6000000001247 0.6246583056707434
+848.7000000001248 0.6238616686462861
+848.8000000001248 0.623065574781161
+848.9000000001248 0.6222695002499408
+849.0000000001248 0.6214729656166225
+849.1000000001249 0.6212184910778905
+849.2000000001249 0.6209627236400904
+849.3000000001249 0.620705311051099
+849.4000000001249 0.6204459432886523
+849.5000000001249 0.62018435247702
+849.600000000125 0.6199203128301227
+849.700000000125 0.6196536405074163
+849.800000000125 0.6193841935642874
+849.900000000125 0.619111871866854
+850.000000000125 0.6188366170008553
+850.1000000001251 0.6193194168722579
+850.2000000001251 0.619799161348093
+850.3000000001251 0.6202759059215255
+850.4000000001251 0.6207497479495369
+850.5000000001252 0.6212208268104525
+850.6000000001252 0.6216893240603228
+850.7000000001252 0.6221554635508908
+850.8000000001252 0.6226195116414591
+850.9000000001253 0.6230817773271604
+851.0000000001253 0.6235426123895758
+851.1000000001253 0.6234185697461233
+851.2000000001253 0.6232940337845312
+851.3000000001254 0.6231694855527723
+851.4000000001254 0.6230454475364232
+851.5000000001254 0.6229224836239774
+851.6000000001254 0.6230549375645003
+851.7000000001254 0.6231873783936753
+851.8000000001255 0.6233198061154198
+851.9000000001255 0.6234522207338064
+852.0000000001255 0.6235846222516347
+852.1000000001255 0.6230928332113953
+852.2000000001256 0.6226011467569136
+852.3000000001256 0.6221095628977826
+852.4000000001256 0.6216180816430537
+852.5000000001256 0.6211267030026864
+852.6000000001256 0.6207617007504365
+852.7000000001257 0.6203966012431276
+852.8000000001257 0.6200314045342383
+852.9000000001257 0.6196661106745701
+853.0000000001257 0.6193007197173847
+853.1000000001258 0.6199065042452295
+853.2000000001258 0.6205121678012147
+853.3000000001258 0.6211177103737037
+853.4000000001258 0.621723131949689
+853.5000000001259 0.6223284325172322
+853.6000000001259 0.6228053027149171
+853.7000000001259 0.6232807116171383
+853.8000000001259 0.6237552218401897
+853.9000000001259 0.6242293558638745
+854.000000000126 0.6247035958602918
+854.100000000126 0.6240566860008414
+854.200000000126 0.6234112443355234
+854.300000000126 0.6227676220715214
+854.400000000126 0.6221261272201863
+854.5000000001261 0.621487024816294
+854.6000000001261 0.6209768546733957
+854.7000000001261 0.6204692211964082
+854.8000000001261 0.6199642636016588
+854.9000000001262 0.6194620790797193
+855.0000000001262 0.6189627229703383
+855.1000000001262 0.6191721589567266
+855.2000000001262 0.6193845035780355
+855.3000000001263 0.6195996974894815
+855.4000000001263 0.6198176396919529
+855.5000000001263 0.6200381874543703
+855.6000000001263 0.6202611562104015
+855.7000000001264 0.620486319510979
+855.8000000001264 0.6207134089689864
+855.9000000001264 0.6209421141545322
+856.0000000001264 0.6211720825152441
+856.1000000001264 0.6208908650209785
+856.2000000001265 0.620610129829777
+856.3000000001265 0.6203293975696968
+856.4000000001265 0.6200481481556583
+856.5000000001265 0.6197658208819393
+856.6000000001266 0.6194818145246503
+856.7000000001266 0.6191978184164031
+856.8000000001266 0.618913832572176
+856.9000000001266 0.6186298570075421
+857.0000000001266 0.6183458917390381
+857.1000000001267 0.6183576408829558
+857.2000000001267 0.6183693723383361
+857.3000000001267 0.6183810861102769
+857.4000000001267 0.6183927822031532
+857.5000000001268 0.618404460622716
+857.6000000001268 0.6185418157341538
+857.7000000001268 0.6186791578953964
+857.8000000001268 0.6188164870804649
+857.9000000001269 0.618953803264157
+858.0000000001269 0.6190911064218332
+858.1000000001269 0.6195612479126866
+858.2000000001269 0.6200313346284881
+858.3000000001269 0.6205013665354917
+858.400000000127 0.6209713435987642
+858.500000000127 0.6214412657847758
+858.600000000127 0.6219128269781886
+858.700000000127 0.6223854255492859
+858.800000000127 0.6228584998225898
+858.9000000001271 0.6233315282577718
+859.0000000001271 0.6238040295995742
+859.1000000001271 0.6234389628751129
+859.2000000001271 0.6230726142910357
+859.3000000001272 0.6227046311605193
+859.4000000001272 0.622334703405284
+859.5000000001272 0.6219625634363894
+859.6000000001272 0.6215879860583016
+859.7000000001273 0.6212107882880954
+859.8000000001273 0.6208308292694706
+859.9000000001273 0.6204480101471676
+860.0000000001273 0.6200622739444164
+860.1000000001274 0.6197764440714816
+860.2000000001274 0.6194876948537902
+860.3000000001274 0.6191960927253772
+860.4000000001274 0.6189017455481763
+860.5000000001274 0.6186048025086819
+860.6000000001275 0.618305454019468
+860.7000000001275 0.6180039315781947
+860.8000000001275 0.6177005077260531
+860.9000000001275 0.6173954959160131
+861.0000000001276 0.6170892504075325
+861.1000000001276 0.6172877638602043
+861.2000000001276 0.6174857264496555
+861.3000000001276 0.6176836142402156
+861.4000000001276 0.6178819453848902
+861.5000000001277 0.6180812801960534
+861.6000000001277 0.618282221189593
+861.7000000001277 0.6184830854377277
+861.8000000001277 0.6186838729538665
+861.9000000001278 0.6188845837489853
+862.0000000001278 0.619085217835445
+862.1000000001278 0.6187146195829856
+862.2000000001278 0.6183439244245502
+862.3000000001279 0.6179731324404405
+862.4000000001279 0.6176022437117289
+862.5000000001279 0.6172312583194376
+862.6000000001279 0.6167350779787122
+862.700000000128 0.6162390023653181
+862.800000000128 0.6157430314759843
+862.900000000128 0.6152471653086686
+863.000000000128 0.6147514038626449
+863.100000000128 0.6153291767149497
+863.2000000001281 0.615906703771899
+863.3000000001281 0.6164839850518721
+863.4000000001281 0.617061020570601
+863.5000000001281 0.617637810346971
+863.6000000001281 0.6182126700816919
+863.7000000001282 0.6187861971415011
+863.8000000001282 0.6193589495988884
+863.9000000001282 0.619931446031248
+864.0000000001282 0.6205041653227701
+864.1000000001283 0.6203158595765466
+864.2000000001283 0.6201288853140143
+864.3000000001283 0.6199435950381902
+864.4000000001283 0.6197602992602732
+864.5000000001284 0.6195792665624453
+864.6000000001284 0.6194007236940373
+864.7000000001284 0.6192248556085093
+864.8000000001284 0.619051805500969
+864.9000000001284 0.6188816748949015
+865.0000000001285 0.6187145237051616
+865.1000000001285 0.6185664457006589
+865.2000000001285 0.618421345895722
+865.3000000001285 0.6182791599458817
+865.4000000001286 0.6181397821050028
+865.5000000001286 0.6180030652777325
+865.6000000001286 0.6178688210314769
+865.7000000001286 0.6177368196646175
+865.8000000001286 0.6176067902797208
+865.9000000001287 0.6174784207887388
+866.0000000001287 0.6173513579607262
+866.1000000001287 0.6173571073883402
+866.2000000001287 0.61736330395108
+866.3000000001288 0.6173694712095578
+866.4000000001288 0.6173750913022015
+866.5000000001288 0.6173796049450786
+866.6000000001288 0.6173824114377938
+866.7000000001289 0.6173851928186497
+866.8000000001289 0.6173879490910569
+866.9000000001289 0.6173906802590283
+867.0000000001289 0.617393386327234
+867.100000000129 0.6174415874049896
+867.200000000129 0.6174897622949674
+867.300000000129 0.6175379109971264
+867.400000000129 0.6175860335100599
+867.500000000129 0.6176341298335725
+867.6000000001291 0.617682199993436
+867.7000000001291 0.6177302439427249
+867.8000000001291 0.6177782616608237
+867.9000000001291 0.617826253127255
+868.0000000001291 0.6178742183203976
+868.1000000001292 0.617422598188907
+868.2000000001292 0.616971063202835
+868.3000000001292 0.6165196133652153
+868.4000000001292 0.6160682486792668
+868.5000000001293 0.6156169691471051
+868.6000000001293 0.6151691259193689
+868.7000000001293 0.6147235156290801
+868.8000000001293 0.6142790208630003
+868.9000000001294 0.613834609862049
+869.0000000001294 0.6133893362078835
+869.1000000001294 0.6129368343391947
+869.2000000001294 0.6124818214889374
+869.3000000001294 0.6120236055769606
+869.4000000001295 0.6115615787168224
+869.5000000001295 0.6110952169302492
+869.6000000001295 0.6107479386638148
+869.7000000001295 0.610395334833706
+869.8000000001296 0.6100371281427036
+869.9000000001296 0.6096731238562698
+870.0000000001296 0.6093032095800885
+870.1000000001296 0.6095851970700361
+870.2000000001296 0.6098611997530804
+870.3000000001297 0.6101313322249549
+870.4000000001297 0.6103957913241175
+870.5000000001297 0.6106548563088733
+870.6000000001297 0.6109088890522894
+870.7000000001298 0.6111583341058888
+870.8000000001298 0.6114037189549679
+870.9000000001298 0.6116456541487706
+871.0000000001298 0.6118848334530889
+871.1000000001299 0.6120156358299786
+871.2000000001299 0.6121453605093606
+871.3000000001299 0.6122749518358274
+871.4000000001299 0.6124054372927935
+871.50000000013 0.6125379276068454
+871.60000000013 0.6126736421400685
+871.70000000013 0.6128092347736849
+871.80000000013 0.6129446971404227
+871.90000000013 0.6130800214860905
+872.0000000001301 0.6132152006705376
+872.1000000001301 0.6129849016900591
+872.2000000001301 0.6127546398419814
+872.3000000001301 0.6125244098391989
+872.4000000001301 0.6122942070233756
+872.5000000001302 0.6120640273645026
+872.6000000001302 0.6118338422140887
+872.7000000001302 0.6116036578814767
+872.8000000001302 0.6113734806343825
+872.9000000001303 0.6111433167347208
+873.0000000001303 0.6109131724343133
+873.1000000001303 0.6108067830770242
+873.2000000001303 0.6107003580301739
+873.3000000001304 0.6105939035259212
+873.4000000001304 0.6104874257938749
+873.5000000001304 0.6103809310598296
+873.6000000001304 0.6102719295398094
+873.7000000001304 0.6101613197816433
+873.8000000001305 0.6100499383986814
+873.9000000001305 0.6099385600694122
+874.0000000001305 0.6098278975770491
+874.1000000001305 0.6093933086026389
+874.2000000001306 0.6089608643898701
+874.3000000001306 0.6085310883072816
+874.4000000001306 0.6081044410459797
+874.5000000001306 0.6076813208440146
+874.6000000001306 0.6072620637026341
+874.7000000001307 0.6068469089873624
+874.8000000001307 0.6064360587733737
+874.9000000001307 0.6060296529567077
+875.0000000001307 0.6056277694598878
+875.1000000001308 0.6055651457416639
+875.2000000001308 0.6055068622734079
+875.3000000001308 0.6054528193567409
+875.4000000001308 0.6054028557507817
+875.5000000001309 0.6053567486909782
+875.6000000001309 0.6053142139029926
+875.7000000001309 0.6052749401429305
+875.8000000001309 0.6052385302924445
+875.900000000131 0.605204526357713
+876.000000000131 0.605172409478153
+876.100000000131 0.6054847752838112
+876.200000000131 0.605797700988511
+876.300000000131 0.606110485134923
+876.4000000001311 0.6064223637012384
+876.5000000001311 0.6067325099546574
+876.6000000001311 0.6070400343058534
+876.7000000001311 0.6073474181680326
+876.8000000001311 0.6076546615216184
+876.9000000001312 0.6079617643463997
+877.0000000001312 0.6082687266210096
+877.1000000001312 0.6076952722005817
+877.2000000001312 0.6071220006194942
+877.3000000001313 0.6065489118841071
+877.4000000001313 0.6059760060001461
+877.5000000001313 0.6054032829739671
+877.6000000001313 0.6048307428112918
+877.7000000001314 0.6042583855178397
+877.8000000001314 0.6036862110993314
+877.9000000001314 0.6031142195621146
+878.0000000001314 0.6025424109119824
+878.1000000001314 0.6025075300264634
+878.2000000001315 0.6024726131409395
+878.3000000001315 0.6024376602529707
+878.4000000001315 0.6024026713588607
+878.5000000001315 0.6023676464567953
+878.6000000001316 0.6023309175236936
+878.7000000001316 0.60229308054121
+878.8000000001316 0.6022546902725195
+878.9000000001316 0.6022162602689677
+879.0000000001316 0.6021782628784362
+879.1000000001317 0.6017060306500753
+879.2000000001317 0.6012352188564377
+879.3000000001317 0.6007661728008592
+879.4000000001317 0.6002991957600613
+879.5000000001318 0.5998345491521134
+879.6000000001318 0.5993724774852057
+879.7000000001318 0.5989131500596143
+879.8000000001318 0.5984566954480254
+879.9000000001319 0.5980032016576835
+880.0000000001319 0.5975527162897329
+880.1000000001319 0.598255419574221
+880.2000000001319 0.5989607513815739
+880.300000000132 0.5996686552175883
+880.400000000132 0.6003790339598568
+880.500000000132 0.6010917496210757
+880.600000000132 0.6018066231128478
+880.700000000132 0.6025234340026849
+880.8000000001321 0.6032419202738889
+880.9000000001321 0.6039617780861581
+881.0000000001321 0.6046826615303856
+881.1000000001321 0.6039438011742605
+881.2000000001321 0.603205512891362
+881.3000000001322 0.6024673236455116
+881.4000000001322 0.6017287223421447
+881.5000000001322 0.6009891600774783
+881.6000000001322 0.6001263947846294
+881.7000000001323 0.5992640359148388
+881.8000000001323 0.5984020958400329
+881.9000000001323 0.5975405868605754
+882.0000000001323 0.5966795212086123
+882.1000000001324 0.5968579267844922
+882.2000000001324 0.5970363059539499
+882.3000000001324 0.5972146708252765
+882.4000000001324 0.5973930335213864
+882.5000000001324 0.597571406177143
+882.6000000001325 0.5976287502925389
+882.7000000001325 0.5976861030929523
+882.8000000001325 0.5977434502748292
+882.9000000001325 0.5978007781407844
+883.0000000001326 0.5978580735967568
+883.1000000001326 0.5979562402693495
+883.2000000001326 0.598054331353258
+883.3000000001326 0.5981523355630776
+883.4000000001326 0.5982502422128074
+883.5000000001327 0.5983480412219087
+883.6000000001327 0.5984448827765323
+883.7000000001327 0.5985410578111874
+883.8000000001327 0.5986368373311919
+883.9000000001328 0.5987324723957135
+884.0000000001328 0.598828194101
+884.1000000001328 0.5983820831211267
+884.2000000001328 0.5979366272438384
+884.3000000001329 0.5974919956580778
+884.4000000001329 0.5970483369944029
+884.5000000001329 0.5966057794040931
+884.6000000001329 0.5961644306337506
+884.700000000133 0.5957244121038001
+884.800000000133 0.5952858009057038
+884.900000000133 0.5948486545357423
+885.000000000133 0.5944130109725695
+885.100000000133 0.5941487093044987
+885.2000000001331 0.5938859046672441
+885.3000000001331 0.5936245781245287
+885.4000000001331 0.5933646914710431
+885.5000000001331 0.5931061872827993
+885.6000000001332 0.5928489645047829
+885.7000000001332 0.5925928685448068
+885.8000000001332 0.5923377729359048
+885.9000000001332 0.5920835303828639
+886.0000000001332 0.5918299728049446
+886.1000000001333 0.5918402552662707
+886.2000000001333 0.591850728465215
+886.3000000001333 0.5918611622473229
+886.4000000001333 0.5918713054213868
+886.5000000001334 0.5918808857563754
+886.6000000001334 0.5920098150284122
+886.7000000001334 0.5921387405725472
+886.8000000001334 0.5922676563494115
+886.9000000001334 0.5923965563131769
+887.0000000001335 0.5925254344153446
+887.1000000001335 0.5927036332251968
+887.2000000001335 0.5928817454878961
+887.3000000001335 0.5930597651478486
+887.4000000001336 0.5932376861416504
+887.5000000001336 0.5934155023979304
+887.6000000001336 0.593472803566236
+887.7000000001336 0.5935299158100927
+887.8000000001337 0.5935868331070151
+887.9000000001337 0.5936435494331893
+888.0000000001337 0.5937000587635133
+888.1000000001337 0.5937919666970995
+888.2000000001337 0.5938837505439823
+888.3000000001338 0.5939754042179627
+888.4000000001338 0.5940669216312064
+888.5000000001338 0.5941582966933273
+888.6000000001338 0.5944965057416829
+888.7000000001339 0.5948383164232711
+888.8000000001339 0.5951818533293639
+888.9000000001339 0.5955253773338595
+889.0000000001339 0.5958672859554331
+889.100000000134 0.5948502889619564
+889.200000000134 0.593829545349492
+889.300000000134 0.5928039031325434
+889.400000000134 0.5917723580601166
+889.500000000134 0.590734052437082
+889.6000000001341 0.589807910444953
+889.7000000001341 0.5888733148183439
+889.8000000001341 0.5879298253697638
+889.9000000001341 0.5869771429346841
+890.0000000001342 0.5860151082927634
+890.1000000001342 0.5864098728345495
+890.2000000001342 0.5867942495389906
+890.3000000001342 0.5871684254649376
+890.4000000001342 0.5875327263947878
+890.5000000001343 0.5878876172488893
+890.6000000001343 0.5884726518834501
+890.7000000001343 0.5890500125885261
+890.8000000001343 0.5896205674035474
+890.9000000001344 0.5901853271940077
+891.0000000001344 0.5907454462823607
+891.1000000001344 0.5901536959573589
+891.2000000001344 0.5895607542688085
+891.3000000001344 0.5889682098010321
+891.4000000001345 0.5883777837476688
+891.5000000001345 0.5877913292806094
+891.6000000001345 0.587210806725336
+891.7000000001345 0.5866306166496961
+891.8000000001346 0.5860507650208927
+891.9000000001346 0.5854712577823608
+892.0000000001346 0.5848921008550726
+892.1000000001346 0.5843416346051636
+892.2000000001347 0.5837915058778858
+892.3000000001347 0.5832417205102527
+892.4000000001347 0.5826922843186877
+892.5000000001347 0.5821432030953481
+892.6000000001347 0.581120485486753
+892.7000000001348 0.5800986420858105
+892.8000000001348 0.5790776783319306
+892.9000000001348 0.5780575996236947
+893.0000000001348 0.5770384113211898
+893.1000000001349 0.5763329073100437
+893.2000000001349 0.5756279963870377
+893.3000000001349 0.5749236840225095
+893.4000000001349 0.574219975658893
+893.500000000135 0.5735168767132169
+893.600000000135 0.5732786217581353
+893.700000000135 0.5730358687280314
+893.800000000135 0.5727909543948944
+893.900000000135 0.5725460385524381
+894.0000000001351 0.5723031043071579
+894.1000000001351 0.5717314488256893
+894.2000000001351 0.5711645415056984
+894.3000000001351 0.5706038269256648
+894.4000000001352 0.5700505714729955
+894.5000000001352 0.5695058642447971
+894.6000000001352 0.5682644069843316
+894.7000000001352 0.5670327299625483
+894.8000000001352 0.5658113632321587
+894.9000000001353 0.5646006614178667
+895.0000000001353 0.5634008055926616
+895.1000000001353 0.56108125370235
+895.2000000001353 0.5587767813000053
+895.3000000001354 0.5564869855673734
+895.4000000001354 0.5542113013040343
+895.5000000001354 0.5519490043179863
+895.6000000001354 0.550285975998891
+895.7000000001354 0.5486336360042915
+895.8000000001355 0.5469908359684141
+895.9000000001355 0.5453562756986334
+896.0000000001355 0.5437285055565724
+896.1000000001355 0.541916875766526
+896.2000000001356 0.5401066059613956
+896.3000000001356 0.5382958131503666
+896.4000000001356 0.5364824773756922
+896.5000000001356 0.5346644445521295
+896.6000000001357 0.5340107845223128
+896.7000000001357 0.5333569510408673
+896.8000000001357 0.5327029388019731
+896.9000000001357 0.5320487425279209
+897.0000000001357 0.5313943569745339
+897.1000000001358 0.5324986622903584
+897.2000000001358 0.5336020752798697
+897.3000000001358 0.5347045904954922
+897.4000000001358 0.5358062024477487
+897.5000000001359 0.5369069056029225
+897.6000000001359 0.5375389641371032
+897.7000000001359 0.5381704277446231
+897.8000000001359 0.5388012908638765
+897.900000000136 0.5394315479064131
+898.000000000136 0.5400611932475131
+898.100000000136 0.5354684580618578
+898.200000000136 0.530878222510826
+898.300000000136 0.5262904832091077
+898.4000000001361 0.5217052369589167
+898.5000000001361 0.5171224807416019
+898.6000000001361 0.5110324111346671
+898.7000000001361 0.5049491387226946
+898.8000000001362 0.498870736003191
+898.9000000001362 0.4927954964597575
+899.0000000001362 0.48672192621425153
+899.1000000001362 0.48928170644908425
+899.2000000001362 0.4918360036899091
+899.3000000001363 0.494383633156418
+899.4000000001363 0.4969235210682172
+899.5000000001363 0.49945470814672094
+899.6000000001363 0.5031388943243701
+899.7000000001364 0.5068120551268415
+899.8000000001364 0.5104735169925334
+899.9000000001364 0.5141227313448866
+900.0000000001364 0.5177592795581256
+900.1000000001364 0.5163309634038157
+900.2000000001365 0.514893499696723
+900.3000000001365 0.5134471731804814
+900.4000000001365 0.5119924042844066
+900.5000000001365 0.5105297471449428
+900.6000000001366 0.5107976466673948
+900.7000000001366 0.5110577505580391
+900.8000000001366 0.5113109495147143
+900.9000000001366 0.5115582728906902
+901.0000000001367 0.5118008889711623
+901.1000000001367 0.5129527166631713
+901.2000000001367 0.5141022952328641
+901.3000000001367 0.5152512109069535
+901.4000000001367 0.5164012022939732
+901.5000000001368 0.517554161940139
+901.6000000001368 0.5172106758433284
+901.7000000001368 0.5168672754886354
+901.8000000001368 0.5165239537922031
+901.9000000001369 0.5161807042147437
+902.0000000001369 0.5158375207521672
+902.1000000001369 0.5146441778727862
+902.2000000001369 0.5134525065228741
+902.300000000137 0.5122625007987474
+902.400000000137 0.5110741553550155
+902.500000000137 0.5098874654074053
+902.600000000137 0.5108822311156356
+902.700000000137 0.5118743534014422
+902.8000000001371 0.5128638311908499
+902.9000000001371 0.5138506628634288
+903.0000000001371 0.5148348462495612
+903.1000000001371 0.518252228902305
+903.2000000001372 0.5216609365956989
+903.3000000001372 0.5250609703000322
+903.4000000001372 0.5284523302930697
+903.5000000001372 0.5318350161378393
+903.6000000001372 0.5338454296362025
+903.7000000001373 0.5358493481615687
+903.8000000001373 0.5378472620241633
+903.9000000001373 0.5398396333623007
+904.0000000001373 0.541826895419049
+904.1000000001374 0.5413435370281957
+904.2000000001374 0.5408611988426256
+904.3000000001374 0.540380198245203
+904.4000000001374 0.5399008158661994
+904.5000000001374 0.5394232957407017
+904.6000000001375 0.538834882201681
+904.7000000001375 0.5382486574487607
+904.8000000001375 0.5376647373631206
+904.9000000001375 0.5370832007516338
+905.0000000001376 0.5365040895461268
+905.1000000001376 0.536018065857881
+905.2000000001376 0.535534849089642
+905.3000000001376 0.5350543723271729
+905.4000000001377 0.5345765324948966
+905.5000000001377 0.5341011905108283
+905.6000000001377 0.533066457585001
+905.7000000001377 0.5320348586520713
+905.8000000001377 0.5310061503756679
+905.9000000001378 0.5299800556832477
+906.0000000001378 0.5289562640953795
+906.1000000001378 0.5265010964008962
+906.2000000001378 0.5240435523987318
+906.3000000001379 0.5215832304160595
+906.4000000001379 0.5191197015257972
+906.5000000001379 0.5166525103953703
+906.6000000001379 0.5139566918690599
+906.700000000138 0.5112579577081743
+906.800000000138 0.5085563148604694
+906.900000000138 0.5058517702730098
+907.000000000138 0.5031443308957462
+907.100000000138 0.5013631096849234
+907.2000000001381 0.4995854882812533
+907.3000000001381 0.4978114636547879
+907.4000000001381 0.49604103277798905
+907.5000000001381 0.4942741926225941
+907.6000000001382 0.4931793558406122
+907.7000000001382 0.49208604465528616
+907.8000000001382 0.49099425803824165
+907.9000000001382 0.489903994959411
+908.0000000001382 0.48881525439415746
+908.1000000001383 0.4887449828941952
+908.2000000001383 0.4886740741196908
+908.3000000001383 0.48860252881937977
+908.4000000001383 0.48853034774068405
+908.5000000001384 0.48845753163055416
+908.6000000001384 0.4881633738518785
+908.7000000001384 0.48786861897985945
+908.8000000001384 0.4875734889841013
+908.9000000001384 0.48727818896144853
+909.0000000001385 0.4869829071839003
+909.1000000001385 0.4870046619591524
+909.2000000001385 0.4870256189483195
+909.3000000001385 0.48704591874258174
+909.4000000001386 0.4870656856100143
+909.5000000001386 0.48708502748946014
+909.6000000001386 0.4868866273561291
+909.7000000001386 0.48668853385247735
+909.8000000001387 0.48649080391025545
+909.9000000001387 0.4862934780451333
+910.0000000001387 0.48609658038755976
+910.1000000001387 0.48426452585283775
+910.2000000001387 0.4824377835614829
+910.3000000001388 0.48061631248353104
+910.4000000001388 0.4788000559536895
+910.5000000001388 0.47698894197644737
+910.6000000001388 0.47731709811233297
+910.7000000001389 0.4776407240986293
+910.8000000001389 0.4779597242188935
+910.9000000001389 0.47827398637917895
+911.0000000001389 0.4785833820629288
+911.100000000139 0.4779352748980993
+911.200000000139 0.4772849212613777
+911.300000000139 0.47663214039934476
+911.400000000139 0.4759767365944351
+911.500000000139 0.475318499277675
+911.6000000001391 0.47288803578412
+911.7000000001391 0.4704647555917583
+911.8000000001391 0.46804865170357235
+911.9000000001391 0.46563971712326335
+912.0000000001392 0.46323794485832154
+912.1000000001392 0.46344467077097845
+912.2000000001392 0.46364569729042293
+912.3000000001392 0.463841031591178
+912.4000000001392 0.4640306808479926
+912.5000000001393 0.46421465222524844
+912.6000000001393 0.46053822766932784
+912.7000000001393 0.45687511203153053
+912.8000000001393 0.45322529183614335
+912.9000000001394 0.44958875360342443
+913.0000000001394 0.44596548385057183
+913.1000000001394 0.4415718026944977
+913.2000000001394 0.4371995036869726
+913.3000000001394 0.4328485617984702
+913.4000000001395 0.4285189519974562
+913.5000000001395 0.4242106492631031
+913.6000000001395 0.42503563753646134
+913.7000000001395 0.4258451704566553
+913.8000000001396 0.4266390784151252
+913.9000000001396 0.4274172046553227
+914.0000000001396 0.4281794054766691
+914.1000000001396 0.43018409538755353
+914.2000000001397 0.4321677785609918
+914.3000000001397 0.43413035360750774
+914.4000000001397 0.4360717316860947
+914.5000000001397 0.43799183687299614
+914.6000000001397 0.435615193950807
+914.7000000001398 0.43324508947982404
+914.8000000001398 0.4308814857948968
+914.9000000001398 0.4285243600618448
+915.0000000001398 0.4261737038752308
+915.1000000001399 0.42034593850447793
+915.2000000001399 0.4145451578899667
+915.3000000001399 0.4087713911358872
+915.4000000001399 0.4030246787165114
+915.50000000014 0.39730507158179074
+915.60000000014 0.39741637876037555
+915.70000000014 0.3975204222551242
+915.80000000014 0.39761728920814204
+915.90000000014 0.39770708065329313
+916.0000000001401 0.39778991152860105
+916.1000000001401 0.4012900469429295
+916.2000000001401 0.40476718427866387
+916.3000000001401 0.40822150094357773
+916.4000000001402 0.41165319367507663
+916.5000000001402 0.415062479039107
+916.6000000001402 0.4142381998096084
+916.7000000001402 0.41341342378999413
+916.8000000001402 0.4125881530813912
+916.9000000001403 0.41176238978661206
+917.0000000001403 0.4109361359984206
+917.1000000001403 0.4063214701571988
+917.2000000001403 0.4017326798983116
+917.3000000001404 0.3971697297794053
+917.4000000001404 0.3926325843456941
+917.5000000001404 0.3881212081350749
+917.6000000001404 0.3853648221915956
+917.7000000001404 0.38261956346411374
+917.8000000001405 0.3798854241102645
+917.9000000001405 0.37716239648630917
+918.0000000001405 0.37445047314660007
+918.1000000001405 0.37577761694989126
+918.2000000001406 0.37709380697206896
+918.3000000001406 0.37839906667978995
+918.4000000001406 0.3796934200366806
+918.5000000001406 0.38097689150981
+918.6000000001407 0.3823337411518637
+918.7000000001407 0.3836796312452974
+918.8000000001407 0.38501439879843913
+918.9000000001407 0.38633789121274453
+919.0000000001407 0.38764996654967426
+919.1000000001408 0.3862666552004048
+919.2000000001408 0.38487805341423753
+919.3000000001408 0.3834840592200612
+919.4000000001408 0.38208458521450117
+919.5000000001409 0.3806795583381245
+919.6000000001409 0.3786271630386167
+919.7000000001409 0.3765760753760384
+919.8000000001409 0.37452626883773915
+919.900000000141 0.3724777302689665
+920.000000000141 0.37043045953231823
+920.100000000141 0.36909497248748957
+920.200000000141 0.3677466595134349
+920.300000000141 0.3663855747637961
+920.4000000001411 0.3650117844998641
+920.5000000001411 0.36362536684733754
+920.6000000001411 0.36109539653924433
+920.7000000001411 0.35856835092344813
+920.8000000001412 0.356044323494291
+920.9000000001412 0.35352341728571013
+921.0000000001412 0.3510057444563838
+921.1000000001412 0.34753910594765103
+921.2000000001412 0.34408879621201033
+921.3000000001413 0.34065492648926216
+921.4000000001413 0.33723761392190227
+921.5000000001413 0.3338369810486887
+921.6000000001413 0.3312243956415633
+921.7000000001414 0.3286162751803029
+921.8000000001414 0.32601262318957264
+921.9000000001414 0.32341344199282734
+922.0000000001414 0.32081873275120804
+922.1000000001414 0.3186727945976168
+922.2000000001415 0.31651711559611645
+922.3000000001415 0.3143517220291547
+922.4000000001415 0.3121766391673646
+922.5000000001415 0.30999189129782284
+922.6000000001416 0.30702579516126755
+922.7000000001416 0.3040646869808905
+922.8000000001416 0.30110855163061806
+922.9000000001416 0.29815737469606224
+923.0000000001417 0.29521114245854885
+923.1000000001417 0.2922638600652217
+923.2000000001417 0.2893244731478002
+923.3000000001417 0.28639296410531945
+923.4000000001417 0.2834693159672329
+923.5000000001418 0.2805535123771241
+923.6000000001418 0.27753005018630056
+923.7000000001418 0.27451758081573696
+923.8000000001418 0.27151556138321065
+923.9000000001419 0.2685235075498138
+924.0000000001419 0.2655409913214272
+924.1000000001419 0.2628039513788433
+924.2000000001419 0.26007391732920276
+924.300000000142 0.2573506168255654
+924.400000000142 0.2546338244004824
+924.500000000142 0.2519233595520425
+924.600000000142 0.249431617797933
+924.700000000142 0.24694183176219145
+924.8000000001421 0.24445396116456888
+924.9000000001421 0.24196800252201164
+925.0000000001421 0.23948398746359928
+925.1000000001421 0.23726010165819872
+925.2000000001422 0.23503109691305074
+925.3000000001422 0.2327971088601433
+925.4000000001422 0.2305583023221021
+925.5000000001422 0.228314869785832
+925.6000000001422 0.22597136972158235
+925.7000000001423 0.2236258191424039
+925.8000000001423 0.22127846788892844
+925.9000000001423 0.21892958697745551
+926.0000000001423 0.21657946702520126
+926.1000000001424 0.21379551359581433
+926.2000000001424 0.2110135302831416
+926.3000000001424 0.20823385227724356
+926.4000000001424 0.20545682521696676
+926.5000000001424 0.2026828033775441
+926.6000000001425 0.200038346757488
+926.7000000001425 0.19739252864191545
+926.8000000001425 0.19474536069361498
+926.9000000001425 0.19209685420674144
+927.0000000001426 0.18944702013119225
+927.1000000001426 0.1861318370951184
+927.2000000001426 0.18284484006422297
+927.3000000001426 0.17958596578868835
+927.4000000001427 0.1763551508651818
+927.5000000001427 0.17315233176444855
+927.6000000001427 0.16960993308327751
+927.7000000001427 0.16610511398460528
+927.8000000001427 0.1626377890071969
+927.9000000001428 0.15920787296204308
+928.0000000001428 0.15581528091665844
+928.1000000001428 0.15322122861708806
+928.2000000001428 0.15063767567200295
+928.3000000001429 0.14806460336402827
+928.4000000001429 0.14550199312325854
+928.5000000001429 0.14294982651383728
+928.6000000001429 0.14025088590375537
+928.700000000143 0.13756819153197802
+928.800000000143 0.13490137019967688
+928.900000000143 0.13225009529063733
+929.000000000143 0.12961408422194862
+929.100000000143 0.1268263339756017
+929.2000000001431 0.12406153029361452
+929.3000000001431 0.12131949331864404
+929.4000000001431 0.11860007790625418
+929.5000000001431 0.11590317104842356
+929.6000000001432 0.11275137405972546
+929.7000000001432 0.10963992225262492
+929.8000000001432 0.10656875691100583
+929.9000000001432 0.10353784095107803
+930.0000000001432 0.10054715620095646
+930.1000000001433 0.09774818934721084
+930.2000000001433 0.09498441318741387
+930.3000000001433 0.09225586094262547
+930.4000000001433 0.08956257546264448
+930.5000000001434 0.08690460710653809
+930.6000000001434 0.08430364816528371
+930.7000000001434 0.08173715993589632
+930.8000000001434 0.07920520354561504
+930.9000000001435 0.07670784047926628
+931.0000000001435 0.07424513089327449
+931.1000000001435 0.07153039392964299
+931.2000000001435 0.06885908314119796
+931.3000000001435 0.06623121205844164
+931.4000000001436 0.06364678477277201
+931.5000000001436 0.06110579462751338
+931.6000000001436 0.058062332969715455
+931.7000000001436 0.055096414473656596
+931.8000000001437 0.05220780480395894
+931.9000000001437 0.049396269561579415
+932.0000000001437 0.046661574327253826
+932.1000000001437 0.04486539252531472
+932.2000000001437 0.04309525027910554
+932.3000000001438 0.04135107219623898
+932.4000000001438 0.03963278283578206
+932.5000000001438 0.03794030672832779
+932.6000000001438 0.036651173747309
+932.7000000001439 0.03535968969829224
+932.8000000001439 0.034065868606716225
+932.9000000001439 0.03276972447870532
+933.0000000001439 0.03147127130081575
+933.100000000144 0.030227860194523906
+933.200000000144 0.028999573665250286
+933.300000000144 0.027786367596470567
+933.400000000144 0.026588197929851176
+933.500000000144 0.02540502066377849
+933.6000000001441 0.023818816863259804
+933.7000000001441 0.0222821929714537
+933.8000000001441 0.020795031366220365
+933.9000000001441 0.019357203964385655
+934.0000000001442 0.01796857361389166
+934.1000000001442 0.01712384594941646
+934.2000000001442 0.016293784952544504
+934.3000000001442 0.015478350829325737
+934.4000000001442 0.014677499867467437
+934.5000000001443 0.01389118496556011
+934.6000000001443 0.013680723192045031
+934.7000000001443 0.01343089109100106
+934.8000000001443 0.013141821592865532
+934.9000000001444 0.012813644159240934
+935.0000000001444 0.01244648483312847
+935.1000000001444 0.012009261573596615
+935.2000000001444 0.01156407851908432
+935.3000000001445 0.011110949537077723
+935.4000000001445 0.010649887300514329
+935.5000000001445 0.010180903538608826
+935.6000000001445 0.009547996690176688
+935.7000000001445 0.008925141857491837
+935.8000000001446 0.008312297782490497
+935.9000000001446 0.007709424409602245
+936.0000000001446 0.007116483119586573
+936.1000000001446 0.006852521676051189
+936.2000000001447 0.0065869918064333935
+936.3000000001447 0.006319891078651087
+936.4000000001447 0.006051217707205101
+936.5000000001447 0.005780970709650901
+936.6000000001447 0.005459993508721612
+936.7000000001448 0.005142690578449694
+936.8000000001448 0.004829052420837611
+936.9000000001448 0.004519069530668176
+937.0000000001448 0.004212732396268911
+937.1000000001449 0.004073115294790024
+937.2000000001449 0.003930034704472445
+937.3000000001449 0.0037835023813190764
+937.4000000001449 0.00363353006555978
+937.500000000145 0.0034801294812494047
+937.600000000145 0.0033030807006703324
+937.700000000145 0.003124956617964023
+937.800000000145 0.002945761606236836
+937.900000000145 0.0027655000271194535
+938.0000000001451 0.0025841762307533206
+938.1000000001451 0.002485937387005815
+938.2000000001451 0.0023869556516063215
+938.3000000001451 0.0022872338951792064
+938.4000000001452 0.0021867749813847545
+938.5000000001452 0.0020855817669858524
+938.6000000001452 0.0020284058313784826
+938.7000000001452 0.0019654852861519492
+938.8000000001452 0.0018968492531641545
+938.9000000001453 0.0018225251761304698
+939.0000000001453 0.001742538695966989
+939.1000000001453 0.001716713531425563
+939.2000000001453 0.0016877004595112924
+939.3000000001454 0.0016555142122627903
+939.4000000001454 0.0016201683598099825
+939.5000000001454 0.001581675285864759
+939.6000000001454 0.001501920781237268
+939.7000000001455 0.001422825953728761
+939.8000000001455 0.0013443857579195206
+939.9000000001455 0.0012665944370962362
+940.0000000001455 0.0011894456597643214
+940.1000000001455 0.001124044033748628
+940.2000000001456 0.0010600009796452124
+940.3000000001456 0.0009973083972710892
+940.4000000001456 0.0009359581870023403
+940.5000000001456 0.0008759423431010621
+940.6000000001457 0.0008272753035524416
+940.7000000001457 0.0007787668009678094
+940.8000000001457 0.000730412476962144
+940.9000000001457 0.0006822081781933793
+941.0000000001457 0.0006341500342059588
+941.1000000001458 0.0006202487661422971
+941.2000000001458 0.0006061023528659869
+941.3000000001458 0.0005917089117043626
+941.4000000001458 0.0005770665862325972
+941.5000000001459 0.0005621735809406847
+941.6000000001459 0.0005423231963031754
+941.7000000001459 0.0005225579720089599
+941.8000000001459 0.0005028777827206446
+941.900000000146 0.00048328250390408396
+942.000000000146 0.00046377201179796684
+942.100000000146 0.0004395515596499411
+942.200000000146 0.00041595181007220524
+942.300000000146 0.0003929713477241722
+942.4000000001461 0.00037060875806834396
+942.5000000001461 0.0003488626273132888
+942.6000000001461 0.0003295359176058628
+942.7000000001461 0.00031067104489597886
+942.8000000001462 0.00029226695990226646
+942.9000000001462 0.0002743226138478213
+943.0000000001462 0.0002568369584360922
+943.1000000001462 0.00024573917399226783
+943.2000000001462 0.00023428601725625589
+943.3000000001463 0.00022247839038751192
+943.4000000001463 0.00021031719640275353
+943.5000000001463 0.00019780333919820352
+943.6000000001463 0.00018077169982118332
+943.7000000001464 0.00016407765036505515
+943.8000000001464 0.00014772099020116824
+943.9000000001464 0.00013170134153315323
+944.0000000001464 0.00011601817023427947
+944.1000000001465 0.00011507754783908562
+944.2000000001465 0.00011413334556932562
+944.3000000001465 0.00011318572493610768
+944.4000000001465 0.0001122348230667909
+944.5000000001465 0.00011128075346568959
+944.6000000001466 0.0001143898406351888
+944.7000000001466 0.00011750940573012876
+944.8000000001466 0.00012063958968424435
+944.9000000001466 0.00012378052067805713
+945.0000000001467 0.00012693231150761466
+945.1000000001467 0.00012189092984557894
+945.2000000001467 0.00011681460190359533
+945.3000000001467 0.00011170320887157861
+945.4000000001467 0.00010655661617865548
+945.5000000001468 0.00010137467798888141
+945.6000000001468 9.453647279912344e-05
+945.7000000001468 8.785151460436148e-05
+945.8000000001468 8.131926962632708e-05
+945.9000000001469 7.49392280444019e-05
+946.0000000001469 6.871090750260865e-05
+946.1000000001469 6.213016380746557e-05
+946.2000000001469 5.548460881949775e-05
+946.300000000147 4.8774256939608076e-05
+946.400000000147 4.1999167885669636e-05
+946.500000000147 3.515945368170905e-05
+946.600000000147 2.8490880713331213e-05
+946.700000000147 2.1640261929083155e-05
+946.8000000001471 1.4607983904313277e-05
+946.9000000001471 7.394433915142874e-06
+947.0000000001471 0.0
+947.1000000001471 0.0
+947.2000000001472 0.0
+947.3000000001472 0.0
+947.4000000001472 0.0
+947.5000000001472 0.0
+947.6000000001472 0.0
+947.7000000001473 0.0
+947.8000000001473 0.0
+947.9000000001473 0.0
+948.0000000001473 0.0
+948.1000000001474 0.0
+948.2000000001474 0.0
+948.3000000001474 0.0
+948.4000000001474 0.0
+948.5000000001475 0.0
+948.6000000001475 0.0
+948.7000000001475 0.0
+948.8000000001475 0.0
+948.9000000001475 0.0
+949.0000000001476 5.328739293402043e-15
+949.1000000001476 3.5639149198611745e-06
+949.2000000001476 7.033565383981397e-06
+949.3000000001476 1.0409109525941054e-05
+949.4000000001477 1.3690702902225727e-05
+949.5000000001477 1.6878499278152906e-05
+949.6000000001477 1.9857771690164016e-05
+949.7000000001477 2.2705439659590785e-05
+949.8000000001477 2.5421734855130163e-05
+949.9000000001478 2.8006890670672164e-05
+950.0000000001478 3.0461142771796334e-05
+950.1000000001478 3.034243406670746e-05
+950.2000000001478 3.020693014347638e-05
+950.3000000001479 3.005466737390036e-05
+950.4000000001479 2.9885683361664303e-05
+950.5000000001479 2.9700016903577883e-05
+950.6000000001479 2.9820441216527085e-05
+950.700000000148 2.9910660455979972e-05
+950.800000000148 2.9970741360520414e-05
+950.900000000148 3.000075210621337e-05
+951.000000000148 3.0000762239514614e-05
+951.100000000148 2.689247887965538e-05
+951.2000000001481 2.380834860638379e-05
+951.3000000001481 2.0748339099364692e-05
+951.4000000001481 1.7712414058317803e-05
+951.5000000001481 1.4700532782172004e-05
+951.6000000001482 1.1462630395775975e-05
+951.7000000001482 8.373973468482975e-06
+951.8000000001482 5.434214690035622e-06
+951.9000000001482 2.643006278608453e-06
+952.0000000001482 0.0
+952.1000000001483 0.0
+952.2000000001483 0.0
+952.3000000001483 0.0
+952.4000000001483 0.0
+952.5000000001484 0.0
+952.6000000001484 0.0
+952.7000000001484 0.0
+952.8000000001484 0.0
+952.9000000001485 0.0
+953.0000000001485 2.189306762310499e-15
+953.1000000001485 1.4871347209309558e-06
+953.2000000001485 2.9994386049833035e-06
+953.3000000001485 4.536847644984827e-06
+953.4000000001486 6.099297886465094e-06
+953.5000000001486 7.686725426180584e-06
+953.6000000001486 9.238771297474664e-06
+953.7000000001486 1.0795694799992101e-05
+953.8000000001487 1.2357474806712623e-05
+953.9000000001487 1.3924085325723501e-05
+954.0000000001487 1.5495495975268403e-05
+954.1000000001487 1.3891996691268712e-05
+954.2000000001487 1.230051427252839e-05
+954.3000000001488 1.072103211058298e-05
+954.4000000001488 9.153537774090985e-06
+954.5000000001488 7.5980224181933214e-06
+954.6000000001488 6.083211997692293e-06
+954.7000000001489 4.5659714234097405e-06
+954.8000000001489 3.0463330724567228e-06
+954.9000000001489 1.5243309123642871e-06
+955.0000000001489 0.0
+955.100000000149 0.0
+955.200000000149 0.0
+955.300000000149 0.0
+955.400000000149 0.0
+955.500000000149 0.0
+955.6000000001491 0.0
+955.7000000001491 0.0
+955.8000000001491 0.0
+955.9000000001491 0.0
+956.0000000001492 0.0
+956.1000000001492 0.0
+956.2000000001492 0.0
+956.3000000001492 0.0
+956.4000000001492 0.0
+956.5000000001493 0.0
+956.6000000001493 0.0
+956.7000000001493 0.0
+956.8000000001493 0.0
+956.9000000001494 0.0
+957.0000000001494 0.0
+957.1000000001494 0.0
+957.2000000001494 0.0
+957.3000000001495 0.0
+957.4000000001495 0.0
+957.5000000001495 0.0
+957.6000000001495 0.0
+957.7000000001495 0.0
+957.8000000001496 0.0
+957.9000000001496 0.0
+958.0000000001496 1.4264143523290604e-15
+958.1000000001496 9.458812178321912e-07
+958.2000000001497 1.8767269898152958e-06
+958.3000000001497 2.7925700665471572e-06
+958.4000000001497 3.6934433043897373e-06
+958.5000000001497 4.57937966388634e-06
+958.6000000001497 5.454579468250542e-06
+958.7000000001498 6.3162947423656995e-06
+958.8000000001498 7.1645538452301805e-06
+958.9000000001498 7.99938380421314e-06
+959.0000000001498 8.820810513967596e-06
+959.1000000001499 7.892204603476395e-06
+959.2000000001499 6.973991581281648e-06
+959.3000000001499 6.0661495234610405e-06
+959.4000000001499 5.168657667075778e-06
+959.50000000015 4.281496230008826e-06
+959.60000000015 3.4513727944772348e-06
+959.70000000015 2.608114498107552e-06
+959.80000000015 1.7517680205991915e-06
+959.90000000015 8.823806187462909e-07
+960.0000000001501 0.0
+960.1000000001501 0.0
+960.2000000001501 0.0
+960.3000000001501 0.0
+960.4000000001502 0.0
+960.5000000001502 0.0
+960.6000000001502 0.0
+960.7000000001502 0.0
+960.8000000001502 0.0
+960.9000000001503 0.0
+961.0000000001503 0.0
+961.1000000001503 0.0
+961.2000000001503 0.0
+961.3000000001504 0.0
+961.4000000001504 0.0
+961.5000000001504 0.0
+961.6000000001504 0.0
+961.7000000001505 0.0
+961.8000000001505 0.0
+961.9000000001505 0.0
+962.0000000001505 0.0
+962.1000000001505 0.0
+962.2000000001506 0.0
+962.3000000001506 0.0
+962.4000000001506 0.0
+962.5000000001506 0.0
+962.6000000001507 0.0
+962.7000000001507 0.0
+962.8000000001507 0.0
+962.9000000001507 0.0
+963.0000000001507 0.0
+963.1000000001508 0.0
+963.2000000001508 0.0
+963.3000000001508 0.0
+963.4000000001508 0.0
+963.5000000001509 0.0
+963.6000000001509 0.0
+963.7000000001509 0.0
+963.8000000001509 0.0
+963.900000000151 0.0
+964.000000000151 0.0
+964.100000000151 0.0
+964.200000000151 0.0
+964.300000000151 0.0
+964.4000000001511 0.0
+964.5000000001511 0.0
+964.6000000001511 0.0
+964.7000000001511 0.0
+964.8000000001512 0.0
+964.9000000001512 0.0
+965.0000000001512 0.0
+965.1000000001512 0.0
+965.2000000001512 0.0
+965.3000000001513 0.0
+965.4000000001513 0.0
+965.5000000001513 0.0
+965.6000000001513 0.0
+965.7000000001514 0.0
+965.8000000001514 0.0
+965.9000000001514 0.0
+966.0000000001514 0.0
+966.1000000001515 0.0
+966.2000000001515 0.0
+966.3000000001515 0.0
+966.4000000001515 0.0
+966.5000000001515 0.0
+966.6000000001516 0.0
+966.7000000001516 0.0
+966.8000000001516 0.0
+966.9000000001516 0.0
+967.0000000001517 0.0
+967.1000000001517 0.0
+967.2000000001517 0.0
+967.3000000001517 0.0
+967.4000000001517 0.0
+967.5000000001518 0.0
+967.6000000001518 0.0
+967.7000000001518 0.0
+967.8000000001518 0.0
+967.9000000001519 0.0
+968.0000000001519 0.0
+968.1000000001519 0.0
+968.2000000001519 0.0
+968.300000000152 0.0
+968.400000000152 0.0
+968.500000000152 0.0
+968.600000000152 0.0
+968.700000000152 0.0
+968.8000000001521 0.0
+968.9000000001521 0.0
+969.0000000001521 0.0
+969.1000000001521 0.0
+969.2000000001522 0.0
+969.3000000001522 0.0
+969.4000000001522 0.0
+969.5000000001522 0.0
+969.6000000001522 0.0
+969.7000000001523 0.0
+969.8000000001523 0.0
+969.9000000001523 0.0
+970.0000000001523 0.0
+970.1000000001524 0.0
+970.2000000001524 0.0
+970.3000000001524 0.0
+970.4000000001524 0.0
+970.5000000001525 0.0
+970.6000000001525 0.0
+970.7000000001525 0.0
+970.8000000001525 0.0
+970.9000000001525 0.0
+971.0000000001526 0.0
+971.1000000001526 0.0
+971.2000000001526 0.0
+971.3000000001526 0.0
+971.4000000001527 0.0
+971.5000000001527 0.0
+971.6000000001527 0.0
+971.7000000001527 0.0
+971.8000000001527 0.0
+971.9000000001528 0.0
+972.0000000001528 0.0
+972.1000000001528 0.0
+972.2000000001528 0.0
+972.3000000001529 0.0
+972.4000000001529 0.0
+972.5000000001529 0.0
+972.6000000001529 0.0
+972.700000000153 0.0
+972.800000000153 0.0
+972.900000000153 0.0
+973.000000000153 0.0
+973.100000000153 0.0
+973.2000000001531 0.0
+973.3000000001531 0.0
+973.4000000001531 0.0
+973.5000000001531 0.0
+973.6000000001532 0.0
+973.7000000001532 0.0
+973.8000000001532 0.0
+973.9000000001532 0.0
+974.0000000001532 0.0
+974.1000000001533 0.0
+974.2000000001533 0.0
+974.3000000001533 0.0
+974.4000000001533 0.0
+974.5000000001534 0.0
+974.6000000001534 0.0
+974.7000000001534 0.0
+974.8000000001534 0.0
+974.9000000001535 0.0
+975.0000000001535 4.405269663780724e-15
+975.1000000001535 2.869069604619469e-06
+975.2000000001535 5.735648385180979e-06
+975.3000000001535 8.599716223633861e-06
+975.4000000001536 1.1461253084622462e-05
+975.5000000001536 1.4320239005075403e-05
+975.6000000001536 1.7146044396203448e-05
+975.7000000001536 1.9959152367922028e-05
+975.8000000001537 2.2759583807815408e-05
+975.9000000001537 2.5547359353802775e-05
+976.0000000001537 2.8322499407102282e-05
+976.1000000001537 2.834822996542518e-05
+976.2000000001538 2.8373792756035768e-05
+976.3000000001538 2.8399187247771694e-05
+976.4000000001538 2.8424412936538663e-05
+976.5000000001538 2.8449469345837072e-05
+976.6000000001538 2.858762418210943e-05
+976.7000000001539 2.8725305546754324e-05
+976.8000000001539 2.8862513021743308e-05
+976.9000000001539 2.8999246211478636e-05
+977.0000000001539 2.9135504743057766e-05
+977.100000000154 2.9180254124783267e-05
+977.200000000154 2.9224787199291524e-05
+977.300000000154 2.9269103624836065e-05
+977.400000000154 2.931320308812054e-05
+977.500000000154 2.935708530419199e-05
+977.6000000001541 2.9257875949008787e-05
+977.7000000001541 2.9158811358840568e-05
+977.8000000001541 2.9059892411008813e-05
+977.9000000001541 2.8961120001565064e-05
+978.0000000001542 2.8862495044841348e-05
+978.1000000001542 2.8794027558960396e-05
+978.2000000001542 2.8725634849946657e-05
+978.3000000001542 2.8657317853480817e-05
+978.4000000001543 2.8589077525613577e-05
+978.5000000001543 2.8520914842478683e-05
+978.6000000001543 2.8477359100473687e-05
+978.7000000001543 2.8433815310178068e-05
+978.8000000001543 2.8390283568003274e-05
+978.9000000001544 2.8346763940926756e-05
+979.0000000001544 2.8303256466589095e-05
+979.1000000001544 2.82386324077049e-05
+979.2000000001544 2.8174083324689896e-05
+979.3000000001545 2.8109609152196588e-05
+979.4000000001545 2.8045209796766917e-05
+979.5000000001545 2.798088513741816e-05
+979.6000000001545 2.7983159646159685e-05
+979.7000000001545 2.7985317049902768e-05
+979.8000000001546 2.7987357564423184e-05
+979.9000000001546 2.7989281348551823e-05
+980.0000000001546 2.7991088504124673e-05
+980.1000000001546 2.7995596868882158e-05
+980.2000000001547 2.7999987489242934e-05
+980.3000000001547 2.8004260252186895e-05
+980.4000000001547 2.8008414987633453e-05
+980.5000000001547 2.8012451468634523e-05
+980.6000000001548 2.8123736998976097e-05
+980.7000000001548 2.823461631270156e-05
+980.8000000001548 2.8345088671756363e-05
+980.9000000001548 2.845515335627897e-05
+981.0000000001548 2.856480966485929e-05
+981.1000000001549 2.85753354229864e-05
+981.2000000001549 2.8585728985927695e-05
+981.3000000001549 2.8595989765165067e-05
+981.4000000001549 2.860611720055054e-05
+981.500000000155 2.8616110760110714e-05
+981.600000000155 2.854944329488251e-05
+981.700000000155 2.8482838933631544e-05
+981.800000000155 2.8416298122538592e-05
+981.900000000155 2.834982127517746e-05
+982.0000000001551 2.8283408772988457e-05
+982.1000000001551 2.8200737116670325e-05
+982.2000000001551 2.8118185684627644e-05
+982.3000000001551 2.8035754732153952e-05
+982.4000000001552 2.7953444483264334e-05
+982.5000000001552 2.787125513105921e-05
+982.6000000001552 2.7824011528927745e-05
+982.7000000001552 2.7776787726485413e-05
+982.8000000001553 2.7729583900424866e-05
+982.9000000001553 2.7682400254330422e-05
+983.0000000001553 2.763523701878238e-05
+983.1000000001553 2.7675773494935716e-05
+983.2000000001553 2.7716077449638415e-05
+983.3000000001554 2.77561492145136e-05
+983.4000000001554 2.779598915108325e-05
+983.5000000001554 2.783559765104456e-05
+983.6000000001554 2.7846455486323576e-05
+983.7000000001555 2.7857212185812677e-05
+983.8000000001555 2.7867842065538662e-05
+983.9000000001555 2.7878321246584923e-05
+984.0000000001555 2.788862765950213e-05
+984.1000000001555 2.7822230221861834e-05
+984.2000000001556 2.7755841056212167e-05
+984.3000000001556 2.7689444209583046e-05
+984.4000000001556 2.7623025713556392e-05
+984.5000000001556 2.7556573561878752e-05
+984.6000000001557 2.748443983258525e-05
+984.7000000001557 2.741227383411869e-05
+984.8000000001557 2.734006991102142e-05
+984.9000000001557 2.7267824363164386e-05
+985.0000000001558 2.7195535421125543e-05
+985.1000000001558 2.718854237624473e-05
+985.2000000001558 2.7181316705366416e-05
+985.3000000001558 2.7173861331705885e-05
+985.4000000001558 2.7166181059115492e-05
+985.5000000001559 2.715828256933595e-05
+985.6000000001559 2.716684235971123e-05
+985.7000000001559 2.7175148842546554e-05
+985.8000000001559 2.7183214446248276e-05
+985.900000000156 2.7191053416880254e-05
+986.000000000156 2.7198681819701084e-05
+986.100000000156 2.7166712601031254e-05
+986.200000000156 2.713469427228094e-05
+986.300000000156 2.7102648358883836e-05
+986.4000000001561 2.7070598076550473e-05
+986.5000000001561 2.7038568320805243e-05
+986.6000000001561 2.6984706916829325e-05
+986.7000000001561 2.6930890175387444e-05
+986.8000000001562 2.6877117698810798e-05
+986.9000000001562 2.682338911969801e-05
+987.0000000001562 2.6769704100611512e-05
+987.1000000001562 2.6717410765246783e-05
+987.2000000001563 2.6665153019171135e-05
+987.3000000001563 2.661293062132031e-05
+987.4000000001563 2.6560743359473094e-05
+987.5000000001563 2.6508591049935016e-05
+987.6000000001563 2.647801241851717e-05
+987.7000000001564 2.6447398950071684e-05
+987.8000000001564 2.6416750474278227e-05
+987.9000000001564 2.6386066794717955e-05
+988.0000000001564 2.6355347689215324e-05
+988.1000000001565 2.6336611045767146e-05
+988.2000000001565 2.631780494738773e-05
+988.3000000001565 2.629892908701267e-05
+988.4000000001565 2.6279983131766152e-05
+988.5000000001565 2.626096672305828e-05
+988.6000000001566 2.622063387384858e-05
+988.7000000001566 2.6180275124937243e-05
+988.8000000001566 2.6139902880303757e-05
+988.9000000001566 2.6099528618550217e-05
+989.0000000001567 2.605916289921659e-05
+989.1000000001567 2.600989213095547e-05
+989.2000000001567 2.5960675676933243e-05
+989.3000000001567 2.591152133579406e-05
+989.4000000001568 2.5862436004002864e-05
+989.5000000001568 2.5813425683772474e-05
+989.6000000001568 2.5759278950358335e-05
+989.7000000001568 2.5705231318536698e-05
+989.8000000001568 2.5651285270731905e-05
+989.9000000001569 2.559744238044019e-05
+990.0000000001569 2.5543703321536325e-05
+990.1000000001569 2.550712664890985e-05
+990.2000000001569 2.5470597745327744e-05
+990.300000000157 2.543411477021692e-05
+990.400000000157 2.5397675012987743e-05
+990.500000000157 2.5361274899394162e-05
+990.600000000157 2.5330040652132962e-05
+990.700000000157 2.529882097942517e-05
+990.8000000001571 2.526761019689198e-05
+990.9000000001571 2.523640179926439e-05
+991.0000000001571 2.5205188465894034e-05
+991.1000000001571 2.516690023035868e-05
+991.2000000001572 2.512861332809579e-05
+991.3000000001572 2.5090318021689097e-05
+991.4000000001572 2.5052003791293227e-05
+991.5000000001572 2.5013659341128925e-05
+991.6000000001573 2.4980323217216753e-05
+991.7000000001573 2.494696345066078e-05
+991.8000000001573 2.4913580036858886e-05
+991.9000000001573 2.488017297131281e-05
+992.0000000001573 2.4846742249375894e-05
+992.1000000001574 2.4800955561579434e-05
+992.2000000001574 2.4755187168041885e-05
+992.3000000001574 2.4709437067836862e-05
+992.4000000001574 2.4663705260114917e-05
+992.5000000001575 2.461799174394939e-05
+992.6000000001575 2.4572296518439215e-05
+992.7000000001575 2.4526619582734143e-05
+992.8000000001575 2.4480960935932615e-05
+992.9000000001575 2.443532057715837e-05
+993.0000000001576 2.438969850549717e-05
+993.1000000001576 2.43523902087566e-05
+993.2000000001576 2.4315069593566146e-05
+993.3000000001576 2.427773666277145e-05
+993.4000000001577 2.4240391419243404e-05
+993.5000000001577 2.4203033865885602e-05
+993.6000000001577 2.4170516937703232e-05
+993.7000000001577 2.4137949540377915e-05
+993.8000000001578 2.410534269829504e-05
+993.9000000001578 2.4072706568174706e-05
+994.0000000001578 2.4040050444272234e-05
+994.1000000001578 2.4001282898797764e-05
+994.2000000001578 2.396253579165664e-05
+994.3000000001579 2.392381583207949e-05
+994.4000000001579 2.388512888270521e-05
+994.5000000001579 2.3846479966031595e-05
+994.6000000001579 2.3807872288019384e-05
+994.700000000158 2.376930956594619e-05
+994.800000000158 2.3730794670202307e-05
+994.900000000158 2.3692329631037038e-05
+995.000000000158 2.365391564519128e-05
+995.100000000158 2.361454357942678e-05
+995.2000000001581 2.357522588727727e-05
+995.3000000001581 2.353596129817188e-05
+995.4000000001581 2.3496747735181884e-05
+995.5000000001581 2.3457582321745917e-05
+995.6000000001582 2.341846332347621e-05
+995.7000000001582 2.3379385585239093e-05
+995.8000000001582 2.3340343224610527e-05
+995.9000000001582 2.330132963838993e-05
+996.0000000001583 2.326233750894088e-05
+996.1000000001583 2.3221664009968246e-05
+996.2000000001583 2.3181003369367008e-05
+996.3000000001583 2.3140346164740084e-05
+996.4000000001583 2.3099682287680618e-05
+996.5000000001584 2.305900095026767e-05
+996.6000000001584 2.301828879020857e-05
+996.7000000001584 2.2977577667147387e-05
+996.8000000001584 2.2936867912245625e-05
+996.9000000001585 2.2896159831223583e-05
+997.0000000001585 2.28554537043363e-05
+997.1000000001585 2.2817769657524933e-05
+997.2000000001585 2.27800751793625e-05
+997.3000000001585 2.274237047385068e-05
+997.4000000001586 2.2704655720593974e-05
+997.5000000001586 2.266693107501537e-05
+997.6000000001586 2.2629197602599458e-05
+997.7000000001586 2.2591456361807147e-05
+997.8000000001587 2.2553707495851088e-05
+997.9000000001587 2.2515951169826896e-05
+998.0000000001587 2.247818757049514e-05
+998.1000000001587 2.2439662797002385e-05
+998.2000000001588 2.2401136368846402e-05
+998.3000000001588 2.2362608537187387e-05
+998.4000000001588 2.232407957408803e-05
+998.5000000001588 2.2285549772269993e-05
+998.6000000001588 2.224704977733593e-05
+998.7000000001589 2.22085664151892e-05
+998.8000000001589 2.2170089155807577e-05
+998.9000000001589 2.213160826264993e-05
+999.0000000001589 2.2093114786431492e-05
+999.100000000159 2.2051578036323467e-05
+999.200000000159 2.201002390570226e-05
+999.300000000159 2.1968445782573633e-05
+999.400000000159 2.1926837820371636e-05
+999.500000000159 2.1885194931097276e-05
+999.6000000001591 2.1843512778549068e-05
+999.7000000001591 2.1801790259871935e-05
+999.8000000001591 2.1760025238330362e-05
+999.9000000001591 2.1718216347201013e-05
+1000.0000000001592 2.167636298264158e-05
+1000.1000000001592 2.164394019008421e-05
+1000.2000000001592 2.1611443197949532e-05
+1000.3000000001592 2.1578873576151408e-05
+1000.4000000001593 2.1546233632270587e-05
+1000.5000000001593 2.151352640606368e-05
+1000.6000000001593 2.1472095814584037e-05
+1000.7000000001593 2.143063492695522e-05
+1000.8000000001593 2.1389148640074273e-05
+1000.9000000001594 2.1347642531407695e-05
+1001.0000000001594 2.1306122852097208e-05
+1001.1000000001594 2.1259383062486713e-05
+1001.2000000001594 2.1212663267023823e-05
+1001.3000000001595 2.1165971695652636e-05
+1001.4000000001595 2.1119317215352116e-05
+1001.5000000001595 2.1072709322387818e-05
+1001.6000000001595 2.1026158134716854e-05
+1001.7000000001595 2.0979634865786634e-05
+1001.8000000001596 2.0933139519233922e-05
+1001.9000000001596 2.0886672098760516e-05
+1002.0000000001596 2.084023260806261e-05
+1002.1000000001596 2.0804204298314352e-05
+1002.2000000001597 2.0768165288415298e-05
+1002.3000000001597 2.0732115581785876e-05
+1002.4000000001597 2.0696055181846668e-05
+1002.5000000001597 2.0659984092117542e-05
+1002.6000000001598 2.0632250384066296e-05
+1002.7000000001598 2.0604473401794126e-05
+1002.8000000001598 2.057665315555149e-05
+1002.9000000001598 2.054878965558895e-05
+1003.0000000001598 2.0520882912140287e-05
+1003.1000000001599 2.0482437354565454e-05
+1003.2000000001599 2.044399019263308e-05
+1003.3000000001599 2.0405541426386237e-05
+1003.4000000001599 2.036709105591036e-05
+1003.50000000016 2.0328639081290813e-05
+1003.60000000016 2.029021316255429e-05
+1003.70000000016 2.025180328270735e-05
+1003.80000000016 2.0213400178344304e-05
+1003.90000000016 2.017499533312146e-05
+1004.0000000001601 2.013658097130353e-05
+1004.1000000001601 2.0099621500786255e-05
+1004.2000000001601 2.006263630141817e-05
+1004.3000000001601 2.0025619774780873e-05
+1004.4000000001602 1.9988567035974533e-05
+1004.5000000001602 1.9951473907483635e-05
+1004.6000000001602 1.991433773475912e-05
+1004.7000000001602 1.9877155438918362e-05
+1004.8000000001603 1.983992465217684e-05
+1004.9000000001603 1.9802643711571352e-05
+1005.0000000001603 1.976531165253785e-05
+1005.1000000001603 1.9724648078481264e-05
+1005.2000000001603 1.9683946466394483e-05
+1005.3000000001604 1.9643207930390403e-05
+1005.4000000001604 1.9602434256021695e-05
+1005.5000000001604 1.9561627893262697e-05
+1005.6000000001604 1.952079033712059e-05
+1005.7000000001605 1.947992592994326e-05
+1005.8000000001605 1.9439039613076736e-05
+1005.9000000001605 1.9398136920090865e-05
+1006.0000000001605 1.9357223970176953e-05
+1006.1000000001605 1.9320153251995222e-05
+1006.2000000001606 1.928307355761705e-05
+1006.3000000001606 1.9245992725317467e-05
+1006.4000000001606 1.9208919159230187e-05
+1006.5000000001606 1.91718618233584e-05
+1006.6000000001607 1.9138693538058125e-05
+1006.7000000001607 1.9105511147783602e-05
+1006.8000000001607 1.9072314377086585e-05
+1006.9000000001607 1.903910297159765e-05
+1007.0000000001608 1.9005876697946995e-05
+1007.1000000001608 1.8964849100053638e-05
+1007.2000000001608 1.8923836692577707e-05
+1007.3000000001608 1.8882839304583386e-05
+1007.4000000001608 1.8841856785728626e-05
+1007.5000000001609 1.880088900602343e-05
+1007.6000000001609 1.876372190701056e-05
+1007.7000000001609 1.872655278360456e-05
+1007.8000000001609 1.868938151756734e-05
+1007.900000000161 1.865220797277107e-05
+1008.000000000161 1.8615031995162454e-05
+1008.100000000161 1.857114853109476e-05
+1008.200000000161 1.8527290695792915e-05
+1008.300000000161 1.8483458276399623e-05
+1008.4000000001611 1.843965104341262e-05
+1008.5000000001611 1.8395868750749696e-05
+1008.6000000001611 1.835206107990294e-05
+1008.7000000001611 1.8308248033844336e-05
+1008.8000000001612 1.8264446710857415e-05
+1008.9000000001612 1.82206728425465e-05
+1009.0000000001612 1.8176940808450442e-05
+1009.1000000001612 1.8136732668693694e-05
+1009.2000000001613 1.8096578075959653e-05
+1009.3000000001613 1.8056487478917463e-05
+1009.4000000001613 1.8016470039897587e-05
+1009.5000000001613 1.797653364839444e-05
+1009.6000000001613 1.794394747957339e-05
+1009.7000000001614 1.791142259233866e-05
+1009.8000000001614 1.787896289705132e-05
+1009.9000000001614 1.7846571037529198e-05
+1010.0000000001614 1.7814248402358052e-05
+1010.1000000001615 1.778541862207117e-05
+1010.2000000001615 1.775664313012079e-05
+1010.3000000001615 1.7727919664226502e-05
+1010.4000000001615 1.7699244748754007e-05
+1010.5000000001615 1.7670613704612874e-05
+1010.6000000001616 1.7638463105141244e-05
+1010.7000000001616 1.7606359772693e-05
+1010.8000000001616 1.757429524764181e-05
+1010.9000000001616 1.7542259969073476e-05
+1011.0000000001617 1.7510243285433073e-05
+1011.1000000001617 1.7473839334096204e-05
+1011.2000000001617 1.7437450300764212e-05
+1011.3000000001617 1.740106232952899e-05
+1011.4000000001618 1.7364660531447706e-05
+1011.5000000001618 1.7328228996822153e-05
+1011.6000000001618 1.7288263138857686e-05
+1011.7000000001618 1.7248311540985722e-05
+1011.8000000001618 1.7208374454635802e-05
+1011.9000000001619 1.7168452111490497e-05
+1012.0000000001619 1.7128544723842025e-05
+1012.1000000001619 1.709343337129422e-05
+1012.2000000001619 1.7058317139421175e-05
+1012.300000000162 1.7023196182782624e-05
+1012.400000000162 1.698807063749643e-05
+1012.500000000162 1.695294062131727e-05
+1012.600000000162 1.6921221222225986e-05
+1012.700000000162 1.6889484759372228e-05
+1012.8000000001621 1.6857731337513526e-05
+1012.9000000001621 1.6825961077645404e-05
+1013.0000000001621 1.679417411686715e-05
+1013.1000000001621 1.6758815429626777e-05
+1013.2000000001622 1.672345524882123e-05
+1013.3000000001622 1.6688093760357226e-05
+1013.4000000001622 1.6652731165458378e-05
+1013.5000000001622 1.661736768039797e-05
+1013.6000000001623 1.6582026144928668e-05
+1013.7000000001623 1.6546696713748282e-05
+1013.8000000001623 1.6511371526399176e-05
+1013.9000000001623 1.6476043325716474e-05
+1014.0000000001623 1.6440705452058577e-05
+1014.1000000001624 1.6404938184921218e-05
+1014.2000000001624 1.636915453301936e-05
+1014.3000000001624 1.63333495968778e-05
+1014.4000000001624 1.629751905192311e-05
+1014.5000000001625 1.6261659142713158e-05
+1014.6000000001625 1.622576667711478e-05
+1014.7000000001625 1.6189840868134145e-05
+1014.8000000001625 1.615388016263418e-05
+1014.9000000001625 1.6117883581129156e-05
+1015.0000000001626 1.608185071169583e-05
+1015.1000000001626 1.6048380095050245e-05
+1015.2000000001626 1.6014865892130173e-05
+1015.3000000001626 1.5981309337184037e-05
+1015.4000000001627 1.5947712208077326e-05
+1015.5000000001627 1.591407682038264e-05
+1015.6000000001627 1.588040602160566e-05
+1015.7000000001627 1.5846702281525746e-05
+1015.8000000001628 1.5812969234316965e-05
+1015.9000000001628 1.577921101464216e-05
+1016.0000000001628 1.5745432251970476e-05
+1016.1000000001628 1.5710421748537797e-05
+1016.2000000001628 1.5675406780174108e-05
+1016.3000000001629 1.5640393426409207e-05
+1016.4000000001629 1.5605388236711386e-05
+1016.5000000001629 1.5570398224611478e-05
+1016.6000000001629 1.5535430861865706e-05
+1016.700000000163 1.5500464875037276e-05
+1016.800000000163 1.546550026421919e-05
+1016.900000000163 1.5430537029504443e-05
+1017.000000000163 1.5395575170969227e-05
+1017.100000000163 1.5360058192551318e-05
+1017.2000000001631 1.5324545050990894e-05
+1017.3000000001631 1.5289035746721645e-05
+1017.4000000001631 1.5253530280193067e-05
+1017.5000000001631 1.5218028651822977e-05
+1017.6000000001632 1.5182530862076474e-05
+1017.7000000001632 1.514703691135566e-05
+1017.8000000001632 1.5111546800109845e-05
+1017.9000000001632 1.5076060528788176e-05
+1018.0000000001633 1.5040578097812206e-05
+1018.1000000001633 1.5007358567481195e-05
+1018.2000000001633 1.497413579295707e-05
+1018.3000000001633 1.4940909774575678e-05
+1018.4000000001633 1.490768051267291e-05
+1018.5000000001634 1.4874448007579716e-05
+1018.6000000001634 1.4838220079750442e-05
+1018.7000000001634 1.480200231222075e-05
+1018.8000000001634 1.4765794707313669e-05
+1018.9000000001635 1.472959726732126e-05
+1019.0000000001635 1.4693409994524741e-05
+1019.1000000001635 1.466006395095935e-05
+1019.2000000001635 1.462671855331755e-05
+1019.3000000001635 1.4593373801675986e-05
+1019.4000000001636 1.4560029696096093e-05
+1019.5000000001636 1.4526686236644091e-05
+1019.6000000001636 1.4496268417000403e-05
+1019.7000000001636 1.4465837785617964e-05
+1019.8000000001637 1.443539434293881e-05
+1019.9000000001637 1.4404938089434959e-05
+1020.0000000001637 1.4374469025542815e-05
+1020.1000000001637 1.4340498525962986e-05
+1020.2000000001638 1.4306531426215013e-05
+1020.3000000001638 1.4272567726468872e-05
+1020.4000000001638 1.4238607426923977e-05
+1020.5000000001638 1.4204650527720704e-05
+1020.6000000001638 1.4170697029043643e-05
+1020.7000000001639 1.4136746931062597e-05
+1020.8000000001639 1.4102800233947383e-05
+1020.9000000001639 1.4068856937882343e-05
+1021.0000000001639 1.4034917043024947e-05
+1021.100000000164 1.4002391089413296e-05
+1021.200000000164 1.3969861844274821e-05
+1021.300000000164 1.393732930781255e-05
+1021.400000000164 1.3904793480171724e-05
+1021.500000000164 1.3872254361555277e-05
+1021.6000000001641 1.3839711952122894e-05
+1021.7000000001641 1.380716625206302e-05
+1021.8000000001641 1.377461726153543e-05
+1021.9000000001641 1.3742064980728502e-05
+1022.0000000001642 1.3709509409815827e-05
+1022.1000000001642 1.3676675344402764e-05
+1022.2000000001642 1.3643842747615396e-05
+1022.3000000001642 1.3611011619544926e-05
+1022.4000000001643 1.3578181960197865e-05
+1022.5000000001643 1.354535376964668e-05
+1022.6000000001643 1.3509802748145545e-05
+1022.7000000001643 1.3474266431517421e-05
+1022.8000000001643 1.343874481894649e-05
+1022.9000000001644 1.3403237909575062e-05
+1023.0000000001644 1.3367745702592661e-05
+1023.1000000001644 1.3335651908630743e-05
+1023.2000000001644 1.3303559615732258e-05
+1023.3000000001645 1.3271468823955796e-05
+1023.4000000001645 1.3239379533359811e-05
+1023.5000000001645 1.3207291743970903e-05
+1023.6000000001645 1.3172564441082944e-05
+1023.7000000001646 1.3137863008735699e-05
+1023.8000000001646 1.3103181415379365e-05
+1023.9000000001646 1.306851413126643e-05
+1024.0000000001646 1.303385612254119e-05
+1024.1000000001645 1.3005351155403302e-05
+1024.2000000001647 1.2976816940067922e-05
+1024.3000000001648 1.294824986978485e-05
+1024.4000000001647 1.2919646804353791e-05
+1024.5000000001646 1.2891005065398612e-05
+1024.6000000001648 1.2862322962514586e-05
+1024.700000000165 1.2833598534064083e-05
+1024.8000000001648 1.2804830280728567e-05
+1024.9000000001647 1.2776017160522841e-05
+1025.0000000001648 1.2747158583900659e-05
+1025.100000000165 1.270304729811134e-05
+1025.200000000165 1.2658911978552009e-05
+1025.3000000001648 1.2614753472212951e-05
+1025.400000000165 1.2570573053674822e-05
+1025.500000000165 1.2526372417435913e-05
+1025.600000000165 1.2482152639334803e-05
+1025.700000000165 1.2437916608687544e-05
+1025.800000000165 1.2393667581408258e-05
+1025.9000000001652 1.2349409172808403e-05
+1026.000000000165 1.2305145350412075e-05
+1026.100000000165 1.226143209353789e-05
+1026.2000000001651 1.2217718456290007e-05
+1026.3000000001653 1.2174009420246508e-05
+1026.4000000001652 1.2130310291431181e-05
+1026.500000000165 1.2086626693206866e-05
+1026.6000000001652 1.2042965554127176e-05
+1026.7000000001653 1.1999310139420239e-05
+1026.8000000001653 1.1955660267937404e-05
+1026.9000000001652 1.1912015773009906e-05
+1027.0000000001653 1.1868376502280718e-05
+1027.1000000001654 1.1827038475550363e-05
+1027.2000000001653 1.17856989545596e-05
+1027.3000000001653 1.1744357829862662e-05
+1027.4000000001654 1.1703015005338219e-05
+1027.5000000001655 1.1661670397980184e-05
+1027.6000000001654 1.1620323457986055e-05
+1027.7000000001653 1.1578973643309712e-05
+1027.8000000001655 1.1537620884156486e-05
+1027.9000000001656 1.149626510017096e-05
+1028.0000000001655 1.1454906200596763e-05
+1028.1000000001654 1.1412462028985617e-05
+1028.2000000001656 1.1370027587088548e-05
+1028.3000000001657 1.1327602752573615e-05
+1028.4000000001656 1.1285187393584871e-05
+1028.5000000001655 1.1242781369003091e-05
+1028.6000000001657 1.1200353979089915e-05
+1028.7000000001658 1.1157917553987693e-05
+1028.8000000001657 1.1115482588455125e-05
+1028.9000000001656 1.1073058688354016e-05
+1029.0000000001658 1.1030654584619633e-05
+1029.100000000166 1.0991084843048052e-05
+1029.2000000001658 1.0951539254889392e-05
+1029.3000000001657 1.0912024035557681e-05
+1029.4000000001658 1.08725445877174e-05
+1029.500000000166 1.083310551443928e-05
+1029.600000000166 1.0795886337905752e-05
+1029.7000000001658 1.0758697018860035e-05
+1029.800000000166 1.0721539673095264e-05
+1029.900000000166 1.0684415640740794e-05
+1030.000000000166 1.064732549919993e-05
+1030.100000000166 1.060770518688713e-05
+1030.200000000166 1.0568136627406872e-05
+1030.3000000001662 1.0528618152653547e-05
+1030.400000000166 1.0489147385343034e-05
+1030.500000000166 1.0449721252640941e-05
+1030.6000000001661 1.0410336860016649e-05
+1030.7000000001663 1.0370990060195044e-05
+1030.8000000001662 1.0331675651706323e-05
+1030.900000000166 1.0292387824945492e-05
+1031.0000000001662 1.0253120175101322e-05
+1031.1000000001663 1.0215382600845023e-05
+1031.2000000001663 1.0177655179445633e-05
+1031.3000000001662 1.0139929798255024e-05
+1031.4000000001663 1.0102197796085194e-05
+1031.5000000001664 1.0064449975743212e-05
+1031.6000000001663 1.0026675788186041e-05
+1031.7000000001663 9.988902951504616e-06
+1031.8000000001664 9.951131617174386e-06
+1031.9000000001665 9.913361924496083e-06
+1032.0000000001664 9.875594000821469e-06
+1032.1000000001663 9.839109631130254e-06
+1032.2000000001665 9.802617565804554e-06
+1032.3000000001666 9.766117896461407e-06
+1032.4000000001665 9.729610703569752e-06
+1032.5000000001664 9.693096056605595e-06
+1032.6000000001666 9.656574412906426e-06
+1032.7000000001667 9.62004622293322e-06
+1032.8000000001666 9.5835115444066e-06
+1032.9000000001665 9.54697044381071e-06
+1033.0000000001667 9.510422996137707e-06
+1033.1000000001668 9.474047545418402e-06
+1033.2000000001667 9.43767552776858e-06
+1033.3000000001666 9.401307043428262e-06
+1033.4000000001668 9.364942200501674e-06
+1033.500000000167 9.328581114675175e-06
+1033.6000000001668 9.292236578475989e-06
+1033.7000000001667 9.255903009712846e-06
+1033.8000000001668 9.21957597338811e-06
+1033.900000000167 9.183251402057195e-06
+1034.000000000167 9.146925589914999e-06
+1034.1000000001668 9.111924812961315e-06
+1034.200000000167 9.076911569043042e-06
+1034.300000000167 9.04188319593569e-06
+1034.400000000167 9.006837367939033e-06
+1034.500000000167 8.971772090120871e-06
+1034.600000000167 8.936685692698866e-06
+1034.7000000001672 8.90157784119429e-06
+1034.800000000167 8.866447784513009e-06
+1034.900000000167 8.831295092775804e-06
+1035.0000000001671 8.796119651288308e-06
+1035.1000000001673 8.762673255286509e-06
+1035.2000000001672 8.72920220799659e-06
+1035.300000000167 8.695707291378136e-06
+1035.4000000001672 8.662189578873717e-06
+1035.5000000001673 8.628650429556704e-06
+1035.6000000001673 8.595091482379047e-06
+1035.7000000001672 8.561514162013026e-06
+1035.8000000001673 8.527920512277715e-06
+1035.9000000001674 8.494312832938978e-06
+1036.0000000001673 8.460693674049323e-06
+1036.1000000001673 8.426636331242126e-06
+1036.2000000001674 8.392582407619868e-06
+1036.3000000001675 8.358535169339446e-06
+1036.4000000001674 8.324498109497093e-06
+1036.5000000001673 8.290474942446306e-06
+1036.6000000001675 8.256469598113772e-06
+1036.7000000001676 8.22247072801763e-06
+1036.8000000001675 8.188478331756105e-06
+1036.9000000001674 8.154492408952812e-06
+1037.0000000001676 8.12051295923409e-06
+1037.1000000001677 8.088249296658591e-06
+1037.2000000001676 8.05598386799721e-06
+1037.3000000001675 8.023716673394244e-06
+1037.4000000001677 7.991447712985741e-06
+1037.5000000001678 7.959176986932706e-06
+1037.6000000001677 7.92690449536311e-06
+1037.7000000001676 7.894630238437683e-06
+1037.8000000001678 7.862354216300643e-06
+1037.900000000168 7.83007642908018e-06
+1038.0000000001678 7.79779687694707e-06
+1038.1000000001677 7.766726758887035e-06
+1038.2000000001678 7.735656570479537e-06
+1038.300000000168 7.704586311803257e-06
+1038.400000000168 7.673515982912954e-06
+1038.5000000001678 7.64244558389508e-06
+1038.600000000168 7.611375114812257e-06
+1038.700000000168 7.580304575735184e-06
+1038.800000000168 7.549233966750171e-06
+1038.900000000168 7.518163287912065e-06
+1039.000000000168 7.4870925392981395e-06
+1039.1000000001682 7.455407741350623e-06
+1039.200000000168 7.423728032838796e-06
+1039.300000000168 7.3920534133066024e-06
+1039.4000000001681 7.360383882328686e-06
+1039.5000000001683 7.3287194394644465e-06
+1039.6000000001682 7.29706008426577e-06
+1039.700000000168 7.265405816307041e-06
+1039.8000000001682 7.233756635132537e-06
+1039.9000000001683 7.202112540309255e-06
+1040.0000000001683 7.170473531407509e-06
+1040.1000000001682 7.140872680526062e-06
+1040.2000000001683 7.111271474045463e-06
+1040.3000000001684 7.081669912177433e-06
+1040.4000000001683 7.052067995126284e-06
+1040.5000000001683 7.022465723088919e-06
+1040.6000000001684 6.9928630962840275e-06
+1040.7000000001685 6.963260114901399e-06
+1040.8000000001684 6.933656779159726e-06
+1040.9000000001683 6.904053089255895e-06
+1041.0000000001685 6.874449045400496e-06
+1041.1000000001686 6.84447705438998e-06
+1041.2000000001685 6.814507914685866e-06
+1041.3000000001684 6.784541626219082e-06
+1041.4000000001686 6.754578188920553e-06
+1041.5000000001687 6.724617602721323e-06
+1041.6000000001686 6.694659867559362e-06
+1041.7000000001685 6.6647049833585904e-06
+1041.8000000001687 6.634752950049901e-06
+1041.9000000001688 6.604803767571142e-06
+1042.0000000001687 6.574857435848805e-06
+1042.1000000001686 6.54630773957147e-06
+1042.2000000001688 6.5177609045133055e-06
+1042.300000000169 6.489216930615188e-06
+1042.4000000001688 6.460675817838123e-06
+1042.5000000001687 6.4321375661294375e-06
+1042.6000000001688 6.403602175429833e-06
+1042.700000000169 6.375069645686825e-06
+1042.800000000169 6.346539976854468e-06
+1042.9000000001688 6.318013168886547e-06
+1043.000000000169 6.2894892217176515e-06
+1043.100000000169 6.26121481509314e-06
+1043.200000000169 6.2329410368971284e-06
+1043.300000000169 6.204667887204614e-06
+1043.400000000169 6.176395366103444e-06
+1043.5000000001692 6.1481234736688074e-06
+1043.600000000169 6.1198605526926185e-06
+1043.700000000169 6.0916035218820465e-06
+1043.8000000001691 6.063349558587441e-06
+1043.9000000001693 6.035096094049185e-06
+1044.0000000001692 6.00684080862376e-06
+1044.100000000169 5.979544261123495e-06
+1044.2000000001692 5.952245984447164e-06
+1044.3000000001693 5.924944373697422e-06
+1044.4000000001693 5.897638053162153e-06
+1044.5000000001692 5.870325871706573e-06
+1044.6000000001693 5.841830300079793e-06
+1044.7000000001694 5.813338380271004e-06
+1044.8000000001693 5.784849530640745e-06
+1044.9000000001693 5.756363383467613e-06
+1045.0000000001694 5.727879780036815e-06
+1045.1000000001695 5.701098217887233e-06
+1045.2000000001694 5.674303230685805e-06
+1045.3000000001693 5.6474952495835165e-06
+1045.4000000001695 5.620674895762086e-06
+1045.5000000001696 5.593842975819996e-06
+1045.6000000001695 5.567000017289526e-06
+1045.7000000001694 5.540147353727976e-06
+1045.8000000001696 5.513286475765588e-06
+1045.9000000001697 5.48641902677372e-06
+1046.0000000001696 5.459546798449186e-06
+1046.1000000001695 5.434008536195175e-06
+1046.2000000001697 5.408470111294342e-06
+1046.3000000001698 5.382933733910775e-06
+1046.4000000001697 5.35740174738316e-06
+1046.5000000001696 5.331876624120963e-06
+1046.6000000001698 5.30636139981464e-06
+1046.70000000017 5.280848681256859e-06
+1046.8000000001698 5.255338386558877e-06
+1046.9000000001697 5.229830440554095e-06
+1047.0000000001698 5.204324774652991e-06
+1047.10000000017 5.179246669074374e-06
+1047.20000000017 5.1541733577480905e-06
+1047.3000000001698 5.129104790572611e-06
+1047.40000000017 5.104040923482075e-06
+1047.50000000017 5.078981718356134e-06
+1047.60000000017 5.0539269342436995e-06
+1047.70000000017 5.0288763348730455e-06
+1047.80000000017 5.003829890146433e-06
+1047.9000000001702 4.978787565569529e-06
+1048.00000000017 4.953749322368656e-06
+1048.10000000017 4.929238905329861e-06
+1048.2000000001701 4.904727204417159e-06
+1048.3000000001703 4.880214169377377e-06
+1048.4000000001702 4.855699746150632e-06
+1048.50000000017 4.831183877013528e-06
+1048.6000000001702 4.8056908608502134e-06
+1048.7000000001703 4.780202583692228e-06
+1048.8000000001703 4.754721352531563e-06
+1048.9000000001702 4.729249272452854e-06
+1049.0000000001703 4.70378825082646e-06
+1049.1000000001704 4.680428889436764e-06
+1049.2000000001703 4.657076556519202e-06
+1049.3000000001703 4.633732599555235e-06
+1049.4000000001704 4.610398187219861e-06
+1049.5000000001705 4.587074313196212e-06
+1049.6000000001704 4.563761799988364e-06
+1049.7000000001703 4.540460784275665e-06
+1049.8000000001705 4.517171613881108e-06
+1049.9000000001706 4.493894470813385e-06
+1050.0000000001705 4.470629375301944e-06
+1050.1000000001704 4.448024812746186e-06
+1050.2000000001706 4.425432389138791e-06
+1050.3000000001707 4.402851667944141e-06
+1050.4000000001706 4.380282066687064e-06
+1050.5000000001705 4.357722860844504e-06
+1050.6000000001707 4.335173187738708e-06
+1050.7000000001708 4.3126322964873415e-06
+1050.8000000001707 4.290099127906557e-06
+1050.9000000001706 4.267572499148526e-06
+1051.0000000001708 4.245051107491332e-06
+1051.100000000171 4.222586772828746e-06
+1051.2000000001708 4.2001241612810105e-06
+1051.3000000001707 4.177661633059851e-06
+1051.4000000001708 4.1551974434912425e-06
+1051.500000000171 4.132729746804492e-06
+1051.600000000171 4.110256599913572e-06
+1051.7000000001708 4.087783670535623e-06
+1051.800000000171 4.0653109587342505e-06
+1051.900000000171 4.0428384645857905e-06
+1052.000000000171 4.020366188150896e-06
+1052.100000000171 3.9985665319825455e-06
+1052.200000000171 3.9767747506903e-06
+1052.3000000001712 3.954990844701989e-06
+1052.400000000171 3.933214814433038e-06
+1052.500000000171 3.911446660316387e-06
+1052.6000000001711 3.890472336762628e-06
+1052.7000000001713 3.869497415485206e-06
+1052.8000000001712 3.848521896530224e-06
+1052.900000000171 3.827545779963769e-06
+1053.0000000001712 3.8065690658447447e-06
+1053.1000000001713 3.7861040738408664e-06
+1053.2000000001713 3.765640530837368e-06
+1053.3000000001712 3.7451784368902446e-06
+1053.4000000001713 3.724717792055459e-06
+1053.5000000001714 3.7042585963929017e-06
+1053.6000000001713 3.6838008499547177e-06
+1053.7000000001713 3.6633445527968217e-06
+1053.8000000001714 3.642889704978887e-06
+1053.9000000001715 3.622436306560573e-06
+1054.0000000001714 3.6019843575867566e-06
+1054.1000000001713 3.5816770866763423e-06
+1054.2000000001715 3.561377291019802e-06
+1054.3000000001716 3.54108497120296e-06
+1054.4000000001715 3.5208001278187276e-06
+1054.5000000001714 3.5005227614534897e-06
+1054.6000000001716 3.4809568073294034e-06
+1054.7000000001717 3.461390417787727e-06
+1054.8000000001716 3.4418235931500495e-06
+1054.9000000001715 3.4222563337449826e-06
+1055.0000000001717 3.402688639884473e-06
+1055.1000000001718 3.3837657113066203e-06
+1055.2000000001717 3.3648429843555828e-06
+1055.3000000001716 3.3459204592348642e-06
+1055.4000000001718 3.3269981361444264e-06
+1055.500000000172 3.308076015283144e-06
+1055.6000000001718 3.2884889494173357e-06
+1055.7000000001717 3.2689097390467994e-06
+1055.8000000001718 3.249338384254261e-06
+1055.900000000172 3.2297748851155186e-06
+1056.000000000172 3.210219241711648e-06
+1056.1000000001718 3.1919000963152646e-06
+1056.200000000172 3.1735824899435904e-06
+1056.300000000172 3.155266422561168e-06
+1056.400000000172 3.136951894129283e-06
+1056.500000000172 3.118638904611369e-06
+1056.600000000172 3.099699857328704e-06
+1056.7000000001722 3.0807697618145684e-06
+1056.800000000172 3.0618486170981357e-06
+1056.900000000172 3.0429364222085487e-06
+1057.0000000001721 3.024033176183805e-06
+1057.1000000001723 3.0066096098382036e-06
+1057.2000000001722 2.989185619956158e-06
+1057.300000000172 2.9717612065898426e-06
+1057.4000000001722 2.9543363697852922e-06
+1057.5000000001723 2.9369111095999502e-06
+1057.6000000001723 2.918893838359683e-06
+1057.7000000001722 2.9008832060983578e-06
+1057.8000000001723 2.882879213118629e-06
+1057.9000000001724 2.8648818597382488e-06
+1058.0000000001723 2.8468911462648347e-06
+1058.1000000001723 2.8300352096331234e-06
+1058.2000000001724 2.8131805691070414e-06
+1058.3000000001725 2.796327224692185e-06
+1058.4000000001724 2.77947517638244e-06
+1058.5000000001723 2.7626244241832434e-06
+1058.6000000001725 2.745774968088457e-06
+1058.7000000001726 2.7289268081035024e-06
+1058.8000000001725 2.712079944228019e-06
+1058.9000000001724 2.695234376458752e-06
+1059.0000000001726 2.6783901047968024e-06
+1059.1000000001727 2.6624219453175247e-06
+1059.2000000001726 2.646461000849021e-06
+1059.3000000001725 2.630507270825536e-06
+1059.4000000001727 2.6145607546730334e-06
+1059.5000000001728 2.598621451823932e-06
+1059.6000000001727 2.583213872135444e-06
+1059.7000000001726 2.567807248111668e-06
+1059.8000000001728 2.552401579766738e-06
+1059.900000000173 2.536996867106879e-06
+1060.0000000001728 2.521593110149082e-06
+1060.1000000001727 2.5062803407174554e-06
+1060.2000000001728 2.490967423869912e-06
+1060.300000000173 2.4756543596598463e-06
+1060.400000000173 2.4603411481380267e-06
+1060.5000000001728 2.445027789351751e-06
+1060.600000000173 2.4292209403567585e-06
+1060.700000000173 2.4134201629436008e-06
+1060.800000000173 2.397625457254531e-06
+1060.900000000173 2.381836823429168e-06
+1061.000000000173 2.366054261611215e-06
+1061.1000000001732 2.3512295935846833e-06
+1061.200000000173 2.3364075598789993e-06
+1061.300000000173 2.3215881602291395e-06
+1061.4000000001731 2.3067713943724877e-06
+1061.5000000001733 2.2919572620416774e-06
+1061.6000000001732 2.277145762971788e-06
+1061.700000000173 2.2623368969002045e-06
+1061.8000000001732 2.247530663561925e-06
+1061.9000000001733 2.232727062692024e-06
+1062.0000000001733 2.2179260940277954e-06
+1062.1000000001732 2.2043977622100986e-06
+1062.2000000001733 2.190873190992188e-06
+1062.3000000001734 2.177352381306963e-06
+1062.4000000001733 2.163835334085049e-06
+1062.5000000001733 2.1503220502578065e-06
+1062.6000000001734 2.1372473725394646e-06
+1062.7000000001735 2.1241711391308805e-06
+1062.8000000001734 2.111093350011551e-06
+1062.9000000001733 2.098014005165351e-06
+1063.0000000001735 2.0849331045735505e-06
+1063.1000000001736 2.071628054977874e-06
+1063.2000000001735 2.0583242891922898e-06
+1063.3000000001734 2.0450218071562093e-06
+1063.4000000001736 2.0317206088154473e-06
+1063.5000000001737 2.018420694108748e-06
+1063.6000000001736 2.0047141032514096e-06
+1063.7000000001735 1.991014206839892e-06
+1063.8000000001737 1.97732100402763e-06
+1063.9000000001738 1.963634493976482e-06
+1064.0000000001737 1.949954675849112e-06
+1064.1000000001736 1.9379406545249262e-06
+1064.2000000001738 1.9259292958485023e-06
+1064.300000000174 1.913920599461915e-06
+1064.4000000001738 1.9019145650112854e-06
+1064.5000000001737 1.8899111921387195e-06
+1064.6000000001738 1.8779104804922798e-06
+1064.700000000174 1.8659124297122246e-06
+1064.800000000174 1.8539170394447453e-06
+1064.9000000001738 1.8419243093359624e-06
+1065.000000000174 1.8299342390287306e-06
+1065.100000000174 1.8182763117596102e-06
+1065.200000000174 1.8066167575975639e-06
+1065.300000000174 1.7949555764856834e-06
+1065.400000000174 1.7832927683651616e-06
+1065.5000000001742 1.7716283331754068e-06
+1065.600000000174 1.75996227086139e-06
+1065.700000000174 1.7482945813624752e-06
+1065.8000000001741 1.7366252646198907e-06
+1065.9000000001743 1.7249543205749311e-06
+1066.0000000001742 1.7132817491728101e-06
+1066.100000000174 1.702827418006113e-06
+1066.2000000001742 1.6923736945373594e-06
+1066.3000000001744 1.6819205787811014e-06
+1066.4000000001743 1.6714680707501013e-06
+1066.5000000001742 1.6610161704570698e-06
+1066.6000000001743 1.6505648779147188e-06
+1066.7000000001744 1.640114193137512e-06
+1066.8000000001744 1.6296641161364664e-06
+1066.9000000001743 1.6192146469259746e-06
+1067.0000000001744 1.6087657855170353e-06
+1067.1000000001745 1.5983250235323838e-06
+1067.2000000001744 1.5878847720762117e-06
+1067.3000000001744 1.5774450311554785e-06
+1067.4000000001745 1.5670058007820954e-06
+1067.5000000001746 1.5565670809630562e-06
+1067.6000000001745 1.5461288717086243e-06
+1067.7000000001744 1.535691173025763e-06
+1067.8000000001746 1.525253984923073e-06
+1067.9000000001747 1.5148173074107774e-06
+1068.0000000001746 1.5043811405004295e-06
+1068.1000000001745 1.4956293165009158e-06
+1068.2000000001747 1.4868743334611972e-06
+1068.3000000001748 1.4781161917064965e-06
+1068.4000000001747 1.4693548915620246e-06
+1068.5000000001746 1.4605904333514202e-06
+1068.6000000001748 1.4518228174013764e-06
+1068.700000000175 1.4430520440355693e-06
+1068.8000000001748 1.434278113579198e-06
+1068.9000000001747 1.42550102635741e-06
+1069.0000000001749 1.4167207826946167e-06
+1069.100000000175 1.4083653143736376e-06
+1069.200000000175 1.4000101033621865e-06
+1069.3000000001748 1.3916551496744839e-06
+1069.400000000175 1.3833004533262208e-06
+1069.500000000175 1.3749460143364796e-06
+1069.600000000175 1.3668695952836624e-06
+1069.700000000175 1.3587900377154362e-06
+1069.800000000175 1.3507073418047542e-06
+1069.9000000001752 1.3426215077218142e-06
+1070.000000000175 1.3345325356410338e-06
+1070.100000000175 1.326429837156015e-06
+1070.2000000001751 1.318324130422912e-06
+1070.3000000001753 1.310215415685576e-06
+1070.4000000001752 1.3021036931892415e-06
+1070.500000000175 1.2939889631804482e-06
+1070.6000000001752 1.2858712259030205e-06
+1070.7000000001754 1.277750481602182e-06
+1070.8000000001753 1.2696267305231475e-06
+1070.9000000001752 1.2614999729097822e-06
+1071.0000000001753 1.253370209010535e-06
+1071.1000000001754 1.2463527224709845e-06
+1071.2000000001754 1.2393358440669755e-06
+1071.3000000001753 1.2323195737792013e-06
+1071.4000000001754 1.2253039115857814e-06
+1071.5000000001755 1.2182888574674254e-06
+1071.6000000001754 1.2112744114022976e-06
+1071.7000000001754 1.2042605733723104e-06
+1071.8000000001755 1.1972473433555866e-06
+1071.9000000001756 1.1902347213315443e-06
+1072.0000000001755 1.18322270728094e-06
+1072.1000000001754 1.1769710440486802e-06
+1072.2000000001756 1.1707192467599023e-06
+1072.3000000001757 1.1644673154367649e-06
+1072.4000000001756 1.1582152501038592e-06
+1072.5000000001755 1.1519630507849356e-06
+1072.6000000001757 1.1459428777295545e-06
+1072.7000000001758 1.1399200368047392e-06
+1072.8000000001757 1.1338945279563061e-06
+1072.9000000001756 1.1278663511229547e-06
+1073.0000000001758 1.121835506247976e-06
+1073.100000000176 1.1157146713566842e-06
+1073.2000000001758 1.1095921199454705e-06
+1073.3000000001757 1.1034678524716211e-06
+1073.4000000001759 1.097341869391199e-06
+1073.500000000176 1.0912141711575942e-06
+1073.600000000176 1.0848653719061652e-06
+1073.7000000001758 1.0785174258359797e-06
+1073.800000000176 1.0721703328839367e-06
+1073.900000000176 1.0658240929880967e-06
+1074.000000000176 1.0594787060867802e-06
+1074.100000000176 1.0532838291373759e-06
+1074.200000000176 1.0470954728159472e-06
+1074.3000000001762 1.0409136375447613e-06
+1074.400000000176 1.034738323741693e-06
+1074.500000000176 1.0285695318292566e-06
+1074.6000000001761 1.0232373066823374e-06
+1074.7000000001763 1.0179026144760941e-06
+1074.8000000001762 1.0125654550969243e-06
+1074.900000000176 1.0072258284290965e-06
+1075.0000000001762 1.0018837343606236e-06
+1075.1000000001764 9.96870843511694e-07
+1075.2000000001763 9.918517107726649e-07
+1075.3000000001762 9.868263371868982e-07
+1075.4000000001763 9.817947237956236e-07
+1075.5000000001764 9.767568716403705e-07
+1075.6000000001764 9.713204083448754e-07
+1075.7000000001763 9.658822595309502e-07
+1075.8000000001764 9.604424255268816e-07
+1075.9000000001765 9.550009066599385e-07
+1076.0000000001764 9.495577032550741e-07
+1076.1000000001764 9.439306438564749e-07
+1076.2000000001765 9.383040754860902e-07
+1076.3000000001766 9.326779981280981e-07
+1076.4000000001765 9.27052411771513e-07
+1076.5000000001764 9.214273163985538e-07
+1076.6000000001766 9.152482401255467e-07
+1076.7000000001767 9.090764650401675e-07
+1076.8000000001766 9.029119902351531e-07
+1076.9000000001765 8.967548148060798e-07
+1077.0000000001767 8.906049378489002e-07
+1077.1000000001768 8.851989343465127e-07
+1077.2000000001767 8.797988162562713e-07
+1077.3000000001766 8.744045836433173e-07
+1077.4000000001768 8.690162365764052e-07
+1077.500000000177 8.636337751239751e-07
+1077.6000000001768 8.591290575345461e-07
+1077.7000000001767 8.546203708924068e-07
+1077.8000000001769 8.501077151810349e-07
+1077.900000000177 8.455910903857177e-07
+1078.000000000177 8.41070496488218e-07
+1078.1000000001768 8.360315419501992e-07
+1078.200000000177 8.309856569227899e-07
+1078.300000000177 8.259328410866284e-07
+1078.400000000177 8.208730941215319e-07
+1078.500000000177 8.158064157076186e-07
+1078.600000000177 8.104065404620656e-07
+1078.7000000001772 8.050049210802531e-07
+1078.800000000177 7.996011806023284e-07
+1078.900000000177 7.941949785485722e-07
+1079.0000000001771 7.88786010014767e-07
+1079.1000000001773 7.838365272285397e-07
+1079.2000000001772 7.788870144598543e-07
+1079.300000000177 7.739372663003811e-07
+1079.4000000001772 7.689871088235599e-07
+1079.5000000001774 7.64036398755094e-07
+1079.6000000001773 7.584722082553832e-07
+1079.7000000001772 7.529152430777765e-07
+1079.8000000001773 7.473654595727227e-07
+1079.9000000001774 7.418228404504348e-07
+1080.0000000001774 7.362873938726261e-07
+1080.1000000001773 7.309318020842635e-07
+1080.2000000001774 7.255811131041975e-07
+1080.3000000001775 7.202354061279109e-07
+1080.4000000001774 7.148947822999644e-07
+1080.5000000001774 7.095593638453474e-07
+1080.6000000001775 7.048021866710709e-07
+1080.7000000001776 7.000425502214331e-07
+1080.8000000001775 6.952806340953307e-07
+1080.9000000001774 6.905166361850854e-07
+1081.0000000001776 6.857507718972196e-07
+1081.1000000001777 6.815676725509749e-07
+1081.2000000001776 6.773846925399073e-07
+1081.3000000001775 6.732020948446554e-07
+1081.4000000001777 6.690201578161424e-07
+1081.5000000001778 6.648391745005756e-07
+1081.6000000001777 6.610619387468986e-07
+1081.7000000001776 6.572799893690922e-07
+1081.8000000001778 6.534933034263063e-07
+1081.900000000178 6.497018591511927e-07
+1082.0000000001778 6.459056359353704e-07
+1082.1000000001777 6.419496651004743e-07
+1082.2000000001779 6.379908822091254e-07
+1082.300000000178 6.340292702077996e-07
+1082.400000000178 6.300648131441546e-07
+1082.5000000001778 6.260974961463545e-07
+1082.600000000178 6.213734906082884e-07
+1082.700000000178 6.16656850339627e-07
+1082.800000000178 6.119475799872584e-07
+1082.900000000178 6.072456846839824e-07
+1083.000000000178 6.025511700265084e-07
+1083.1000000001782 5.971966478506213e-07
+1083.200000000178 5.918503082013195e-07
+1083.300000000178 5.865121589118187e-07
+1083.4000000001781 5.811822081533868e-07
+1083.5000000001783 5.758604644118636e-07
+1083.6000000001782 5.71360227040527e-07
+1083.700000000178 5.668539062272072e-07
+1083.8000000001782 5.623417797007536e-07
+1083.9000000001784 5.578240985515187e-07
+1084.0000000001783 5.533010879438615e-07
+1084.1000000001782 5.501309447185599e-07
+1084.2000000001783 5.469577297246616e-07
+1084.3000000001784 5.437816007404957e-07
+1084.4000000001784 5.406026939944047e-07
+1084.5000000001783 5.3742112467454e-07
+1084.6000000001784 5.338046694246592e-07
+1084.7000000001785 5.301913390486177e-07
+1084.8000000001784 5.265811678027915e-07
+1084.9000000001784 5.229741702640265e-07
+1085.0000000001785 5.19370341950111e-07
+1085.1000000001786 5.146747928146843e-07
+1085.2000000001785 5.099892302597261e-07
+1085.3000000001784 5.053135881562512e-07
+1085.4000000001786 5.006477843295816e-07
+1085.5000000001787 4.959917213529253e-07
+1085.6000000001786 4.907442533651292e-07
+1085.7000000001785 4.855164456773332e-07
+1085.8000000001787 4.803081636486821e-07
+1085.9000000001788 4.75119261408217e-07
+1086.0000000001787 4.69949582686952e-07
+1086.1000000001786 4.663518484974441e-07
+1086.2000000001788 4.6275709846900643e-07
+1086.300000000179 4.5916515098409626e-07
+1086.4000000001788 4.5557581467054756e-07
+1086.5000000001787 4.5198888899380925e-07
+1086.6000000001789 4.4951522202509674e-07
+1086.700000000179 4.4702753853459634e-07
+1086.800000000179 4.4452583863766823e-07
+1086.9000000001788 4.420101224511739e-07
+1087.000000000179 4.3948039009047916e-07
+1087.100000000179 4.368188503451244e-07
+1087.200000000179 4.341450474159745e-07
+1087.300000000179 4.314589838647043e-07
+1087.400000000179 4.287606622518424e-07
+1087.5000000001792 4.260500851363497e-07
+1087.600000000179 4.2281402745461593e-07
+1087.700000000179 4.19574202463832e-07
+1087.8000000001791 4.1633061099516123e-07
+1087.9000000001793 4.1308325388144455e-07
+1088.0000000001792 4.09832131952876e-07
+1088.100000000179 4.0610534895176406e-07
+1088.2000000001792 4.0238291034257607e-07
+1088.3000000001794 3.98664815897144e-07
+1088.4000000001793 3.9495106538687105e-07
+1088.5000000001792 3.9124165858311255e-07
+1088.6000000001793 3.8730110613892084e-07
+1088.7000000001794 3.833691108458161e-07
+1088.8000000001794 3.7944567223997195e-07
+1088.9000000001793 3.7553078985672187e-07
+1089.0000000001794 3.7162446323373777e-07
+1089.1000000001795 3.6795830443987205e-07
+1089.2000000001794 3.6429635468620697e-07
+1089.3000000001794 3.606386139777959e-07
+1089.4000000001795 3.569850823200331e-07
+1089.5000000001796 3.533357597173004e-07
+1089.6000000001795 3.4976212831837816e-07
+1089.7000000001794 3.4619130428324106e-07
+1089.8000000001796 3.4262328761930564e-07
+1089.9000000001797 3.390580783336236e-07
+1090.0000000001796 3.3549567643498794e-07
+1090.1000000001795 3.3252218391550407e-07
+1090.2000000001797 3.295525948020588e-07
+1090.3000000001798 3.265869081152459e-07
+1090.4000000001797 3.2362512287580214e-07
+1090.5000000001796 3.2066723810791466e-07
+1090.6000000001798 3.1843132264030143e-07
+1090.70000000018 3.161868481412839e-07
+1090.8000000001798 3.139338170264988e-07
+1090.9000000001797 3.116722317115634e-07
+1091.0000000001799 3.094020946114971e-07
+1091.10000000018 3.0698003013319743e-07
+1091.20000000018 3.0455211102268115e-07
+1091.3000000001798 3.021183364124084e-07
+1091.40000000018 2.996787054345402e-07
+1091.50000000018 2.972332172185072e-07
+1091.60000000018 2.937674393638268e-07
+1091.70000000018 2.903147488074478e-07
+1091.80000000018 2.86875147642446e-07
+1091.9000000001802 2.834486379630974e-07
+1092.00000000018 2.800352218627692e-07
+1092.10000000018 2.7665439588735287e-07
+1092.2000000001801 2.732864584030351e-07
+1092.3000000001803 2.699314062739311e-07
+1092.4000000001802 2.665892363631157e-07
+1092.50000000018 2.632599455387185e-07
+1092.6000000001802 2.6080838748736687e-07
+1092.7000000001804 2.58351635033699e-07
+1092.8000000001803 2.558896895405537e-07
+1092.9000000001802 2.534225523694825e-07
+1093.0000000001803 2.509502248834351e-07
+1093.1000000001804 2.4874192701592215e-07
+1093.2000000001804 2.465225666551014e-07
+1093.3000000001803 2.442921448380694e-07
+1093.4000000001804 2.420506626021774e-07
+1093.5000000001805 2.3979812098289944e-07
+1093.6000000001804 2.3705025084581187e-07
+1093.7000000001804 2.3430254996308192e-07
+1093.8000000001805 2.3155501833441633e-07
+1093.9000000001806 2.2880765596026398e-07
+1094.0000000001805 2.2606046284013742e-07
+1094.1000000001804 2.2359785334771757e-07
+1094.2000000001806 2.2114270499675094e-07
+1094.3000000001807 2.1869501823862895e-07
+1094.4000000001806 2.1625479352468198e-07
+1094.5000000001805 2.1382203130777832e-07
+1094.6000000001807 2.117897439320537e-07
+1094.7000000001808 2.0975737714984215e-07
+1094.8000000001807 2.0772493096999293e-07
+1094.9000000001806 2.056924054017896e-07
+1095.0000000001808 2.036598004539645e-07
+1095.100000000181 2.015649992546871e-07
+1095.2000000001808 1.9947138161817066e-07
+1095.3000000001807 1.9737894730659298e-07
+1095.4000000001809 1.9528769608278622e-07
+1095.500000000181 1.9319762770849627e-07
+1095.600000000181 1.9095093126031333e-07
+1095.7000000001808 1.8870880062848647e-07
+1095.800000000181 1.864712347421419e-07
+1095.900000000181 1.842382325309308e-07
+1096.000000000181 1.820097929257157e-07
+1096.100000000181 1.8028571386506773e-07
+1096.200000000181 1.7855493067989928e-07
+1096.3000000001812 1.7681744343125301e-07
+1096.400000000181 1.7507325218042136e-07
+1096.500000000181 1.7332235698868416e-07
+1096.6000000001811 1.715295145410334e-07
+1096.7000000001813 1.6973080759076685e-07
+1096.8000000001812 1.6792623619239255e-07
+1096.900000000181 1.6611580040134916e-07
+1097.0000000001812 1.6429950027040552e-07
+1097.1000000001814 1.6194358084075672e-07
+1097.2000000001813 1.595953254218338e-07
+1097.3000000001812 1.5725473347584005e-07
+1097.4000000001813 1.5492180446495935e-07
+1097.5000000001814 1.5259653785169363e-07
+1097.6000000001814 1.503720619551358e-07
+1097.7000000001813 1.481527259934648e-07
+1097.8000000001814 1.4593852960902405e-07
+1097.9000000001815 1.4372947244415697e-07
+1098.0000000001814 1.4152555414307116e-07
+1098.1000000001814 1.401112115967981e-07
+1098.2000000001815 1.3869815464804677e-07
+1098.3000000001816 1.372863830886157e-07
+1098.4000000001815 1.3587589671032086e-07
+1098.5000000001814 1.5171784097603962e-07
+1098.6000000001816 1.615702232721661e-07
+1098.7000000001817 1.6537896964062437e-07
+1098.8000000001816 1.6338587586193406e-07
+1098.9000000001815 1.5624305512174176e-07
+1099.0000000001817 0.0
+1099.1000000001818 0.0
+1099.2000000001817 0.0
+1099.3000000001816 0.0
+1099.4000000001818 0.0
+1099.500000000182 0.0
+1099.6000000001818 0.0
+1099.7000000001817 0.0
+1099.8000000001819 0.0
+1099.900000000182 0.0
+1100.000000000182 0.0
+1100.1000000001818 0.0
+1100.200000000182 0.0
+1100.300000000182 0.0
+1100.400000000182 0.0
+1100.500000000182 0.0
+1100.600000000182 0.0
+1100.7000000001822 0.0
+1100.800000000182 -0.0
+1100.900000000182 -0.0
+1101.0000000001821 -0.0
+1101.1000000001823 -0.0
+1101.2000000001822 -0.0
+1101.300000000182 -0.0
+1101.4000000001822 -0.0
+1101.5000000001824 0.0
+1101.6000000001823 0.0
+1101.7000000001822 0.0
+1101.8000000001823 0.0
+1101.9000000001824 0.0
+1102.0000000001824 0.0
+1102.1000000001823 0.0
+1102.2000000001824 0.0
+1102.3000000001825 0.0
+1102.4000000001824 0.0
+1102.5000000001824 0.0
+1102.6000000001825 0.0
+1102.7000000001826 0.0
+1102.8000000001825 0.0
+1102.9000000001824 0.0
+1103.0000000001826 0.0
+1103.1000000001827 0.0
+1103.2000000001826 0.0
+1103.3000000001825 0.0
+1103.4000000001827 0.0
+1103.5000000001828 0.0
+1103.6000000001827 0.0
+1103.7000000001826 0.0
+1103.8000000001828 0.0
+1103.900000000183 0.0
+1104.0000000001828 0.0
+1104.1000000001827 0.0
+1104.2000000001829 0.0
+1104.300000000183 0.0
+1104.400000000183 0.0
+1104.5000000001828 0.0
+1104.600000000183 0.0
+1104.700000000183 0.0
+1104.800000000183 0.0
+1104.900000000183 0.0
+1105.000000000183 0.0
+1105.1000000001832 0.0
+1105.200000000183 0.0
+1105.300000000183 0.0
+1105.4000000001831 0.0
+1105.5000000001833 0.0
+1105.6000000001832 0.0
+1105.700000000183 0.0
+1105.8000000001832 0.0
+1105.9000000001834 0.0
+1106.0000000001833 0.0
+1106.1000000001832 0.0
+1106.2000000001833 0.0
+1106.3000000001834 0.0
+1106.4000000001834 0.0
+1106.5000000001833 0.0
+1106.6000000001834 0.0
+1106.7000000001835 0.0
+1106.8000000001834 0.0
+1106.9000000001834 0.0
+1107.0000000001835 0.0
+1107.1000000001836 0.0
+1107.2000000001835 0.0
+1107.3000000001834 0.0
+1107.4000000001836 0.0
+1107.5000000001837 0.0
+1107.6000000001836 0.0
+1107.7000000001835 0.0
+1107.8000000001837 0.0
+1107.9000000001838 0.0
+1108.0000000001837 0.0
+1108.1000000001836 0.0
+1108.2000000001838 0.0
+1108.300000000184 0.0
+1108.4000000001838 0.0
+1108.5000000001837 0.0
+1108.6000000001839 0.0
+1108.700000000184 0.0
+1108.800000000184 0.0
+1108.9000000001838 0.0
+1109.000000000184 0.0
+1109.100000000184 0.0
+1109.200000000184 0.0
+1109.300000000184 0.0
+1109.400000000184 0.0
+1109.5000000001842 0.0
+1109.600000000184 0.0
+1109.700000000184 0.0
+1109.8000000001841 0.0
+1109.9000000001843 0.0
+1110.0000000001842 0.0
+1110.100000000184 0.0
+1110.2000000001842 0.0
+1110.3000000001844 0.0
+1110.4000000001843 0.0
+1110.5000000001842 0.0
+1110.6000000001843 0.0
+1110.7000000001844 0.0
+1110.8000000001844 0.0
+1110.9000000001843 0.0
+1111.0000000001844 0.0
+1111.1000000001845 0.0
+1111.2000000001844 0.0
+1111.3000000001844 0.0
+1111.4000000001845 0.0
+1111.5000000001846 0.0
+1111.6000000001845 0.0
+1111.7000000001844 0.0
+1111.8000000001846 0.0
+1111.9000000001847 0.0
+1112.0000000001846 0.0
+1112.1000000001845 0.0
+1112.2000000001847 0.0
+1112.3000000001848 0.0
+1112.4000000001847 0.0
+1112.5000000001846 0.0
+1112.6000000001848 0.0
+1112.700000000185 0.0
+1112.8000000001848 0.0
+1112.9000000001847 0.0
+1113.0000000001849 0.0
+1113.100000000185 0.0
+1113.200000000185 0.0
+1113.3000000001848 0.0
+1113.400000000185 0.0
+1113.500000000185 0.0
+1113.600000000185 0.0
+1113.700000000185 0.0
+1113.800000000185 0.0
+1113.9000000001852 0.0
+1114.000000000185 0.0
+1114.100000000185 0.0
+1114.2000000001851 0.0
+1114.3000000001853 0.0
+1114.4000000001852 0.0
+1114.500000000185 0.0
+1114.6000000001852 0.0
+1114.7000000001854 0.0
+1114.8000000001853 0.0
+1114.9000000001852 0.0
+1115.0000000001853 0.0
+1115.1000000001854 0.0
+1115.2000000001854 0.0
+1115.3000000001853 0.0
+1115.4000000001854 0.0
+1115.5000000001855 0.0
+1115.6000000001854 0.0
+1115.7000000001854 0.0
+1115.8000000001855 0.0
+1115.9000000001856 0.0
+1116.0000000001855 0.0
+1116.1000000001854 0.0
+1116.2000000001856 0.0
+1116.3000000001857 0.0
+1116.4000000001856 0.0
+1116.5000000001855 0.0
+1116.6000000001857 0.0
+1116.7000000001858 0.0
+1116.8000000001857 0.0
+1116.9000000001856 0.0
+1117.0000000001858 0.0
+1117.100000000186 0.0
+1117.2000000001858 0.0
+1117.3000000001857 0.0
+1117.4000000001859 0.0
+1117.500000000186 0.0
+1117.600000000186 0.0
+1117.7000000001858 0.0
+1117.800000000186 0.0
+1117.900000000186 0.0
+1118.000000000186 0.0
+1118.100000000186 0.0
+1118.200000000186 0.0
+1118.3000000001862 0.0
+1118.400000000186 0.0
+1118.500000000186 0.0
+1118.6000000001861 0.0
+1118.7000000001863 0.0
+1118.8000000001862 0.0
+1118.900000000186 0.0
+1119.0000000001862 0.0
+1119.1000000001864 0.0
+1119.2000000001863 0.0
+1119.3000000001862 0.0
+1119.4000000001863 0.0
+1119.5000000001864 0.0
+1119.6000000001864 0.0
+1119.7000000001863 0.0
+1119.8000000001864 0.0
+1119.9000000001865 0.0
+1120.0000000001864 0.0
+1120.1000000001864 0.0
+1120.2000000001865 0.0
+1120.3000000001866 0.0
+1120.4000000001865 0.0
+1120.5000000001864 0.0
+1120.6000000001866 0.0
+1120.7000000001867 0.0
+1120.8000000001866 0.0
+1120.9000000001865 0.0
+1121.0000000001867 0.0
+1121.1000000001868 0.0
+1121.2000000001867 0.0
+1121.3000000001866 0.0
+1121.4000000001868 0.0
+1121.500000000187 0.0
+1121.6000000001868 0.0
+1121.7000000001867 0.0
+1121.8000000001869 0.0
+1121.900000000187 0.0
+1122.000000000187 0.0
+1122.1000000001868 0.0
+1122.200000000187 0.0
+1122.300000000187 0.0
+1122.400000000187 0.0
+1122.500000000187 0.0
+1122.600000000187 0.0
+1122.7000000001872 0.0
+1122.800000000187 0.0
+1122.900000000187 0.0
+1123.0000000001871 0.0
+1123.1000000001873 0.0
+1123.2000000001872 0.0
+1123.300000000187 0.0
+1123.4000000001872 0.0
+1123.5000000001874 0.0
+1123.6000000001873 0.0
+1123.7000000001872 0.0
+1123.8000000001873 0.0
+1123.9000000001874 0.0
+1124.0000000001874 0.0
+1124.1000000001873 0.0
+1124.2000000001874 0.0
+1124.3000000001875 0.0
+1124.4000000001874 0.0
+1124.5000000001874 0.0
+1124.6000000001875 0.0
+1124.7000000001876 0.0
+1124.8000000001875 0.0
+1124.9000000001874 0.0
+1125.0000000001876 0.0
+1125.1000000001877 0.0
+1125.2000000001876 0.0
+1125.3000000001875 0.0
+1125.4000000001877 0.0
+1125.5000000001878 0.0
+1125.6000000001877 0.0
+1125.7000000001876 0.0
+1125.8000000001878 0.0
+1125.900000000188 0.0
+1126.0000000001878 0.0
+1126.1000000001877 0.0
+1126.2000000001879 0.0
+1126.300000000188 0.0
+1126.400000000188 0.0
+1126.5000000001878 0.0
+1126.600000000188 0.0
+1126.700000000188 0.0
+1126.800000000188 0.0
+1126.900000000188 0.0
+1127.000000000188 0.0
+1127.1000000001882 0.0
+1127.200000000188 0.0
+1127.300000000188 0.0
+1127.4000000001881 0.0
+1127.5000000001883 0.0
+1127.6000000001882 0.0
+1127.700000000188 0.0
+1127.8000000001882 0.0
+1127.9000000001884 0.0
+1128.0000000001883 0.0
+1128.1000000001882 0.0
+1128.2000000001883 0.0
+1128.3000000001884 0.0
+1128.4000000001884 0.0
+1128.5000000001883 0.0
+1128.6000000001884 0.0
+1128.7000000001885 0.0
+1128.8000000001884 0.0
+1128.9000000001884 0.0
+1129.0000000001885 0.0
+1129.1000000001886 0.0
+1129.2000000001885 0.0
+1129.3000000001884 0.0
+1129.4000000001886 0.0
+1129.5000000001887 0.0
+1129.6000000001886 0.0
+1129.7000000001885 0.0
+1129.8000000001887 0.0
+1129.9000000001888 0.0
+1130.0000000001887 0.0
+1130.1000000001886 0.0
+1130.2000000001888 0.0
+1130.300000000189 0.0
+1130.4000000001888 0.0
+1130.5000000001887 0.0
+1130.6000000001889 0.0
+1130.700000000189 0.0
+1130.800000000189 0.0
+1130.9000000001888 0.0
+1131.000000000189 0.0
+1131.100000000189 0.0
+1131.200000000189 0.0
+1131.300000000189 0.0
+1131.400000000189 0.0
+1131.5000000001892 0.0
+1131.600000000189 0.0
+1131.700000000189 0.0
+1131.8000000001891 0.0
+1131.9000000001893 0.0
+1132.0000000001892 0.0
+1132.100000000189 0.0
+1132.2000000001892 0.0
+1132.3000000001894 0.0
+1132.4000000001893 0.0
+1132.5000000001892 0.0
+1132.6000000001893 0.0
+1132.7000000001894 0.0
+1132.8000000001894 0.0
+1132.9000000001893 0.0
+1133.0000000001894 0.0
+1133.1000000001895 0.0
+1133.2000000001894 0.0
+1133.3000000001894 0.0
+1133.4000000001895 0.0
+1133.5000000001896 0.0
+1133.6000000001895 0.0
+1133.7000000001894 0.0
+1133.8000000001896 0.0
+1133.9000000001897 0.0
+1134.0000000001896 0.0
+1134.1000000001895 0.0
+1134.2000000001897 0.0
+1134.3000000001898 0.0
+1134.4000000001897 0.0
+1134.5000000001896 0.0
+1134.6000000001898 0.0
+1134.70000000019 0.0
+1134.8000000001898 0.0
+1134.9000000001897 0.0
+1135.0000000001899 0.0
+1135.10000000019 0.0
+1135.20000000019 0.0
+1135.3000000001898 0.0
+1135.40000000019 0.0
+1135.50000000019 0.0
+1135.60000000019 0.0
+1135.70000000019 0.0
+1135.80000000019 0.0
+1135.9000000001902 0.0
+1136.00000000019 0.0
+1136.10000000019 0.0
+1136.2000000001901 0.0
+1136.3000000001903 0.0
+1136.4000000001902 0.0
+1136.50000000019 0.0
+1136.6000000001902 0.0
+1136.7000000001904 0.0
+1136.8000000001903 0.0
+1136.9000000001902 0.0
+1137.0000000001903 0.0
+1137.1000000001904 0.0
+1137.2000000001904 0.0
+1137.3000000001903 0.0
+1137.4000000001904 0.0
+1137.5000000001905 0.0
+1137.6000000001904 0.0
+1137.7000000001904 0.0
+1137.8000000001905 0.0
+1137.9000000001906 0.0
+1138.0000000001905 0.0
+1138.1000000001904 0.0
+1138.2000000001906 0.0
+1138.3000000001907 0.0
+1138.4000000001906 0.0
+1138.5000000001905 0.0
+1138.6000000001907 0.0
+1138.7000000001908 0.0
+1138.8000000001907 0.0
+1138.9000000001906 0.0
+1139.0000000001908 0.0
+1139.100000000191 0.0
+1139.2000000001908 0.0
+1139.3000000001907 0.0
+1139.4000000001909 0.0
+1139.500000000191 0.0
+1139.600000000191 0.0
+1139.7000000001908 0.0
+1139.800000000191 0.0
+1139.900000000191 0.0
+1140.000000000191 0.0
+1140.100000000191 0.0
+1140.200000000191 0.0
+1140.3000000001912 0.0
+1140.400000000191 0.0
+1140.500000000191 0.0
+1140.6000000001911 0.0
+1140.7000000001913 0.0
+1140.8000000001912 0.0
+1140.900000000191 0.0
+1141.0000000001912 0.0
+1141.1000000001914 0.0
+1141.2000000001913 0.0
+1141.3000000001912 0.0
+1141.4000000001913 0.0
+1141.5000000001914 0.0
+1141.6000000001914 0.0
+1141.7000000001913 0.0
+1141.8000000001914 0.0
+1141.9000000001915 0.0
+1142.0000000001914 0.0
+1142.1000000001914 0.0
+1142.2000000001915 0.0
+1142.3000000001916 0.0
+1142.4000000001915 0.0
+1142.5000000001914 0.0
+1142.6000000001916 0.0
+1142.7000000001917 0.0
+1142.8000000001916 0.0
+1142.9000000001915 0.0
+1143.0000000001917 0.0
+1143.1000000001918 0.0
+1143.2000000001917 0.0
+1143.3000000001916 0.0
+1143.4000000001918 0.0
+1143.500000000192 0.0
+1143.6000000001918 0.0
+1143.7000000001917 0.0
+1143.8000000001919 0.0
+1143.900000000192 0.0
+1144.000000000192 0.0
+1144.1000000001918 0.0
+1144.200000000192 0.0
+1144.300000000192 0.0
+1144.400000000192 0.0
+1144.500000000192 0.0
+1144.600000000192 0.0
+1144.7000000001922 0.0
+1144.800000000192 0.0
+1144.900000000192 0.0
+1145.0000000001921 0.0
+1145.1000000001923 0.0
+1145.2000000001922 0.0
+1145.300000000192 0.0
+1145.4000000001922 0.0
+1145.5000000001924 0.0
+1145.6000000001923 0.0
+1145.7000000001922 0.0
+1145.8000000001923 0.0
+1145.9000000001924 0.0
+1146.0000000001924 0.0
+1146.1000000001923 0.0
+1146.2000000001924 0.0
+1146.3000000001925 0.0
+1146.4000000001924 0.0
+1146.5000000001924 0.0
+1146.6000000001925 0.0
+1146.7000000001926 0.0
+1146.8000000001925 0.0
+1146.9000000001924 0.0
+1147.0000000001926 0.0
+1147.1000000001927 0.0
+1147.2000000001926 0.0
+1147.3000000001925 0.0
+1147.4000000001927 0.0
+1147.5000000001928 0.0
+1147.6000000001927 0.0
+1147.7000000001926 0.0
+1147.8000000001928 0.0
+1147.900000000193 0.0
+1148.0000000001928 0.0
+1148.1000000001927 0.0
+1148.2000000001929 0.0
+1148.300000000193 0.0
+1148.400000000193 0.0
+1148.5000000001928 0.0
+1148.600000000193 0.0
+1148.700000000193 0.0
+1148.800000000193 0.0
+1148.900000000193 0.0
+1149.000000000193 0.0
+1149.1000000001932 0.0
+1149.200000000193 0.0
+1149.300000000193 0.0
+1149.4000000001931 0.0
+1149.5000000001933 0.0
+1149.6000000001932 0.0
+1149.700000000193 0.0
+1149.8000000001932 0.0
+1149.9000000001934 0.0
+1150.0000000001933 0.0
diff --git a/setup.cfg b/setup.cfg
index 337d4d33..4d69fa9c 100755
--- a/setup.cfg
+++ b/setup.cfg
@@ -41,7 +41,7 @@ testpaths = "spisea" "docs"
astropy_header = true
doctest_plus = enabled
text_file_format = rst
-addopts = --doctest-rst
+#addopts = --doctest-rst
[coverage:run]
omit =
diff --git a/spisea/_astropy_init.py b/spisea/_astropy_init.py
index 2dffe8fd..58189c4b 100755
--- a/spisea/_astropy_init.py
+++ b/spisea/_astropy_init.py
@@ -14,14 +14,13 @@
except ImportError:
__version__ = ''
-
if not _ASTROPY_SETUP_: # noqa
import os
from warnings import warn
- from astropy.config.configuration import (
- update_default_config,
- ConfigurationDefaultMissingError,
- ConfigurationDefaultMissingWarning)
+ #from astropy.config.configuration import (
+ # update_default_config,
+ # ConfigurationDefaultMissingError,
+ # ConfigurationDefaultMissingWarning)
# Create the test function for self test
from astropy.tests.runner import TestRunner
@@ -30,23 +29,23 @@
__all__ += ['test']
# add these here so we only need to cleanup the namespace at the end
- config_dir = None
-
- if not os.environ.get('ASTROPY_SKIP_CONFIG_UPDATE', False):
- config_dir = os.path.dirname(__file__)
- config_template = os.path.join(config_dir, __package__ + ".cfg")
- if os.path.isfile(config_template):
- try:
- update_default_config(
- __package__, config_dir, version=__version__)
- except TypeError as orig_error:
- try:
- update_default_config(__package__, config_dir)
- except ConfigurationDefaultMissingError as e:
- wmsg = (e.args[0] +
- " Cannot install default profile. If you are "
- "importing from source, this is expected.")
- warn(ConfigurationDefaultMissingWarning(wmsg))
- del e
- except Exception:
- raise orig_error
+ #config_dir = None
+
+ #if not os.environ.get('ASTROPY_SKIP_CONFIG_UPDATE', False):
+ # config_dir = os.path.dirname(__file__)
+ # config_template = os.path.join(config_dir, __package__ + ".cfg")
+ # if os.path.isfile(config_template):
+ # try:
+ # update_default_config(
+ # __package__, config_dir, version=__version__)
+ # except TypeError as orig_error:
+ # try:
+ # update_default_config(__package__, config_dir)
+ # except ConfigurationDefaultMissingError as e:
+ # wmsg = (e.args[0] +
+ # " Cannot install default profile. If you are "
+ # "importing from source, this is expected.")
+ # warn(ConfigurationDefaultMissingWarning(wmsg))
+ # del e
+ # except Exception:
+ # raise orig_error
diff --git a/spisea/atmospheres.py b/spisea/atmospheres.py
index b00b217a..9867db81 100755
--- a/spisea/atmospheres.py
+++ b/spisea/atmospheres.py
@@ -8,16 +8,17 @@
import pysynphot
import time
import pdb
+import warnings
log = logging.getLogger('atmospheres')
-def get_atmosphere_bounds(model_dir, metallicity=0, temperature=20000, gravity=4):
+def get_atmosphere_bounds(model_dir, metallicity=0, temperature=20000, gravity=4, verbose=False):
"""
Given atmosphere model, get temperature and gravity bounds
"""
# Open catalog fits file and break out row indices
catalog = Table.read('{0}/grid/{1}/catalog.fits'.format(os.environ['PYSYN_CDBS'], model_dir))
-
+
teff_arr = []
z_arr = []
logg_arr = []
@@ -34,11 +35,12 @@ def get_atmosphere_bounds(model_dir, metallicity=0, temperature=20000, gravity=4
# Filter by metallicity. Will chose the closest metallicity to desired input
metal_list = np.unique(np.array(z_arr))
metal_idx = np.argmin(np.abs(metal_list - metallicity))
-
+ metallicity_new = metal_list[metal_idx]
+
z_filt = np.where(z_arr == metal_list[metal_idx])
teff_arr = teff_arr[z_filt]
logg_arr = logg_arr[z_filt]
-
+
# # Now find the closest atmosphere in parameter space to
# # the one we want. We'll find the match with the lowest
# # fractional difference
@@ -50,46 +52,51 @@ def get_atmosphere_bounds(model_dir, metallicity=0, temperature=20000, gravity=4
#
# temperature_new = teff_arr[idx_f]
# gravity_new = logg_arr[idx_f]
-
+
# First check if temperature within bounds
temperature_new = temperature
if temperature > np.max(teff_arr):
temperature_new = np.max(teff_arr)
if temperature < np.min(teff_arr):
temperature_new = np.min(teff_arr)
-
+
# If temperature within bounds, then check if metallicity within bounds
teff_diff = np.abs(teff_arr - temperature)
sorted_min_diffs = np.unique(teff_diff)
-
+
## Find two closest temperatures
teff_close_1 = teff_arr[np.where(teff_diff == sorted_min_diffs[0])[0][0]]
teff_close_2 = teff_arr[np.where(teff_diff == sorted_min_diffs[1])[0][0]]
-
+
logg_arr_1 = logg_arr[np.where(teff_arr == teff_close_1)]
logg_arr_2 = logg_arr[np.where(teff_arr == teff_close_2)]
-
+
## Switch to most conservative bound of logg out of two closest temps
gravity_new = gravity
if gravity > np.min([np.max(logg_arr_1), np.max(logg_arr_2)]):
gravity_new = np.min([np.max(logg_arr_1), np.max(logg_arr_2)])
if gravity < np.max([np.min(logg_arr_1), np.min(logg_arr_2)]):
gravity_new = np.max([np.min(logg_arr_1), np.min(logg_arr_2)])
-
- # Print out changes, if any
- if temperature_new != temperature:
- teff_msg = 'Changing to T={0:6.0f} for T={1:6.0f} logg={2:4.2f}'
- print( teff_msg.format(temperature_new, temperature, gravity))
-
- if gravity_new != gravity:
- logg_msg = 'Changing to logg={0:4.2f} for T={1:6.0f} logg={2:4.2f}'
- print( logg_msg.format(gravity_new, temperature, gravity))
-
- return (temperature_new, gravity_new)
+
+ if verbose:
+ # Print out changes, if any
+ if temperature_new != temperature:
+ teff_msg = 'Changing to T={0:6.0f} for met={1:4.2f} T={2:6.0f} logg={3:4.2f}'
+ print( teff_msg.format(temperature_new, metallicity, temperature, gravity))
+
+ if gravity_new != gravity:
+ logg_msg = 'Changing to logg={0:4.2f} for met={1:4.2f} T={2:6.0f} logg={3:4.2f}'
+ print( logg_msg.format(gravity_new, metallicity, temperature, gravity))
+
+ if metallicity_new != metallicity:
+ logg_msg = 'Changing to met={0:4.2f} for met={1:4.2f} T={2:6.0f} logg={3:4.2f}'
+ print( logg_msg.format(metallicity_new, metallicity, temperature, gravity))
+
+ return (temperature_new, gravity_new, metallicity_new)
def get_kurucz_atmosphere(metallicity=0, temperature=20000, gravity=4, rebin=False):
"""
- Return atmosphere from the Kurucz pysnphot grid
+ Return atmosphere from the Kurucz pysnphot grid
(`Kurucz 1993 `_).
Grid Range:
@@ -108,7 +115,7 @@ def get_kurucz_atmosphere(metallicity=0, temperature=20000, gravity=4, rebin=Fal
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
Always false for this particular function
"""
@@ -116,11 +123,11 @@ def get_kurucz_atmosphere(metallicity=0, temperature=20000, gravity=4, rebin=Fal
sp = pysynphot.Icat('k93models', temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds('k93models',
+ (temperature, gravity, metallicity) = get_atmosphere_bounds('k93models',
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat('k93models', temperature, metallicity, gravity)
# Do some error checking
@@ -135,10 +142,10 @@ def get_kurucz_atmosphere(metallicity=0, temperature=20000, gravity=4, rebin=Fal
def get_castelli_atmosphere(metallicity=0, temperature=20000, gravity=4, rebin=False):
"""
- Return atmospheres from the pysynphot ATLAS9 atlas
+ Return atmospheres from the pysynphot ATLAS9 atlas
(`Castelli & Kurucz 2004 `_).
- Grid Range:
+ Grid Range:
* Teff: 3500 - 50000 K
* gravity: 0 - 5.0 cgs
@@ -154,7 +161,7 @@ def get_castelli_atmosphere(metallicity=0, temperature=20000, gravity=4, rebin=F
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
@@ -167,13 +174,13 @@ def get_castelli_atmosphere(metallicity=0, temperature=20000, gravity=4, rebin=F
sp = pysynphot.Icat('ck04models', temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds('ck04models',
+ (temperature, gravity, metallicity) = get_atmosphere_bounds('ck04models',
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat('ck04models', temperature, metallicity, gravity)
-
+
# Do some error checking
idx = np.where(sp.flux != 0)[0]
if len(idx) == 0:
@@ -194,11 +201,11 @@ def get_nextgen_atmosphere(metallicity=0, temperature=5000, gravity=4, rebin=Fal
sp = pysynphot.Icat('nextgen', temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds('nextgen',
+ (temperature, gravity, metallicity) = get_atmosphere_bounds('nextgen',
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat('nextgen', temperature, metallicity, gravity)
# Do some error checking
@@ -232,7 +239,7 @@ def get_amesdusty_atmosphere(metallicity=0, temperature=5000, gravity=4, rebin=F
def get_phoenix_atmosphere(metallicity=0, temperature=5000, gravity=4,
rebin=False):
"""
- Return atmosphere from the pysynphot
+ Return atmosphere from the pysynphot
`PHOENIX atlas `_.
Parameters
@@ -245,7 +252,7 @@ def get_phoenix_atmosphere(metallicity=0, temperature=5000, gravity=4,
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
@@ -256,11 +263,11 @@ def get_phoenix_atmosphere(metallicity=0, temperature=5000, gravity=4,
sp = pysynphot.Icat('phoenix', temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds('phoenix',
+ (temperature, gravity, metallicity) = get_atmosphere_bounds('phoenix',
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat('phoenix', temperature, metallicity, gravity)
# Do some error checking
@@ -273,7 +280,7 @@ def get_phoenix_atmosphere(metallicity=0, temperature=5000, gravity=4,
return sp
-def get_cmfgenRot_atmosphere(metallicity=0, temperature=24000, gravity=4.3, rebin=True):
+def get_cmfgenRot_atmosphere(metallicity=0, temperature=24000, gravity=4.3, rebin=True, verbose=False):
"""
metallicity = [M/H] (def = 0)
temperature = Kelvin (def = 24000)
@@ -284,14 +291,15 @@ def get_cmfgenRot_atmosphere(metallicity=0, temperature=24000, gravity=4.3, rebi
# Take care of atmospheres outside the catalog boundaries
logg_msg = 'Changing to logg={0:3.1f} for T={1:6.0f} logg={2:4.2f}'
if gravity > 4.3:
- print( logg_msg.format(4.3, temperature, gravity))
+ if verbose:
+ print( logg_msg.format(4.3, temperature, gravity))
gravity = 4.3
-
+
if rebin:
sp = pysynphot.Icat('cmfgen_rot_rebin', temperature, metallicity, gravity)
else:
sp = pysynphot.Icat('cmfgen_rot', temperature, metallicity, gravity)
-
+
# Do some error checking
idx = np.where(sp.flux != 0)[0]
if len(idx) == 0:
@@ -305,7 +313,7 @@ def get_cmfgenRot_atmosphere(metallicity=0, temperature=24000, gravity=4.3, rebi
def get_cmfgenRot_atmosphere_closest(metallicity=0, temperature=24000, gravity=4.3, rebin=True,
verbose=False):
"""
- For a given stellar atmosphere, get extract the closest possible match in
+ For a given stellar atmosphere, get extract the closest possible match in
Teff/logg space. Note that this is different from the normal routine
which interpolates along the input grid to get final spectrum. We can't
do this here because the Fierro+15 atmosphere grid is so sparse
@@ -340,7 +348,7 @@ def get_cmfgenRot_atmosphere_closest(metallicity=0, temperature=24000, gravity=4
# fractional difference
teff_diff = (teff_arr - temperature) / temperature
logg_diff = (logg_arr - gravity) / gravity
-
+
diff_tot = abs(teff_diff) + abs(logg_diff)
idx_f = np.where(diff_tot == min(diff_tot))[0][0]
@@ -348,7 +356,7 @@ def get_cmfgenRot_atmosphere_closest(metallicity=0, temperature=24000, gravity=4
# pysynphot object
infile = cat[idx_f]['FILENAME'].split('.')
spec = Table.read('{0}/{1}.fits'.format(root_dir, infile[0]))
-
+
# Now, the CMFGEN atmospheres assume a distance of 1 kpc, while the the
# ATLAS models are in FLAM at the surface. So, we need to multiply the
# CMFGEN atmospheres by (1000/R)**2. in order to convert to FLAM on surface.
@@ -362,13 +370,13 @@ def get_cmfgenRot_atmosphere_closest(metallicity=0, temperature=24000, gravity=4
radius = np.sqrt( lum / (4.0 * np.pi * teff**4. * sigma) ) # in cm
radius /= 3.08*10**18 # in pc
-
+
# Make the pysynphot spectrum
w = spec['Wavelength']
f = spec['Flux'] * (1000 / radius)**2.
sp = pysynphot.ArraySpectrum(w,f)
-
+
#sp = pysynphot.FileSpectrum('{0}/{1}.fits'.format(root_dir, infile[0]))
# Print out parameters of match, if desired
@@ -390,7 +398,7 @@ def get_cmfgenNoRot_atmosphere(metallicity=0, temperature=22500, gravity=3.98, r
sp = pysynphot.Icat('cmfgen_norot_rebin', temperature, metallicity, gravity)
else:
sp = pysynphot.Icat('cmfgen_norot', temperature, metallicity, gravity)
-
+
# Do some error checking
idx = np.where(sp.flux != 0)[0]
if len(idx) == 0:
@@ -421,9 +429,9 @@ def get_cmfgenNoRot_atmosphere(metallicity=0, temperature=30000, gravity=4.14):
def get_phoenixv16_atmosphere(metallicity=0, temperature=4000, gravity=4, rebin=True):
"""
- Return PHOENIX v16 atmospheres from
- `Husser et al. 2013 `_.
-
+ Return PHOENIX v16 atmospheres from
+ `Husser et al. 2013 `_.
+
Models originally downloaded via `ftp `_.
Solar metallicity and [alpha/Fe] is used.
@@ -443,7 +451,7 @@ def get_phoenixv16_atmosphere(metallicity=0, temperature=4000, gravity=4, rebin=
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
@@ -460,13 +468,13 @@ def get_phoenixv16_atmosphere(metallicity=0, temperature=4000, gravity=4, rebin=
sp = pysynphot.Icat(atm_model_name, temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds(atm_model_name,
+ (temperature, gravity, metallicity) = get_atmosphere_bounds(atm_model_name,
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat(atm_model_name, temperature, metallicity, gravity)
-
+
# Do some error checking
idx = np.where(sp.flux != 0)[0]
if len(idx) == 0:
@@ -479,14 +487,14 @@ def get_phoenixv16_atmosphere(metallicity=0, temperature=4000, gravity=4, rebin=
def get_BTSettl_2015_atmosphere(metallicity=0, temperature=2500, gravity=4, rebin=True):
"""
- Return atmosphere from CIFIST2011_2015 grid
- (`Allard et al. 2012 `_,
+ Return atmosphere from CIFIST2011_2015 grid
+ (`Allard et al. 2012 `_,
`Baraffe et al. 2015 `_ )
Grid originally downloaded from `website `_.
Grid Range:
-
+
* Teff: 1200 - 7000 K
* gravity: 2.5 - 5.5 cgs
* [M/H] = 0
@@ -501,11 +509,11 @@ def get_BTSettl_2015_atmosphere(metallicity=0, temperature=2500, gravity=4, rebi
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
- which is often sufficient synthetic photometry in most cases.
+ which is often sufficient synthetic photometry in most cases.
"""
if rebin == True:
atm_name = 'BTSettl_2015_rebin'
@@ -516,14 +524,14 @@ def get_BTSettl_2015_atmosphere(metallicity=0, temperature=2500, gravity=4, rebi
sp = pysynphot.Icat(atm_name, temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds(atm_name,
+ (temperature, gravity, metallicity) = get_atmosphere_bounds(atm_name,
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat(atm_name, temperature, metallicity, gravity)
-
-
+
+
# Do some error checking
idx = np.where(sp.flux != 0)[0]
if len(idx) == 0:
@@ -536,7 +544,7 @@ def get_BTSettl_2015_atmosphere(metallicity=0, temperature=2500, gravity=4, rebi
def get_BTSettl_atmosphere(metallicity=0, temperature=2500, gravity=4.5, rebin=True):
"""
- Return atmosphere from CIFIST2011 grid
+ Return atmosphere from CIFIST2011 grid
(`Allard et al. 2012 `_)
Grid originally downloaded `here `_
@@ -544,16 +552,16 @@ def get_BTSettl_atmosphere(metallicity=0, temperature=2500, gravity=4.5, rebin=T
Notes
------
Grid Range:
-
+
* [M/H] = -2.5, -2.0, -1.5, -1.0, -0.5, 0, 0.5
-
+
Teff and gravity ranges depend on metallicity:
[M/H] = -2.5
* Teff: 2600 - 4600 K
* gravity: 4.5 - 5.5
-
+
[M/H] = -2.0
* Teff: 2600 - 7000
@@ -567,7 +575,7 @@ def get_BTSettl_atmosphere(metallicity=0, temperature=2500, gravity=4.5, rebin=T
[M/H] = -1.0
* Teff: 2600 - 7000
- * gravity: Teff < 3200 --> 4.5 - 5.5; Teff > 3200 --> 2.5 - 5.5
+ * gravity: Teff < 3200 --> 4.5 - 5.5; Teff > 3200 --> 2.5 - 5.5
[M/H] = -0.5
@@ -601,7 +609,7 @@ def get_BTSettl_atmosphere(metallicity=0, temperature=2500, gravity=4.5, rebin=T
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
@@ -616,14 +624,14 @@ def get_BTSettl_atmosphere(metallicity=0, temperature=2500, gravity=4.5, rebin=T
sp = pysynphot.Icat(atm_name, temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds(atm_name,
+ (temperature, gravity, metallicity) = get_atmosphere_bounds(atm_name,
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat(atm_name, temperature, metallicity, gravity)
-
-
+
+
# Do some error checking
idx = np.where(sp.flux != 0)[0]
if len(idx) == 0:
@@ -636,7 +644,7 @@ def get_BTSettl_atmosphere(metallicity=0, temperature=2500, gravity=4.5, rebin=T
def get_wdKoester_atmosphere(metallicity=0, temperature=20000, gravity=7):
"""
- Return white dwarf atmospheres from
+ Return white dwarf atmospheres from
`Koester et al. 2010 `_
Parameters
@@ -649,7 +657,7 @@ def get_wdKoester_atmosphere(metallicity=0, temperature=20000, gravity=7):
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
@@ -664,24 +672,24 @@ def get_wdKoester_atmosphere(metallicity=0, temperature=20000, gravity=7):
print( ' temperature = %d' % temperature)
print( ' metallicity = %.1f' % metallicity)
print( ' log gravity = %.1f' % gravity)
-
+
return sp
def get_atlas_phoenix_atmosphere(metallicity=0, temperature=5250, gravity=4):
"""
Return atmosphere that is a linear merge of atlas ck04 model and phoenixV16.
- Only valid for temps between 5000 - 5500K, gravity from 0 = 5.0
+ Only valid for temps between 5000 - 5500K, gravity from 0 = 5.0
"""
try:
sp = pysynphot.Icat('merged_atlas_phoenix', temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds('merged_atlas_phoenix',
+ (temperature, gravity, metallicity) = get_atmosphere_bounds('merged_atlas_phoenix',
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat('merged_atlas_phoenix', temperature, metallicity, gravity)
# Do some error checking
@@ -699,17 +707,17 @@ def get_BTSettl_phoenix_atmosphere(metallicity=0, temperature=5250, gravity=4):
Return atmosphere that is a linear merge of BTSettl_CITFITS2011_2015 model
and phoenixV16.
- Only valid for temps between 3200 - 3800K, gravity from 2.5 - 5.5
+ Only valid for temps between 3200 - 3800K, gravity from 2.5 - 5.5
"""
try:
sp = pysynphot.Icat('merged_BTSettl_phoenix', temperature, metallicity, gravity)
except:
# Check atmosphere catalog bounds
- (temperature, gravity) = get_atmosphere_bounds('merged_BTSettl_phoenix',
+ (temperature, gravity, metallicity) = get_atmosphere_bounds('merged_BTSettl_phoenix',
metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
sp = pysynphot.Icat('merged_BTSettl_phoenix', temperature, metallicity, gravity)
# Do some error checking
@@ -726,7 +734,7 @@ def get_BTSettl_phoenix_atmosphere(metallicity=0, temperature=5250, gravity=4):
def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose=False,
rebin=True):
"""
- Return a stellar atmosphere from a suite of different model grids,
+ Return a stellar atmosphere from a suite of different model grids,
depending on the input temperature, (all values in K).
Parameters
@@ -739,7 +747,7 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
@@ -750,7 +758,7 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
Notes
-----
- The underlying stellar model grid used changes as a function of
+ The underlying stellar model grid used changes as a function of
stellar temperature (in K):
* T > 20,000: ATLAS
@@ -761,14 +769,14 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
For T < 3800, there is an additional gravity and metallicity
dependence:
- If T < 3800 and [M/H] = 0:
-
+ If T < 3800 and [M/H] = 0:
+
* T < 3800, logg < 2.5: PHOENIX v16
* 3200 <= T < 3800, logg > 2.5: BTSettl_CIFITS2011_2015/PHOENIXV16 merge
* 3200 < T <= 1200, logg > 2.5: BTSettl_CIFITS2011_2015
Otherwise, if T < 3800 and [M/H] != 0:
-
+
* T < 3800: PHOENIX v16
References:
@@ -777,21 +785,21 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
* PHOENIXv16 (`Husser et al. 2013 `_)
* BTSettl_CIFITS2011_2015: Baraffee+15, Allard+ (https://phoenix.ens-lyon.fr/Grids/BT-Settl/CIFIST2011_2015/SPECTRA/)
- LTE WARNING:
+ LTE WARNING:
The ATLAS atmospheres are calculated with LTE, and so they
are less accurate when non-LTE conditions apply (e.g. T > 20,000
K). Ultimately we'd like to add a non-LTE atmosphere grid for
the hottest stars in the future.
- HOW BOUNDARIES BETWEEN MODELS ARE TREATED:
+ HOW BOUNDARIES BETWEEN MODELS ARE TREATED:
- At the boundary between two models grids a temperature range is defined
- where the resulting atmosphere is a weighted average between the two
+ At the boundary between two models grids a temperature range is defined
+ where the resulting atmosphere is a weighted average between the two
grids. Near one boundary one model
- is weighted more heavily, while at the other boundary the other
- model is weighted more heavily. These are calculated in the
- temperature ranges where we switch between model grids, to
+ is weighted more heavily, while at the other boundary the other
+ model is weighted more heavily. These are calculated in the
+ temperature ranges where we switch between model grids, to
ensure a smooth transition.
"""
# For T < 3800, atmosphere depends on metallicity + gravity.
@@ -807,7 +815,7 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
temperature=temperature,
gravity=gravity,
rebin=rebin)
-
+
if (temperature >= 3200) & (temperature < 3800) & (gravity > 2.5):
if verbose:
print( 'BTSettl/Phoenixv16 merged atmosphere')
@@ -823,7 +831,7 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
temperature=temperature,
gravity=gravity,
rebin=rebin)
-
+
if (temperature <= 3800) & (metallicity != 0):
if verbose:
print( 'Phoenixv16 atmosphere')
@@ -847,7 +855,7 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
return get_atlas_phoenix_atmosphere(metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
if (temperature >= 5500) & (temperature < 20000):
if verbose:
print( 'ATLAS merged atmosphere')
@@ -867,14 +875,14 @@ def get_merged_atmosphere(metallicity=0, temperature=20000, gravity=4.5, verbose
# temperature=temperature,
# gravity=gravity)
-
+
def get_wd_atmosphere(metallicity=0, temperature=20000, gravity=4, verbose=False):
"""
- Return the white dwarf atmosphere from
- `Koester et al. 2010 `_.
- If desired parameters are
+ Return the white dwarf atmosphere from
+ `Koester et al. 2010 `_.
+ If desired parameters are
outside of grid, return a blackbody spectrum instead
Parameters
@@ -887,7 +895,7 @@ def get_wd_atmosphere(metallicity=0, temperature=20000, gravity=4, verbose=False
gravity: float
The stellar gravity, in cgs units
-
+
rebin: boolean
If true, rebins the atmospheres so that they are the same
resolution as the Castelli+04 atmospheres. Default is False,
@@ -903,17 +911,60 @@ def get_wd_atmosphere(metallicity=0, temperature=20000, gravity=4, verbose=False
return get_wdKoester_atmosphere(metallicity=metallicity,
temperature=temperature,
gravity=gravity)
-
+
except pysynphot.exceptions.ParameterOutOfBounds:
- if verbose:
- print('BB atmosphere')
-
- # Use a blackbody.
- bbspec = pysynphot.spectrum.BlackBody(temperature)
- bbspec.convert('flam')
- bbspec *= (1000 * 3.08e18 / 6.957e10)**2
+ # Use a black-body atmosphere.
+ bbspec = get_bb_atmosphere(temperature=temperature, verbose=verbose)
return bbspec
-
+
+def get_bb_atmosphere(metallicity=None, temperature=20_000, gravity=None,
+ verbose=False, rebin=None,
+ wave_min=500, wave_max=50_000, wave_num=20_000):
+ """
+ Return a blackbody spectrum
+
+ Parameters
+ ----------
+ temperature: float, default=20_000
+ The stellar temperature, in units of K
+ wave_min: float, default=500
+ Sets the minimum wavelength (in Angstroms) of the wavelength range
+ for the blackbody spectrum
+ wave_max: float, default=50_000
+ Sets the maximum wavelength (in Angstroms) of the wavelength range
+ for the blackbody spectrum
+ wave_num: int, default=20_000
+ Sets the number of wavelength points in the wavelength range
+ Note: the wavelength range is evenly spaced in log space
+ """
+ if ((metallicity is not None) or (gravity is not None) or
+ (rebin is not None)):
+ warnings.warn(
+ 'Only `temperature` keyword is used for black-body atmosphere'
+ )
+
+ if verbose:
+ print('Black-body atmosphere')
+
+ # Modify pysynphot's default waveset to specified bounds
+ pysynphot.refs.set_default_waveset(
+ minwave=wave_min, maxwave=wave_max, num=wave_num
+ )
+
+ # Get black-body atmosphere for specified temperature from pysynphot
+ bbspec = pysynphot.spectrum.BlackBody(temperature)
+
+ # pysynphot `BlackBody` generates spectrum in `photlam`, need in `flam`
+ bbspec.convert('flam')
+
+ # `BlackBody` spectrum is normalized to solar radius star at 1 kiloparsec.
+ # Need to remove this normalization for SPISEA by multiplying bbspec
+ # by (1000 * 1 parsec / 1 Rsun)**2 = (1000 * 3.08e18 cm / 6.957e10 cm)**2
+ bbspec *= (1000 * 3.086e18 / 6.957e10)**2
+
+ return bbspec
+
+
#--------------------------------------#
# Atmosphere formatting functions
#--------------------------------------#
@@ -929,7 +980,7 @@ def download_CMFGEN_atmospheres(Table_rot, Table_norot):
Fierro+15 paper
Website addresses are hardcoded
-
+
Puts downloaded models in the current working directory.
"""
print( 'WARNING: THIS DOES NOT COMPLETELY WORK')
@@ -998,7 +1049,7 @@ def organize_CMFGEN_atmospheres(path_to_dir):
"""
# First, record current working directory to return to later
start_dir = os.getcwd()
-
+
# Enter atmosphere directory, collect rotating and non-rotating
# file names (assumed to all start with "t")
os.chdir(path_to_dir)
@@ -1023,10 +1074,10 @@ def organize_CMFGEN_atmospheres(path_to_dir):
# Also move Tables with model parameters into correct directory
os.system('mv Table_rot.txt cmfgenF15_rot')
os.system('mv Table_noRot.txt cmfgenF15_noRot')
-
+
# Return to original directory
os.chdir(start_dir)
-
+
return
def make_CMFGEN_catalog(path_to_dir):
@@ -1048,10 +1099,10 @@ def make_CMFGEN_catalog(path_to_dir):
"""
# Record current working directory for later
start_dir = os.getcwd()
-
+
# Enter atmosphere directory
os.chdir(path_to_dir)
-
+
# Extract parameters for each atmosphere
# Note: can't rely on filename for this because not precise enough!!
@@ -1066,7 +1117,7 @@ def make_CMFGEN_catalog(path_to_dir):
# lum = float(lumtmp[0][:-5]) * 1000.0 # In L_sun
# mass = float(lumtmp[0][5:-1]) # In M_sun
-
+
# Need to calculate log g from T and L (cgs)
# lum_sun = 3.846 * 10**33 # erg/s
# M_sun = 2 * 10**33 # g
@@ -1094,18 +1145,18 @@ def make_CMFGEN_catalog(path_to_dir):
#---NOTE: THE FOLLOWING DEPENDS ON FINAL LOCATION OF CATALOG FILE---#
#path = path_to_dir + '/' + names[i]
path = names[i] + '.fits[Flux]'
-
+
index_str.append(index)
name_str.append(path)
-
+
catalog = Table([index_str, name_str], names = ('INDEX', 'FILENAME'))
# Create catalog.fits file in directory with the models
catalog.write('catalog.fits', format = 'fits')
-
+
# Move back to original directory, create the catalog.fits file
os.chdir(start_dir)
-
+
return
def cdbs_cmfgen(path_to_dir, path_to_cdbs_dir):
@@ -1141,23 +1192,23 @@ def cdbs_cmfgen(path_to_dir, path_to_cdbs_dir):
unique = np.unique(wave, return_index=True)
wave = wave[unique[1]]
flux = flux[unique[1]]
-
- # Make fits table from individual columns.
+
+ # Make fits table from individual columns.
c0 = fits.Column(name='Wavelength', format='D', array=wave)
c1 = fits.Column(name='Flux', format='E', array=flux)
cols = fits.ColDefs([c0, c1])
tbhdu = fits.BinTableHDU.from_columns(cols)
- #Adding unit keywords
+ #Adding unit keywords
tbhdu.header['TUNIT1'] = 'ANGSTROM'
tbhdu.header['TUNIT2'] = 'FLAM'
prihdu = fits.PrimaryHDU()
-
+
finalhdu = fits.HDUList([prihdu, tbhdu])
finalhdu.writeto(i[:-4]+'.fits', overwrite=True)
-
+
print( 'Done {0:2.0f} of {1:2.0f}'.format(counter, len(files)))
# Return to original directory, copy over new .fits files to cdbs directory
@@ -1174,7 +1225,7 @@ def rebin_cmfgen(cdbs_path, rot=True):
cdbs_path: path to cdbs directory
rot=True for rotating models (cmfgen_rot), False for non-rotating models
-
+
makes new directory in cdbs/grid: cmfgen_rot_rebin or cmfgen_norot_rebin
"""
# Get an atlas ck04 model, we will use this to set wavelength grid
@@ -1190,7 +1241,7 @@ def rebin_cmfgen(cdbs_path, rot=True):
tmp = cdbs_path+'/grid/cmfgen_norot/t0200l0007m009n.fits'
path = cdbs_path+'/grid/cmfgen_norot_rebin/'
orig_path = cdbs_path+'/grid/cmfgen_norot/'
-
+
cmfgen_hdu = fits.open(tmp)
header0 = cmfgen_hdu[0].header
# Create rebin directories if they don't already exist. Copy over
@@ -1205,7 +1256,7 @@ def rebin_cmfgen(cdbs_path, rot=True):
files_all = [cat[ii][1].split('[')[0] for ii in range(len(cat))]
# First column in new files will be for [atlas] wavelength
- c0 = fits.Column(name='Wavelength', format='D', array=sp_atlas.wave)
+ c0 = fits.Column(name='Wavelength', format='D', array=sp_atlas.wave)
# For each catalog.fits entry, read the unbinned spectrum and rebin to
# the atlas resolution. Make a new fits file in rebin directory
@@ -1217,16 +1268,16 @@ def rebin_cmfgen(cdbs_path, rot=True):
temp = float(vals[0])
metal = float(vals[1])
grav = float(vals[2])
-
+
# Fetch the spectrum
- if rot == True:
+ if rot == True:
sp = pysynphot.Icat('cmfgen_rot', temp, metal, grav)
else:
sp = pysynphot.Icat('cmfgen_norot', temp, metal, grav)
# Rebin
flux_rebin = rebin_spec(sp.wave, sp.flux, sp_atlas.wave)
- c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
+ c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
# Make the FITS file from the columns with header
cols = fits.ColDefs([c0,c1])
@@ -1251,7 +1302,7 @@ def organize_PHOENIXv16_atmospheres(path_to_dir, met_str='m00'):
path_to_dir is the path to the directory containing all of the downloaded
files
-
+
met_str is the name of the current metallicity
Creates new fits files for each atmosphere: phoenix_.fits,
@@ -1268,7 +1319,7 @@ def organize_PHOENIXv16_atmospheres(path_to_dir, met_str='m00'):
pass
else:
os.mkdir(sub_dir)
-
+
# Extract wavelength array, make column for later
wavefile = fits.open('WAVE_PHOENIX-ACES-AGSS-COND-2011.fits')
wave = wavefile[0].data
@@ -1291,7 +1342,7 @@ def organize_PHOENIXv16_atmospheres(path_to_dir, met_str='m00'):
for f in files:
# Extract the logg out of filename
logg = f[9:13]
-
+
# Extract fluxes from file
spectrum = fits.open(f)
flux = spectrum[0].data
@@ -1300,11 +1351,11 @@ def organize_PHOENIXv16_atmospheres(path_to_dir, met_str='m00'):
# Make Column object with fluxes, add to table
col = Column(flux, name = 'g{0:2.1f}'.format(float(logg)))
t.add_column(col)
-
+
# Now, construct final fits file for the given temp
outname = 'phoenix{0}_{1:05d}.fits'.format(met_str, temp)
- t.write('{0}/{1}'.format(sub_dir, outname), format = 'fits', overwrite = True)
-
+ t.write('{0}/{1}'.format(sub_dir, outname), format = 'fits', overwrite = True)
+
# Progress counter for user
i += 1
print( 'Done {0:d} of {1:d}'.format(i, len(temp_arr)))
@@ -1321,18 +1372,18 @@ def make_PHOENIXv16_catalog(path_to_dir, met_str='m00'):
path_to_directory is the path to the directory with the reformatted
models (i.e. the output from construct_atmospheres, phoenix[met_str])
-
+
Puts catalog.fits file in directory the user starts in
"""
# Save starting directory for later, move into working directory
start_dir = os.getcwd()
os.chdir(path_to_dir)
-
+
# Extract metallicity from metallicity string
met = float(met_str[1]) + (float(met_str[2]) * 0.1)
if 'm' in met_str:
met *= -1.
-
+
# Collect the filenames. Each is a unique temp with many different log g's
files = glob.glob('phoenix*.fits')
files.sort()
@@ -1345,7 +1396,7 @@ def make_PHOENIXv16_catalog(path_to_dir, met_str='m00'):
t = Table.read(i, format='fits')
keys = t.keys()
logg_vals = keys[1:]
-
+
# Extract temp from filename
name = i.split('_')
temp = float(name[1][:-5])
@@ -1358,20 +1409,20 @@ def make_PHOENIXv16_catalog(path_to_dir, met_str='m00'):
filename_arr.append(filename)
catalog = Table([index_arr, filename_arr], names=('INDEX', 'FILENAME'))
-
+
# Return to starting directory, write catalog
os.chdir(start_dir)
-
+
if os.path.exists('catalog.fits'):
from astropy.table import vstack
-
+
prev_catalog = Table.read('catalog.fits', format='fits')
joined_catalog = vstack([prev_catalog, catalog])
-
+
joined_catalog.write('catalog.fits', format='fits', overwrite=True)
else:
catalog.write('catalog.fits', format='fits', overwrite=True)
-
+
return
def cdbs_PHOENIXv16(path_to_cdbs_dir):
@@ -1392,7 +1443,7 @@ def cdbs_PHOENIXv16(path_to_cdbs_dir):
# Collect the filenames, make necessary changes to each one
files = glob.glob('phoenix*.fits')
-
+
## Need to sort filenames; glob doesn't always give them in order
files.sort()
@@ -1400,28 +1451,28 @@ def cdbs_PHOENIXv16(path_to_cdbs_dir):
counter = 0
for i in files:
counter += 1
-
+
# Read in current FITS table
cur_table = Table.read(i, format='fits')
-
+
cur_table.columns[0].name = 'Wavelength'
-
+
num_cols = len(cur_table.colnames)
-
- # Multiplying each flux column by 10^-8 for conversion
+
+ # Multiplying each flux column by 10^-8 for conversion
for cur_col_index in range(1, num_cols, 1):
cur_col_name = cur_table.colnames[cur_col_index]
cur_table[cur_col_name] = cur_table[cur_col_name] * 10.**-8
-
-
+
+
# Construct new FITS file based on old one
hdu = fits.open(i)
header_0 = hdu[0].header
header_1 = hdu[1].header
sci = hdu[1].data
-
+
tbhdu = fits.table_to_hdu(cur_table)
-
+
# Copying over the older headers, adding unit keywords
prihdu = fits.PrimaryHDU(header=header_0)
tbhdu.header['TUNIT1'] = 'ANGSTROM'
@@ -1438,17 +1489,17 @@ def cdbs_PHOENIXv16(path_to_cdbs_dir):
tbhdu.header['TUNIT12'] = 'FLAM'
tbhdu.header['TUNIT13'] = 'FLAM'
tbhdu.header['TUNIT14'] = 'FLAM'
-
+
# Construct and write out final FITS file
finalhdu = fits.HDUList([prihdu, tbhdu])
finalhdu.writeto(i, overwrite=True)
-
+
hdu.close()
print( 'Done {0:2.0f} of {1:2.0f}'.format(counter, len(files)))
-
+
# Change back to starting directory
os.chdir(start_dir)
-
+
return
def rebin_phoenixV16(cdbs_path):
@@ -1473,7 +1524,7 @@ def rebin_phoenixV16(cdbs_path):
path = cdbs_path+'/grid/phoenix_v16_rebin/'
if not os.path.exists(path):
os.mkdir(path)
-
+
# Read in the existing catalog.fits file and rebin every spectrum.
cat = fits.getdata(cdbs_path + '/grid/phoenix_v16/catalog.fits')
@@ -1488,51 +1539,51 @@ def rebin_phoenixV16(cdbs_path):
temp_arr[ff] = float(vals[0])
metal_arr[ff] = float(vals[1])
logg_arr[ff] = float(vals[2])
-
+
metal_uniq = np.unique(metal_arr)
temp_uniq = np.unique(temp_arr)
-
+
for mm in range(len(metal_uniq)):
metal = metal_uniq[mm] # metallicity
-
+
# Construct str for metallicity (for appropriate directory name)
met_str = str(int(np.abs(metal))) + str(int((metal % 1.0)*10))
if metal > 0:
met_str = 'p' + met_str
else:
met_str = 'm' + met_str
-
+
# Make directory for current metallicity if it does not exist yet
if not os.path.exists(path + 'phoenix' + met_str):
os.mkdir(path + 'phoenix' + met_str)
-
+
for tt in range(len(temp_uniq)):
temp = temp_uniq[tt] # temperature
- # Pick out the list of gravities for this T, Z combo
+ # Pick out the list of gravities for this T, Z combo
idx = np.where((metal_arr == metal) & (temp_arr == temp))[0]
logg_exist = logg_arr[idx]
-
+
# All gravities will go in one file. Here is the output
# file name.
outfile = path + files_all[idx[0]].split('[')[0]
-
+
## If the rebinned file already exists, continue
if os.path.exists(outfile):
continue
-
+
# Build a columns array. One column for each gravity.
cols_arr = []
# Make the wavelength column, which is first in the cols array.
c0 = fits.Column(name='Wavelength', format='D', array=sp_atlas.wave)
cols_arr.append(c0)
-
+
for gg in range(len(logg_exist)):
grav = logg_exist[gg] # gravity
- # Fetch the spectrum
+ # Fetch the spectrum
sp = pysynphot.Icat('phoenix_v16', temp, metal, grav)
flux_rebin = rebin_spec(sp.wave, sp.flux, sp_atlas.wave)
@@ -1540,7 +1591,7 @@ def rebin_phoenixV16(cdbs_path):
name = 'g{0:3.1f}'.format(grav)
col = fits.Column(name=name, format='E', array=flux_rebin)
cols_arr.append(col)
-
+
# Make the FITS file from the columns with header.
cols = fits.ColDefs(cols_arr)
@@ -1556,7 +1607,7 @@ def rebin_phoenixV16(cdbs_path):
finalhdu.writeto(outfile)
print( 'Finished file ' + outfile + ' with gravities: ', logg_exist)
-
+
return
@@ -1571,7 +1622,7 @@ def rebin_spec(wave, specin, wavnew):
f = np.ones(len(wave))
filt = pysynphot.spectrum.ArraySpectralElement(wave, f, waveunits='angstrom')
obs = pysynphot.observation.Observation(spec, filt, binset=wavnew, force='taper')
-
+
return obs.binflux
def organize_BTSettl_2015_atmospheres(path_to_dir):
@@ -1602,7 +1653,7 @@ def organize_BTSettl_2015_atmospheres(path_to_dir):
spec = hdu[1].data
header_0 = hdu[0].header
header_1 = hdu[1].header
-
+
wave = spec.field(0)
flux = spec.field(1)
@@ -1623,13 +1674,13 @@ def organize_BTSettl_2015_atmospheres(path_to_dir):
tbhdu.header['TUNIT1'] = 'ANGSTROM'
tbhdu.header['TUNIT2'] = 'FLAM'
hdu_new = fits.HDUList([prihdu, tbhdu])
-
+
# Write new fits table in cdbs directory
hdu_new.writeto(os.environ['PYSYN_CDBS']+'grid/BTSettl_2015/'+i, overwrite=True)
hdu.close()
hdu_new.close()
-
+
# Return to original directory
os.chdir(start_dir)
return
@@ -1646,10 +1697,10 @@ def make_BTSettl_2015_catalog(path_to_dir):
"""
# Record current working directory for later
start_dir = os.getcwd()
-
+
# Enter atmosphere directory
os.chdir(path_to_dir)
-
+
# Extract parameters for each atmosphere from the filename,
# construct columns for catalog file
files = glob.glob("*spec.fits")
@@ -1668,10 +1719,10 @@ def make_BTSettl_2015_catalog(path_to_dir):
# Create catalog.fits file in directory with the models
catalog.write('catalog.fits', format = 'fits', overwrite=True)
-
+
# Move back to original directory, create the catalog.fits file
os.chdir(start_dir)
-
+
return
def rebin_BTSettl_2015(cdbs_path=os.environ['PYSYN_CDBS']):
@@ -1714,8 +1765,8 @@ def rebin_BTSettl_2015(cdbs_path=os.environ['PYSYN_CDBS']):
# Make new output
c0 = fits.Column(name='Wavelength', format='D', array=sp_atlas.wave)
- c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
-
+ c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
+
cols = fits.ColDefs([c0, c1])
tbhdu = fits.BinTableHDU.from_columns(cols)
prihdu = fits.PrimaryHDU(header=header0)
@@ -1724,7 +1775,7 @@ def rebin_BTSettl_2015(cdbs_path=os.environ['PYSYN_CDBS']):
outfile = path + files_all[ff].split('[')[0]
finalhdu = fits.HDUList([prihdu, tbhdu])
- finalhdu.writeto(outfile, overwrite=True)
+ finalhdu.writeto(outfile, overwrite=True)
return
@@ -1743,7 +1794,7 @@ def make_wavelength_unique(files, dirname):
if len(t) != len(test[0]):
t = t[test[1]]
-
+
c0 = fits.Column(name='Wavelength', format='D', array=t['Wavelength'])
c1 = fits.Column(name='Flux', format='E', array=t['Flux'])
cols = fits.ColDefs([c0, c1])
@@ -1781,14 +1832,14 @@ def organize_BTSettl_atmospheres():
"""
Construct cdbs-ready atmospheres for the BTSettl grid (CIFITS2011).
The code expects tp be run in cdbs/grid/BTSettl, and expects that the
- individual model files have been downloaded from online
+ individual model files have been downloaded from online
(https://phoenix.ens-lyon.fr/Grids/BT-Settl/CIFIST2011/SPECTRA/)
- and processed into python-readable ascii files.
+ and processed into python-readable ascii files.
"""
orig_dir = os.getcwd()
dirs = ['btm25', 'btm20', 'btm15', 'btm10', 'btm05', 'btp00', 'btp05']
#dirs = ['btm10', 'btm05', 'btp00', 'btp05']
-
+
# Go through each directory, turning each spectrum into a cdbs-ready file.
# Will convert flux into Ergs/sec/cm**2/A (FLAM) units and save as a fits file,
@@ -1820,13 +1871,13 @@ def organize_BTSettl_atmospheres():
tbhdu.header['TUNIT1'] = 'ANGSTROM'
tbhdu.header['TUNIT2'] = 'FLAM'
hdu_new = fits.HDUList([prihdu, tbhdu])
-
+
# Write new fits table in cdbs directory
hdu_new.writeto('{0}.fits'.format(jj[:-4]), overwrite=True)
hdu_new.close()
count += 1
print('Done {0} of {1}'.format(count, len(files)))
-
+
# Now, clean up all the files made when unzipping the spectra
cmd1 = 'rm *.bz2'
cmd2 = 'rm *.tmp'
@@ -1837,7 +1888,7 @@ def organize_BTSettl_atmospheres():
print('==============================')
print('Done {0}'.format(ii))
print('==============================')
-
+
# Go back to original directory, move to next metallicity directory
os.chdir(orig_dir)
@@ -1873,7 +1924,7 @@ def make_BTSettl_catalog():
metal_flag = -1 * float(ii[3:])*0.1
else:
metal_flag = float(ii[3:])*0.1
-
+
# Now collect the info from the files
for jj in files:
tmp = jj.split('-')
@@ -1887,7 +1938,7 @@ def make_BTSettl_catalog():
else:
temp = float(tmp[0][3:]) * 100.0 # In kelvin
logg = float(tmp[1])
-
+
index_str.append('{0},{1},{2:3.2f}'.format(int(temp), metal_flag, logg))
name_str.append('{0}/{1}[Flux]'.format(ii, jj))
@@ -1900,10 +1951,10 @@ def make_BTSettl_catalog():
# Create catalog.fits file in directory with the models
catalog.write('catalog.fits', format = 'fits', overwrite=True)
-
+
# Move back to original directory, create the catalog.fits file
os.chdir(start_dir)
-
+
return
def rebin_BTSettl(make_unique=False):
@@ -1934,7 +1985,7 @@ def rebin_BTSettl(make_unique=False):
# tmp.append(ii)
#files_all = tmp
#=============================#
-
+
print( 'Rebinning BTSettl spectra')
if make_unique:
print('Making unique')
@@ -1954,14 +2005,14 @@ def rebin_BTSettl(make_unique=False):
# Make new output
c0 = fits.Column(name='Wavelength', format='D', array=sp_atlas.wave)
- c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
-
+ c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
+
cols = fits.ColDefs([c0, c1])
tbhdu = fits.BinTableHDU.from_columns(cols)
prihdu = fits.PrimaryHDU()
tbhdu.header['TUNIT1'] = 'ANGSTROM'
tbhdu.header['TUNIT2'] = 'FLAM'
-
+
outfile = path + files_all[ff].split('[')[0]
finalhdu = fits.HDUList([prihdu, tbhdu])
finalhdu.writeto(outfile, overwrite=True)
@@ -1971,9 +2022,9 @@ def rebin_BTSettl(make_unique=False):
outfile = path + files_all[ff].split('[')[0]
cmd = 'cp {0} {1}'.format(orig_file, outfile)
os.system(cmd)
-
+
print('Done {0} of {1}'.format(ff, len(files_all)))
-
+
return
def organize_WDKoester_atmospheres(path_to_dir):
@@ -1997,7 +2048,7 @@ def organize_WDKoester_atmospheres(path_to_dir):
for i in files:
data = Table.read(i, format='ascii')
-
+
wave = data['col1'] # angstrom
flux = data['col2'] # erg/s/cm^2/A
@@ -2013,12 +2064,12 @@ def organize_WDKoester_atmospheres(path_to_dir):
tbhdu.header['TUNIT1'] = 'ANGSTROM'
tbhdu.header['TUNIT2'] = 'FLAM'
hdu_new = fits.HDUList([prihdu, tbhdu])
-
+
# Write new fits table in cdbs directory
hdu_new.writeto(os.environ['PYSYN_CDBS']+'/grid/wdKoester/'+i.replace('.txt', '.fits'), overwrite=True)
hdu_new.close()
-
+
# Return to original directory
os.chdir(start_dir)
return
@@ -2035,10 +2086,10 @@ def make_WDKoester_catalog(path_to_dir):
"""
# Record current working directory for later
start_dir = os.getcwd()
-
+
# Enter atmosphere directory
os.chdir(path_to_dir)
-
+
# Extract parameters for each atmosphere from the filename,
# construct columns for catalog file
files = glob.glob("*dk.dat.fits")
@@ -2058,10 +2109,10 @@ def make_WDKoester_catalog(path_to_dir):
# Create catalog.fits file in directory with the models
catalog.write('catalog.fits', format = 'fits', overwrite=True)
-
+
# Move back to original directory, create the catalog.fits file
os.chdir(start_dir)
-
+
return
def rebin_WDKoester(cdbs_path=os.environ['PYSYN_CDBS']):
@@ -2104,8 +2155,8 @@ def rebin_WDKoester(cdbs_path=os.environ['PYSYN_CDBS']):
# Make new output
c0 = fits.Column(name='Wavelength', format='D', array=sp_atlas.wave)
- c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
-
+ c1 = fits.Column(name='Flux', format='E', array=flux_rebin)
+
cols = fits.ColDefs([c0, c1])
tbhdu = fits.BinTableHDU.from_columns(cols)
prihdu = fits.PrimaryHDU(header=header0)
@@ -2114,8 +2165,8 @@ def rebin_WDKoester(cdbs_path=os.environ['PYSYN_CDBS']):
outfile = path + files_all[ff].split('[')[0]
finalhdu = fits.HDUList([prihdu, tbhdu])
- finalhdu.writeto(outfile, overwrite=True)
+ finalhdu.writeto(outfile, overwrite=True)
return
-
-
+
+
diff --git a/spisea/conftest.py b/spisea/conftest.py
index 672b2733..fab9a899 100755
--- a/spisea/conftest.py
+++ b/spisea/conftest.py
@@ -12,13 +12,21 @@
from astropy.tests.pytest_plugins import * # noqa
del pytest_report_header
ASTROPY_HEADER = True
-else:
+elif astropy_version >= '3.0' and astropy_version < '5.1':
try:
from pytest_astropy_header.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS
ASTROPY_HEADER = True
except ImportError:
ASTROPY_HEADER = False
+else:
+ # As of Astropy 5.1, the pytest plugins provided by Astropy have been removed
+ # and are instead provided by pytest-astropy-header
+ # (https://github.com/astropy/pytest-astropy-header)
+ from pytest_astropy_header.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS
+ ASTROPY_HEADER = True
+
+
def pytest_configure(config):
diff --git a/spisea/el_files/fritz11_EL_table2.txt b/spisea/el_files/fritz11_EL_table2.txt
new file mode 100644
index 00000000..4e336c1d
--- /dev/null
+++ b/spisea/el_files/fritz11_EL_table2.txt
@@ -0,0 +1,22 @@
+wave ext ext_err
+1.282 7.91 0.11
+1.736 4.30 0.13
+2.166 2.49 0.11
+2.625 1.83 0.13
+2.758 1.51 0.19
+2.873 1.84 0.19
+3.039 2.07 0.19
+3.297 1.66 0.15
+3.740 1.19 0.14
+3.819 1.19 0.31
+3.907 1.09 0.30
+4.052 1.01 0.13
+4.376 1.09 0.29
+5.128 0.99 0.24
+5.908 1.04 0.24
+6.772 0.84 0.29
+7.459 0.81 0.23
+7.502 0.79 0.24
+8.760 2.04 0.34
+12.371 1.30 0.32
+19.062 1.30 0.50
diff --git a/spisea/el_files/fritz11_EL_table8.fits b/spisea/el_files/fritz11_EL_table8.fits
new file mode 100644
index 00000000..1c75b29a
Binary files /dev/null and b/spisea/el_files/fritz11_EL_table8.fits differ
diff --git a/spisea/evolution.py b/spisea/evolution.py
index e3ddf23c..2f9dd760 100755
--- a/spisea/evolution.py
+++ b/spisea/evolution.py
@@ -1,6 +1,6 @@
import math
import logging
-from numpy import searchsorted, genfromtxt
+from numpy import genfromtxt
import numpy as np
import os
import glob
@@ -10,6 +10,7 @@
from scipy import interpolate
import pylab as py
from spisea.utils import objects
+from spisea import exceptions
logger = logging.getLogger('evolution')
@@ -21,7 +22,46 @@
warnings.warn("SPISEA_MODELS is undefined; functionality "
"will be SEVERELY crippled.")
models_dir = ''
-
+
+# Function to get installed evo grid number
+def get_installed_grid_num(input_models_dir):
+ """
+ Get installed grid number
+ """
+ # Define the installed model grid number
+ file_name = input_models_dir + '/grid_version.txt'
+
+ # Read in the file. In the case where it doesn't
+ # exist, then grid version is assumed to be 1.0
+ # (since this didn't always exist)
+ try:
+ file1 = open(file_name, 'r')
+ read = file1.readlines()
+ evo_grid_num = float(read[1])
+ file1.close()
+ except FileNotFoundError:
+ evo_grid_num = 1.0
+
+ return evo_grid_num
+
+# Function to check evo grid version number
+def check_evo_grid_number(required_num, input_models_dir):
+ """
+ Check if installed grid meets the required
+ grid version number. Installed grid number must
+ be greater than or equal to this number
+ """
+
+ # Get installed gridnumber
+ grid_num = get_installed_grid_num(input_models_dir)
+
+ # Check: is installed grid number < required_num?
+ # If not, raise mismatch error
+ if grid_num < required_num:
+ raise exceptions.ModelMismatch(required_num, grid_num, 'evolution')
+
+ return grid_num
+
class StellarEvolution(object):
"""
Base Stellar evolution class.
@@ -39,67 +79,83 @@ class StellarEvolution(object):
z_list: list
List of metallicities
+
+ model_version_name: string
+ Name of the model class plus additional details like version
+ numbers and rotation if relevant.
"""
def __init__(self, model_dir, age_list, mass_list, z_list):
self.model_dir = model_dir
self.z_list = z_list
self.mass_list = mass_list
self.age_list = age_list
-
+ self.model_version_name = "None"
+
return
-
+
class Geneva(StellarEvolution):
def __init__(self):
r"""
Define intrinsic properties for Geneva stellar models.
"""
+ self.model_version_name = "Geneva"
# populate list of model masses (in solar masses)
mass_list = [(0.1 + i*0.005) for i in range(181)]
-
+
# define metallicity parameters for Geneva models
z_list = [0.01, 0.02, 0.03]
-
+
# populate list of isochrone ages (log scale)
age_list = [round(5.5 + 0.01*i, 2) for i in range(190)]
age_list += [round(7.4 + 0.05*i, 2) for i in range(12)]
age_list += [round(math.log10(1.e8*x), 2) for x in range(1, 10)]
age_list += [round(math.log10(1.e9*x), 2) for x in range(1, 10)]
age_list = age_list
-
- # specify location of model files
- model_dir = models_dir + 'geneva/'
+ # specify location of model files
+ self.model_dir = models_dir + 'geneva/'
+
StellarEvolution.__init__(self, model_dir, age_list, mass_list, z_list)
self.z_solar = 0.02
self.z_file_map = {0.01: 'z01/', 0.02: 'z02/', 0.03: 'z03/'}
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
Extract an individual isochrone from the Geneva collection.
"""
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
# convert metallicity to mass fraction
z_defined = self.z_solar*10.**metallicity
-
+
# check age and metallicity are within bounds
if ((log_age < np.min(self.age_list)) or (log_age > np.max(self.age_list))):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if ((z_defined < np.min(self.z_list)) or
(z_defined > np.max(self.z_list))):
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
-
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
+
# convert age (in yrs) to log scale and find nearest value in grid
- age_idx = searchsorted(self.age_list, math.log10(age), side='right')
+ log_age = np.log10(age)
+
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_' + str(self.age_list[age_idx]) + '.fits'
-
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
-
+
# generate isochrone file string
full_iso_file = self.model_dir + 'iso/' + z_dir + iso_file
-
+
# return isochrone data
return genfromtxt(full_iso_file, comments='#')
@@ -110,7 +166,7 @@ def isochrone(self, age=1.e8, metallicity=0.0):
class Ekstrom12(StellarEvolution):
"""
- Evolution models from
+ Evolution models from
`Ekstrom et al. 2012 `_.
Downloaded from `website `_.
@@ -121,12 +177,16 @@ class Ekstrom12(StellarEvolution):
If true, then use rotating Ekstrom models. Default is true.
"""
def __init__(self, rot=True):
+ if rot:
+ self.model_version_name = "Ekstrom12-rot"
+ else:
+ self.model_version_name = "Ekstrom12-norot"
# define metallicity parameters for Ekstrom+12 models
self.z_list = [0.014]
-
+
# populate list of isochrone ages (log scale)
self.age_list = np.arange(6.0, 8.0+0.005, 0.01)
-
+
# Specify location of model files
self.model_dir = models_dir+'Ekstrom2012/'
@@ -136,41 +196,46 @@ def __init__(self, rot=True):
# Specify rotation or not
self.rot = rot
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
Extract an individual isochrone from the Ekstrom+12 Geneva collection.
"""
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
# convert metallicity to mass fraction
z_defined = self.z_solar*10.**metallicity
log_age = math.log10(age)
-
+
# check age and metallicity are within bounds
if ((log_age < np.min(self.age_list)) or (log_age > np.max(self.age_list))):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if ((z_defined < np.min(self.z_list)) or
(z_defined > np.max(self.z_list))):
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
-
+ raise ValueError(f'Requested metallicity z_solar * 10^{metallicity} = {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
+
# Find nearest age in grid to input grid
- if log_age != self.age_list[0]:
- age_idx = searchsorted(self.age_list, log_age, side='right')
- else:
- age_idx = searchsorted(self.age_list, log_age, side='left')
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
-
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
-
+
# generate isochrone file string
- if self.rot:
+ if self.rot:
full_iso_file = self.model_dir + 'iso/' + z_dir + 'rot/' + iso_file
else:
full_iso_file = self.model_dir + 'iso/' + z_dir + 'norot/' + iso_file
-
+
# Return isochrone data
iso = Table.read(full_iso_file, format='fits')
iso.rename_column('col4', 'Z')
@@ -202,11 +267,11 @@ def format_isochrones(input_iso_dir):
Parse iso.fits (filename hardcoded) file downloaded from Ekstrom+12
models, create individual isochrone files for the different ages.
- input_iso_directory should lead to
- Ekstrom2012/iso/
+ input_iso_directory should lead to
+ Ekstrom2012/iso/
directory, where iso.fits file should be located.
- Creates two new directories, rot and norot, which contain their
+ Creates two new directories, rot and norot, which contain their
respective isochrones.
"""
# Store current directory for later
@@ -214,13 +279,13 @@ def format_isochrones(input_iso_dir):
# Move into metallicity direcotry, read iso.fits file
os.chdir(input_iso_dir)
-
+
print( 'Read Input: this is slow')
iso = Table.read('iso.fits')
print( 'Done' )
-
+
ages_all = iso['col1']
-
+
# Extract the unique ages
age_arr = np.unique(ages_all)
@@ -234,7 +299,7 @@ def format_isochrones(input_iso_dir):
else:
os.mkdir('rot')
os.mkdir('norot')
-
+
print( 'Making individual isochrone files')
for age in age_arr:
good = np.where(ages_all == age)
@@ -245,7 +310,7 @@ def format_isochrones(input_iso_dir):
tmp_r = iso[good][idx_r]
tmp_n = iso[good][idx_n]
-
+
# Write tables
tmp_r.write('rot/iso_{0:4.2f}.fits'.format(age))
tmp_n.write('norot/iso_{0:4.2f}.fits'.format(age))
@@ -262,14 +327,14 @@ def create_iso(fileList, ageList, rot=True):
iso.fits format for parse_iso code.
fileList: list of downloaded isochrone files (could be one)
-
+
ageList: list of lists of ages associated with each file in filelist.
MUST BE IN SAME ORDER AS ISOCHRONES IN FILE! Also needs to be in logAge
-
+
rot = TRUE: assumes that models are rotating, will add appropriate column
-
+
This code writes the individual files, which is then easiest to combine by hand
- in aquamacs
+ in aquamacs
"""
# Read each file in fileList individually, add necessary columns
for i in range(len(fileList)):
@@ -280,14 +345,14 @@ def create_iso(fileList, ageList, rot=True):
start = np.where(t['M_ini'] == 0.8)
# Now, each identified start is assumed to be associated with the
- # corresponding age in ages
+ # corresponding age in ages
if len(start[0]) != len(ages):
print( 'Ages mismatched in file! Quitting...')
return
age_arr = np.zeros(len(t))
-
+
for j in range(len(start[0])):
low_ind = start[0][j]
# Deal with case at end of file
@@ -306,9 +371,9 @@ def create_iso(fileList, ageList, rot=True):
rot_val[:] = 'r'
if not rot:
rot_val[:] = 'n'
-
+
col_rot = Column(rot_val, name='Rot')
-
+
t.add_column(col_rot, index=0)
t.add_column(col_age, index=0)
@@ -322,7 +387,7 @@ def create_iso(fileList, ageList, rot=True):
class Parsec(StellarEvolution):
"""
- Evolution models from
+ Evolution models from
`Bressan et al. 2012 `_,
version 1.2s.
@@ -346,55 +411,60 @@ def __init__(self):
models.
"""
# populate list of model masses (in solar masses)
+ self.model_version_name = "Parsec1.2s"
#mass_list = [(0.1 + i*0.005) for i in range(181)]
-
+
# define metallicity parameters for Parsec models
self.z_list = [0.005, 0.015, 0.04]
-
+
# populate list of isochrone ages (log scale)
self.age_list = np.arange(6.6, 10.12+0.005, 0.01)
self.age_list = np.append(6.40, self.age_list)
-
+
# Specify location of model files
self.model_dir = models_dir+'ParsecV1.2s/'
# Specifying metallicity
self.z_solar = 0.015
self.z_file_map = {0.005: 'z005/', 0.015: 'z015/', 0.04: 'z04/'}
-
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
Extract an individual isochrone from the Parsec version 1.2s
collection.
"""
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
# convert metallicity to mass fraction
z_defined = self.z_solar*10.**metallicity
log_age = math.log10(age)
-
+
# check age and metallicity are within bounds
if ((log_age < np.min(self.age_list)) or (log_age > np.max(self.age_list))):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if ((z_defined < np.min(self.z_list)) or
(z_defined > np.max(self.z_list))):
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
-
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
+
# Find nearest age in grid to input grid
- if log_age != self.age_list[0]:
- age_idx = searchsorted(self.age_list, log_age, side='right')
- else:
- age_idx = searchsorted(self.age_list, log_age, side='left')
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
-
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
-
+
# generate isochrone file string
full_iso_file = self.model_dir + 'iso/' + z_dir + iso_file
-
+
# return isochrone data
iso = Table.read(full_iso_file, format='fits')
iso.rename_column('col1', 'Z')
@@ -410,19 +480,19 @@ def isochrone(self, age=1.e8, metallicity=0.0):
# Parsec doesn't identify WR stars, so identify all as "False"
isWR = Column([False] * len(iso), name='isWR')
iso.add_column(isWR)
-
+
iso.meta['log_age'] = log_age
iso.meta['metallicity_in'] = metallicity
iso.meta['metallicity_act'] = np.log10(self.z_list[z_idx] / self.z_solar)
return iso
-
+
def format_isochrones(input_iso_dir, metallicity_list):
r"""
Parse isochrone file downloaded from Parsec version 1.2 for different
metallicities, create individual isochrone files for the different ages.
-
+
input_iso_dir: points to ParsecV1.2s/iso directory. Assumes metallicity
subdirectories already exist with isochrone files downloaded in them
(isochrones files expected to start with "output*")
@@ -435,7 +505,7 @@ def format_isochrones(input_iso_dir, metallicity_list):
# Move into isochrone directory
os.chdir(input_iso_dir)
-
+
# Work on each metallicity isochrones individually
for metal in metallicity_list:
# More into metallicity directory, read isochrone file
@@ -445,7 +515,7 @@ def format_isochrones(input_iso_dir, metallicity_list):
print( 'Read Input: this is slow')
iso = Table.read(isoFile[0], format='fits')
print( 'Done')
-
+
ages_all = iso['col2']
# Extract the unique ages
@@ -474,9 +544,9 @@ def format_isochrones(input_iso_dir, metallicity_list):
class Pisa(StellarEvolution):
"""
- Evolution models from
+ Evolution models from
`Tognelli et al. 2011 `_.
-
+
Downloaded `online `_
Notes
@@ -492,51 +562,57 @@ def __init__(self):
Define intrinsic properties for the Pisa (Tognelli+11) stellar
models.
"""
+ self.model_version_name = "Pisa"
# define metallicity parameters for Pisa models
self.z_list = [0.015]
-
+
# populate list of isochrone ages (log scale)
self.age_list = np.arange(6.0, 8.01+0.005, 0.01)
-
+
# Specify location of model files
self.model_dir = models_dir+'Pisa2011/'
# Specifying metallicity
self.z_solar = 0.015
self.z_file_map = {0.015: 'z015/'}
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
Extract an individual isochrone from the Pisa (Tognelli+11)
collection.
"""
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
# convert metallicity to mass fraction
z_defined = self.z_solar*10.**metallicity
log_age = math.log10(age)
-
+
# check age and metallicity are within bounds
if ((log_age < np.min(self.age_list)) or (log_age > np.max(self.age_list))):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+ return
if ((z_defined < np.min(self.z_list)) or
(z_defined > np.max(self.z_list))):
- logger.error('Requested metallicity {0} is out of bounds for evolution model. Available z-vals: {1}.'.format(z_defined, self.z_list))
-
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds for evolution model. Available z-vals: {self.z_list}.')
+
# Find nearest age in grid to input grid
- if log_age != self.age_list[0]:
- age_idx = searchsorted(self.age_list, log_age, side='right')
- else:
- age_idx = searchsorted(self.age_list, log_age, side='left')
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
-
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
-
+
# generate isochrone file string
full_iso_file = self.model_dir + 'iso/' + z_dir + iso_file
-
+
# return isochrone data
iso = Table.read(full_iso_file, format='fits')
iso.rename_column('col1', 'logL')
@@ -549,7 +625,7 @@ def isochrone(self, age=1.e8, metallicity=0.0):
isWR = Column([False] * len(iso), name='isWR')
iso.add_column(isWR)
- # Add columns for current mass and phase.
+ # Add columns for current mass and phase.
iso.add_column( Column(np.zeros(len(iso)), name = 'phase'))
iso.add_column( Column(iso['mass'], name = 'mass_current'))
@@ -567,7 +643,7 @@ def format_isochrones(input_iso_dir, metallicity_list):
input_iso_dir: points to Pisa2011/iso directory. Individual
metallicity directories with the downloaded isochrones are
expected to already exist there
-
+
metallicity_list is the list of metallicities on which function
is to be run.
@@ -589,7 +665,7 @@ def format_isochrones(input_iso_dir, metallicity_list):
else:
# Create a ReadMe with the original file names to preserve the
# model details
-
+
cmd = "ls *.FITS > ReadMe"
os.system(cmd)
@@ -623,14 +699,14 @@ def make_isochrone_grid(metallicity=0.015):
while 0.0150 would not)
"""
logAge_arr = np.arange(6.0, 8.0+0.005, 0.01)
-
+
count = 0
for logAge in logAge_arr:
# Could interpolate using evolutionary tracks, but less accurate.
make_isochrone_pisa_interp(logAge, metallicity=metallicity)
count += 1
-
+
print( 'Done {0} of {1} models'.format(count, (len(logAge_arr))))
return
@@ -640,70 +716,75 @@ def make_isochrone_grid(metallicity=0.015):
#==============================#
class Baraffe15(StellarEvolution):
"""
- Evolution models published in
+ Evolution models published in
`Baraffe et al. 2015 `_.
Downloaded from `BHAC15 site `_.
"""
def __init__(self):
+ self.model_version_name = "Baraffe15"
# define metallicity parameters for Baraffe models
self.z_list = [0.015]
-
+
# populate list of isochrone ages (log scale)
self.age_list = np.arange(6.0, 8.0+0.005, 0.01)
-
+
# Specify location of model files
self.model_dir = models_dir+'Baraffe15/'
# Specifying metallicity
self.z_solar = 0.015
self.z_file_map = {0.015: 'z015/'}
-
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
def isochrone(self, age=5.e7, metallicity=0.0):
r"""
Extract an individual isochrone from the Baraffe+15
collection.
"""
- # convert metallicity to mass fraction
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
+ # convert metallicity to mass fraction
z_defined = self.z_solar*10.**metallicity
log_age = math.log10(age)
-
+
# check age and metallicity are within bounds
if ((log_age < np.min(self.age_list)) or (log_age > np.max(self.age_list))):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if ((z_defined < np.min(self.z_list)) or
(z_defined > np.max(self.z_list))):
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
-
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
+
# Find nearest age in grid to input grid
- if log_age != self.age_list[0]:
- age_idx = searchsorted(self.age_list, log_age, side='right')
- else:
- age_idx = searchsorted(self.age_list, log_age, side='left')
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
-
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
-
+
# generate isochrone file string
full_iso_file = self.model_dir + 'iso/' + z_dir + iso_file
-
+
# Read isochrone, get in proper format
iso = Table.read(full_iso_file, format='fits')
iso.rename_column('Mass', 'mass')
iso.rename_column('logG', 'logg')
iso['logT'] = np.log10(iso['Teff'])
-
+
# Pisa models are too low for WR phase, add WR column with all False
iso['logT_WR'] = iso['logT']
isWR = Column([False] * len(iso), name='isWR')
iso.add_column(isWR)
- # Add columns for current mass and phase.
+ # Add columns for current mass and phase.
iso.add_column( Column(np.zeros(len(iso)), name = 'phase'))
iso.add_column( Column(iso['mass'], name = 'mass_current'))
@@ -717,11 +798,11 @@ def tracks_to_isochrones(self, tracksFile):
r"""
Create isochrones at desired age sampling (6.0 < logAge < 8.0,
steps of 0.01; hardcoded) from the Baraffe+15 tracks downloaded
- online.
+ online.
tracksFile: tracks.dat file downloaded from Baraffe+15, with format
modified to be read in python
-
+
Writes isochrones in iso/ subdirectory off of work directory. Will
create this subdirectory if it doesn't already exist
"""
@@ -729,7 +810,7 @@ def tracks_to_isochrones(self, tracksFile):
age_arr = np.arange(6.0, 8.0+0.005, 0.01)
#age_arr = [6.28]
-
+
# Loop through the masses, interpolating track over time at each.
# Resample track properties at hardcoded ages
masses = np.unique(tracks['col1'])
@@ -754,13 +835,13 @@ def tracks_to_isochrones(self, tracksFile):
# Interpolate Teff, logL, and logG using linear interpolator
tck_Teff = interpolate.interp1d(tmp['col2'], tmp['col3'])
tck_logL = interpolate.interp1d(tmp['col2'], tmp['col4'])
- tck_logG = interpolate.interp1d(tmp['col2'], tmp['col5'])
+ tck_logG = interpolate.interp1d(tmp['col2'], tmp['col5'])
Teff = tck_Teff(age_arr)
logL = tck_logL(age_arr)
logG = tck_logG(age_arr)
-
+
# Test interpolation if desired
test=False
if test:
@@ -787,9 +868,9 @@ def tracks_to_isochrones(self, tracksFile):
py.xlabel('logAge')
py.ylabel('logG')
py.savefig('test_logG.png')
-
+
pdb.set_trace()
-
+
# Build upon arrays of interpolated values
mass_interp = np.concatenate((mass_interp, np.ones(len(Teff)) * mass))
age_interp = np.concatenate((age_interp, age_arr))
@@ -824,11 +905,11 @@ def tracks_to_isochrones(self, tracksFile):
def test_age_interp(self, onlineIso, interpIso):
r"""
Compare one of our interpolated ischrones with one
- of the isochrones provided online by Baraffe+15.
+ of the isochrones provided online by Baraffe+15.
"""
true_iso = Table.read(onlineIso, format='ascii')
our_iso = Table.read(interpIso, format='fits')
-
+
# Compare the two isochrones using plots. Look at mass vs. Teff,
# mass vs. logG, mass vs. logL. Ideally these isochrones should
# be identical
@@ -860,7 +941,7 @@ def test_age_interp(self, onlineIso, interpIso):
Teff_diff = np.mean(abs(true_iso['col2'][7:] - our_iso['Teff']))
logL_diff = np.mean(abs(true_iso['col3'][7:] - our_iso['logL']))
logG_diff = np.mean(abs(true_iso['col4'][7:] - our_iso['logG']))
-
+
print( 'Average abs difference in Teff: {0}'.format(Teff_diff))
print( 'Average abs difference in logL: {0}'.format(logL_diff))
print( 'Average abs difference in logg: {0}'.format(logG_diff))
@@ -877,7 +958,7 @@ def compare_Baraffe_Pisa(BaraffeIso, PisaIso):
name = BaraffeIso.split('_')
age = name[1][:4]
-
+
# Extract paramters we need
b_mass = b['Mass']
b_logT = np.log10(b['Teff'])
@@ -891,7 +972,7 @@ def compare_Baraffe_Pisa(BaraffeIso, PisaIso):
m05_b = np.where( abs(b_mass - 0.5) == min(abs(b_mass - 0.5)) )
m05_p = np.where( abs(p_mass - 0.5) == min(abs(p_mass - 0.5)) )
-
+
# Comparison plots
py.figure(1, figsize=(10,10))
py.clf()
@@ -919,7 +1000,7 @@ def compare_Baraffe_Pisa(BaraffeIso, PisaIso):
#py.axis([4.4, 3.4, -3, 4])
#py.gca().invert_xaxis()
py.legend()
- py.savefig('BaraffePisa_comp_mass_{0}.png'.format(age))
+ py.savefig('BaraffePisa_comp_mass_{0}.png'.format(age))
return
@@ -929,7 +1010,7 @@ def compare_Baraffe_Pisa(BaraffeIso, PisaIso):
class MISTv1(StellarEvolution):
"""
Define intrinsic properties for the MIST v1 stellar
- models.
+ models.
Models originally downloaded from `online server `_.
@@ -940,64 +1021,90 @@ class MISTv1(StellarEvolution):
was downloaded from MIST website on 2/2017, while Version 1.2
was downloaded on 8/2018 (solar metallicity)
and 4/2019 (other metallicities). Default is 1.2.
+
+ synthpop_extension: boolean (default False)
+ If True, the isochrones are extended down to a minimum initial
+ mass of 0.1Msun using grids interpolated via SynthPop. If False,
+ the web-downloaded MIST isochrones are used with their varying
+ lower mass limits. True option is only valid for version=1.2.
"""
- def __init__(self, version=1.2):
- # define metallicity parameters for Parsec models
- self.z_list = [0.0000015, # [Fe/H] = -4.00
- 0.0000047, # [Fe/H] = -3.50
- 0.000015, # [Fe/H] = -3.00
- 0.000047, # [Fe/H] = -2.50
- 0.00015, # [Fe/H] = -2.00
- 0.00026, # [Fe/H] = -1.75
- 0.00047, # [Fe/H] = -1.50
- 0.00084, # [Fe/H] = -1.25
- 0.0015, # [Fe/H] = -1.00
- 0.0026, # [Fe/H] = -0.75
- 0.0046, # [Fe/H] = -0.50
- 0.0082, # [Fe/H] = -0.25
- 0.015, # [Fe/H] = 0.00
- 0.024, # [Fe/H] = 0.25
- 0.041] # [Fe/H] = 0.50
-
+ def __init__(self, version=1.2, synthpop_extension=False):
+ # define metallicity parameters for MIST models
+ self.z_list = [0.0000014, # [Fe/H] = -4.00
+ 0.0000045, # [Fe/H] = -3.50
+ 0.000014, # [Fe/H] = -3.00
+ 0.000045, # [Fe/H] = -2.50
+ 0.00014, # [Fe/H] = -2.00
+ 0.00025, # [Fe/H] = -1.75
+ 0.00045, # [Fe/H] = -1.50
+ 0.00080, # [Fe/H] = -1.25
+ 0.0014, # [Fe/H] = -1.00
+ 0.0025, # [Fe/H] = -0.75
+ 0.0045, # [Fe/H] = -0.50
+ 0.0080, # [Fe/H] = -0.25
+ 0.014, # [Fe/H] = 0.00
+ 0.025, # [Fe/H] = 0.25
+ 0.045] # [Fe/H] = 0.50
+
# populate list of isochrone ages (log scale)
self.age_list = np.arange(5.01, 10.30+0.005, 0.01)
# Set version directory
self.version = version
- if self.version == 1.0:
+ self.synthpop_extension = synthpop_extension
+ if (self.version == 1.0) and (not synthpop_extension):
+ self.model_version_name = 'MISTv1.0'
version_dir = 'v1.0/'
+ elif (self.version == 1.0) and synthpop_extension:
+ raise ValueError('Synthpop isochrone extension not supported for MISTv1.0 isochrones')
elif self.version == 1.2:
+ self.model_version_name = 'MISTv1.2'
version_dir = 'v1.2/'
else:
raise ValueError('Version {0} not supported for MIST isochrones'.format(version))
-
+
# Specify location of model files
self.model_dir = models_dir+'MISTv1/' + version_dir
+ if self.synthpop_extension:
+ self.model_version_name = self.model_version_name + '-synthpop'
+ self.model_extension_dir = models_dir+'MISTv1/' + version_dir[:-1] + '-synthpop/'
+ if not os.path.exists(self.model_extension_dir):
+ raise ValueError(f'Missing {self.model_extension_dir}. Please download the latest SPISEA data at https://w.astro.berkeley.edu/~jlu/spisea/spisea_models.tar.gz.')
+
+ else:
+ self.model_extension_dir = None
# Specifying metallicity
self.z_solar = 0.0142
- self.z_file_map = {0.0000015: 'z0000015/',
- 0.0000047: 'z0000047/',
- 0.000015: 'z000015/',
- 0.000047: 'z000047/',
- 0.00015: 'z00015/',
- 0.00026: 'z00026/',
- 0.00047: 'z00047/',
- 0.00084: 'z00084/',
- 0.0015: 'z0015/',
- 0.0026: 'z0026/',
- 0.0046: 'z0046/',
- 0.0082: 'z0082/',
- 0.015: 'z015/',
- 0.024: 'z024/',
- 0.041: 'z041/'}
-
-
+ self.z_file_map = {0.0000014: 'z0000014/',
+ 0.0000045: 'z0000045/',
+ 0.000014: 'z000014/',
+ 0.000045: 'z000045/',
+ 0.00014: 'z00014/',
+ 0.00025: 'z00025/',
+ 0.00045: 'z00045/',
+ 0.00080: 'z00080/',
+ 0.0014: 'z0014/',
+ 0.0025: 'z0025/',
+ 0.0045: 'z0045/',
+ 0.0080: 'z0080/',
+ 0.014: 'z014/',
+ 0.025: 'z025/',
+ 0.045: 'z045/'}
+
+ # Define required evo_grid number (now 1.2 for synthpop extension)
+ self.evo_grid_min = 1.2
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
Extract an individual isochrone from the MISTv1
collection.
"""
+ # First, error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
# convert metallicity to mass fraction
z_defined = self.z_solar * (10.**metallicity)
@@ -1005,31 +1112,34 @@ def isochrone(self, age=1.e8, metallicity=0.0):
# check age and metallicity are within bounds
if ((log_age < np.min(self.age_list)) or (log_age > np.max(self.age_list))):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if ((z_defined < np.min(self.z_list)) or
(z_defined > np.max(self.z_list))):
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
# Find nearest age in grid to input grid
- if log_age != self.age_list[0]:
- age_idx = searchsorted(self.age_list, log_age, side='right')
- else:
- age_idx = searchsorted(self.age_list, log_age, side='left')
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
-
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
- if z_idx == len(self.z_list): # in case just over last index
- z_idx = z_idx - 1
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
-
+
# generate isochrone file string
full_iso_file = self.model_dir + 'iso/' + z_dir + iso_file
-
+ if self.synthpop_extension:
+ addl_iso_file = self.model_extension_dir + 'iso/' + z_dir + iso_file
+
# return isochrone data. Column locations depend on
# version
iso = Table.read(full_iso_file, format='fits')
+ if self.synthpop_extension:
+ addl_iso = Table.read(addl_iso_file, format='fits')
+ for row in addl_iso:
+ iso.add_row(row)
+ iso.sort('col3')
+ iso.meta['comments2'] = addl_iso.meta['comments']
if self.version == 1.0:
iso.rename_column('col7', 'Z')
iso.rename_column('col2', 'logAge')
@@ -1064,8 +1174,8 @@ def isochrone(self, age=1.e8, metallicity=0.0):
iso.meta['metallicity_act'] = np.log10(self.z_list[z_idx] / self.z_solar)
return iso
-
- def format_isochrones(self, input_iso_dir, metallicity_list):
+
+ def format_isochrones(self):
r"""
Parse isochrone file downloaded from MIST web server,
create individual isochrone files for the different ages.
@@ -1080,17 +1190,22 @@ def format_isochrones(self, input_iso_dir, metallicity_list):
List of metallicity directories to check (i.e. z015 is solar)
"""
+ # Get input iso dir, metallicity list from evo object
+ input_iso_dir = '{0}/iso'.format(self.model_dir)
+ metallicity_list = list(self.z_file_map.values())
+
# Store current directory for later
start_dir = os.getcwd()
# Move into isochrone directory
os.chdir(input_iso_dir)
-
+
# Work on each metallicity isochrones individually
for metal in metallicity_list:
# More into metallicity directory, read isochrone file
os.chdir(metal)
+ # Read all available iso files, stack them together
isoFile = glob.glob('MIST_iso*')
print( 'Read Input: this is slow')
iso_f = Table()
@@ -1138,77 +1253,99 @@ class MergedBaraffePisaEkstromParsec(StellarEvolution):
The model used depends on the age of the population and what stellar masses
are being modeled:
-
+
For logAge < 7.4:
* Baraffe: 0.08 - 0.4 M_sun
- * Baraffe/Pisa transition: 0.4 - 0.5 M_sun
+ * Baraffe/Pisa transition: 0.4 - 0.5 M_sun
* Pisa: 0.5 M_sun to the highest mass in Pisa isochrone (typically 5 - 7 Msun)
* Geneva: Highest mass of Pisa models to 120 M_sun
For logAge > 7.4:
* Parsec v1.2s: full mass range
-
+
Parameters
----------
rot: boolean, optional
If true, then use rotating Ekstrom models. Default is true.
"""
def __init__(self, rot=True):
+ if rot:
+ self.model_version_name = "MergedBaraffePisaEkstromParsec-rot"
+ else:
+ self.model_version_name = "MergedBaraffePisaEkstromParsec-norot"
# populate list of model masses (in solar masses)
mass_list = [(0.1 + i*0.005) for i in range(181)]
-
+
# define metallicity parameters for Geneva models
z_list = [0.015]
-
+
# populate list of isochrone ages (log scale)
age_list = np.arange(6.0, 10.091, 0.01).tolist()
-
+
# specify location of model files
model_dir = models_dir + 'merged/baraffe_pisa_ekstrom_parsec/'
StellarEvolution.__init__(self, model_dir, age_list, mass_list, z_list)
self.z_solar = 0.015
-
+
# Switch to specify rotating/non-rotating models
if rot:
self.z_file_map = {0.015: 'z015_rot/'}
else:
self.z_file_map = {0.015: 'z015_norot/'}
-
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
- Extract an individual isochrone from the Baraffe-Pisa-Ekstrom-Parsec
+ Extract an individual isochrone from the Baraffe-Pisa-Ekstrom-Parsec
collection
"""
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
# convert metallicity to mass fraction
z_defined = self.z_solar*10.**metallicity
log_age = math.log10(age)
-
+
# check age and metallicity are within bounds
if ((log_age < np.min(self.age_list)) or (log_age > np.max(self.age_list))):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if ((z_defined < np.min(self.z_list)) or
(z_defined > np.max(self.z_list))):
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
-
- # convert age (in yrs) to log scale and find nearest value in grid
- age_idx = searchsorted(self.age_list, log_age, side='right')
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
+
+ # Find nearest age in grid to input grid
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
-
+
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
# generate isochrone file string
full_iso_file = self.model_dir + z_dir + iso_file
# return isochrone data
- iso = Table.read(full_iso_file, format='fits')
+ try:
+ # FITS version of file (older model evolution grids)
+ iso = Table.read(full_iso_file, format='fits')
+ except:
+ # ASCII version of files (newer model evo grids
+ iso_file = 'iso_{0:.2f}.dat'.format(self.age_list[age_idx])
+ full_iso_file = self.model_dir + z_dir + iso_file
+
+ iso = Table.read(full_iso_file, format='ascii')
+
iso.rename_column('col1', 'mass')
iso.rename_column('col2', 'logT')
iso.rename_column('col3', 'logL')
@@ -1223,18 +1360,18 @@ def isochrone(self, age=1.e8, metallicity=0.0):
idx_WR = np.where(iso['logT'] != iso['logT_WR'])
isWR[idx_WR] = True
iso.add_column(isWR)
-
+
iso.meta['log_age'] = log_age
iso.meta['metallicity_in'] = metallicity
iso.meta['metallicity_act'] = np.log10(self.z_list[z_idx] / self.z_solar)
-
+
return iso
class MergedPisaEkstromParsec(StellarEvolution):
"""
Same as MergedBaraffePisaEkstromParsec, but without
- the Baraffe models.
+ the Baraffe models.
Parameters
----------
@@ -1242,15 +1379,19 @@ class MergedPisaEkstromParsec(StellarEvolution):
If true, then use rotating Ekstrom models. Default is true.
"""
def __init__(self, rot=True):
+ if rot:
+ self.model_version_name = "MergedPisaEkstromParsec-rot"
+ else:
+ self.model_version_name = "MergedPisaEkstromParsec-norot"
# populate list of model masses (in solar masses)
mass_list = [(0.1 + i*0.005) for i in range(181)]
-
+
# define metallicity parameters for Geneva models
z_list = [0.015]
-
+
# populate list of isochrone ages (log scale)
age_list = np.arange(6.0, 8.001, 0.01).tolist()
-
+
# specify location of model files
model_dir = models_dir + 'merged/pisa_ekstrom_parsec/'
StellarEvolution.__init__(self, model_dir, age_list, mass_list, z_list)
@@ -1261,8 +1402,16 @@ def __init__(self, rot=True):
self.z_file_map = {0.015: 'z015_rot/'}
else:
self.z_file_map = {0.015: 'z015_norot/'}
-
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
Extract an individual isochrone from the Pisa-Ekstrom-Parsec collection.
@@ -1271,20 +1420,20 @@ def isochrone(self, age=1.e8, metallicity=0.0):
z_defined = self.z_solar*10.**metallicity
log_age = math.log10(age)
-
+
# check age and metallicity are within bounds
if (log_age < self.age_list[0]) or (log_age > self.age_list[-1]):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if not z_defined in self.z_list:
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
-
- # convert age (in yrs) to log scale and find nearest value in grid
- age_idx = searchsorted(self.age_list, log_age, side='right')
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
+
+ # Find nearest age in grid to input grid
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
-
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
# generate isochrone file string
@@ -1302,7 +1451,7 @@ def isochrone(self, age=1.e8, metallicity=0.0):
iso.meta['log_age'] = log_age
iso.meta['metallicity_in'] = metallicity
iso.meta['metallicity_act'] = np.log10(self.z_list[z_idx] / self.z_solar)
-
+
return iso
class MergedSiessGenevaPadova(StellarEvolution):
@@ -1317,26 +1466,27 @@ class MergedSiessGenevaPadova(StellarEvolution):
* Padova (`Marigo et al. 2008 `_)
For logAge < 7.4:
-
+
* Siess: 0.1 - 7 M_sun
* Siess/Geneva transition: 7 - 9 M_sun
* Geneva: > 9 M_sun
For logAge > 7.4:
-
+
* Padova: full mass range
"""
def __init__(self):
"""
- Define intrinsic properties for merged Siess-meynetMaeder-Padova
+ Define intrinsic properties for merged Siess-meynetMaeder-Padova
stellar models.
"""
+ self.model_version_name = "MergedSiessGenevaPadova"
# populate list of model masses (in solar masses)
mass_list = [(0.1 + i*0.005) for i in range(181)]
-
+
# define metallicity parameters for Geneva models
z_list = [0.02]
-
+
# populate list of isochrone ages (log scale)
age_list = np.arange(5.5, 7.41, 0.01).tolist()
age_list.append(7.48)
@@ -1356,16 +1506,24 @@ def __init__(self):
age_list.append(9.60)
age_list.append(9.70)
age_list.append(9.78)
-
+
# specify location of model files
model_dir = models_dir + 'merged/siess_meynetMaeder_padova/'
StellarEvolution.__init__(self, model_dir, age_list, mass_list, z_list)
self.z_solar = 0.02
-
+
# Metallicity map
self.z_file_map = {0.02: 'z02/'}
-
-
+
+ # Define required evo_grid number
+ self.evo_grid_min = 1.0
+
+ # Error check to see if installed evolution model
+ # grid is compatible with code version. Also return
+ # current grid num
+ self.evo_grid_num = check_evo_grid_number(self.evo_grid_min, models_dir)
+
+
def isochrone(self, age=1.e8, metallicity=0.0):
r"""
Extract an individual isochrone from the Siess-Geneva-Padova collection.
@@ -1374,20 +1532,20 @@ def isochrone(self, age=1.e8, metallicity=0.0):
z_defined = self.z_solar*10.**metallicity
log_age = math.log10(age)
-
+
# check age and metallicity are within bounds
if (log_age < self.age_list[0]) or (log_age > self.age_list[-1]):
- logger.error('Requested age {0} is out of bounds.'.format(log_age))
-
+ raise ValueError(f'Requested age {log_age} is out of bounds between {np.min(self.age_list)} and {np.max(self.age_list)}.')
+
if not z_defined in self.z_list:
- logger.error('Requested metallicity {0} is out of bounds.'.format(z_defined))
-
- # convert age (in yrs) to log scale and find nearest value in grid
- age_idx = searchsorted(self.age_list, log_age, side='right')
- iso_file = 'iso_{0:.2f}.dat'.format(self.age_list[age_idx])
-
+ raise ValueError(f'Requested metallicity {z_defined} is out of bounds between {np.min(self.z_list)} and {np.max(self.z_list)}.')
+
+ # Find nearest age in grid to input grid
+ age_idx = np.where(abs(np.array(self.age_list) - log_age) == min(abs(np.array(self.age_list) - log_age)) )[0][0]
+ iso_file = 'iso_{0:.2f}.fits'.format(self.age_list[age_idx])
+
# find closest metallicity value
- z_idx = searchsorted(self.z_list, z_defined, side='left')
+ z_idx = np.where(abs(np.array(self.z_list) - z_defined) == min(abs(np.array(self.z_list) - z_defined)) )[0][0]
z_dir = self.z_file_map[self.z_list[z_idx]]
# generate isochrone file string
@@ -1401,16 +1559,16 @@ def isochrone(self, age=1.e8, metallicity=0.0):
iso.rename_column('col4', 'logg')
iso.rename_column('col5', 'logT_WR')
iso.rename_column('col6', 'model_ref')
-
+
iso.meta['log_age'] = log_age
iso.meta['metallicity_in'] = metallicity
iso.meta['metallicity_act'] = np.log10(self.z_list[z_idx] / self.z_solar)
-
+
return iso
#================================================#
-
-def make_isochrone_pisa_interp(log_age, metallicity=0.015,
+
+def make_isochrone_pisa_interp(log_age, metallicity=0.015,
tracks=None, test=False):
"""
Read in a set of isochrones and generate an isochrone at log_age
@@ -1437,14 +1595,14 @@ def make_isochrone_pisa_interp(log_age, metallicity=0.015,
if os.path.exists(rootDir+'iso_{0:3.2f}.fits'.format(log_age)):
print( 'Isochrone at logAge = {0:3.2f} already exists'.format(log_age))
return
-
+
# Name/directory for interpolated isochrone
isoFile = rootDir+'iso_%3.2f.fits' % log_age
outSuffix = '_%.2f' % (log_age)
print( '*** Generating Pisa isochrone for log t = %3.2f and Z = %.3f' % \
(log_age, metallicity))
-
+ import time
print( time.asctime(), 'Getting original Pisa isochrones.')
iso = get_orig_pisa_isochrones(metallicity=metallicity)
@@ -1458,7 +1616,7 @@ def make_isochrone_pisa_interp(log_age, metallicity=0.015,
good = np.where(tmp == log_age)
young_model_logage = tmp[good[0]-1]
old_model_logage = tmp[good[0]+1]
-
+
# Isolate younger/older isochrones
young_ind = np.where(iso.log_ages == young_model_logage)
old_ind = np.where(iso.log_ages == old_model_logage)
@@ -1471,7 +1629,7 @@ def make_isochrone_pisa_interp(log_age, metallicity=0.015,
if abs(young_model_logage - log_age) <= abs(old_model_logage - log_age):
# Use young model mass grid
young_iso, old_iso = interpolate_iso_tempgrid(young_iso, old_iso)
-
+
else:
# Use old model mass grid
old_iso, young_iso = interpolate_iso_tempgrid(old_iso, young_iso)
@@ -1479,25 +1637,25 @@ def make_isochrone_pisa_interp(log_age, metallicity=0.015,
# Now, can interpolate in time over the two models. Do this star by star.
# Work in linear time here!!
numStars = len(young_iso.M)
-
+
interp_iso = Isochrone(log_age)
interp_iso.log_Teff = np.zeros(numStars, dtype=float)
interp_iso.log_L = np.zeros(numStars, dtype=float)
interp_iso.log_g = np.zeros(numStars, dtype=float)
interp_iso.M = young_iso.M # Since mass grids should already be matched
-
+
for i in range(numStars):
# Do interpolations in linear space
model_ages = [10**young_model_logage[0], 10**old_model_logage[0]]
target_age = 10**log_age
#model_ages = [young_model_logage[0], old_model_logage[0]]
#target_age = log_age
-
+
# Build interpolation functions
Teff_arr = [10**young_iso.log_Teff[i], 10**old_iso.log_Teff[i]]
logL_arr = [10**young_iso.log_L[i], 10**old_iso.log_L[i]]
logg_arr = [10**young_iso.log_g[i], 10**old_iso.log_g[i]]
-
+
f_log_Teff = interpolate.interp1d(model_ages, Teff_arr, kind='linear')
f_log_L = interpolate.interp1d(model_ages, logL_arr, kind='linear')
f_log_g = interpolate.interp1d(model_ages, logg_arr, kind='linear')
@@ -1523,15 +1681,15 @@ def make_isochrone_pisa_interp(log_age, metallicity=0.015,
py.legend()
py.title('Pisa 2011 Isochrone at log t = %.2f' % log_age)
py.savefig(rootDir + 'plots/interp_isochrone_at' + outSuffix + '.png')
-
+
print( time.asctime(), 'Finished.')
# Write output to file, MUST BE IN SAME ORDER AS ORIG FILES
_out = open(isoFile, 'w')
-
- _out.write('%10s %10s %10s %10s\n' %
+
+ _out.write('%10s %10s %10s %10s\n' %
('# log L', 'log Teff', 'Mass', 'log g'))
- _out.write('%10s %10s %10s %10s\n' %
+ _out.write('%10s %10s %10s %10s\n' %
('# (Lsun)', '(Kelvin)', '(Msun)', '(cgs)'))
for ii in range(len(interp_iso.M)):
@@ -1555,7 +1713,7 @@ def get_orig_pisa_isochrones(metallicity=0.015):
if not os.path.exists(pms_dir):
print( 'Failed to find Siess PMS isochrones for metallicity = ' + metSuffix)
return
-
+
# Collect the isochrones
files = glob.glob(pms_dir + '*.dat')
count = len(files)
@@ -1564,7 +1722,7 @@ def get_orig_pisa_isochrones(metallicity=0.015):
data.isochrones = []
data.log_ages = []
-
+
# Extract useful params from isochrones
for ff in range(len(files)):
d = Table.read(files[ff], format='ascii')
@@ -1572,7 +1730,7 @@ def get_orig_pisa_isochrones(metallicity=0.015):
# Extract logAge from filename
log_age = float(files[ff].split('_')[2][:-4])
- # Create an isochrone object
+ # Create an isochrone object
iso = Isochrone(log_age)
iso.M = d['col3']
iso.log_Teff = d['col2']
@@ -1581,13 +1739,13 @@ def get_orig_pisa_isochrones(metallicity=0.015):
# If a log g column exist, extract it. Otherwise, calculate
# log g from T and L and add column at end
if len(d.keys()) == 3:
-
+
# Calculate log g from T and L
L_sun = 3.8 * 10**33 #cgs
SB_sig = 5.67 * 10**-5 #cgs
M_sun = 2. * 10**33 #cgs
G_const = 6.67 * 10**-8 #cgs
-
+
radius = np.sqrt( (10**d['col1'] * L_sun) /
(4 * np.pi * SB_sig * (10**d['col2'])**4) )
g = (G_const * d['col3'] * M_sun) / radius**2
@@ -1596,7 +1754,7 @@ def get_orig_pisa_isochrones(metallicity=0.015):
iso.log_g = np.log10(g.astype(np.float))
else:
iso.log_g = d['col4']
-
+
data.isochrones.append(iso)
data.log_ages.append(log_age)
diff --git a/spisea/exceptions.py b/spisea/exceptions.py
new file mode 100644
index 00000000..e0587d90
--- /dev/null
+++ b/spisea/exceptions.py
@@ -0,0 +1,24 @@
+import pdb
+
+
+class ModelMismatch(Exception):
+ """
+ Error raised when installed model grid version number is mismatched
+ with the user's version of SPISEA code
+ """
+ def __init__(self, required_num, grid_num, model_type):
+ assert (model_type == 'evolution') | (model_type == 'atmosphere')
+
+ if model_type == 'evolution':
+ model_file = 'spisea_models.tar.gz'
+ elif model_type == 'atmosphere':
+ model_file = 'spisea_cdbs.tar.gz'
+
+ # Compose error message
+ str1 = 'WARNING: Desired {0} model requires model grid version >= {1},'.format(model_type, required_num)
+ str2 = 'but model grid version {0} is installed.'.format(grid_num)
+ str3 = 'Please re-download {0} from installation documentation to resolve mismatch.'.format(model_file)
+ self.message = '{0} {1} {2}'.format(str1, str2, str3)
+
+ # Define error
+ super().__init__(self.message)
diff --git a/spisea/filters.py b/spisea/filters.py
index e13ccd9c..e2a2aee9 100755
--- a/spisea/filters.py
+++ b/spisea/filters.py
@@ -29,7 +29,7 @@ def get_nirc2_filt(name):
while len(idx) != 0:
wavelength[idx+1] += 1.0e-8
-
+
diff = np.diff(wavelength)
idx = np.where(diff <= 0)[0]
#print( 'Duplicate entry loop' )
@@ -68,7 +68,7 @@ def get_2mass_filt(name):
name='2MASS_{0}'.format(name))
return spectrum
-
+
def get_vista_filt(name):
"""
@@ -79,21 +79,21 @@ def get_vista_filt(name):
t = Table.read('{0}/vista/VISTA_Filters_at80K_forETC_{1}.dat'.format(filters_dir, name),
format='ascii')
except:
- raise ValueError('Could not find VISTA filter file {0}/vista/VISTA_Filters_at80K_forETC_{1}.dat'.format(filters_dir, name))
+ raise ValueError('Could not find VISTA filter file {0}/vista/VISTA_Filters_at80K_forETC_{1}.dat'.format(filters_dir, name))
# Wavelength must be in angstroms, transmission in fraction
wave = t['col1'] * 10
trans = t['col2'] * 0.01
-
+
# Change any negative numbers to 0, as well as anything shortward
# of 0.4 microns or longward of 2.9 microns
# (no VISTA filter transmissions beyond these boundaries)
bad = np.where( (trans < 0) | (wave < 4000) | (wave > 29000) )
trans[bad] = 0
-
+
# Now we can define the VISTA filter bandpass objects
spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='VISTA_{0}'.format(name))
-
+
return spectrum
def get_decam_filt(name):
@@ -104,18 +104,18 @@ def get_decam_filt(name):
try:
t = Table.read('{0}/decam/DECam_filters.txt'.format(filters_dir), format='ascii')
t.rename_column('Y', 'y')
-
+
cols = np.array(t.keys())
idx = np.where(cols == name)[0][0]
trans = t[cols[idx]]
except:
- raise ValueError('Could not find DECAM filter {0} in {1}/decam/DECam_filters.txt'.format(name, filters_dir))
+ raise ValueError('Could not find DECAM filter {0} in {1}/decam/DECam_filters.txt'.format(name, filters_dir))
# Limit to unmasked regions only
mask = np.ma.getmask(trans)
good = np.where(mask == False)
-
+
# Convert wavelengths from nm to angstroms, while eliminating masked regions
wave = t['wavelength'][good] * 10.
trans = trans[good]
@@ -126,7 +126,7 @@ def get_decam_filt(name):
return spectrum
-def get_PS1_filt(name):
+def get_PS1_filt(name):
"""
Define PS1 filter as pysynphot object
"""
@@ -145,11 +145,11 @@ def get_PS1_filt(name):
trans = t[cols[idx]]
except:
- raise ValueError('Could not find PS1 filter {0} in {1}/ps1'.format(name, filters_dir))
+ raise ValueError('Could not find PS1 filter {0} in {1}/ps1'.format(name, filters_dir))
# Convert wavelengths from nm to angstroms
wave = t['wave'] * 10.
-
+
spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='ps1_{0}'.format(name))
return spectrum
@@ -161,7 +161,7 @@ def get_jwst_filt(name):
try:
t = Table.read('{0}/jwst/{1}.txt'.format(filters_dir, name), format='ascii')
except:
- raise ValueError('Could not find JWST filter {0} in {1}/jwst'.format(name, filters_dir))
+ raise ValueError('Could not find JWST filter {0} in {1}/jwst'.format(name, filters_dir))
# Convert wavelengths to angstroms
wave = t['microns'] * 10**4.
@@ -170,10 +170,10 @@ def get_jwst_filt(name):
# Change any negative numbers to 0
bad = np.where(trans < 0)
trans[bad] = 0
-
+
spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='jwst_{0}'.format(name))
- return spectrum
+ return spectrum
def get_Johnson_Glass_filt(name):
"""
@@ -182,7 +182,7 @@ def get_Johnson_Glass_filt(name):
try:
t = Table.read('{0}/Johnson_Glass/{1}.txt'.format(filters_dir, name), format='ascii')
except:
- raise ValueError('Could not find Johnson-Glass filter {0} in {1}/Johnson_Glass'.format(name, filters_dir))
+ raise ValueError('Could not find Johnson-Glass filter {0} in {1}/Johnson_Glass'.format(name, filters_dir))
# Convert wavelengths to angstroms
wave = t['col1'] * 10.
@@ -191,10 +191,10 @@ def get_Johnson_Glass_filt(name):
# Change any negative numbers to 0
bad = np.where(trans < 0)
trans[bad] = 0
-
+
spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='jg_{0}'.format(name))
- return spectrum
+ return spectrum
def get_nirc1_filt(name):
"""
@@ -203,12 +203,12 @@ def get_nirc1_filt(name):
try:
t = Table.read('{0}/nirc1/{1}.txt'.format(filters_dir, name), format='ascii')
except:
- raise ValueError('Could not find NIRC1 filter {0} in {1}/nirc1'.format(name, filters_dir))
+ raise ValueError('Could not find NIRC1 filter {0} in {1}/nirc1'.format(name, filters_dir))
# Convert wavelengths to angstroms
wave = t['col1'] * 10**4
trans = t['col2']
-
+
# Lets fix wavelength array for duplicate values or negative vals;
# delete these entries
diff = np.diff(wave)
@@ -222,14 +222,14 @@ def get_nirc1_filt(name):
diff = np.diff(wave)
idx = np.where(diff <= 0)[0]
-
+
# Change any negative transmission vals to 0
bad = np.where(trans < 0)
trans[bad] = 0
spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='nirc1_{0}'.format(name))
- return spectrum
+ return spectrum
def get_ctio_osiris_filt(name):
"""
@@ -238,7 +238,7 @@ def get_ctio_osiris_filt(name):
try:
t = Table.read('{0}/CTIO_OSIRIS/{1}.txt'.format(filters_dir, name), format='ascii')
except:
- raise ValueError('Could not find CTIO/OSIRIS filter {0} in {1}/CTIO_OSIRIS'.format(name, filters_dir))
+ raise ValueError('Could not find CTIO/OSIRIS filter {0} in {1}/CTIO_OSIRIS'.format(name, filters_dir))
# Convert wavelengths to angstroms
wave = t['col1'] * 10**4
@@ -247,7 +247,7 @@ def get_ctio_osiris_filt(name):
# Change any negative numbers to 0
bad = np.where(trans < 0)
trans[bad] = 0
-
+
spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='ctio_osiris_{0}'.format(name))
return spectrum
@@ -259,7 +259,7 @@ def get_naco_filt(name):
try:
t = Table.read('{0}/naco/{1}.dat'.format(filters_dir, name), format='ascii')
except:
- raise ValueError('Could not find NACO filter {0} in {1}/naco'.format(name, filters_dir))
+ raise ValueError('Could not find NACO filter {0} in {1}/naco'.format(name, filters_dir))
# Convert wavelengths to angstroms
wave = t['col1'] * 10**4
@@ -268,7 +268,7 @@ def get_naco_filt(name):
# Change any negative numbers to 0
bad = np.where(trans < 0)
trans[bad] = 0
-
+
spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='naco_{0}'.format(name))
return spectrum
@@ -282,7 +282,7 @@ def get_ubv_filt(name):
except:
raise ValueError('Could not find ubv filter {0} in {1}/ubv'.format(name, filters_dir))
- # Convert wavelength from nm to angstroms
+ # Convert wavelength from nm to angstroms
wave = t[t.keys()[0]] * 10.
# Convert transmission to ratio (from percent)
trans = t[t.keys()[1]] / 100.
@@ -336,8 +336,8 @@ def get_keck_osiris_filt(name):
def get_gaia_filt(version, name):
"""
Define Gaia filters as pysynphot object.
- To avoid confusion, we will only support
- the revised DR2 zeropoints from
+ To avoid confusion, we will only support
+ the revised DR2 zeropoints from
Evans+18.
version: specify dr1, dr2, or dr2_rev
@@ -357,7 +357,7 @@ def get_gaia_filt(version, name):
path = '{0}/gaia/dr2_rev/'.format(filters_dir)
else:
raise ValueError('GAIA filter version {0} not understood. Please use dr1, dr2, or dr2_rev'.format(version))
-
+
# Get the filter info
try:
t = Table.read('{0}/Gaia_passbands.txt'.format(path), format='ascii')
@@ -380,7 +380,7 @@ def get_gaia_filt(version, name):
bad = np.where(trans > 90)
trans[bad] = 0
except:
- raise ValueError('Could not find Gaia filter {0}'.format(name))
+ raise ValueError('Could not find Gaia filter {0}'.format(name))
# Convert wavelengths to angstroms (from nm)
wave = t['LAMBDA'] * 10
@@ -428,3 +428,65 @@ def get_hawki_filt(name):
name='hawki_{0}'.format(name))
return spectrum
+
+def get_rubin_filt(name):
+ """
+ Define the Rubin Vera C LSST filters as a pysynphot spectrum object
+ """
+ # Read in filter info
+ try:
+ t = Table.read('{0}/rubin/{1}.dat'.format(filters_dir, name), format='ascii')
+ except:
+ raise ValueError('Could not find Rubin LSST filter file {0}/rubin/{1}.dat'.format(filters_dir, name))
+
+ wavelength = t[t.keys()[0]]
+ transmission = t[t.keys()[1]]
+
+ # Convert wavelength to Angstroms
+ wavelength = wavelength * 10
+
+ # Make spectrum object
+ spectrum = pysynphot.ArrayBandpass(wavelength, transmission, waveunits='angstrom',
+ name='rubin_{0}'.format(name))
+
+ return spectrum
+
+def get_euclid_filt(name):
+ """
+ Define the Euclid filters as a pysynphot spectrum object
+ """
+ # Read in filter info
+ try:
+ t = Table.read('{0}/euclid/{1}.dat'.format(filters_dir, name), format='ascii')
+ except:
+ raise ValueError('Could not find Euclid filter file {0}/euclid/{1}.dat'.format(filters_dir, name))
+
+ wavelength = t[t.keys()[0]]
+ transmission = t[t.keys()[1]]
+
+ # Convert wavelength to Angstroms
+ wavelength = wavelength * 10
+
+ # Make spectrum object
+ spectrum = pysynphot.ArrayBandpass(wavelength, transmission, waveunits='angstrom',
+ name='euclid_{0}'.format(name))
+
+ return spectrum
+
+def get_nsfcam_filt(name):
+
+ """
+ Define irtf nsfcam filters as pysynphot object
+ """
+ try:
+ t = Table.read('{0}/nsfcam/{1}.dat'.format(filters_dir, name), format='ascii')
+ except:
+ raise ValueError('Could not find nsfcam filter {0} in {1}/nsfcam'.format(name, filters_dir))
+
+ # Wavelength already in angstrom and and transmission in fraction
+ wave = t['col1']
+ trans = t['col2']
+
+ spectrum = pysynphot.ArrayBandpass(wave, trans, waveunits='angstrom', name='nsfcam_{0}'.format(name))
+
+ return spectrum
diff --git a/spisea/ifmr.py b/spisea/ifmr.py
index b8a03ee0..b7cc7235 100755
--- a/spisea/ifmr.py
+++ b/spisea/ifmr.py
@@ -7,7 +7,17 @@
#IFMR_Spera15 comes from Spera et al. 2015 appendix C and includes metallicity dependence
#https://ui.adsabs.harvard.edu/abs/2015MNRAS.451.4086S/abstract
#
-#Both IFMRs rely on Kalirai et al. 2008 WD IFMR on the low mass end < 9 M_sun for Raitehl18, and < 7 M_sun for Spera15
+#IFMR_N20_Sukhbold combines the follwing
+#BH/NS IFMR based on Sukhbold & Woosley 2014 for zero-Z models:
+#https://ui.adsabs.harvard.edu/abs/2014ApJ...783...10S/abstract
+#BH/NS IFMR based on Sukhbold et al. 2016 for solar-Z models::
+#https://ui.adsabs.harvard.edu/abs/2016ApJ...821...38S/abstract
+#PPISN based on Woosley 2017:
+#https://ui.adsabs.harvard.edu/abs/2017ApJ...836..244W/abstract
+#PPSIN based on Woosley et al. 2020:
+#https://ui.adsabs.harvard.edu/abs/2020ApJ...896...56W/abstract
+#
+#All IFMRs rely on Kalirai et al. 2008 WD IFMR on the low mass end < 9 M_sun for Raitehl18 and N20_Sukhbold, and < 7 M_sun for Spera15
#https://ui.adsabs.harvard.edu/abs/2008ApJ...676..594K/abstract
#
#########################################################
@@ -15,18 +25,20 @@
import numpy as np
class IFMR(object):
- def __init__(self):
- pass
+ def __init__(self, seed=None):
+ self.seed = seed
+ self.rng = np.random.default_rng(seed)
def get_Z(self, Fe_H):
"""
This function converts metallicity given as [Fe/H] into Z values assuming Z_solar = 0.014.
+ Ekstrom+12 https://ui.adsabs.harvard.edu/abs/2012A%26A...537A.146E/abstract
"""
return 10**(Fe_H - 1.85387)
def Kalirai_mass(self, MZAMS):
- """
+ """
From Kalirai+08 https://ui.adsabs.harvard.edu/abs/2008ApJ...676..594K/abstract
1.16 < MZAMS < 6.5
But we use this function for anything between 0.5 and 9 depending on the IFMR.
@@ -36,35 +48,34 @@ def Kalirai_mass(self, MZAMS):
result = 0.109*MZAMS + 0.394
final = np.zeros(len(MZAMS))
-
- bad_idx = np.where(MZAMS < 0.5)
- final[bad_idx] = -99
-
- good_idx = np.where(MZAMS >= 0.5)
+
+ good_idx = MZAMS >= 0.5
final[good_idx] = result[good_idx]
+ final[~good_idx] = -99
return final
-
-
+
+
class IFMR_Spera15(IFMR):
"""
- This IFMR comes from Spera et. al. 2015 Appendix C (Used for all MZAMS>= 7 M_sun)
- https://ui.adsabs.harvard.edu/abs/2015MNRAS.451.4086S/abstract
+ The BH/NS IFMR (used for MZAMS>= 7 M_sun) comes from
+ `Spera et. al. (2015) Appendix C `_.
+ The WD IFMR (used for MZAMS< 7_Msun) comes from
+ `Kalirai et al. (2008) `_.
+
+ See Rose et al. (submitted) for more details.
- The WD IFMR (used for MZAMS< 7_Msun) comes from
- `Kalirai et al. (2008) `_
-
"""
-
+
#The get_Mco functions come from C11 of Spera
def get_Mco_low_metal(self, Z, MZAMS):
"""
C15 of Spera, valid for Z < 1.0e-3
-
+
"""
-
+
B1 = 67.07
K1 = 46.89
K2 = 1.138e2
@@ -83,7 +94,7 @@ def get_Mco_med_metal(self, Z, MZAMS):
C14 of Spera, valid for Z >= 1.0e-3 and Z <= 4.0e-3
"""
-
+
B1 = 40.98 + 3.415e4*Z - 8.064e6*Z**2
K1 = 35.17 + 1.548e4*Z - 3.759e6*Z**2
K2 = 20.36 + 1.162e5*Z - 2.276e7*Z**2
@@ -102,7 +113,7 @@ def get_Mco_high_metal(self, Z, MZAMS):
C13 of Spera, valid for Z > 4.0e-3
"""
-
+
B1 = 59.63 - 2.969e3*Z + 4.988e4*Z**2
K1 = 45.04 - 2.176e3*Z + 3.806e4*Z**2
K2 = 1.389e2 - 4.664e3*Z + 5.106e4*Z**2
@@ -112,7 +123,7 @@ def get_Mco_high_metal(self, Z, MZAMS):
g1 = 0.5/(1+10**((K1-MZAMS)*(d1))) #C12 of Spera
g2 = 0.5/(1+10**((K2-MZAMS)*(d2))) #C12 of Spera
-
+
return -2.0 + (B1 + 2.0)*(g1 + g2) #C11 of Spera
@@ -121,8 +132,8 @@ def get_Mco(self, Z, MZAMS):
This function uses Spera C11-C15 in order to reurn an array of core masses from an array of metallicities
and ZAMS masses. It will be the same length as these two arrays with -99 entries where invalid (ie MZAMS< 7 M_sun)
- Parameters:
-
+ Parameters:
+
Z: an array with metallicities reported as Z where Z is metal_mass/total_mass
MZAMS: an array of ZAMS masses in solar masses. The Spera functions are valid for MZAMS> 7 M_sun
@@ -147,28 +158,28 @@ def get_Mco(self, Z, MZAMS):
core_masses[high_metal_idx] = self.get_Mco_high_metal(Z[high_metal_idx], MZAMS[high_metal_idx])
return core_masses
-
+
def M_rem_very_low_metal_low_mass(self, Z, Mco):
"""
C1 of Spera, valid for Z <= 5.0e-4 and Mco <= 5.0
-
+
Parameters:
Z: an array of metallicities reported as metal_mass/total_mass
Mco: an arrray of core masses in M_sun
"""
-
+
p = -2.333 + 0.1559*Mco + 0.2700*Mco**2 #C2 of Spera
#need to return p or 1.27, whichever is greater
final = np.zeros(len(p))
-
+
p_max_idx = np.where(p >= 1.27)
final[p_max_idx] = p[p_max_idx]
-
+
p_min_idx = np.where(p < 1.27)
final[p_min_idx] = 1.27
@@ -206,7 +217,7 @@ def M_rem_very_low_metal_high_mass(self, Z, Mco):
m = -6.476e2*Z + 1.911 #C3 of Spera
q = 2.300e3*Z + 11.67 #C3 of Spera
-
+
f = m*Mco + q #C2 of Spera
#need to return either p or f, whichever is less
@@ -217,7 +228,7 @@ def M_rem_very_low_metal_high_mass(self, Z, Mco):
f_min_idx = np.where(f < p)
final[f_min_idx] = f[f_min_idx]
-
+
return final
def M_rem_low_metal_low_mass(self, Z, Mco):
@@ -241,15 +252,15 @@ def M_rem_low_metal_low_mass(self, Z, Mco):
#need to return h or 1.27, whichever is greater
final = np.zeros(len(h))
-
+
h_max_idx = np.where(h >= 1.27)
final[h_max_idx] = h[h_max_idx]
-
+
h_min_idx = np.where(h < 1.27)
final[h_min_idx] = 1.27
return final
-
+
def M_rem_low_metal_med_mass(self, Z, Mco):
"""
@@ -305,9 +316,9 @@ def M_rem_low_metal_high_mass(self, Z, Mco):
f_max_idx = np.where(f > h)
final[f_max_idx] = f[f_max_idx]
-
+
return final
-
+
def M_rem_med_metal_low_mass(self, Z, Mco):
"""
@@ -330,10 +341,10 @@ def M_rem_med_metal_low_mass(self, Z, Mco):
#need to return h or 1.27, whichever is greater
final = np.zeros(len(h))
-
+
h_max_idx = np.where(h >= 1.27)
final[h_max_idx] = h[h_max_idx]
-
+
h_min_idx = np.where(h < 1.27)
final[h_min_idx] = 1.27
@@ -384,7 +395,7 @@ def M_rem_med_metal_high_mass_1(self, Z, Mco):
q = -1.296e4*Z + 26.98
f = m*Mco + q #C5 of Spera
-
+
#need to return either h or f, whichever is greater
final = np.zeros(len(h))
@@ -393,7 +404,7 @@ def M_rem_med_metal_high_mass_1(self, Z, Mco):
f_max_idx = np.where(f > h)
final[f_max_idx] = f[f_max_idx]
-
+
return final
def M_rem_med_metal_high_mass_2(self, Z, Mco):
@@ -420,7 +431,7 @@ def M_rem_med_metal_high_mass_2(self, Z, Mco):
q = 1.061
f = m*Mco + q #C5 of Spera
-
+
#need to return either h or f, whichever is greater
final = np.zeros(len(h))
@@ -429,7 +440,7 @@ def M_rem_med_metal_high_mass_2(self, Z, Mco):
f_max_idx = np.where(f > h)
final[f_max_idx] = f[f_max_idx]
-
+
return final
@@ -454,10 +465,10 @@ def M_rem_high_metal_low_mass(self, Z, Mco):
#need to return h or 1.27, whichever is greater
final = np.zeros(len(h))
-
+
h_max_idx = np.where(h >= 1.27)
final[h_max_idx] = h[h_max_idx]
-
+
h_min_idx = np.where(h < 1.27)
final[h_min_idx] = 1.27
@@ -508,7 +519,7 @@ def M_rem_high_metal_high_mass(self, Z, Mco):
q = 1.061
f = m*Mco + q #C5 of Spera
-
+
#need to return either h or f, whichever is greater
final = np.zeros(len(h))
@@ -517,15 +528,15 @@ def M_rem_high_metal_high_mass(self, Z, Mco):
f_max_idx = np.where(f > h)
final[f_max_idx] = f[f_max_idx]
-
+
return final
def generate_death_mass(self, mass_array, metallicity_array):
"""
- The top-level function that assigns the remnant type
- and mass based on the stellar initial mass.
-
+ The top-level function that assigns the remnant type
+ and mass based on the stellar initial mass.
+
Parameters
----------
mass_array: array of floats
@@ -536,20 +547,20 @@ def generate_death_mass(self, mass_array, metallicity_array):
Notes
------
The output typecode tells what compact object formed:
-
+
* WD: typecode = 101
* NS: typecode = 102
* BH: typecode = 103
- A typecode of value -1 means you're outside the range of
- validity for applying the ifmr formula.
- A remnant mass of -99 means you're outside the range of
+ A typecode of value -1 means you're outside the range of
validity for applying the ifmr formula.
- Range of validity: MZAMS > 0.5
-
+ A remnant mass of -99 means you're outside the range of
+ validity for applying the ifmr formula.
+ Range of validity: MZAMS > 0.5
+
Returns
-------
output_arr: 2-element array
- output_array[0] contains the remnant mass, and
+ output_array[0] contains the remnant mass, and
output_array[1] contains the typecode
"""
@@ -574,10 +585,10 @@ def generate_death_mass(self, mass_array, metallicity_array):
Kal_idx = np.where(core_mass < 0)
rem_mass_array[Kal_idx] = self.Kalirai_mass(mass_array[Kal_idx])
-
+
##### very low metallicity Z < 5.0e-4
-
+
#remnant masses of stars with Z < 5.0e-4 and Mco < 5.0
very_low_metal_low_mass_idx = np.where((Z_array < 5.0e-4) & (core_mass < 5.0) & (core_mass >= 0))
rem_mass_array[very_low_metal_low_mass_idx] = self.M_rem_very_low_metal_low_mass(Z_array[very_low_metal_low_mass_idx], core_mass[very_low_metal_low_mass_idx])
@@ -591,7 +602,7 @@ def generate_death_mass(self, mass_array, metallicity_array):
rem_mass_array[very_low_metal_high_mass_idx] = self.M_rem_very_low_metal_high_mass(Z_array[very_low_metal_high_mass_idx], core_mass[very_low_metal_high_mass_idx])
#### low metallicity 5.0e-4 <= Z < 1.0e-3
-
+
#remnant masses of stars with 5.0e-4 <= Z < 1.0e-3 and Mco < 5.0
low_metal_low_mass_idx = np.where((Z_array >= 5.0e-4) & (Z_array < 1.0e-3) & (core_mass < 5.0) & (core_mass >= 0))
rem_mass_array[low_metal_low_mass_idx] = self.M_rem_low_metal_low_mass(Z_array[low_metal_low_mass_idx], core_mass[low_metal_low_mass_idx])
@@ -603,9 +614,9 @@ def generate_death_mass(self, mass_array, metallicity_array):
#remnant masses of stars with 5.0e-4 <= Z < 1.0e-3 and Mco > 10.0
low_metal_high_mass_idx = np.where((Z_array >= 5.0e-4) & (Z_array < 1.0e-3) & (core_mass > 10.0))
rem_mass_array[low_metal_high_mass_idx] = self.M_rem_low_metal_high_mass(Z_array[low_metal_high_mass_idx], core_mass[low_metal_high_mass_idx])
-
+
#### medium metallicity 1.0e-3 <= Z <= 4.0e-3
-
+
#remnant masses of stars with 1.0e-3 <= Z <= 4.0e-3 and Mco < 5.0
med_metal_low_mass_idx = np.where((Z_array >= 1.0e-3) & (Z_array <= 4.0e-3) & (core_mass < 5.0) & (core_mass >= 0))
rem_mass_array[med_metal_low_mass_idx] = self.M_rem_med_metal_low_mass(Z_array[med_metal_low_mass_idx],core_mass[med_metal_low_mass_idx])
@@ -621,9 +632,9 @@ def generate_death_mass(self, mass_array, metallicity_array):
#remnant masses of stars with 2.0e-3 <= Z <= 4.0e-3 and Mco > 10.0
med_metal_high_mass_idx_2 = np.where((Z_array >= 2.0e-3) & (Z_array <= 4.0e-3) & (core_mass > 10.0))
rem_mass_array[med_metal_high_mass_idx_2] = self.M_rem_med_metal_high_mass_2(Z_array[med_metal_high_mass_idx_2], core_mass[med_metal_high_mass_idx_2])
-
+
#### high metallicity Z > 4.0e-3
-
+
#remnant masses of stars with Z > 4.0e-3 and Mco < 5.0
high_metal_low_mass_idx = np.where((Z_array > 4.0e-3) & (core_mass < 5.0) & (core_mass >= 0))
rem_mass_array[high_metal_low_mass_idx] = self.M_rem_high_metal_low_mass(Z_array[high_metal_low_mass_idx], core_mass[high_metal_low_mass_idx])
@@ -635,16 +646,16 @@ def generate_death_mass(self, mass_array, metallicity_array):
#remnant masses of stars with Z > 4.0e-3 and MZAMS > 10.0
high_metal_high_mass_idx = np.where((Z_array > 4.0e-3) & (core_mass > 10.0))
rem_mass_array[high_metal_high_mass_idx] = self.M_rem_high_metal_high_mass(Z_array[high_metal_high_mass_idx], core_mass[high_metal_high_mass_idx])
-
+
#assign object types based on remnant mass
bad_idx = np.where(rem_mass_array < 0) #outside the range of validity for the ifmr
WD_idx = np.where((rem_mass_array <= 1.4) & (rem_mass_array >= 0 )) #based on the Chandresekhar limit
- NS_idx = np.where((rem_mass_array > 1.4) & (rem_mass_array <= 3.0)) #based on figures 15-17 of Spera
+ NS_idx = np.where((rem_mass_array > 1.4) & (rem_mass_array <= 3.0)) #based on figures 15-17 of Spera
BH_idx = np.where(rem_mass_array > 3.0) #based on figures 15-17 of Spera
output_array[0][bad_idx] = rem_mass_array[bad_idx]
output_array[1][bad_idx] = -1
-
+
output_array[0][WD_idx] = rem_mass_array[WD_idx]
output_array[1][WD_idx] = codes['WD']
@@ -655,74 +666,76 @@ def generate_death_mass(self, mass_array, metallicity_array):
output_array[1][BH_idx] = codes['BH']
return output_array
-
+
class IFMR_Raithel18(IFMR):
"""
- This IFMR comes from Raithel et al. 2018
- https://ui.adsabs.harvard.edu/abs/2018ApJ...856...35R/abstract
- The IFMR is a combination of the
- WD IFMR from
+ The IFMR is a combination of the WD IFMR from
`Kalirai et al. (2008) `_
and the NS/BH IFMR from
`Raithel et al. (2018) `_.
+ Note that the NS masses are NOT assigned based on the above results.
+ We do take the NS/BH formation ratio and the BH masses.
+ NS masses are assigned based on random draws from a Gaussian (see NS_mass function).
- See Lam et al. (submitted) for more details.
+ See
+ `Lam et al. (2020) `_
+ and Rose et al. (submitted) for more details.
"""
def BH_mass_core_low(self, MZAMS):
- """
- Eqn (1)
- Paper: 15 < MZAMS < 40
- Us extending: 15 < MZAMS < 42.22
+ """
+ Eqn (1)
+ Paper: 15 < MZAMS < 40
+ Us extending: 15 < MZAMS < 42.22
"""
return -2.024 + 0.4130*MZAMS
def BH_mass_all_low(self, MZAMS):
- """
- Eqn (2)
- Paper: 15 < MZAMS < 40
- Us extending: 15 < MZAMS < 42.22
+ """
+ Eqn (2)
+ Paper: 15 < MZAMS < 40
+ Us extending: 15 < MZAMS < 42.22
"""
return 16.28 + 0.00694 * (MZAMS - 21.872) - 0.05973 * (MZAMS - 21.872)**2 + 0.003112 * (MZAMS - 21.872)**3
def BH_mass_high(self, MZAMS):
- """
- Eqn (3)
- Paper: 45 < MZAMS < 120
- Us extending: 42.22 < MZAMS < 120
+ """
+ Eqn (3)
+ Paper: 45 < MZAMS < 120
+ Us extending: 42.22 < MZAMS < 120
"""
return 5.795 + 1.007 * 10**9 * MZAMS**-4.926
def BH_mass_low(self, MZAMS, f_ej):
- """
- Eqn (4)
- Paper: 15 < MZAMS < 40
- Us extending: 15 < MZAMS < 42.22
+ """
+ Eqn (4)
+ Paper: 15 < MZAMS < 40
+ Us extending: 15 < MZAMS < 42.22
"""
return f_ej * self.BH_mass_core_low(MZAMS) + (1 - f_ej) * self.BH_mass_all_low(MZAMS)
def NS_mass(self, MZAMS):
- """
- Paper: 9 < MZAMS 120
- Drawing the mass from gaussian created using observational data
- Done by Emily Ramey and Sergiy Vasylyev at University of Caifornia, Berkeley
- sample oF NS from Ozel & Freire (2016) — J1811+2405 Ng et al. (2020),
- J2302+4442 Kirichenko et al. (2018), J2215+5135 Linares et al. (2018),
- J1913+1102 Ferdman & Collaboration (2017), J1411+2551 Martinez et al. (2017),
+ """
+ Drawing the NS mass from a Gaussian distrobuton based on observational data.
+
+ Gaussian fit by Emily Ramey and Sergiy Vasylyev of University of Caifornia, Berkeley using a
+ sample of NSs from Ozel & Freire (2016) — J1811+2405 Ng et al. (2020),
+ J2302+4442 Kirichenko et al. (2018), J2215+5135 Linares et al. (2018),
+ J1913+1102 Ferdman & Collaboration (2017), J1411+2551 Martinez et al. (2017),
J1757+1854 Cameron et al. (2018), J0030+0451 Riley et al. (2019), J1301+0833 Romani et al. (2016)
- The gaussian distribution was created using this data and a Bayesian MCMC method adapted from
- Kiziltan et al. (2010)
-
+ The Gaussian distribution was fit using this data and a Bayesian MCMC method adapted from
+ Kiziltan et al. (2010).
+
"""
- return np.random.normal(loc=1.36, scale=0.09, size=len(MZAMS))
+ return self.rng.normal(loc=1.36, scale=0.09, size=len(MZAMS))
def generate_death_mass(self, mass_array):
"""
- The top-level function that assigns the remnant type
- and mass based on the stellar initial mass.
-
+ The top-level function that assigns the remnant type
+ and mass based on the stellar initial mass.
+
Parameters
----------
mass_array: array of floats
@@ -733,15 +746,15 @@ def generate_death_mass(self, mass_array):
Notes
------
The output typecode tells what compact object formed:
-
+
* WD: typecode = 101
* NS: typecode = 102
* BH: typecode = 103
- A typecode of value -1 means you're outside the range of
- validity for applying the ifmr formula.
+ A typecode of value -1 means you're outside the range of
+ validity for applying the ifmr formula.
- A remnant mass of -99 means you're outside the range of
+ A remnant mass of -99 means you're outside the range of
validity for applying the ifmr formula.
Range of validity: 0.5 < MZAMS < 120
@@ -749,7 +762,7 @@ def generate_death_mass(self, mass_array):
Returns
-------
output_arr: 2-element array
- output_array[0] contains the remnant mass, and
+ output_array[0] contains the remnant mass, and
output_array[1] contains the typecode
"""
@@ -758,10 +771,10 @@ def generate_death_mass(self, mass_array):
output_array = np.zeros((2, len(mass_array)))
#Random array to get probabilities for what type of object will form
- random_array = np.random.randint(1, 1001, size = len(mass_array))
+ random_array = self.rng.integers(1, 1001, size = len(mass_array))
codes = {'WD': 101, 'NS': 102, 'BH': 103}
-
+
"""
The id_arrays are to separate all the different formation regimes
"""
@@ -788,7 +801,7 @@ def generate_death_mass(self, mass_array):
id_array4_BH = np.where((mass_array >= 17.8) & (mass_array < 18.5) & (random_array > 833))
output_array[0][id_array4_BH]= self.BH_mass_low(mass_array[id_array4_BH], 0.9)
output_array[1][id_array4_BH] = codes['BH']
-
+
id_array4_NS = np.where((mass_array >= 17.8) & (mass_array < 18.5) & (random_array <= 833))
output_array[0][id_array4_NS] = self.NS_mass(mass_array[id_array4_NS])
output_array[1][id_array4_NS] = codes['NS']
@@ -796,7 +809,7 @@ def generate_death_mass(self, mass_array):
id_array5_BH = np.where((mass_array >= 18.5) & (mass_array < 21.7) & (random_array > 500))
output_array[0][id_array5_BH] = self.BH_mass_low(mass_array[id_array5_BH], 0.9)
output_array[1][id_array5_BH] = codes['BH']
-
+
id_array5_NS = np.where((mass_array >= 18.5) & (mass_array < 21.7) & (random_array <= 500))
output_array[0][id_array5_NS] = self.NS_mass(mass_array[id_array5_NS])
output_array[1][id_array5_NS] = codes['NS']
@@ -808,7 +821,7 @@ def generate_death_mass(self, mass_array):
id_array7_BH = np.where((mass_array >= 25.2) & (mass_array < 27.5) & (random_array > 652))
output_array[0][id_array7_BH] = self.BH_mass_low(mass_array[id_array7_BH], 0.9)
output_array[1][id_array7_BH] = codes['BH']
-
+
id_array7_NS = np.where((mass_array >= 25.2) & (mass_array < 27.5) & (random_array <= 652))
output_array[0][id_array7_NS] = self.NS_mass(mass_array[id_array7_NS])
output_array[1][id_array7_NS] = codes['NS']
@@ -824,9 +837,228 @@ def generate_death_mass(self, mass_array):
id_array10_BH = np.where((mass_array >= 60) & (mass_array < 120) & (random_array > 400))
output_array[0][id_array10_BH] = self.BH_mass_high(mass_array[id_array10_BH])
output_array[1][id_array10_BH] = codes['BH']
-
+
id_array10_NS = np.where((mass_array >= 60) & (mass_array < 120) & (random_array <= 400))
output_array[0][id_array10_NS] = self.NS_mass(mass_array[id_array10_NS])
output_array[1][id_array10_NS] = codes['NS']
return(output_array)
+
+class IFMR_N20_Sukhbold(IFMR):
+ """
+ The BH/NS IFMR for zero metallicity progenitors comes from
+ `Sukhbold & Woosley (2014) `_.
+ The BH/NS IFMR for solar metallicity progenitors comes from
+ `Sukhbold et al. (2016) `_.
+ The PPISN models are from
+ `Woosley (2017) `_
+ and
+ `Woosley et al. (2020) `_.
+ The WD IFMR is from
+ `Kalirai et al. (2008) `_.
+ Note that the NS masses are NOT assigned based on the above results.
+ We do take the NS/BH formation ratio and the BH masses.
+ NS masses are assigned based on random draws from a Gaussian (see NS_mass function).
+
+ See Rose et al. (submitted) for more details.
+ """
+ # Linear fits to Sukhbold simulations.
+
+ def zero_BH_mass(self, MZAMS):
+ #zero_coeff = [0.46522639, -3.29170817]
+ #func = np.poly1d(zero_coeff)
+ #result = func(MZAMS)
+ return 0.46522639*MZAMS + -3.29170817
+
+ def solar_BH_mass(self, MZAMS):
+ #solar_coeff = [-0.27079245, 24.74320755]
+ #func = np.poly1d(solar_coeff)
+ return -0.27079245*MZAMS + 24.74320755
+
+ # Solar metallicity (what Sam is using)
+ Zsun = 0.014
+
+ def NS_mass(self, MZAMS):
+ """
+ Drawing the NS mass from a Gaussian distrobuton based on observational data.
+
+ Gaussian fit by Emily Ramey and Sergiy Vasylyev of University of Caifornia, Berkeley using a
+ sample of NSs from Ozel & Freire (2016) — J1811+2405 Ng et al. (2020),
+ J2302+4442 Kirichenko et al. (2018), J2215+5135 Linares et al. (2018),
+ J1913+1102 Ferdman & Collaboration (2017), J1411+2551 Martinez et al. (2017),
+ J1757+1854 Cameron et al. (2018), J0030+0451 Riley et al. (2019), J1301+0833 Romani et al. (2016)
+ The Gaussian distribution was fit using this data and a Bayesian MCMC method adapted from
+ Kiziltan et al. (2010).
+
+ """
+ if isinstance(MZAMS, np.ndarray):
+ return self.rng.normal(loc=1.36, scale=0.09, size=len(MZAMS))
+ else:
+ return self.rng.normal(loc=1.36, scale=0.09, size=1)[0]
+
+
+ def BH_mass_low(self, MZAMS):
+ """
+ 9 < MZAMS < 40 Msun
+ """
+ mBH = self.zero_BH_mass(MZAMS)
+
+ return mBH
+
+
+ def BH_mass_high(self, MZAMS, Z):
+ """
+ 39.6 Msun < MZAMS < 120 Msun
+ """
+ # Solar metallicity (what Sam is using)
+ Zsun = 0.014
+
+ zfrac = np.atleast_1d(Z/Zsun)
+ # super-solar Z gives identical results as solar Z
+ above_idx = np.where(zfrac > 1)
+ if len(above_idx) > 1:
+ zfrac[above_idx] = 1.0
+
+ bad_idx = np.where(zfrac < 0)
+ if len(bad_idx) > 1:
+ raise ValueError('Z must be non-negative')
+
+ # Linearly interpolate
+ mBH = (1 - zfrac) * self.zero_BH_mass(MZAMS) + zfrac*self.solar_BH_mass(MZAMS)
+
+ return mBH
+
+
+ def prob_BH_high(self, Z):
+ """
+ Probability of BH formation for 60 < Mzams < 120 Msun
+ """
+ # Solar metallicity (what Sam is using)
+ Zsun = 0.014
+
+ Z = np.atleast_1d(Z)
+ # Convert from [Fe/H] to Z
+ zfrac = Z / Zsun
+
+ # super-solar Z gives identical results as solar Z
+ zfrac[zfrac > 1] = 1.0
+ zfrac[zfrac < 0] = np.nan
+
+ pBH = 1 - 0.8*zfrac
+
+ return pBH
+
+
+ def generate_death_mass(self, mass_array, metallicity_array):
+ """
+ The top-level function that assigns the remnant type
+ and mass based on the stellar initial mass.
+
+ Parameters
+ ----------
+ mass_array: array of floats
+ Array of initial stellar masses. Units are
+ M_sun.
+ metallicity_array: array of floats
+ Array of metallicities in terms of [Fe/H]
+ Notes
+ ------
+ The output typecode tells what compact object formed:
+
+ * WD: typecode = 101
+ * NS: typecode = 102
+ * BH: typecode = 103
+ A typecode of value -1 means you're outside the range of
+ validity for applying the ifmr formula.
+ A remnant mass of -99 means you're outside the range of
+ validity for applying the ifmr formula.
+ Range of validity: MZAMS > 0.5
+
+ Returns
+ -------
+ output_arr: 2-element array
+ output_array[0] contains the remnant mass, and
+ output_array[1] contains the typecode
+ """
+ #output_array[0] holds the remnant mass
+ #output_array[1] holds the remnant type
+ mass_array = np.atleast_1d(mass_array)
+ metallicity_array = np.atleast_1d(metallicity_array)
+
+ output_array = np.zeros((2, len(mass_array)))
+
+ codes = {'WD': 101, 'NS': 102, 'BH': 103}
+
+
+ # Array to store the remnant masses
+ # rem_mass_array = np.zeros(len(mass_array))
+
+ # Convert from [Fe/H] to Z
+ # FIXME: if have Fe/H = nan that makes Z = 0. Is that the behavior we want?
+ Z_array = np.zeros((len(metallicity_array)))
+ metal_idx = ~np.isnan(metallicity_array)
+ Z_array[metal_idx] = self.get_Z(metallicity_array[metal_idx])
+
+ # Random array to get probabilities for what type of object will form
+ random_array = self.rng.integers(1, 101, size=len(mass_array))
+
+ id_array0 = (mass_array < 0.5) | (mass_array >= 120)
+ output_array[0][id_array0] = -99
+ output_array[1][id_array0] = -1
+
+ id_array1 = (mass_array >= 0.5) & (mass_array < 9)
+ output_array[0][id_array1] = self.Kalirai_mass(mass_array[id_array1])
+ output_array[1][id_array1]= codes['WD']
+
+ id_array2 = (mass_array >= 9) & (mass_array < 15)
+ output_array[0][id_array2] = self.NS_mass(mass_array[id_array2])
+ output_array[1][id_array2] = codes['NS']
+
+ id_array3_BH = (mass_array >= 15) & (mass_array < 21.8) & (random_array > 75)
+ output_array[0][id_array3_BH] = self.BH_mass_low(mass_array[id_array3_BH])
+ output_array[1][id_array3_BH] = codes['BH']
+
+ id_array3_NS = (mass_array >= 15) & (mass_array < 21.8) & (random_array <= 75)
+ output_array[0][id_array3_NS] = self.NS_mass(mass_array[id_array3_NS])
+ output_array[1][id_array3_NS] = codes['NS']
+
+ id_array4 = (mass_array >= 21.8) & (mass_array < 25.2)
+ output_array[0][id_array4] = self.BH_mass_low(mass_array[id_array4])
+ output_array[1][id_array4] = codes['BH']
+
+ id_array5 = (mass_array >= 25.2) & (mass_array < 27.4)
+ output_array[0][id_array5] = self.NS_mass(mass_array[id_array5])
+ output_array[1][id_array5] = codes['NS']
+
+ id_array6 = (mass_array >= 27.4) & (mass_array < 39.6)
+ output_array[0][id_array6] = self.BH_mass_low(mass_array[id_array6])
+ output_array[1][id_array6] = codes['BH']
+
+ id_array7 = (mass_array >= 39.6) & (mass_array < 60)
+ output_array[0][id_array7] = self.BH_mass_high(mass_array[id_array7],
+ Z_array[id_array7])
+ output_array[1][id_array7] = codes['BH']
+
+ BH_or_NS = np.where((mass_array >= 60) & (mass_array < 120))[0]
+ pBH = self.prob_BH_high(Z_array[BH_or_NS])
+ is_BH = random_array[BH_or_NS] > 100 * pBH
+
+ id_array8 = BH_or_NS[is_BH]
+ id_array9 = BH_or_NS[~is_BH]
+
+ # Assign BH masses and types for BH-forming indices
+ output_array[0][id_array8] = self.BH_mass_high(mass_array[id_array8], Z_array[id_array8])
+ output_array[1][id_array8] = codes['BH']
+
+ # Assign NS masses and types for NS-forming indices
+ output_array[0][id_array9] = self.NS_mass(mass_array[id_array9])
+ output_array[1][id_array9] = codes['NS']
+
+ #this is where sam's janky fix for unphysical BH massses goes
+ #any BH with mass less then 3 M_sun is reassigned as a NS
+ #and given a mass from the NS mass dist instead
+ id_array10 = (output_array[1] == codes['BH']) & (output_array[0] < 3.0)
+ output_array[0][id_array10] = self.NS_mass(mass_array[id_array10])
+ output_array[1][id_array10] = codes['NS']
+
+ return output_array
diff --git a/spisea/imf/imf.py b/spisea/imf/imf.py
index b5bb7572..df6a8887 100755
--- a/spisea/imf/imf.py
+++ b/spisea/imf/imf.py
@@ -4,7 +4,7 @@
# Original code was taken from libimf package written by Jan Pflamm-Altenburg
# and has been modified only marginally. The libimf code was licensed under
# a GNU General Public License.
-#
+#
# When I use this code, I should cite Pflamm-Altenburg & Kroupa 2006
#
# Unfortunately, the code was almost completely un-commented, so all
@@ -22,47 +22,82 @@
class IMF(object):
"""
- The IMF base class. The mass sampling and multiplicity
- implementation is here.
-
- Notes
- -----
- Code author: J. Lu.
-
- Original code was taken from libimf package written by Jan Pflamm-Altenburg
- (`Pflamm-Altenburg & Kroupa 2006 `_)
- and has been modified only marginally, though more convinient and general purpose
- functions have been added. The libimf code was licensed under
- a GNU General Public License.
+ The IMF base class. The mass sampling and multiplicity
+ implementation is here.
Parameters
----------
massLimits : 2 element array; optional
- Define the minimum and maximum stellar masses in the IMF, in
- solar masses. First element is taken as the min, second element
+ Define the minimum and maximum stellar masses in the IMF, in
+ solar masses. First element is taken as the min, second element
the max (e.g. `massLimits` = [min_mass, max_mass]).
multiplicity : Multiplicity object or None
- If None, no multiplicity is assumed. Otherwise, use
+ If None, no multiplicity is assumed. Otherwise, use
multiplicity object to create multiple star systems.
+
+ seed : int, optional
+ Seed for the random generator numpy.random.default_rng(seed).
+ All random functions in the class will use this generator, by default None.
+ Behavior:
+ ::
+
+ imf = IMF(..., seed=42)
+ result1 = imf.generate_cluster()
+ result2 = imf.generate_cluster()
+ imf = IMF(..., seed=42)
+ result3 = imf.generate_cluster()
+ result4 = imf.generate_cluster()
+
+ result1==result3, result2==result4, but result1≠result2, result3≠result4.
+ This is the same behavior as
+ ::
+
+ rng = np.random.default_rng(seed=42)
+ result1 = rng.random(1)
+ result2 = rng.random(1)
+ rng = np.random.default_rng(seed=42)
+ result3 = rng.random(1)
+ result4 = rng.random(1)
+
+ If identical output is desired over each run, the random state can be reset before running the function, e.g.
+ ::
+
+ imf.rng = np.random.default_rng(seed=42)
+ result1 = imf.generate_cluster()
+ imf.rng = np.random.default_rng(seed=42)
+ result2 = imf.generate_cluster()
+
+ In this case, result1==result2
+
+ Notes
+ -----
+ Code author: J. Lu.
+
+ Original code was taken from libimf package written by Jan Pflamm-Altenburg
+ (`Pflamm-Altenburg & Kroupa 2006 `_)
+ and has been modified only marginally, though more convinient and general purpose
+ functions have been added. The libimf code was licensed under
+ a GNU General Public License.
+
"""
- def __init__(self, massLimits=np.array([0.1,150]), multiplicity=None):
+ def __init__(self, massLimits=np.array([0.1,150]), multiplicity=None, seed=None):
self._multi_props = multiplicity
- self._mass_limits = massLimits
+ self._mass_limits = np.atleast_1d(massLimits)
+ self.rng = np.random.default_rng(seed)
- if multiplicity == None:
- self.make_multiples = False
- else:
+ if multiplicity:
self.make_multiples = True
-
+ else:
+ self.make_multiples = False
+
return
-
- def generate_cluster(self, totalMass, seed=None):
+ def generate_cluster(self, totalMass):
"""
Generate a cluster of stellar systems with the specified IMF.
-
+
Randomly sample from an IMF with specified mass
limits until the desired total mass is reached. The maximum
stellar mass is not allowed to exceed the total cluster mass.
@@ -79,24 +114,23 @@ def generate_cluster(self, totalMass, seed=None):
totalMass : float
The total mass of the cluster (including companions) in solar masses.
- seed: int
- If set to non-None, all random sampling will be seeded with the
- specified seed, forcing identical output.
- Default None
-
Returns
-------
masses : numpy float array
- List of primary star masses.
+ Array of primary star masses.
isMultiple : numpy boolean array
- List of booleans with True for each primary star that is in a multiple
+ Array of booleans with True for each primary star that is in a multiple
system and False for each single star.
- companionMasses : numpy float array
- List of
-
+ companionMasses : numpy masked array
+ Masked array of companion masses. Each row corresponds to a primary star, and each column corresponds to a companion. The mask is True for entries that are not valid companions (e.g. for single stars or for companions that are below the minimum mass limit).
+
+ systemMasses : numpy float array
+ Array of total system masses (primary + companions) for each primary star.
+
"""
+ initial_mass_limit = self._mass_limits[-1]
if (self._mass_limits[-1] > totalMass):
log.info('sample_imf: Setting maximum allowed mass to %d' %
@@ -113,7 +147,8 @@ def generate_cluster(self, totalMass, seed=None):
# Generate output arrays.
masses = np.array([], dtype=float)
isMultiple = np.array([], dtype=bool)
- compMasses = np.array([], dtype=np.object)
+ # compMasses = {} # Hashmap for index -> compMasses for faster lookup
+ compMasses = []
systemMasses = np.array([], dtype=float)
# Loop through and add stars to the cluster until we get to
@@ -121,51 +156,45 @@ def generate_cluster(self, totalMass, seed=None):
totalMassTally = 0
loopCnt = 0
- # Set the random seed, if desired
- if seed:
- np.random.seed(seed=seed)
-
+ # start_while = time.time()
while totalMassTally < totalMass:
# Generate a random number array.
- uniX = np.random.rand(int(newStarCount))
-
+ uniX = self.rng.random(int(newStarCount))
# Convert into the IMF from the inverted CDF
newMasses = self.dice_star_cl(uniX)
-
+
# Testing for Nans produced in masses
test = np.isnan(newMasses)
if np.sum(test) > 0:
raise ValueError('Nan detected in cluster mass')
-
+
# Dealing with multiplicity
- if self._multi_props != None:
- newCompMasses = np.empty((len(newMasses),), dtype=np.object)
- newCompMasses.fill([])
-
+ if self._multi_props:
+ # newCompMasses = np.empty((len(newMasses),), dtype=object)
+ # newCompMasses.fill([])
# Determine the multiplicity of every star
MF = self._multi_props.multiplicity_fraction(newMasses)
CSF = self._multi_props.companion_star_fraction(newMasses)
-
- newIsMultiple = np.random.rand(int(newStarCount)) < MF
- # Copy over the primary masses. Eventually add the companions.
- newSystemMasses = newMasses.copy()
+ newIsMultiple = self.rng.random(int(newStarCount)) < MF
# Function to calculate multiple systems more efficiently
- newCompMasses, newSystemMasses, newIsMultiple = self.calc_multi(newMasses, newCompMasses,
- newSystemMasses, newIsMultiple,
- CSF, MF)
-
+ # start_calc = time.time()
+ newCompMasses, newSystemMasses, newIsMultiple = self.calc_multi(newMasses, newIsMultiple, CSF, MF)
+ # end_calc = time.time()
+ # print('Time taken for calc_multi: ', end_calc - start_calc)
newTotalMassTally = newSystemMasses.sum()
isMultiple = np.append(isMultiple, newIsMultiple)
systemMasses = np.append(systemMasses, newSystemMasses)
- compMasses = np.append(compMasses, newCompMasses)
+ compMasses.append(newCompMasses)
+
else:
newTotalMassTally = newMasses.sum()
-
+ # end_while = time.time()
+ # print('Time taken for while loop: ', end_while - start_while)
# Append to our primary masses array
masses = np.append(masses, newMasses)
-
+
if (loopCnt >= 0):
log.info('sample_imf: Loop %d added %.2e Msun to previous total of %.2e Msun' %
(loopCnt, newTotalMassTally, totalMassTally))
@@ -173,9 +202,28 @@ def generate_cluster(self, totalMass, seed=None):
totalMassTally += newTotalMassTally
newStarCount = mean_number * 0.1 # increase by 20% each pass
loopCnt += 1
-
+
# Make a running sum of the system masses
if self._multi_props:
+ # Concatenate the companion masses
+ if len(compMasses) > 1:
+ max_cols = max(compMass.shape[1] for compMass in compMasses)
+
+ # Pad each array to have the same number of columns
+ padded_arrays = [
+ np.ma.masked_all((compMass.shape[0], max_cols)) for compMass in compMasses
+ ]
+
+ for i, compMass in enumerate(compMasses):
+ padded_arrays[i][:, :compMass.shape[1]] = compMass
+
+ # Vertically stack the padded arrays
+ compMasses = np.ma.vstack(padded_arrays)
+
+ else:
+ compMasses = compMasses[0]
+
+ # Make a running sum of the system masses
massCumSum = systemMasses.cumsum()
else:
massCumSum = masses.cumsum()
@@ -194,78 +242,58 @@ def generate_cluster(self, totalMass, seed=None):
isMultiple = np.zeros(len(masses), dtype=bool)
systemMasses = masses
+ self._mass_limits[-1] = initial_mass_limit
+
return (masses, isMultiple, compMasses, systemMasses)
-
- def calc_multi(self, newMasses, compMasses, newSystemMasses, newIsMultiple, CSF, MF):
+
+ def calc_multi(self, newMasses, newIsMultiple, CSF, MF):
"""
Helper function to calculate multiples more efficiently.
We will use array operations as much as possible
"""
- # Identify multiple systems, calculate number of companions for
- # each
- idx = np.where(newIsMultiple == True)[0]
- n_comp_arr = 1 + np.random.poisson((CSF[idx] / MF[idx]) - 1)
- if self._multi_props.companion_max == True:
- too_many = np.where(n_comp_arr > self._multi_props.CSF_max)[0]
- n_comp_arr[too_many] = self._multi_props.CSF_max
- primary = newMasses[idx]
+ # Copy over the primary masses. Eventually add the companions.
+ newSystemMasses = newMasses.copy()
+
+ # Identify multiple systems, calculate number of companions for each
+ multiple_idx = np.where(newIsMultiple)[0]
+ comp_nums = 1 + self.rng.poisson((CSF[multiple_idx] / MF[multiple_idx]) - 1)
+ if self._multi_props.companion_max:
+ too_many = np.where(comp_nums > self._multi_props.CSF_max)[0]
+ comp_nums[too_many] = self._multi_props.CSF_max
+ primary = newMasses[multiple_idx]
# We will deal with each number of multiple system independently. This is
# so we can put in uniform arrays in _multi_props.random_q.
- num = np.unique(n_comp_arr)
- for ii in num:
- tmp = np.where(n_comp_arr == ii)[0]
-
- if ii == 1:
- # Single companion case
- q_values = self._multi_props.random_q(np.random.rand(len(tmp)))
-
- # Calculate mass of companion
- m_comp = q_values * primary[tmp]
-
- # Only keep companions that are more than the minimum mass. Update
- # compMasses, newSystemMasses, and newIsMultiple appropriately
- good = np.where(m_comp >= self._mass_limits[0])[0]
- for jj in good:
- compMasses[idx[tmp[jj]]] = np.transpose([m_comp[jj]])
- newSystemMasses[idx[tmp[jj]]] += compMasses[idx[tmp[jj]]]
-
- bad = np.where(m_comp < self._mass_limits[0])[0]
- newIsMultiple[idx[tmp[bad]]] = False
- else:
- # Multple companion case
- q_values = self._multi_props.random_q(np.random.rand(len(tmp), ii))
-
- # Calculate masses of companions
- m_comp = np.multiply(q_values, np.transpose([primary[tmp]]))
+ comp_unique = np.unique(comp_nums)
+ comp_indices = [np.where(comp_nums == i)[0] for i in comp_unique]
+ compMasses = np.zeros((len(newMasses), max(comp_unique)))
- # Update compMasses, newSystemMasses, and newIsMultiple appropriately
- for jj in range(len(tmp)):
- m_comp_tmp = m_comp[jj]
- compMasses[idx[tmp[jj]]] = m_comp_tmp[m_comp_tmp >= self._mass_limits[0]]
- newSystemMasses[idx[tmp[jj]]] += compMasses[idx[tmp[jj]]].sum()
+ for comp_num, comp_index in zip(comp_unique, comp_indices):
+ # Calculate masses of companions
+ q_values = self._multi_props.random_q(self.rng.random((len(comp_index), comp_num)))
+ m_comp = np.multiply(q_values, np.transpose([primary[comp_index]]))
+ compMasses[multiple_idx[comp_index], :comp_num] = m_comp
- # Double check for the case when we drop all companions.
- # This happens a lot near the minimum allowed mass.
- if len(compMasses[idx[tmp[jj]]]) == 0:
- newIsMultiple[idx[tmp[jj]]] = False
+ # Mask out companions that are less than the minimum mass
+ compMasses = np.ma.MaskedArray(compMasses, mask=compMasses < self._mass_limits[0])
+ newSystemMasses[multiple_idx] += compMasses[multiple_idx].sum(axis=1)
+ newIsMultiple = np.any(~compMasses.mask, axis=1)
return compMasses, newSystemMasses, newIsMultiple
-
-
+
class IMF_broken_powerlaw(IMF):
"""
Initialize a multi-part power-law with N parts. Each part of the
power-law is described with a probability density function:
- P(m) \propto m ** power[n]
+ P(m) ∝ m ** power[n]
for mass_limits[n] < m <= mass_limits[n+1].
Parameters
----------
mass_limits : numpy array
- Array of length (N + 1) with lower and upper limits of
+ Array of length (N + 1) with lower and upper limits of
the power-law segments.
powers : numpy array
@@ -273,28 +301,23 @@ class IMF_broken_powerlaw(IMF):
power-law segment.
multiplicity : Multiplicity object or None
- If None, no multiplicity is assumed. Otherwise, use
+ If None, no multiplicity is assumed. Otherwise, use
multiplicity object to create multiple star systems.
"""
- def __init__(self, mass_limits, powers, multiplicity=None):
+ def __init__(self, mass_limits, powers, multiplicity=None, seed=None):
+ super().__init__(massLimits=mass_limits, multiplicity=multiplicity, seed=seed)
+ powers = np.atleast_1d(powers)
if len(mass_limits) != len(powers) + 1:
msg = 'Incorrect specification of multi-part powerlaw.\n'
msg += ' len(massLimts) != len(powers)+1\n'
- msg += ' len(massLimits) = \n' + len(massLimits)
- msg += ' len(powers) = \n' + len(powers)
-
- raise RuntimeException(msg)
+ msg += ' len(massLimits) = \n' + str(len(mass_limits))
+ msg += ' len(powers) = \n' + str(len(powers))
- self._mass_limits = np.atleast_1d(mass_limits)
+ raise RuntimeError(msg)
+ mass_limits = np.atleast_1d(mass_limits)
self._m_limits_low = mass_limits[0:-1]
self._m_limits_high = mass_limits[1:]
- self._powers = powers
- self._multi_props = multiplicity
-
- if multiplicity == None:
- self.make_multiples = False
- else:
- self.make_multiples = True
+ self._powers = np.atleast_1d(powers)
# Calculate the coeffs to make the function continuous
nterms = len(self._powers)
@@ -323,7 +346,7 @@ def xi(self, m):
xi - probability of measuring that mass.
"""
returnFloat = type(m) == float
-
+
m = np.atleast_1d(m)
# Temporary arrays
@@ -340,7 +363,7 @@ def xi(self, m):
# Maybe we are all done?
if len(idx) == 0:
break
-
+
m_tmp = m[idx]
aux_tmp = aux[idx]
@@ -353,7 +376,7 @@ def xi(self, m):
z *= delta(m - self._m_limits_high[i])
xi = self.k * z * y
-
+
if returnFloat:
return xi[0]
else:
@@ -381,7 +404,7 @@ def m_xi(self, m):
# Maybe we are all done?
if len(idx) == 0:
break
-
+
m_tmp = m[idx]
aux_tmp = aux[idx]
@@ -394,7 +417,7 @@ def m_xi(self, m):
z *= delta(m - self._m_limits_high[i])
mxi = self.k * z * y
-
+
if returnFloat:
return mxi[0]
else:
@@ -402,23 +425,23 @@ def m_xi(self, m):
def getProbabilityBetween(self, massLo, massHi):
- """Return the integrated probability between some low and high
+ """Return the integrated probability between some low and high
mass value.
"""
return self.int_xi(massLo, massHi)
def int_xi(self, massLo, massHi):
- """Return the integrated probability between some low and high
+ """Return the integrated probability between some low and high
mass value.
"""
return self.prim_xi(massHi) - self.prim_xi(massLo)
-
+
def getMassBetween(self, massLo, massHi):
- """Return the integrated mass between some low and high
+ """Return the integrated mass between some low and high
mass value.
"""
return self.int_mxi(massLo, massHi)
-
+
def int_mxi(self, massLo, massHi):
"""Return the integrated total mass between some low and high stellar
mass value. Be sure to normalize the IMF instance beforehand.
@@ -440,7 +463,7 @@ def prim_xi(self, a):
t3 = prim_power(self._m_limits_low, self._powers)
y1 = (t1 * (t2 - t3)).sum()
- t1 = gamma_closed(a[i], self._m_limits_low, self._m_limits_high)
+ t1 = gamma_closed(a[i], self._m_limits_low, self._m_limits_high)
t1 *= self.coeffs
t2 = prim_power(a[i], self._powers)
t3 = prim_power(self._m_limits_low, self._powers)
@@ -458,7 +481,7 @@ def prim_mxi(self, a):
Helper function
"""
returnFloat = type(a) == float
-
+
a = np.atleast_1d(a)
val = np.zeros(len(a), dtype=float)
@@ -467,8 +490,8 @@ def prim_mxi(self, a):
t2 = prim_power(self._m_limits_high, self._powers+1)
t3 = prim_power(self._m_limits_low, self._powers+1)
y1 = (t1 * (t2 - t3)).sum()
-
- t1 = gamma_closed(a[i], self._m_limits_low, self._m_limits_high)
+
+ t1 = gamma_closed(a[i], self._m_limits_low, self._m_limits_high)
t1 *= self.coeffs
t2 = prim_power(a[i], self._powers+1)
t3 = prim_power(self._m_limits_low, self._powers+1)
@@ -488,7 +511,7 @@ def normalize(self, Mcl, Mmin=None, Mmax=None):
"""
self.k = 1.0
self.Mcl = Mcl
-
+
if Mmax == None:
Mmax = self._m_limits_high[-1]
@@ -498,7 +521,7 @@ def normalize(self, Mcl, Mmin=None, Mmax=None):
if Mmax > Mcl:
Mmax = Mcl
-
+
if Mmax > self._m_limits_high[-1]:
Mmax = self._m_limits_high[-1]
@@ -507,7 +530,7 @@ def normalize(self, Mcl, Mmin=None, Mmax=None):
self.norm_Mmin = Mmin
self.norm_Mmax = Mmax
-
+
self.k = Mcl / self.int_mxi(self.norm_Mmin, self.norm_Mmax)
self.lamda = self.int_xi_cl(self._m_limits_low[0], self._mass_limits)
@@ -526,7 +549,7 @@ def norm_cl_wk04(self, Mcl, Mmax=None, Mmin=None):
if Mmax > Mcl:
Mmax = Mcl
-
+
if Mmax > self._m_limits_high[-1]:
Mmax = self._m_limits_high[-1]
@@ -594,21 +617,21 @@ def dice_star_cl(self, r):
returnFloat = type(r) == float
r = np.atleast_1d(r) # Make sure it is an array
- x = r * self.lamda[-1]
- y = np.zeros(len(r), dtype=float)
- z = np.ones(len(r), dtype=float)
+ x = r * self.lamda[-1]
+ y = np.zeros_like(r)
+ z = np.ones_like(r)
# Loop through the different parts of the power law.
for i in range(self.nterms): #-----For i = 0 --> n, where n is the number of intervals
aux = x - self.lamda[i] #---Should this be i - 1?
-
+
# Only continue for those entries that are in later segments
- idx = np.where(aux >= 0)[0]
+ idx = aux >= 0
# Maybe we are all done?
- if len(idx) == 0:
+ if sum(idx) == 0:
break
-
+
x_tmp = x[idx]
aux_tmp = aux[idx]
@@ -691,7 +714,7 @@ def __init__(self, multiplicity=None):
multiplicity=multiplicity)
##################################################
-#
+#
# Generic functions -- see if we can move these up.
#
##################################################
@@ -711,11 +734,11 @@ def prim_power(m, power):
power = np.repeat(power, len(m))
z = 1.0 + power
- val = (m**z) / z
-
- val[power == -1] = np.log(m[power == -1])
+ val = np.empty_like(m)
+ valid_idx = power != -1
+ val[valid_idx] = (m[valid_idx]**z[valid_idx]) / z[valid_idx]
+ val[~valid_idx] = np.log(m[~valid_idx])
-
if returnFloat:
return val[0]
else:
@@ -723,7 +746,7 @@ def prim_power(m, power):
def inv_prim_power(x, power):
"""
- returns ((1+power) * x)**(1.0 / (1 + power)) and handles the case
+ returns ((1+power) * x)**(1.0 / (1 + power)) and handles the case
when power == -1.
"""
returnFloat = (type(x) == float) and (type(power) == float)
@@ -737,22 +760,19 @@ def inv_prim_power(x, power):
power = np.repeat(power, len(x))
if x.shape != power.shape:
- pdb.set_trace()
-
+ raise ValueError('spisea.imf.inv_prim_power: Dimension mismatch, x and power must have the same shape')
+
z = 1.0 + power
- val = (z * x)**(1.0 / z)
-
- #--------------BUG CHECK---------------------#
- # This line doesn't make sense if x is an N-element array and
- # power is just a 1-element array, which it appears to be for
- # imf.generate_cluster
- val[power == -1] = np.exp(x[power == -1])
- #-----------------------------------------------#
+ val = np.empty_like(x)
+ valid_idx = power != -1
+ val[valid_idx] = (z[valid_idx] * x[valid_idx])**(1.0 / z[valid_idx])
+ val[~valid_idx] = np.exp(x[~valid_idx])
+
if returnFloat:
return val[0]
else:
return val
-
+
def log_normal(m, mean_logm, sigma_logm):
returnFloat = (type(m) == float) and (type(mean_logm) == float) and \
@@ -764,7 +784,7 @@ def log_normal(m, mean_logm, sigma_logm):
z = np.log10(m) - mean_logm
val = np.exp(-z**2 / (2.0 * sigma_logm**2)) / m
-
+
if returnFloat:
return val[0]
else:
@@ -780,7 +800,7 @@ def prim_log_normal(m, mean_logm, sigma_logm):
mu = (np.log10(m) - mean_logm) / (1.4142135623731 * sigma_logm)
val = 2.88586244942136 * sigma_logm * error(mu)
-
+
if returnFloat:
return val[0]
else:
@@ -793,10 +813,10 @@ def inv_prim_log_normal(x, mean_logm, sigma_logm):
m = np.atleast_1d(m)
mean_logm = np.atleat_1d(mean_logm)
sigma_logm = np.atleat_1d(sigma_logm)
-
+
mu = inv_error(0.346516861952484 * x / sigma_logm)
val = 10.0**(1.4142135623731 * sigma_logm * mu + mean_logm)
-
+
if returnFloat:
return val[0]
else:
@@ -812,7 +832,7 @@ def mlog_normal(x, mean_logm, sigma_logm):
z = np.log10(m) - mean_logm
val = np.exp(-z**2 / (2.0 * sigma_logm**2))
-
+
if returnFloat:
return val[0]
else:
@@ -833,12 +853,12 @@ def prim_mlog_normal(x, mean_logm, sigma_logm):
val = error(eta)
val *= 2.88586244942136 * sigma_logm * np.exp(2.30258509299405 * t1)
-
+
if returnFloat:
return val[0]
else:
return val
-
+
def theta_closed(x):
"""
@@ -888,7 +908,7 @@ def delta(x):
def gamma_closed(m, left, right):
"""
-
+
"""
return theta_closed(m - left) * theta_closed(right - m)
@@ -896,7 +916,7 @@ def gamma_closed(m, left, right):
def error(x):
x2 = x**2
ax2 = 0.140012288686666 * x2
-
+
val = np.sqrt(1.0 - np.exp(-x2*(1.27323954473516+ax2)/(1+ax2)))
if x >=0:
@@ -909,11 +929,10 @@ def inv_error(x):
lnx2 = np.log(1.0 - x2)
aux = 4.54688497944829 + (lnx2 / 2.0)
y = -aux + np.sqrt(aux**2 - (lnx2 / 0.140012288686666))
-
+
val = np.sqrt(y)
if x>=0:
return y
else:
return -y
-
diff --git a/spisea/imf/multiplicity.py b/spisea/imf/multiplicity.py
index 0d28ced6..685d5917 100755
--- a/spisea/imf/multiplicity.py
+++ b/spisea/imf/multiplicity.py
@@ -1,6 +1,7 @@
import numpy as np
import astropy.modeling
from random import choice
+from scipy.stats import truncnorm
defaultMF_amp = 0.44
defaultMF_power = 0.51
@@ -249,29 +250,34 @@ def log_semimajoraxis(self, mass):
Parameters
----------
- mass : float
- Mass of primary star
+ mass : array-like
+ Mass array of primary star
Returns
-------
- log_semimajoraxis : float
+ log_semimajoraxis : array-like
Log of the semimajor axis/separation between the stars in units of AU
"""
a_mean_func = astropy.modeling.powerlaws.BrokenPowerLaw1D(amplitude=self.a_amp, x_break=self.a_break, alpha_1=self.a_slope1, alpha_2=self.a_slope2)
log_a_mean = np.log10(a_mean_func(mass)) #mean log(a)
log_a_std_func = astropy.modeling.models.Linear1D(slope=self.a_std_slope, intercept=self.a_std_intercept)
log_a_std = log_a_std_func(np.log10(mass)) #sigma_log(a)
- if mass >= 2.9:
- log_a_std = log_a_std_func(np.log10(2.9)) #sigma_log(a)
- if log_a_std < 0.1:
- log_a_std = 0.1
-
- log_semimajoraxis = np.random.normal(log_a_mean, log_a_std)
- while 10**log_semimajoraxis > 2000 or log_semimajoraxis < -2: #AU
- log_semimajoraxis = np.random.normal(log_a_mean, log_a_std)
-
+
+ large_mass_idx = mass >= 2.9
+ log_a_std[large_mass_idx] = log_a_std_func(np.log10(2.9)) #sigma_log(a)
+ log_a_std = np.clip(log_a_std, 0.1, None)
+
+ # Trunc normal distribution between -2 and 2000 AU
+ log_a_lower = np.log10(0.01)
+ log_a_upper = np.log10(2000)
+
+ # Convert bounds to standard normal space
+ a_lower_std = (log_a_lower - log_a_mean) / log_a_std
+ a_upper_std = (log_a_upper - log_a_mean) / log_a_std
+
+ log_semimajoraxis = truncnorm.rvs(a_lower_std, a_upper_std, loc=log_a_mean, scale=log_a_std)
return log_semimajoraxis
-
+
def random_e(self, x):
"""
Generate random eccentricity from the inverse of the CDF where the PDF is f(e) = 2e from Duchene and Kraus 2013
diff --git a/spisea/imf/tests/__init__.py b/spisea/imf/tests/__init__.py
deleted file mode 100755
index 8b137891..00000000
--- a/spisea/imf/tests/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/spisea/reddening.py b/spisea/reddening.py
index 16cc6be9..0d25e5ae 100755
--- a/spisea/reddening.py
+++ b/spisea/reddening.py
@@ -7,8 +7,11 @@
import pylab as py
import numpy as np
from scipy import interpolate
+from astropy.table import Table
import pysynphot
from scipy.linalg import solve_banded
+import ast
+import os
import pdb
@@ -21,30 +24,47 @@ def get_red_law(str):
----------
str: str
Reddening law name and additional params (comma-separated).
- Name must match
+ Name must match
"""
# Parse the string, extracting redlaw name and other params
tmp = str.split(',')
name = tmp[0]
- params = ()
- if len(tmp) > 1:
- for ii in range(len(tmp) - 1):
- params = params + (float(tmp[ii+1]),)
+
+ # How we split this up changes for the broken power law EL
+ # versus the other ELs (since we have arrays for broken power law EL)
+ if name == 'broken_pl':
+ # resplit the str, given that arrays are in it
+ tmp = str.split('[')
+ tmp2 = str.split(']')
+ param1 = ast.literal_eval('[{0}'.format(tmp[1][:-1])) # Funny formatting to remove ,
+ param2 = ast.literal_eval('{0}]'.format(tmp2[1][1:])) # Funny formatting to remove ,
+ param3 = float(str.split(',')[-1])
+
+ params = (param1, param2, param3)
+ else:
+ params = ()
+ if len(tmp) > 1:
+ for ii in range(len(tmp) - 1):
+ params = params + (float(tmp[ii+1]),)
# Define dictionary connecting redlaw names to the redlaw classes
- name_dict = {'N09':RedLawNishiyama09,
+ name_dict = {'pl': RedLawPowerLaw,
+ 'broken_pl': RedLawBrokenPowerLaw,
+ 'RL85': RedLawRiekeLebofsky,
'C89': RedLawCardelli,
+ 'I05': RedLawIndebetouw05,
'RZ07': RedLawRomanZuniga07,
- 'RL85': RedLawRiekeLebofsky,
+ 'F09': RedLawFitzpatrick09,
+ 'N09':RedLawNishiyama09,
+ 'S10': RedLawSchoedel10,
+ 'F11': RedLawFritz11,
'D16': RedLawDamineli16,
'DM16': RedLawDeMarchi16,
- 'F09': RedLawFitzpatrick09,
'S16': RedLawSchlafly16,
- 'pl': RedLawPowerLaw,
- 'F11': RedLawFritz11,
- 'H18': RedLawHosek18,
'H18b': RedLawHosek18b,
- 'NL18': RedLawNoguerasLara18}
+ 'NL18': RedLawNoguerasLara18,
+ 'NL20': RedLawNoguerasLara20
+ }
# Make reddening law object, including params if necessary.
# This is not great coding, but I really strugged to generalize this...
@@ -66,15 +86,28 @@ def get_red_law(str):
class RedLawNishiyama09(pysynphot.reddening.CustomRedLaw):
"""
- Defines extinction law from `Nishiyama et al. 2009
- `_
- toward the Galactic Center. This is the default extinction law.
- The law is defined between 0.5 -- 8 microns.
+ The extinction law towards the Galactic Center
+ from `Nishiyama et al. 2009
+ `_,
+ combined with the Av / AKs value from `Nishiyama et al. 2008
+ `_.
+ This law is defined between 0.5 - 8.0 microns.
+
+ This law is constructed in 3 segments:
+
+ * 0.5 -- 1.24 microns: a linear interpolation in log(1/lambda) vs log(A/AKs) space
+ between the Av/AKs and AJ/AKs values
+ * 1.25 -- 2.14 microns: a power law with index of 2.0
+ * 2.14 -- 8.0 microns: a spline interpolation between the observed extinction values
+
+ A_lambda / A_Ks = 1 when lambda = 2.14 microns
+
+ This is the default extinction law.
"""
def __init__(self):
# Fetch the extinction curve, pre-interpolate across 3-8 microns
wave = np.arange(0.5, 8.0, 0.001)
-
+
# This will eventually be scaled by AKs when you
# call reddening(). Right now, calc for AKs=1
wave_vals, Alambda_scaled = RedLawNishiyama09._derive_nishiyama09(wave)
@@ -82,7 +115,7 @@ def __init__(self):
# Convert wavelength to angstrom
wave_vals *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave_vals,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave_vals,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='Nishiyama09',
@@ -91,11 +124,14 @@ def __init__(self):
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = min(wave_vals)
self.high_lim = max(wave_vals)
+
+ # Other info
+ self.scale_lambda = 2.14
self.name = 'N09'
-
+
@staticmethod
def _derive_nishiyama09(wavelength):
- """
+ """
Calculate the N09 extinction law as defined in the paper:
a A_lambda/AKs = power law of exponent -2.0 between JHK. Then
use a *linear* interpolation in 1/lambda space to go from J to the V-band observation,
@@ -111,12 +147,15 @@ def _derive_nishiyama09(wavelength):
"""
#-----Define power law extinction law between JHK----#
jhk_idx = np.where( (wavelength >= 1.25) & (wavelength <= 2.14) )
-
+ #jhk_idx = np.where( (wavelength >= 1.25) & (wavelength <= 2.3) )
+
alpha = 2.0
wave_jhk = wavelength[jhk_idx]
+ idx_scale = np.where(abs(wave_jhk - 2.14) == min(abs(wave_jhk - 2.14)) )
A_jhk = wave_jhk**(-1.0*alpha)
A_Ks_jhk = A_jhk / A_jhk[-1]
+ #A_Ks_jhk = A_jhk / A_jhk[idx_scale]
#----Now do a linear interpolation (in log(1/lambda) vs log(A/AKs) space) between 1.25 microns and 0.551 microns---#
jv_idx = np.where( (wavelength < 1.25) & (wavelength > 0.551) )
@@ -133,10 +172,15 @@ def _derive_nishiyama09(wavelength):
long_idx = np.where(wavelength > 2.14)
wave = np.array([0.551, 1.25, 1.63, 2.14, 3.545, 4.442, 5.675, 7.760])
A_AKs = np.array([16.13, 3.02, 1.73, 1.00, 0.500, 0.390, 0.360, 0.430])
-
- spline_interp = interpolate.splrep(wave, A_AKs, k=3, s=0)
+ interp_idx = np.where(wave > 2.1)
+ #long_idx = np.where(wavelength > 2.3)
+ #wave = np.array([0.551, 1.25, 1.63, 2.14, wave_jhk[-1], 3.545, 4.442, 5.675, 7.760])
+ #A_AKs = np.array([16.13, 3.02, 1.73, 1.00, A_Ks_jhk[-1], 0.500, 0.390, 0.360, 0.430])
+ #interp_idx = np.where(wave > 2.2)
+
+ spline_interp = interpolate.splrep(wave[interp_idx], A_AKs[interp_idx], k=3, s=0)
A_AKs_long = interpolate.splev(wavelength[long_idx], spline_interp)
-
+
# Stitch together sections for the final law
wave_vals = np.concatenate((wavelength[jv_idx[0]], wavelength[jhk_idx[0]]))
A_AKs_vjhk = np.concatenate((A_Ks_jv, A_Ks_jhk))
@@ -148,8 +192,8 @@ def _derive_nishiyama09(wavelength):
return wave_vals, A_AKs_final
def Nishiyama09(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -169,7 +213,7 @@ def Nishiyama09(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -185,33 +229,65 @@ def Nishiyama09(self, wavelength, AKs):
A_at_wave = np.array(A_AKs_at_wave) * AKs
return A_at_wave
-
+
+ def plot_Nishiyama09(self):
+ """
+ Plot Nishiayama+09 law vs. the observed measurements
+ from their Table 1.
+ """
+ # Extract the law
+ wave = self.wave # angstroms
+ law = self.obscuration
+
+ # Convert wave to microns
+ wave *= 10**-4
+
+ # Measured extinction values from Nishiyama+09, Table 1
+ wave_obs = np.array([0.551, 1.25, 1.63, 2.14, 3.545, 4.442, 5.675, 7.760])
+ A_AKs = np.array([16.13, 3.02, 1.73, 1.00, 0.500, 0.390, 0.360, 0.430])
+ A_AKs_err = np.array([0.21, 0.04, 0.03, 0.0, 0.01, 0.01, 0.01, 0.01])
+
+ # Make plot
+ py.figure(figsize=(10,10))
+ py.plot(wave, law, 'r-', label='EL Function')
+ py.errorbar(wave_obs, A_AKs, yerr=A_AKs_err, fmt='k.', ms=10,
+ label='Measured')
+ py.xlabel('Wavelength (microns)')
+ py.ylabel(r'Extinction (A$_{\lambda}$)')
+ py.title('Nishiyama+09 EL')
+ py.gca().set_xscale('log')
+ py.gca().set_yscale('log')
+ py.legend()
+ py.savefig('nishiyama09_el.png')
+
+ return
+
class RedLawCardelli(pysynphot.reddening.CustomRedLaw):
- """
- Defines the extinction law from
- `Cardelli et al. 1989 `_.
+ r"""
+ Defines the extinction law from
+ `Cardelli et al. 1989 `_.
The law is defined from 0.3 - 3 microns, and in terms
of :math:`A_{\lambda} / A_{Ks}`, where Ks is 2.174 microns.
Parameters
----------
Rv : float
- Ratio of absolute to selective extinction, :math:`A(V) / E(B-V)`.
+ Ratio of absolute to selective extinction, :math:`A(V) / E(B-V)`.
The standard value for the diffuse ISM is 3.1.
"""
def __init__(self, Rv):
# Fetch the extinction curve, pre-interpolate across 0.3-3 microns
wave = np.arange(0.3, 3.0, 0.001)
-
+
# This will eventually be scaled by AKs when you
- # call reddening(). Produces A_lambda for AKs = 1, which will be
+ # call reddening(). Produces A_lambda for AKs = 1, which will be
# scaled later. Expects wavelength in microns
Alambda_scaled = RedLawCardelli._derive_cardelli(wave, Rv)
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='Cardelli89',
@@ -220,6 +296,9 @@ def __init__(self, Rv):
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = min(wave)
self.high_lim = max(wave)
+
+ # other info
+ self.scale_lambda = 2.174
self.name = 'C89,{0}'.format(Rv)
@staticmethod
@@ -238,7 +317,7 @@ def _derive_cardelli(wavelength, Rv):
if (np.max(x) > 8.0):
print( 'wavelength is shorter than applicable range for Cardelli law')
return None
-
+
# Set up some arrays for coefficients that we will need
a = np.zeros(len(x), dtype=float)
b = np.zeros(len(x), dtype=float)
@@ -287,14 +366,14 @@ def _derive_cardelli(wavelength, Rv):
k_ind = np.where(abs(x-0.46) == min(abs(x-0.46)))
Aks_Av = a[k_ind] + b[k_ind]/Rv # Aks / Av
Av_Aks = 1.0 / Aks_Av # Av / Aks
-
+
output = extinction * Av_Aks # (A(lamb) / Av) * (Av / Aks) = (A(lamb) / Aks)
return output
def Cardelli89(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -314,7 +393,7 @@ def Cardelli89(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -330,18 +409,22 @@ def Cardelli89(self, wavelength, AKs):
A_at_wave = np.array(A_AKs_at_wave) * AKs
return A_at_wave
-
+
class RedLawRomanZuniga07(pysynphot.reddening.CustomRedLaw):
"""
Defines extinction law from `Roman-Zuniga et al. 2007
`_
- for the dense cloud core Barnard 59. It is defined between 1.0 - 8.0
+ for the dense cloud core Barnard 59. The law is a cubic spline fit
+ to the values of A_lambda / A_Ks derived using the color-color
+ diagrams slopes in their Table 1. It is defined between 1.0 - 8.0
microns.
+
+ A_lambda / A_Ks = 1 when lambda = 2.164 microns
"""
def __init__(self):
# Fetch the extinction curve, pre-interpolate across 1-8 microns
wave = np.arange(1.0, 8.0, 0.01)
-
+
# This will eventually be scaled by AKs when you
# call reddening(). Right now, calc for AKs=1
Alambda_scaled = RedLawRomanZuniga07._derive_romanzuniga07(wave)
@@ -349,7 +432,7 @@ def __init__(self):
# Convert wavelength to angstrom
wave *= 10**4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='RomanZuniga07',
@@ -362,11 +445,14 @@ def __init__(self):
@staticmethod
def _derive_romanzuniga07(wavelength):
+ """
+ Measurements taken from C-C column in Table 1 of RZ07
+ """
filters = ['J', 'H', 'Ks', '[3.6]', '[4.5]', '[5.8]', '[8.0]']
wave = np.array([1.240, 1.664, 2.164, 3.545, 4.442, 5.675, 7.760])
A_AKs = np.array([2.299, 1.550, 1.000, 0.618, 0.525, 0.462, 0.455])
A_AKs_err = np.array([0.530, 0.080, 0.000, 0.077, 0.063, 0.055, 0.059])
-
+
# Interpolate over the curve
spline_interp = interpolate.splrep(wave, A_AKs, k=3, s=0)
A_AKs_at_wave = interpolate.splev(wavelength, spline_interp)
@@ -374,8 +460,8 @@ def _derive_romanzuniga07(wavelength):
return A_AKs_at_wave
def RomanZuniga07(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -395,7 +481,7 @@ def RomanZuniga07(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -411,17 +497,48 @@ def RomanZuniga07(self, wavelength, AKs):
A_at_wave = np.array(A_AKs_at_wave) * AKs
return A_at_wave
-
+
+ def plot_RomanZuniga07(self):
+ """
+ Plot law against measured values from Roman-Zuniga+07
+ """
+ wave = self.wave # Angstroms
+ law = self.obscuration
+
+ # Change wavelengths to microns
+ wave *= 10**-4
+
+ # Get the observed values
+ wave_obs = np.array([1.240, 1.664, 2.164, 3.545, 4.442, 5.675, 7.760])
+ A_AKs = np.array([2.299, 1.550, 1.000, 0.618, 0.525, 0.462, 0.455])
+ A_AKs_err = np.array([0.530, 0.080, 0.000, 0.077, 0.063, 0.055, 0.059])
+
+ # Make plot
+ py.figure(figsize=(10,10))
+ py.plot(wave, law, 'r-', label='EL Function')
+ py.errorbar(wave_obs, A_AKs, yerr=A_AKs_err, fmt='k.', ms=10,
+ label='Measured')
+ py.xlabel('Wavelength (microns)')
+ py.ylabel(r'Extinction (A$_{\lambda}$)')
+ py.title('Roman-Zuniga+07 EL')
+ py.gca().set_xscale('log')
+ py.gca().set_yscale('log')
+ py.legend()
+ py.savefig('romanzuniga07_el.png')
+ return
+
class RedLawRiekeLebofsky(pysynphot.reddening.CustomRedLaw):
"""
Defines the extinction law from `Rieke & Lebofsky 1985
`_
- for the Galactic Center. The law is defined between 1.0 - 13 microns.
+ for the Galactic Center. The law is defined between 1.0 - 5.0 microns.
+
+ A_lambda / A_Ks = 1 when lambda = 2.2 microns
"""
def __init__(self):
- # Fetch the extinction curve, pre-interpolate across 0.365-13 microns
- wave = np.arange(0.365, 13.0, 0.001)
-
+ # Define the wavelength range of the extinction law
+ wave = np.arange(1.0, 5.0, 0.001)
+
# This will eventually be scaled by AKs when you
# call reddening(). Right now, calc for AKs=1
Alambda_scaled = RedLawRiekeLebofsky._derive_RiekeLebofsky(wave)
@@ -429,7 +546,7 @@ def __init__(self):
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='RiekeLebofsky',
@@ -438,27 +555,30 @@ def __init__(self):
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = min(wave)
self.high_lim = max(wave)
+
+ # Other info
+ self.scale_lambda = 2.2
self.name = 'RL85'
@staticmethod
def _derive_RiekeLebofsky(wavelength):
"""
- Calculate the resulting extinction for an array of wavelengths.
- The extinction is normalized with A_Ks.
+ Calculate the resulting extinction for an array of wavelengths,
+ using the values calculated in RL85. Extinction is originally
+ in A_lambda / A_v, but is re-normalized to A_lambda / A_Ks
+
+ Data pulled from Rieke+Lebofsky 1985, Table 3. Note that their
+ Table contains values from 0.3 - 13 microns, but only 1 - 5 microns
+ is measured directly.
- Data pulled from Rieke+Lebofsky 1985, Table 3
+ Wavelengths for filters I - M are from Rieke+89, table 4.
"""
- filters = ['U', 'B', 'V', 'R', 'I', 'J', 'H', 'K', 'L', 'M',
- '[8.0]', '[8.5]', '[9.0]', '[9.5]', '[10.0]', '[10.5]',
+ # Arrays with the values from the paper
+ filters = ['U', 'B', 'V', 'R', 'I', 'J', 'H', 'K', 'L', 'M',
+ '[8.0]', '[8.5]', '[9.0]', '[9.5]', '[10.0]', '[10.5]',
'[11.0]', '[11.5]', '[12.0]', '[12.5]', '[13.0]']
- #wave = np.array([0.365, 0.445, 0.551, 0.658, 0.806, 1.25, 1.635, 2.2,
- # 3.77, 4.68, 4.75, 8.0, 8.5, 9.0, 9.5, 10.0, 10.5, 11.0,
- # 11.5, 12.0, 12.5, 13.0])
-
- # Wavelengths from Nishiyama+09 plot of RL+85 law...slightly different than standard,
- # drop N filter
- wave = np.array([0.365, 0.445, 0.551, 0.658, 0.806, 1.17, 1.57, 2.12,
- 3.40, 4.75, 8.0, 8.5, 9.0, 9.5, 10.0, 10.5, 11.0,
+ wave = np.array([0.365, 0.445, 0.551, 0.658, 0.9, 1.25, 1.60, 2.2,
+ 3.50, 4.8, 8.0, 8.5, 9.0, 9.5, 10.0, 10.5, 11.0,
11.5, 12.0, 12.5, 13.0])
A_Av = np.array([1.531, 1.324, 1.00, 0.748, 0.482, 0.282, 0.175, 0.112,
0.058, 0.023, 0.02, 0.043, 0.074, 0.087, 0.083,
@@ -469,16 +589,24 @@ def _derive_RiekeLebofsky(wavelength):
Av_Ak = 1.0 / Ak_Av
A_Ak = A_Av * Av_Ak
-
- # Interpolate over the curve
- spline_interp = interpolate.splrep(wave, A_Ak, k=3, s=0)
+
+ # Only interpolate between I and M
+ idx1 = np.where(np.array(filters) == 'I')[0][0]
+ idx2 = np.where(np.array(filters) == 'M')[0][0]
+
+ wave_interp = wave[idx1:idx2+1]
+ A_Ak_interp = A_Ak[idx1:idx2+1]
+ assert len(wave_interp) == 6
+
+ # Interpolate over the curve over desired wavelength range
+ spline_interp = interpolate.splrep(wave_interp, A_Ak_interp, k=3, s=0)
A_Ak_at_wave = interpolate.splev(wavelength, spline_interp)
return A_Ak_at_wave
def RiekeLebofsky85(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -498,7 +626,7 @@ def RiekeLebofsky85(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -515,26 +643,80 @@ def RiekeLebofsky85(self, wavelength, AKs):
return A_at_wave
+ def plot_RiekeLebofsky85(self):
+ """
+ Plot law against measured values from RL+85, from their
+ Table 3
+ """
+ wave = self.wave # Angstroms
+ law = self.obscuration
+
+ # Change wavelengths to microns
+ wave *= 10**-4
+
+ # Get the observed values from their Table 3. Note only JHKLM is
+ # measured directly by RL85, other values come from elsewhere.
+ # Wavelengths are from Rieke+89, Table 4
+ filters = ['U', 'B', 'V', 'R', 'I', 'J', 'H', 'K', 'L', 'M',
+ '[8.0]', '[8.5]', '[9.0]', '[9.5]', '[10.0]', '[10.5]',
+ '[11.0]', '[11.5]', '[12.0]', '[12.5]', '[13.0]']
+ wave_obs = np.array([0.365, 0.445, 0.551, 0.658, 0.9, 1.25, 1.60, 2.2,
+ 3.50, 4.8, 8.0, 8.5, 9.0, 9.5, 10.0, 10.5, 11.0,
+ 11.5, 12.0, 12.5, 13.0])
+ A_Av = np.array([1.531, 1.324, 1.00, 0.748, 0.482, 0.282, 0.175, 0.112,
+ 0.058, 0.023, 0.02, 0.043, 0.074, 0.087, 0.083,
+ 0.074, 0.060, 0.047, 0.037, 0.030, 0.027])
+
+ # Want to change this from A/Av to A/AK
+ k_ind = np.where(np.array(filters) == 'K')
+ Ak_Av = A_Av[k_ind]
+ Av_Ak = 1.0 / Ak_Av
+
+ A_Ak = A_Av * Av_Ak
+
+ # RL law is only defined between I and M. Restrict to this range
+ idx1 = np.where(np.array(filters) == 'I')[0][0]
+ idx2 = np.where(np.array(filters) == 'M')[0][0]
+
+ wave_obs_f = wave_obs[idx1:idx2+1]
+ A_Ak_f = A_Ak[idx1:idx2+1]
+
+ # Make plot
+ py.figure(figsize=(10,10))
+ py.plot(wave, law, 'r-', label='EL Function')
+ py.plot(wave_obs_f, A_Ak_f, 'k.', ms=10,
+ label='Measured')
+ py.xlabel('Wavelength (microns)')
+ py.ylabel(r'Extinction (A$_{\lambda}$)')
+ py.title('Rieke+Lebofsky+85 EL')
+ py.gca().set_xscale('log')
+ py.gca().set_yscale('log')
+ py.legend()
+ py.savefig('rl85_el.png')
+
+ return
+
class RedLawDamineli16(pysynphot.reddening.CustomRedLaw):
"""
Defines the extinction law of `Damineli et al. 2016
`_,
derived for the Wd1 cluster. The law is derived between
- 0.5 - 8.0 microns.
+ 0.4 - 4.8 microns.
+
+ Law is scaled such that A_lambda / A_Ks = 1 at 2.156 microns
"""
def __init__(self):
- # Fetch the extinction curve, pre-interpolate across 1-8 microns
- wave = np.arange(0.3, 8.0, 0.001)
-
+ # Fetch the extinction curve, pre-interpolate across 0.4-4.8 microns
+ wave = np.arange(0.4, 4.8, 0.001)
+
# This will eventually be scaled by AKs when you
# call reddening(). Right now, calc for AKs=1
Alambda_scaled = RedLawDamineli16._derive_Damineli16(wave)
- #Alambda_scaled = RedLawDamineli16.derive_Damineli16_old(wave, 1.0)
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='Damineli16',
@@ -543,8 +725,11 @@ def __init__(self):
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = min(wave)
self.high_lim = max(wave)
+
+ self.scale_lambda = 2.159
self.name = 'D16'
-
+
+ return
@staticmethod
def _derive_Damineli16(wavelength):
@@ -563,13 +748,13 @@ def _derive_Damineli16(wavelength):
log_A_AKs = -0.015 + 2.33*x + 0.522*x**2. - 3.001*x**3. + 2.034*x**4.
# Now to convert this back to linear space
- A_AKs_at_wave = 10**log_A_AKs
+ A_AKs_at_wave = 10**log_A_AKs
return A_AKs_at_wave
def Damineli16(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -589,7 +774,7 @@ def Damineli16(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -606,6 +791,37 @@ def Damineli16(self, wavelength, AKs):
return A_at_wave
+ def plot_Damineli16(self):
+ """
+ Plot law against measured values from Damineli+16
+ from their Table 1
+ """
+ wave = self.wave # Angstroms
+ law = self.obscuration
+
+ # Change wavelengths to microns
+ wave *= 10**-4
+
+ # Get the observed values from their Table 1 (Wd1 + RC)
+ wave_obs = np.array([0.442, 0.537, 0.664, 0.805, 0.878, 1.021,
+ 1.244, 1.651, 2.159, 3.295, 4.4809])
+ A_AKs = np.array([21.43, 14.95, 11.25, 8.72, 7.23, 5.10, 3.23, 1.77,
+ 1.0, 0.39, 0.26])
+
+ # Make plot
+ py.figure(figsize=(10,10))
+ py.plot(wave, law, 'r-', label='EL Function')
+ py.errorbar(wave_obs, A_AKs, fmt='k.', ms=10,
+ label='Measured')
+ py.xlabel('Wavelength (microns)')
+ py.ylabel(r'Extinction (A$_{\lambda}$)')
+ py.title('Damineli+16 EL')
+ py.gca().set_xscale('log')
+ py.gca().set_yscale('log')
+ py.legend()
+ py.savefig('damineli16_el.png')
+ return
+
class RedLawDeMarchi16(pysynphot.reddening.CustomRedLaw):
"""
Defines extinction law from `De Marchi et al. 2016
@@ -615,7 +831,7 @@ class RedLawDeMarchi16(pysynphot.reddening.CustomRedLaw):
def __init__(self):
# Fetch the extinction curve, pre-interpolate across 1-8 microns
wave = np.arange(0.3, 8.0, 0.001)
-
+
# This will eventually be scaled by AK when you
# call reddening(). Right now, calc for AKs=1
Alambda_scaled = RedLawDeMarchi16._derive_DeMarchi16(wave)
@@ -623,7 +839,7 @@ def __init__(self):
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='DeMarchi16',
@@ -675,8 +891,8 @@ def _derive_DeMarchi16(wavelength):
return A_AK_at_wave
def DeMarchi16(self, wavelength, AK):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -696,7 +912,7 @@ def DeMarchi16(self, wavelength, AK):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -712,30 +928,32 @@ def DeMarchi16(self, wavelength, AK):
A_at_wave = np.array(A_AKs_at_wave) * AK
return A_at_wave
-
+
class RedLawFitzpatrick09(pysynphot.reddening.CustomRedLaw):
"""
- Defines the extinction law from
+ Defines the extinction law from
`Fitzpatrick et al. 2009 `_.
- The law is defined between 0.3 -- 3 microns.
+ The law is defined between 0.5 -- 3 microns.
The extinction law is as defined in their equation 5, and has two
free parameters: :math:`\alpha` and R(V). Averaged over 14 sight-lines,
- the authors generally find either :math:`alpha` ~ 2.5, R(V) ~ 3, or
- :math:`alpha` ~ 1.8, R(V) ~ 5 (their Figure 6).
+ the authors generally find either :math:`alpha` ~ 2.5, R(V) ~ 3, or
+ :math:`alpha` ~ 1.8, R(V) ~ 5 (their Figure 6).
+
+ A_lambda / A_K = 1 at lambda = 2.18
Parameters
----------
alpha : float
- alpha parameter for extinction law.
+ alpha parameter for extinction law.
RV : float
- R(V) parameter for extinction law.
+ R(V) parameter for extinction law.
"""
def __init__(self, alpha, RV):
# Fetch the extinction curve, pre-interpolate across 1-8 microns
- wave = np.arange(0.7, 3.0, 0.001)
-
+ wave = np.arange(0.5, 3.0, 0.001)
+
# This will eventually be scaled by AK when you
# call reddening(). Right now, calc for AKs=1
Alambda_scaled = RedLawFitzpatrick09._derive_Fitzpatrick09(wave, alpha, RV)
@@ -743,7 +961,7 @@ def __init__(self, alpha, RV):
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='Fitzpatrick09',
@@ -752,6 +970,8 @@ def __init__(self, alpha, RV):
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = min(wave)
self.high_lim = max(wave)
+
+ self.scale_lambda = 2.18
self.name = 'F09,{0},{1}'.format(alpha, RV)
@staticmethod
@@ -775,25 +995,26 @@ def _derive_Fitzpatrick09(wavelength, alpha, RV):
"""
alpha = float(alpha)
RV = float(RV)
-
+
# First we'll calculate k(lambda - V) = E(lambda - V) / E(B - V),
# directly from equation 5
k = (0.349 + 2.087*RV) * (1.0 / (1.0 + (wavelength / 0.507)**alpha)) - RV
# We'll calculate Alam/Av from K + Rv
- Alam_Av = (k / RV) + 1.
-
+ Alam_Av = (k / RV) + 1.
+
# Finally, to get A_lambda/Aks we need to divide Alam_Av by AKs_Av.
- # We'll assume central wavelength of 2.14 for Ks
- idx = np.where(abs(wavelength - 2.14) == min(abs(wavelength - 2.14)))
+ # We'll assume a wavelength of 2.18 for Ks, since it is the wavelength
+ # they report for K-band
+ idx = np.where(abs(wavelength - 2.18) == min(abs(wavelength - 2.18)))
A_AKs_at_wave = Alam_Av / Alam_Av[idx]
return A_AKs_at_wave
def Fitzpatrick09(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -813,7 +1034,7 @@ def Fitzpatrick09(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -832,9 +1053,11 @@ def Fitzpatrick09(self, wavelength, AKs):
class RedLawSchlafly16(pysynphot.reddening.CustomRedLaw):
"""
- Defines the extinction law from `Schlafly et al. 2016
+ Defines the extinction law from `Schlafly et al. 2016
`_.
- The law is defined between 0.5 - 8 microns.
+ The law is defined between 0.5 - 4.8 microns.
+
+ The law is scaled such that A_lambda / A_Ks = 1 when lambda = 2.151
Parameters
----------
@@ -844,9 +1067,9 @@ class RedLawSchlafly16(pysynphot.reddening.CustomRedLaw):
Free parameter in extinction law (see Schlafly+16, Eqn 6)
"""
def __init__(self, AH_AKs, x):
- # Fetch the extinction curve, pre-interpolate across 1-8 microns
+ # Fetch the extinction curve, pre-interpolate across 0.5-4.8 microns
wave = np.arange(0.5, 4.8, 0.001)
-
+
# This will eventually be scaled by AK when you
# call reddening(). Right now, calc for AKs=1
Alambda_scaled = RedLawSchlafly16._derive_Schlafly16(wave, AH_AKs, x)
@@ -854,7 +1077,7 @@ def __init__(self, AH_AKs, x):
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='Schlafly16',
@@ -868,7 +1091,7 @@ def __init__(self, AH_AKs, x):
@staticmethod
def _derive_Schlafly16(wavelength, AH_AKs, x):
"""
- Calculate Schalfly+16 extinction law according to
+ Calculate Schalfly+16 extinction law according to
code provided in appendix of the paper. AH_AKs sets the
gray component while x sets the shape of the law in an
Rv-like way
@@ -879,20 +1102,20 @@ def _derive_Schlafly16(wavelength, AH_AKs, x):
# Evaluate function for desired wavelengths (in angstroms)
law = law_func(wavelength*10**4)
-
+
# Now normalize to A_lambda/AKs, rather than A_lambda/A(5420)
- idx = np.where( abs(wavelength - 2.14) == min(abs(wavelength - 2.14)) )
+ idx = np.where( abs(wavelength - 2.151) == min(abs(wavelength - 2.151)) )
law_out = law / law[idx]
-
+
return law_out
@staticmethod
def _Schlafly_appendix(x, rhk):
- """
+ """
Schlafly+16 extinction law as defined in paper appendix. We've modified
- the wrapper slightly so that the user has control of rhk and x. Here is
+ the wrapper slightly so that the user has control of rhk and x. Here is
the comments from that code:
-
+
Returns the extinction curve, A(lambda)/A(5420 A), according to
Schlafly+2016, for the parameter "x," which controls the overall shape of
the extinction curve in an R(V)-like way. The extinction curve returned
@@ -914,7 +1137,7 @@ def _Schlafly_appendix(x, rhk):
lam: anchor wavelengths (angstroms), default to Schlafly+2016
Returns: the extinction curve E, so the extinction alam = A(lam)/A(5420 A)
- is given by:
+ is given by:
A = extcurve(x)
alam = A(lam)
"""
@@ -939,8 +1162,8 @@ def _Schlafly_appendix(x, rhk):
return CubicSpline(lam, anchors/cs0(5420.), yp='3d=0')
def Schlafly16(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -960,7 +1183,7 @@ def Schlafly16(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -976,14 +1199,132 @@ def Schlafly16(self, wavelength, AKs):
A_at_wave = np.array(A_AKs_at_wave) * AKs
return A_at_wave
-
-class RedLawPowerLaw(pysynphot.reddening.CustomRedLaw):
+
+class RedLawIndebetouw05(pysynphot.reddening.CustomRedLaw):
"""
- Extinction object that is a power-law extinction law:
+ Defines the extinction law from `Indebetouw et al. 2005
+ `_.
+ The law is defined between 1.25 - 8 microns using Equation 4
+ in their paper.
+
+ Note that A_lambda / A_K = 1 when lambda = 2.164 microns.
+ """
+ def __init__(self):
+ # Get A_lambda / A_K values from Indebetouw+05
+ wave = np.arange(1.25, 8.0, 0.001) # microns
+ Alambda_scaled = RedLawIndebetouw05._derive_Indebetouw05(wave)
+
+ # Convert wavelength to angstrom
+ wave *= 10 ** 4
+
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ waveunits='angstrom',
+ Avscaled=Alambda_scaled,
+ name='Indebetouw05',
+ litref='Indebetouw+ 2005')
+
+ # Set the upper/lower wavelength limits of law (in angstroms)
+ self.low_lim = min(wave)
+ self.high_lim = max(wave)
+
+ # Other info
+ self.scale_lambda = 2.164
+ self.name = 'I05'
+
+ @staticmethod
+ def _derive_Indebetouw05(wave):
+ """
+ Calculate Indebetouw+05 extinction law using equation 4 of their
+ paper.
+ """
+ log_Alambda_AK = 0.61 - 2.22*np.log10(wave) + 1.21 * np.log10(wave)**2.
+
+ # Return output in terms of A_lambda / A_K
+ Alambda_AK = 10**log_Alambda_AK
+ return Alambda_AK
+
+ def Indebetouw05(self, wavelength, AKs):
+ """
+ Return the extinction at a given wavelength assuming the
+ extinction law and an overall extinction at AK (2.164 microns)
+
+ Parameters
+ ----------
+ wavelength : float or array
+ Wavelength to return extinction for, in microns
+ AKs : float
+ Total extinction in AKs, in mags
+ """
+ # If input entry is a single float, turn it into an array
+ try:
+ len(wavelength)
+ except:
+ wavelength = [wavelength]
+
+ # Return error if any wavelength is beyond interpolation range of
+ # extinction law
+ if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
+ return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
+
+ # Extract wave and A/AKs from law, turning wave into micron units
+ wave = self.wave * (10**-4)
+ law = self.obscuration
+
+ # Find the value of the law at the closest points
+ # to wavelength
+ A_AKs_at_wave = []
+ for ii in wavelength:
+ idx = np.where( abs(wave - ii) == min(abs(wave - ii)) )
+ A_AKs_at_wave.append(law[idx][0])
+
+ # Now multiply by AKs (since law assumes AKs = 1)
+ A_at_wave = np.array(A_AKs_at_wave) * AKs
+
+ return A_at_wave
+
+ def plot_Indebetouw05(self):
+ """
+ Plot Indebetouw+05 extinciton curve versus their
+ actual measured values (their Table 1).
+ This is similar to their Figure 6.
+
+ Saves plot as indebetouw05_el.png in cwd
+ """
+ # Get the extinction law
+ wave = self.wave # Angstroms
+ law = self.obscuration # A_lambda / AK
+
+ # Convert wave to microns for plot
+ wave *= 10**-4
+
+ # Their average measurements across sight lines
+ # from Table 1
+ wave_arr = [1.240, 1.664, 2.164, 3.545, 4.442, 5.675, 7.760]
+ law_obs_arr = [2.50, 1.55, 1.0, 0.56, 0.43, 0.43, 0.43]
+ law_obs_err_arr = [0.15, 0.08, 0.0, 0.06, 0.08, 0.10, 0.10]
+
+ # Make plot
+ py.figure(figsize=(10,10))
+ py.plot(wave, law, 'r-', label='EL Function')
+ py.errorbar(wave_arr, law_obs_arr, yerr=law_obs_err_arr, fmt='k.', ms=10,
+ label='Measured')
+ py.xlabel('Wavelength (microns)')
+ py.ylabel(r'Extinction (A$_{\lambda}$)')
+ py.title('Indebetouw+05 EL')
+ py.gca().set_xscale('log')
+ py.gca().set_yscale('log')
+ py.legend()
+ py.savefig('indebetouw05_el.png')
+
+ return
+
+class RedLawPowerLaw(pysynphot.reddening.CustomRedLaw):
+ r"""
+ Extinction object that is a power-law extinction law:
:math:`A_{\lambda} \propto \lambda^{\alpha}`.
- For example, to create an extinction law between
- 0.8 and 3 microns where :math:`\alpha = 2.21`,
+ For example, to create an extinction law between
+ 0.8 and 3 microns where :math:`\alpha = 2.21`,
where :math:`A_{\lambda} / A_{Ks} = 1` at 2.12 microns:
>>> from spisea import reddening
@@ -1008,7 +1349,7 @@ class RedLawPowerLaw(pysynphot.reddening.CustomRedLaw):
def __init__(self, alpha, K_wave, wave_min=0.5, wave_max=5.0):
# Fetch the extinction curve, pre-interpolate across wave_min to wave_max
wave = np.arange(wave_min, wave_max, 0.001)
-
+
# This will eventually be scaled by AK when you
# call reddening(). Right now, calc for AKs=1
Alambda_scaled = RedLawPowerLaw._derive_powerlaw(wave, alpha, K_wave)
@@ -1016,7 +1357,7 @@ def __init__(self, alpha, K_wave, wave_min=0.5, wave_max=5.0):
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='Power law')
@@ -1038,8 +1379,8 @@ def _derive_powerlaw(wavelength, alpha, K_wave):
in microns
alpha: float
- -1.0 * (power law exponent)
-
+ -1.0 * (power law exponent)
+
K_wave: float
Desired K-band wavelength, in microns
"""
@@ -1053,8 +1394,8 @@ def _derive_powerlaw(wavelength, alpha, K_wave):
return A_AKs_at_wave
def powerlaw(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -1074,7 +1415,7 @@ def powerlaw(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -1092,23 +1433,23 @@ def powerlaw(self, wavelength, AKs):
return A_at_wave
class RedLawBrokenPowerLaw(pysynphot.reddening.CustomRedLaw):
- """
- Extinction object that is a broken power-law extinction law:
+ r"""
+ Extinction object that is a broken power-law extinction law:
:math:`A_{\lambda} \propto \lambda^{\alpha[n]}`
- for:
+ for:
:math: `\lambda_{limits}[n] < \lambda <= \lambda_{limits}[n+1]`
- Note: lambda_limits must be continuous in wavelength and K_wave must be
- within one of the section defined by the lambda_limits array.
+ Note: lambda_limits must be continuous in wavelength and K_wave must be
+ within one of the section defined by the lambda_limits array.
Extinction law is only defined over lambda_limits
-
+
Units of lambda_limits array is microns.
Parameters
----------
lambda_limits : numpy array
- Array of length (N + 1) with lower and upper wavelength limits of
+ Array of length (N + 1) with lower and upper wavelength limits of
the power-law segments. Units are microns.
alpha_vals : numpy array
@@ -1139,7 +1480,7 @@ def __init__(self, lambda_limits, alpha_vals, K_wave):
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
name='Broken Power law')
@@ -1161,8 +1502,8 @@ def _derive_broken_powerlaw(wave, lambda_limits, alpha_vals, K_wave):
in microns
alpha: float
- -1.0 * (power law exponent)
-
+ -1.0 * (power law exponent)
+
K_wave: float
Desired K-band wavelength, in microns
"""
@@ -1188,14 +1529,14 @@ def _derive_broken_powerlaw(wave, lambda_limits, alpha_vals, K_wave):
#print('wave_connect = {0}'.format(wave_connect))
#print('alph_num = {0}'.format(alpha_vals[jj]))
#print('alpha_den = {0}'.format(alpha_vals[jj+1]))
-
+
coeff *= val
-
+
law[idx] = coeff * (wave[idx]**(-1.0 * alpha))
# Let's make sure we didn't miss updating any parts of the law
assert np.sum(np.isnan(law)) == 0
-
+
# We'll identify K-band as 2.14 microns
idx = np.where(abs(wave - K_wave) == min(abs(wave - K_wave)))
A_AKs_at_wave = law / law[idx]
@@ -1203,8 +1544,8 @@ def _derive_broken_powerlaw(wave, lambda_limits, alpha_vals, K_wave):
return A_AKs_at_wave
def broken_powerlaw(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -1224,7 +1565,7 @@ def broken_powerlaw(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -1243,73 +1584,156 @@ def broken_powerlaw(self, wavelength, AKs):
class RedLawFritz11(pysynphot.reddening.CustomRedLaw):
"""
- Defines extinction law from `Fritz et al. 2011
+ Defines extinction law from `Fritz et al. 2011
`_
- for the Galactic Center. The law is defined from 1.0 -- 19 microns.
+ for the Galactic Center. The law is defined from 1.0 -- 26 microns.
+
+ By default, law is scaled such that A_lambda / A_2.166 microns = 1.
+ According to Fritz+11, A_2.166 microns = 2.62 +/- 0.11 mag is the total
+ extinction towards the inner 14"x20" of the MW.
+
+ Parameters:
+ -----------
+ scale_labmda: float
+ Wavelength at which extinction law is scaled (A_lambda / A_scale_lambda = 1),
+ in microns. Default is 2.166 microns
+
"""
- def __init__(self):
- # Fetch the extinction curve, pre-interpolate across 3-8 microns
- wave = np.arange(1.0, 19, 0.001)
-
- # This will eventually be scaled by AKs when you
- # call reddening(). Right now, calc for AKs=1
- Alambda_scaled = RedLawFritz11._derive_Fritz11(wave)
+ def __init__(self, scale_lambda=2.166):
+ # Read in the interpolated extinction curve from Fritz+11,
+ # based on their Table 8. Wavelengths in microns, extinction in mags
+ wave, ext, ext_err = RedLawFritz11._read_Fritz11()
- # Convert wavelength to angstrom
- wave *= 10 ** 4
+ # Convert wave to angstromgs
+ wave *= 10**4
+
+ # Rescale extinction law such that A_lambda / A_2.166 microns = 1
+ idx = np.where( abs(wave - (scale_lambda*10**4)) ==
+ min(abs(wave - (scale_lambda*10**4))) )
+ ext_scale = ext / ext[idx]
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ # Make custom reddening law
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
- Avscaled=Alambda_scaled,
- name='Fritz09',
+ Avscaled=ext_scale,
+ name='Fritz11',
litref='Fritz+2011')
-
+
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = min(wave)
self.high_lim = max(wave)
+
+ # Other useful variables
+ self.scale_lambda = scale_lambda
self.name = 'F11'
-
+
+ return
+
@staticmethod
- def _derive_Fritz11(wavelength):
+ def _read_Fritz11():
"""
- Calculate the resulting extinction for an array of wavelengths.
- The extinction is normalized to A_Ks = 1
+ Return the interpolated extinction curve from Fritz+11,
+ as defined in their Table 8.
- Data pulled from Fritz+11, Table 2
+ Output:
+ ------
+ wave: array
+ Wavelength in microns
- Parameters
- ----------
- wavelength : float
- Wavelength range to derive extinction law over, in microns
+ ext: array
+ Extinction in mags
+
+ ext_err: array
+ Extinction error, in mags
"""
- # Extinction law definition
- wave = np.array([1.282, 1.736, 2.166, 2.625, 2.758, 2.873, 3.039, 3.297, 3.74, 3.819, 3.907, 4.052,
- 4.376, 5.128, 5.908, 6.772, 7.459, 7.502, 8.76, 12.371, 19.062])
- A_AKs = np.array([7.91, 4.30, 2.49, 1.83, 1.51, 1.84, 2.07, 1.66, 1.19, 1.19, 1.09, 1.01, 1.09, 0.99,
- 1.04, 0.84, 0.81, 0.79, 2.04, 1.34, 1.34])
+ # Read in file with Table 8 info (published with Fritz+11 paper)
+ inpath = os.path.dirname(os.path.abspath(__file__))
+ infile = os.path.join(inpath, 'el_files', 'fritz11_EL_table8.fits')
+ t = Table.read(infile, format='fits')
+ wave = t['lambda']
+ ext = t['A']
+ ext_err = t['e_A']
- # Interpolate over the curve
- spline_interp = interpolate.splrep(wave, A_AKs, k=3, s=0)
- A_at_wave = interpolate.splev(wavelength, spline_interp)
+ return wave, ext, ext_err
- # We'll call 2.14 microns the K-band
- idx = np.where( abs(wavelength - 2.14) == min(abs(wavelength - 2.14)) )
- A_AKs_at_wave = A_at_wave / A_at_wave[idx]
+ @staticmethod
+ def _read_Fritz11_obs():
+ """
+ Return the Fritz+11 observed values, from their Table 2
- return A_AKs_at_wave
+ Output:
+ -------
+ wave: array
+ Wavelength in microns
- def Fritz11(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
- extinction law and an overall `AKs` value.
+ ext: array
+ Extinction in mags
+
+ ext_err: array
+ Extinction error, in mags
+ """
+ # Read in file with Table 8 info (published with Fritz+11 paper)
+ sep = '/'
+ inpath = sep.join(__file__.split('/')[:-1])
+ infile = '{0}/el_files/fritz11_EL_table2.txt'.format(inpath)
+
+ t = Table.read(infile, format='ascii')
+ wave = t['wave']
+ ext = t['ext']
+ ext_err = t['ext_err']
+
+ return wave, ext, ext_err
+
+ def plot_Fritz11(self):
+ """
+ Plot Fritz+11 interpolated extinciton curve (their Fig 8)
+ versus their actual measured values (their Table 2).
+ This is similar to their Figure 8.
+
+ Saves plot as fritz11_el.png in cwd
+ """
+ # Read in the Fritz+11 table 8
+ wave, ext, ext_err = RedLawFritz11._read_Fritz11()
+
+ # Read in Fritz+11 measurements (Table 2)
+ wave_obs, ext_obs, ext_obs_err = RedLawFritz11._read_Fritz11_obs()
+
+ # Now plot the scaled extinction law, scaled to the Fritz+11
+ # extinction at 2.166 microns. Remember that this produces
+ # throughput = 10^-0.4*Alambda
+ ext_scaled = self.reddening(2.62)
+
+ # Make plot
+ py.figure(figsize=(10,10))
+ py.plot(wave, ext, 'r-', label='Interpolated EL')
+ py.fill_between(wave, ext+ext_err, ext-ext_err, color='red',
+ alpha=0.3)
+ py.errorbar(wave_obs, ext_obs, yerr=ext_obs_err, fmt='k.', ms=10,
+ label='Measured')
+ py.plot(ext_scaled.wave*10**-4, np.log10(ext_scaled.throughput)/-0.4, 'b-', label='Scaled EL')
+ py.xlabel('Wavelength (microns)')
+ py.ylabel(r'Extinction (A$_{\lambda}$)')
+ py.title('Fritz+11 EL')
+ py.gca().set_xscale('log')
+ py.gca().set_yscale('log')
+ py.legend()
+ py.savefig('fritz11_el.png')
+
+ return
+
+ def Fritz11(self, wavelength, A_scale_lambda):
+ """
+ Return the extinction at a given wavelength assuming the
+ extinction law and a total extinction at the scale_lambda
+ (the wavelength where the extinction law = 1)
Parameters
----------
wavelength : float or array
Wavelength to return extinction for, in microns
- AKs : float
- Total extinction in AKs, in mags
+ A_scale_lambda : float
+ Total extinction at scale_lambda, in mags
"""
# If input entry is a single float, turn it into an array
try:
@@ -1321,60 +1745,161 @@ def Fritz11(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
- # Extract wave and A/AKs from law, turning wave into micron units
+
+ # Extract wave and A/A_scale_lambda from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
# Find the value of the law at the closest points
# to wavelength
- A_AKs_at_wave = []
+ A_Ascale_at_wave = []
for ii in wavelength:
idx = np.where( abs(wave - ii) == min(abs(wave - ii)) )
- A_AKs_at_wave.append(law[idx][0])
+ A_Ascale_at_wave.append(law[idx][0])
- # Now multiply by AKs (since law assumes AKs = 1)
- A_at_wave = np.array(A_AKs_at_wave) * AKs
+ # Now multiply by A_scale_lambda (since law assumes A_scale_lambda = 1)
+ A_at_wave = np.array(A_Ascale_at_wave) * A_scale_lambda
return A_at_wave
-
-class RedLawHosek18(pysynphot.reddening.CustomRedLaw):
- """
- Defines extinction law from `Hosek et al. 2018
- `_
- for the Arches Cluster and Wd1. The law is defined between
- 0.7 - 3.54 microns.
- WARNING: DEPRECATED! This law has revised to RedLawHosek18b, which
- should be used instead
+#==============================================#
+# This redlaw is now depreciated: use Hosek18b
+# (from Hosek+19, appendix B) instead
+#==============================================#
+#class RedLawHosek18(pysynphot.reddening.CustomRedLaw):
+# """
+# Defines extinction law from `Hosek et al. 2018
+# `_
+# for the Arches Cluster and Wd1. The law is defined between
+# 0.7 - 3.54 microns.
+#
+# WARNING: DEPRECATED! This law has revised to RedLawHosek18b, which
+# should be used instead
+# """
+# def __init__(self):
+# # Fetch the extinction curve, pre-interpolate across 3-8 microns
+# wave = np.arange(0.7, 3.545, 0.001)
+#
+# # This will eventually be scaled by AKs when you
+# # call reddening(). Right now, calc for AKs=1
+# Alambda_scaled = RedLawHosek18._derive_Hosek18(wave)
+#
+# # Convert wavelength to angstrom
+# wave *= 10 ** 4
+#
+# pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+# waveunits='angstrom',
+# Avscaled=Alambda_scaled,
+# name='Hosek+18',
+# litref='Hosek+ 2018')
+#
+# # Set the upper/lower wavelength limits of law (in angstroms)
+# self.low_lim = min(wave)
+# self.high_lim = max(wave)
+# self.name = 'H18'
+#
+# @staticmethod
+# def _derive_Hosek18(wavelength):
+# """
+# Derive the Hosek+18 extinction law, using the data from Table 4.
+#
+# Calculate the resulting extinction for an array of wavelengths.
+# The extinction is normalized with A_Ks.
+#
+# Data pulled from Hosek+18, Table 4
+#
+# Parameters
+# ----------
+# wavelength : float
+# Wavelength range to define extinction law over, in microns
+# """
+# # Extinction law definition
+# wave = np.array([0.8059, 0.962, 1.25, 1.53, 2.14, 3.545])
+# A_AKs = np.array([9.66, 6.29, 3.56, 2.33, 1.0, 0.50])
+#
+#
+# # Following Hosek+18, Interpolate over the curve with cubic spline interpolation
+# spline_interp = interpolate.splrep(wave, A_AKs, k=3, s=0)
+# A_AKs_at_wave = interpolate.splev(wavelength, spline_interp)
+#
+# # This curve already assumes A_Ks = 1.0, so we can go straight to
+# # output
+# return A_AKs_at_wave
+#
+# def Hosek18(self, wavelength, AKs):
+# """
+# Return the extinction at a given wavelength assuming the
+# extinction law and an overall `AKs` value.
+#
+# Parameters
+# ----------
+# wavelength : float or array
+# Wavelength to return extinction for, in microns
+# AKs : float
+# Total extinction in AKs, in mags
+# """
+# # If input entry is a single float, turn it into an array
+# try:
+# len(wavelength)
+# except:
+# wavelength = [wavelength]
+#
+# # Return error if any wavelength is beyond interpolation range of
+# # extinction law
+# if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
+# return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
+#
+# # Extract wave and A/AKs from law, turning wave into micron units
+# wave = self.wave * (10**-4)
+# law = self.obscuration
+#
+# # Find the value of the law at the closest points
+# # to wavelength
+# A_AKs_at_wave = []
+# for ii in wavelength:
+# idx = np.where( abs(wave - ii) == min(abs(wave - ii)) )
+# A_AKs_at_wave.append(law[idx][0])
+#
+# # Now multiply by AKs (since law assumes AKs = 1)
+# A_at_wave = np.array(A_AKs_at_wave) * AKs
+#
+# return A_at_wave
+#=====================================================#
+
+class RedLawHosek18b(pysynphot.reddening.CustomRedLaw):
+ """
+ Defines extinction law from `Hosek et al. 2019
+ `_
+ for the Arches cluster and Wd1.
+ The law is derived between 0.7 - 3.54 microns
"""
def __init__(self):
# Fetch the extinction curve, pre-interpolate across 3-8 microns
wave = np.arange(0.7, 3.545, 0.001)
-
+
# This will eventually be scaled by AKs when you
# call reddening(). Right now, calc for AKs=1
- Alambda_scaled = RedLawHosek18._derive_Hosek18(wave)
+ Alambda_scaled = RedLawHosek18b._derive_Hosek18b(wave)
# Convert wavelength to angstrom
wave *= 10 ** 4
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
+ pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
waveunits='angstrom',
Avscaled=Alambda_scaled,
- name='Hosek+18',
- litref='Hosek+ 2018')
+ name='Hosek+18b',
+ litref='Hosek+ 2018b')
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = min(wave)
self.high_lim = max(wave)
- self.name = 'H18'
-
+ self.name = 'H18b'
+
@staticmethod
- def _derive_Hosek18(wavelength):
- """
- Derive the Hosek+18 extinction law, using the data from Table 4.
-
+ def _derive_Hosek18b(wavelength):
+ """
+ Derive the Hosek+18 extinction law, using the data from Table 4.
+
Calculate the resulting extinction for an array of wavelengths.
The extinction is normalized with A_Ks.
@@ -1387,20 +1912,19 @@ def _derive_Hosek18(wavelength):
"""
# Extinction law definition
wave = np.array([0.8059, 0.962, 1.25, 1.53, 2.14, 3.545])
- A_AKs = np.array([9.66, 6.29, 3.56, 2.33, 1.0, 0.50])
-
+ A_AKs = np.array([7.943, 5.715, 3.142, 2.04, 1.0, 0.50])
# Following Hosek+18, Interpolate over the curve with cubic spline interpolation
spline_interp = interpolate.splrep(wave, A_AKs, k=3, s=0)
A_AKs_at_wave = interpolate.splev(wavelength, spline_interp)
# This curve already assumes A_Ks = 1.0, so we can go straight to
- # output
+ # output
return A_AKs_at_wave
- def Hosek18(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ def Hosek18b(self, wavelength, AKs):
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -1420,7 +1944,7 @@ def Hosek18(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -1437,73 +1961,51 @@ def Hosek18(self, wavelength, AKs):
return A_at_wave
-class RedLawHosek18b(pysynphot.reddening.CustomRedLaw):
+class RedLawSchoedel10(RedLawBrokenPowerLaw):
"""
- Defines extinction law from `Hosek et al. 2019
- `_
- for the Arches cluster and Wd1. This should be used over RedLawHosek18b.
- The law is derived between 0.7 - 3.54 microns
- """
- def __init__(self):
- # Fetch the extinction curve, pre-interpolate across 3-8 microns
- wave = np.arange(0.7, 3.545, 0.001)
-
- # This will eventually be scaled by AKs when you
- # call reddening(). Right now, calc for AKs=1
- Alambda_scaled = RedLawHosek18b._derive_Hosek18b(wave)
+ Defines extinction law from `Schoedel et al. 2010
+ `_
+ for the Galactic Center. It is defined between 1.5 - 3.8 microns.
- # Convert wavelength to angstrom
- wave *= 10 ** 4
+ Power law indices:
- pysynphot.reddening.CustomRedLaw.__init__(self, wave=wave,
- waveunits='angstrom',
- Avscaled=Alambda_scaled,
- name='Hosek+18b',
- litref='Hosek+ 2018b')
+ * 1.677 - 2.168 microns ---> alpha = 2.21 +/- 0.24
+ * 2.168 - 3.636 microns ---> alpha = 1.34 +/- 0.29
- # Set the upper/lower wavelength limits of law (in angstroms)
- self.low_lim = min(wave)
- self.high_lim = max(wave)
- self.name = 'H18b'
-
- @staticmethod
- def _derive_Hosek18b(wavelength):
- """
- Derive the Hosek+18 extinction law, using the data from Table 4.
-
- Calculate the resulting extinction for an array of wavelengths.
- The extinction is normalized with A_Ks.
+ Wavelengths come from effective wavelengths of observations (some buffer
+ is added to either side of these values).
- Data pulled from Hosek+18, Table 4
+ Reddening law is scaled such that A_lambda / A_Ks = 1 at
+ lambda = 2.168 microns.
+ """
+ def __init__(self):
+ lambda_limits = [3.8, 2.168, 1.5]
+ alpha_vals = [1.34, 2.21]
+ K_wave = 2.168
+ RedLawBrokenPowerLaw.__init__(self, lambda_limits, alpha_vals, K_wave)
- Parameters
- ----------
- wavelength : float
- Wavelength range to define extinction law over, in microns
- """
- # Extinction law definition
- wave = np.array([0.8059, 0.962, 1.25, 1.53, 2.14, 3.545])
- A_AKs = np.array([7.943, 5.715, 3.142, 2.04, 1.0, 0.50])
-
- # Following Hosek+18, Interpolate over the curve with cubic spline interpolation
- spline_interp = interpolate.splrep(wave, A_AKs, k=3, s=0)
- A_AKs_at_wave = interpolate.splev(wavelength, spline_interp)
+ # Set the upper/lower wavelength limits of law (in angstroms)
+ self.low_lim = np.min(lambda_limits)*10**4
+ self.high_lim = np.max(lambda_limits)*10**4
- # This curve already assumes A_Ks = 1.0, so we can go straight to
- # output
- return A_AKs_at_wave
+ # Other useful variables
+ self.scale_lambda = K_wave
+ self.name = 'S10'
- def Hosek18b(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
- extinction law and an overall `AKs` value.
+ return
+
+ def Schoedel10(self, wavelength, AKs):
+ """
+ Return the extinction at a given wavelength assuming the
+ extinction law and a total extinction at scale_lambda
+ (the wavelength where the extinction law = 1)
Parameters
----------
wavelength : float or array
Wavelength to return extinction for, in microns
AKs : float
- Total extinction in AKs, in mags
+ Total extinction at scale_lambda, in mags
"""
# If input entry is a single float, turn it into an array
try:
@@ -1515,7 +2017,7 @@ def Hosek18b(self, wavelength, AKs):
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
-
+
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
law = self.obscuration
@@ -1532,25 +2034,37 @@ def Hosek18b(self, wavelength, AKs):
return A_at_wave
+
class RedLawNoguerasLara18(RedLawPowerLaw):
"""
- Defines extinction law from `Nogueras-Lara et al. 2018
+ Defines extinction law from `Nogueras-Lara et al. 2018
`_
- for the Galactic Center. It is defined between 0.8 - 2.5 microns.
+ for the Galactic Center. It is defined between 1.0 - 3.0 microns.
+ Measurements were made in JHK, with effective wavelengths
+ of 1.2685, 1.6506, and 2.1629 microns, respectively.
+
+ This extinction law is a single power law with exponent
+ of alpha = 2.3 +/- 0.08.
+
+ Reddening law is scaled such that A_lambda / A_Ks = 1 at
+ lambda = 2.163 microns (the observed K-band)
"""
def __init__(self):
- wave_min = 0.8
- wave_max = 2.8
- RedLawPowerLaw.__init__(self, 2.30, 2.15, wave_min=wave_min, wave_max=wave_max)
-
+ wave_min = 1.0
+ wave_max = 3.0
+ K_wave = 2.163
+ RedLawPowerLaw.__init__(self, 2.30, K_wave, wave_min=wave_min, wave_max=wave_max)
+
# Set the upper/lower wavelength limits of law (in angstroms)
self.low_lim = wave_min*10**4
self.high_lim = wave_max*10**4
+
+ self.scale_lambda = 2.163
self.name = 'NL18'
def NoguerasLara18(self, wavelength, AKs):
- """
- Return the extinction at a given wavelength assuming the
+ """
+ Return the extinction at a given wavelength assuming the
extinction law and an overall `AKs` value.
Parameters
@@ -1569,7 +2083,82 @@ def NoguerasLara18(self, wavelength, AKs):
# Return error if any wavelength is beyond interpolation range of
# extinction law
if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
- return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
+ return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
+
+ # Extract wave and A/AKs from law, turning wave into micron units
+ wave = self.wave * (10**-4)
+ law = self.obscuration
+
+ # Find the value of the law at the closest points
+ # to wavelength
+ A_AKs_at_wave = []
+ for ii in wavelength:
+ idx = np.where( abs(wave - ii) == min(abs(wave - ii)) )
+ A_AKs_at_wave.append(law[idx][0])
+
+ # Now multiply by AKs (since law assumes AKs = 1)
+ A_at_wave = np.array(A_AKs_at_wave) * AKs
+
+ return A_at_wave
+
+class RedLawNoguerasLara20(RedLawBrokenPowerLaw):
+ """
+ Defines extinction law from `Nogueras-Lara et al. 2020
+ `_
+ for the Galactic Center. It is defined between 1.0 -- 3 microns.
+ Measurements were made in JHK, with effective wavelengths
+ of 1.2685, 1.6506, and 2.1629 microns, respectively
+
+ Measured power law indices:
+
+ * 1.2685 - 1.6505 microns ---> alpha = 2.44 +/- 0.05
+ * 1.6505 - 2.1629 microns ---> alpha = 2.23 +/- 0.05
+
+ Wavelengths come from effective wavelengths of observations (some buffer
+ is added to either side of these values).
+
+ Reddening law is scaled such that A_lambda / A_Ks = 1 at
+ lambda = 2.163 microns (the observed K-band)
+ """
+ def __init__(self):
+ lambda_limits = [3.0, 1.6505, 1.0]
+ alpha_vals = [2.44, 2.23]
+ K_wave = 2.163
+ RedLawBrokenPowerLaw.__init__(self, lambda_limits, alpha_vals, K_wave)
+
+ # Set the upper/lower wavelength limits of law (in angstroms)
+ self.low_lim = np.min(lambda_limits)*10**4
+ self.high_lim = np.max(lambda_limits)*10**4
+
+ # Other useful variables
+ self.scale_lambda = K_wave
+ self.name = 'NL20'
+
+ return
+
+ def NoguerasLara20(self, wavelength, AKs):
+ """
+ Return the extinction at a given wavelength assuming the
+ extinction law and a total extinction at scale_lambda
+ (the wavelength where the extinction law = 1)
+
+ Parameters
+ ----------
+ wavelength : float or array
+ Wavelength to return extinction for, in microns
+ AKs : float
+ Total extinction at scale_lambda, in mags
+ """
+ # If input entry is a single float, turn it into an array
+ try:
+ len(wavelength)
+ except:
+ wavelength = [wavelength]
+
+ # Return error if any wavelength is beyond interpolation range of
+ # extinction law
+ if ((min(wavelength) < (self.low_lim*10**-4)) | (max(wavelength) > (self.high_lim*10**-4))):
+ return ValueError('{0}: wavelength values beyond interpolation range'.format(self))
# Extract wave and A/AKs from law, turning wave into micron units
wave = self.wave * (10**-4)
@@ -1585,7 +2174,7 @@ def NoguerasLara18(self, wavelength, AKs):
# Now multiply by AKs (since law assumes AKs = 1)
A_at_wave = np.array(A_AKs_at_wave) * AKs
- return A_at_wave
+ return A_at_wave
#---------------------------#
# Cubic spline function from Schalfly+16 appendix
diff --git a/spisea/synthetic.py b/spisea/synthetic.py
index 704074d0..4dec9340 100755
--- a/spisea/synthetic.py
+++ b/spisea/synthetic.py
@@ -1,33 +1,21 @@
+import os
+import time
+import math
+import scipy
+import inspect
+import warnings
import numpy as np
import pylab as plt
-from spisea import reddening
-from spisea import evolution
+import matplotlib.pyplot as plt
+from spisea import reddening, evolution, filters
from spisea import atmospheres as atm
-from spisea import filters
-from spisea.imf import imf, multiplicity
-from scipy import interpolate
-from scipy import stats
-from scipy.special import erf
+from scipy.spatial import cKDTree as KDTree
+from spisea.imf import multiplicity
from pysynphot import spectrum
from pysynphot import ObsBandpass
from pysynphot import observation as obs
-import pysynphot
from astropy import constants, units
-from astropy.table import Table, Column, MaskedColumn
-import pickle
-import time, datetime
-import math
-import os, glob
-import tempfile
-import scipy
-import matplotlib
-import matplotlib.pyplot as plt
-import time
-import warnings
-import pdb
-from scipy.spatial import cKDTree as KDTree
-import inspect
-import astropy.modeling
+from astropy.table import Table, Column
default_evo_model = evolution.MISTv1()
default_red_law = reddening.RedLawNishiyama09()
@@ -37,7 +25,7 @@
def Vega():
# Use Vega as our zeropoint... assume V=0.03 mag and all colors = 0.0
# These parameters are defined in Girardi+02
- vega = atm.get_kurucz_atmosphere(temperature=9550,
+ vega = atm.get_kurucz_atmosphere(temperature=9550,
gravity=3.95,
metallicity=-0.5)
@@ -47,22 +35,39 @@ def Vega():
# This is (R/d)**2 as reported by Girardi et al. 2002, page 198, col 1.
# and is used to convert to flux observed at Earth.
- vega *= 6.247e-17
-
+ vega *= 6.247e-17
+
return vega
vega = Vega()
+class Interpolator(object):
+ def __init__(self, xp, yp):
+ """Wrapper for np.interp to allow for pickling in multiprocessing.
+
+ Parameters
+ ----------
+ xp: array-like
+ x data points for interpolation
+ yp: array-like
+ y data points for interpolation
+ """
+ self.xp = xp
+ self.yp = yp
+
+ def __call__(self, x):
+ return np.interp(x, self.xp, self.yp, left=np.nan, right=np.nan)
+
class Cluster(object):
"""
Base class to create a cluster with user-specified isochrone,
- imf, ifmr, and total mass.
+ imf, ifmr, and total mass.
Parameters
-----------
iso: isochrone object
SPISEA isochrone object
-
+
imf: imf object
SPISEA IMF object
@@ -75,9 +80,9 @@ class Cluster(object):
no compact remnants are produced.
seed: int
- If set to non-None, all random sampling will be seeded with the
- specified seed, forcing identical output.
- Default None
+ Seed for the random number generator numpy.random.default_rng(seed).
+ All random functions in the class will use this generator,
+ unless a different generator is passed in as an argument to the function, by default None.
vebose: boolean
True for verbose output.
@@ -90,17 +95,18 @@ def __init__(self, iso, imf, cluster_mass, ifmr=None, verbose=False,
self.ifmr = ifmr
self.cluster_mass = cluster_mass
self.seed = seed
-
+ self.rng = np.random.default_rng(self.seed)
+
return
-
+
class ResolvedCluster(Cluster):
"""
Cluster sub-class that produces a *resolved* stellar cluster.
- A table is output with the synthetic photometry and intrinsic
- properties of the individual stars (or stellar systems, if
+ A table is output with the synthetic photometry and intrinsic
+ properties of the individual stars (or stellar systems, if
mutliplicity is used in the IMF object).
- If multiplicity is used, than a second table is produced that
+ If multiplicity is used, than a second table is produced that
contains the properties of the companion stars independent of their
primary stars.
@@ -108,41 +114,80 @@ class ResolvedCluster(Cluster):
-----------
iso: isochrone object
SPISEA isochrone object
-
+
imf: imf object
SPISEA IMF object
cluster_mass: float
Total initial mass of the cluster, in M_sun
- ifmr: ifmr object or None
+ ifmr: ifmr object, optional
If ifmr object is defined, will create compact remnants
produced by the cluster at the given isochrone age. Otherwise,
no compact remnants are produced.
+ By default None.
- seed: int
- If set to non-None, all random sampling will be seeded with the
- specified seed, forcing identical output.
- Default None
+ keep_low_mass_stars: boolean, optional
+ If True, the cluster will not cut out stars below the isochrone grid
+ on initial mass. They are assigned a current mass equal to their initial
+ mass, a phase of 98, and no other evolutionary properties or photometry.
+ If False, stars below the isochrone initial mass limit are cut out.
+ By default False.
- vebose: boolean
+ seed: int, optional
+ Seed for the random number generator numpy.random.default_rng(seed).
+ All random functions in the class will use this generator,
+ unless a different generator is passed in as an argument to the function, by default None.
+
+ vebose: boolean, optional
True for verbose output.
+
+ Attributes
+ ----------
+ star_systems: astropy.table.Table
+ Table containing the properties of the primary stars (or stellar systems, if multiplicity is used). The columns include:
+ mass: primary mass
+ isMultiple: boolean for whether the star is in a multiple system
+ systemMass: total initial mass of the stellar system (primary + companions)
+ Teff: effective temperature of the star
+ L: luminosity of the star in L_sun
+ logg: surface gravity of the star in cgs
+ isWR: boolean for whether the star is a Wolf-Rayet star
+ mass_current: current mass of the star
+ phase: evolutionary phase of the star, as defined by the isochrone model
+ metallicity: metallicity of the star
+ filter columns: magnitude of the star in each filter defined by the isochrone model
+
+ companions: astropy.table.Table (only if multiplicity is used in the IMF object)
+ Table containing the properties of the companion stars. The columns include:
+ system_idx: index of the stellar system this companion belongs to, which can be used to match to the star_systems table
+ mass: initial mass of the companion star
+ Teff: effective temperature of the companion star
+ L: luminosity of the companion star in L_sun
+ logg: surface gravity of the companion star in cgs
+ isWR: boolean for whether the companion star is a Wolf-Rayet star
+ mass_current: current mass of the companion star
+ phase: evolutionary phase of the companion star, as defined by the isochrone model
+ metallicity: metallicity of the companion star
+ filter columns: magnitude of the companion star in each filter defined by the isochrone model
+ If multiplicity properties are defined in the IMF object, additional columns for those properties (e.g., log_a, e, i, Omega, omega) are included.
"""
def __init__(self, iso, imf, cluster_mass, ifmr=None, verbose=True,
- seed=None):
+ seed=None, keep_low_mass_stars=False):
Cluster.__init__(self, iso, imf, cluster_mass, ifmr=ifmr, verbose=verbose,
seed=seed)
-
# Provide a user warning is random seed is set
- if seed is not None:
+ if seed is not None and verbose:
print('WARNING: random seed set to %i' % seed)
+ imf.rng = self.rng
- t1 = time.time()
- #####
+ #####
# Sample the IMF to build up our cluster mass.
#####
- mass, isMulti, compMass, sysMass = imf.generate_cluster(cluster_mass,
- seed=seed)
+ # start0 = time.time()
+ mass, isMulti, compMass, sysMass = imf.generate_cluster(cluster_mass)
+ # end0 = time.time()
+ # print('IMF sampling took {0:f} s.'.format(end0 - start0))
# Figure out the filters we will make.
self.filt_names = self.set_filter_names()
@@ -154,31 +199,46 @@ def __init__(self, iso, imf, cluster_mass, ifmr=None, verbose=True,
interp_keys = ['Teff', 'L', 'logg', 'isWR', 'mass_current', 'phase'] + self.filt_names
self.iso_interps = {}
for ikey in interp_keys:
- self.iso_interps[ikey] = interpolate.interp1d(self.iso.points['mass'], self.iso.points[ikey],
- kind='linear', bounds_error=False, fill_value=np.nan)
-
- #####
+ # self.iso_interps[ikey] = interpolate.interp1d(self.iso.points['mass'], self.iso.points[ikey],
+ # kind='linear', bounds_error=False, fill_value=np.nan)
+ self.iso_interps[ikey] = Interpolator(self.iso.points['mass'], self.iso.points[ikey])
+
+ #####
# Make a table to contain all the information about each stellar system.
#####
+ # start1 = time.time()
star_systems = self._make_star_systems_table(mass, isMulti, sysMass)
-
+ # end1 = time.time()
+ # print('Star systems table took {0:f} s.'.format(end1 - start1))
+
# Trim out bad systems; specifically, stars with masses outside those provided
# by the model isochrone (except for compact objects).
- star_systems, compMass = self._remove_bad_systems(star_systems, compMass)
+ star_systems, compMass = self._remove_bad_systems(star_systems, compMass, keep_low_mass_stars)
- #####
+ #####
# Make a table to contain all the information about companions.
#####
if self.imf.make_multiples:
- companions = self._make_companions_table(star_systems, compMass)
-
+ # start3 = time.time()
+ star_systems, companions = self._make_companions_table_new(star_systems, compMass)
+ # end3 = time.time()
+ # print('Companion table new took {0:f} s.'.format(end3 - start3))
+ self.companions = companions
+
+ # compMass = [
+ # [value for value, mask in zip(row, row_mask) if not mask]
+ # for row, row_mask in zip(compMass.data, compMass.mask)
+ # ]
+ # start3 = time.time()
+ # star_systems, companions = self._make_companions_table(star_systems, compMass)
+ # end3 = time.time()
+ # print('Companion table took {0:f} s.'.format(end3-start3))
+ # self.companions = companions
+
#####
# Save our arrays to the object
#####
self.star_systems = star_systems
-
- if self.imf.make_multiples:
- self.companions = companions
return
@@ -187,13 +247,13 @@ def set_filter_names(self):
Set filter column names
"""
filt_names = []
-
+
for col_name in self.iso.points.colnames:
if 'm_' in col_name:
filt_names.append(col_name)
return filt_names
-
+
def _make_star_systems_table(self, mass, isMulti, sysMass):
"""
Make a star_systems table and get synthetic photometry for each primary star.
@@ -202,28 +262,20 @@ def _make_star_systems_table(self, mass, isMulti, sysMass):
names=['mass', 'isMultiple', 'systemMass'])
N_systems = len(star_systems)
- # Add columns for the Teff, L, logg, isWR, mass_current, phase for the primary stars.
- star_systems.add_column( Column(np.zeros(N_systems, dtype=float), name='Teff') )
- star_systems.add_column( Column(np.empty(N_systems, dtype=float), name='L') )
- star_systems.add_column( Column(np.empty(N_systems, dtype=float), name='logg') )
- star_systems.add_column( Column(np.empty(N_systems, dtype=float), name='isWR') )
- star_systems.add_column( Column(np.empty(N_systems, dtype=float), name='mass_current') )
- star_systems.add_column( Column(np.empty(N_systems, dtype=float), name='phase') )
- star_systems.add_column( Column(np.empty(N_systems, dtype=float), name='metallicity') )
+ # Use our pre-built interpolators to fetch values from the isochrone for each star.
+ for key in ['Teff', 'L', 'logg', 'mass_current']:
+ star_systems.add_column(Column(self.iso_interps[key](star_systems['mass']), name=key))
+
+ # Treat out-of-range mass as isWR=True
+ star_systems.add_column(Column(~(self.iso_interps['isWR'](star_systems['mass']) < 0.5), name='isWR'))
+ star_systems.add_column(Column(np.round(self.iso_interps['phase'](star_systems['mass'])), name='phase'))
+
+ star_systems['metallicity'] = np.ones(N_systems) * self.iso.metallicity
# Add the filter columns to the table. They are empty so far.
# Keep track of the filter names in : filt_names
for filt in self.filt_names:
- star_systems.add_column( Column(np.empty(N_systems, dtype=float), name=filt) )
-
- # Use our pre-built interpolators to fetch values from the isochrone for each star.
- star_systems['Teff'] = self.iso_interps['Teff'](star_systems['mass'])
- star_systems['L'] = self.iso_interps['L'](star_systems['mass'])
- star_systems['logg'] = self.iso_interps['logg'](star_systems['mass'])
- star_systems['isWR'] = np.round(self.iso_interps['isWR'](star_systems['mass']))
- star_systems['mass_current'] = self.iso_interps['mass_current'](star_systems['mass'])
- star_systems['phase'] = np.round(self.iso_interps['phase'](star_systems['mass']))
- star_systems['metallicity'] = np.ones(N_systems)*self.iso.metallicity
+ star_systems.add_column(Column(self.iso_interps[filt](star_systems['mass']), name=filt))
# For a very small fraction of stars, the star phase falls on integers in-between
# the ones we have definition for, as a result of the interpolation. For these
@@ -233,29 +285,22 @@ def _make_star_systems_table(self, mass, isMulti, sysMass):
# effect is so small
# Convert nan_to_num to avoid errors on greater than, less than comparisons
star_systems_phase_non_nan = np.nan_to_num(star_systems['phase'], nan=-99)
- bad = np.where( (star_systems_phase_non_nan > 5) & (star_systems_phase_non_nan < 101) & (star_systems_phase_non_nan != 9) & (star_systems_phase_non_nan != -99))
- # Print warning, if desired
- verbose=False
- if verbose:
- for ii in range(len(bad[0])):
- print('WARNING: changing phase {0} to 5'.format(star_systems['phase'][bad[0][ii]]))
+ bad = np.where( (star_systems_phase_non_nan > 5) & (star_systems_phase_non_nan < 101) &
+ (star_systems_phase_non_nan != 9) & (star_systems_phase_non_nan != -99))
star_systems['phase'][bad] = 5
-
- for filt in self.filt_names:
- star_systems[filt] = self.iso_interps[filt](star_systems['mass'])
#####
# Make Remnants
# Note: Some models already have WDs in them. If they do, then they shouldn't
# be handled by this code here (because their Teff > 0).
- #
+ #
# Remnants have flux = 0 in all bands if they are generated here.
- #####
+ #####
if self.ifmr != None:
# Identify compact objects as those with Teff = 0 or with phase > 100.
highest_mass_iso = self.iso.points['mass'].max()
idx_rem = np.where((np.isnan(star_systems['Teff'])) & (star_systems['mass'] > highest_mass_iso))[0]
-
+
# Calculate remnant mass and ID for compact objects; update remnant_id and
# remnant_mass arrays accordingly
if 'metallicity_array' in inspect.getfullargspec(self.ifmr.generate_death_mass).args:
@@ -266,7 +311,7 @@ def _make_star_systems_table(self, mass, isMulti, sysMass):
# Drop remnants where it is not relevant (e.g. not a compact object or
# outside mass range IFMR is defined for)
- good = np.where(r_id_tmp > 0)
+ good = r_id_tmp > 0
idx_rem_good = idx_rem[good]
star_systems['mass_current'][idx_rem_good] = r_mass_tmp[good]
@@ -277,13 +322,111 @@ def _make_star_systems_table(self, mass, isMulti, sysMass):
star_systems[filt][idx_rem_good] = np.full(len(idx_rem_good), np.nan)
return star_systems
-
+
+
+ def _make_companions_table_new(self, star_systems, compMass):
+ """Make companions table for resolved clusters with multiplicity.
+
+ Parameters
+ ----------
+ star_systems : astropy.table.Table
+ Table containing the properties of the primary stars.
+ compMass : numpy.ma.MaskedArray
+ Masked array containing the masses of the companions.
+
+ Returns
+ -------
+ companions : astropy.table.Table
+ """
+ N_systems = len(star_systems)
+ N_companions = np.sum(~compMass.mask, axis=1)
+ N_comp_tot = np.sum(N_companions)
+ star_systems.add_column(Column(N_companions, name='N_companions'))
+ system_index = np.repeat(np.arange(N_systems), N_companions)
+ companions = Table([system_index], names=['system_idx'])
+ companions.add_column(np.zeros(N_comp_tot, dtype=float), name='mass')
+
+ if isinstance(self.imf._multi_props, multiplicity.MultiplicityResolvedDK):
+ companions.add_column(Column(self.imf._multi_props.log_semimajoraxis(star_systems['mass'][companions['system_idx']]), name='log_a'))
+ companions.add_column(Column(self.imf._multi_props.random_e(self.rng.random(N_comp_tot)), name='e'))
+ companions['i'], companions['Omega'], companions['omega'] = self.imf._multi_props.random_keplarian_parameters(
+ self.rng.random(N_comp_tot),
+ self.rng.random(N_comp_tot),
+ self.rng.random(N_comp_tot)
+ )
+
+ companions['mass'] = compMass.compressed()
+ for key in ['Teff', 'L', 'logg', 'mass_current']:
+ companions[key] = self.iso_interps[key](companions['mass'])
+
+ for key in ['isWR', 'phase']:
+ companions[key] = np.round(self.iso_interps[key](companions['mass']))
+
+ companions['metallicity'] = np.ones(N_comp_tot) * self.iso.metallicity
+
+ # For a very small fraction of stars, the star phase falls on integers in-between
+ # the ones we have definition for, as a result of the interpolation. For these
+ # stars, round phase down to nearest defined phase (e.g., if phase is 71,
+ # then round it down to 5, rather than up to 101).
+ # Convert nan_to_num to avoid errors on greater than, less than comparisons
+ companions_phase_non_nan = np.nan_to_num(companions['phase'], nan=-99)
+ companions['phase'][
+ (companions_phase_non_nan > 5) &
+ (companions_phase_non_nan < 101) &
+ (companions_phase_non_nan != 9) &
+ (companions_phase_non_nan != -99)
+ ] = 5
+
+ # Update primary fluxes to include the flux of companions.
+ for filt in self.filt_names:
+ companions[filt] = self.iso_interps[filt](companions['mass'])
+ primary_flux = 10**(-star_systems[filt] / 2.5)
+ # Sum the flux of all companions in each system
+ companions_flux = np.bincount(companions['system_idx'], weights=10**(-companions[filt] / 2.5), minlength=N_systems)
+ combined_flux = np.nansum(np.vstack((primary_flux, companions_flux)), axis=0)
+ combined_flux[combined_flux == 0] = np.nan
+ star_systems[filt] = -2.5 * np.log10(combined_flux)
+
+ #####
+ # Make Remnants with flux = 0 in all bands.
+ #####
+ if self.ifmr:
+ # Identify compact objects as those with Teff = 0 or with masses above the max iso mass
+ highest_mass_iso = self.iso.points['mass'].max()
+ remnant_idx = np.where(np.isnan(companions['Teff']) & (companions['mass'] > highest_mass_iso))[0]
+ self.remnant_idx_new = remnant_idx
+ # Calculate remnant mass and ID for compact objects; update remnant_id and remnant_mass arrays accordingly
+ if 'metallicity_array' in inspect.getfullargspec(self.ifmr.generate_death_mass).args:
+ remnant_mass, remnant_code = self.ifmr.generate_death_mass(mass_array=companions['mass'][remnant_idx], metallicity_array=companions['metallicity'][remnant_idx])
+ else:
+ remnant_mass, remnant_code = self.ifmr.generate_death_mass(mass_array=companions['mass'][remnant_idx])
+
+ # Drop remnants where it is not relevant (e.g. not a compact object or outside mass range IFMR is defined for)
+ remnant_valid = remnant_code > 0
+ remnant_valid_idx = remnant_idx[remnant_valid]
+ self.remnant_mass_new = remnant_mass
+ self.remnant_valid_idx_new = remnant_valid_idx
+ companions['mass_current'][remnant_valid_idx] = remnant_mass[remnant_valid]
+ companions['phase'][remnant_valid_idx] = remnant_code[remnant_valid]
+ # Give remnants a magnitude of nan, so they can be filtered out later when calculating flux.
+ for filt in self.filt_names:
+ companions[filt][remnant_valid_idx] = np.full(len(remnant_idx[remnant_valid]), np.nan)
+
+ companions_teff_non_nan = np.nan_to_num(companions['Teff'], nan=-99)
+ if self.verbose and sum(companions_teff_non_nan > 0) != N_comp_tot:
+ print(f'Found {N_comp_tot - sum(companions_teff_non_nan > 0):d} companions out of stellar mass range')
+
+ assert companions['mass'][companions_teff_non_nan > 0].min() > 0, "Companion mass is not positive"
+
+ return star_systems, companions
+
+
def _make_companions_table(self, star_systems, compMass):
N_systems = len(star_systems)
-
+
#####
- # MULTIPLICITY
+ # MULTIPLICITY
# Make a second table containing all the companion-star masses.
# This table will be much longer... here are the arrays:
# sysIndex - the index of the system this star belongs too
@@ -307,25 +450,29 @@ def _make_companions_table(self, star_systems, compMass):
companions.add_column( Column(np.empty(N_comp_tot, dtype=float), name='metallicity') )
for filt in self.filt_names:
companions.add_column( Column(np.empty(N_comp_tot, dtype=float), name=filt) )
-
+
if isinstance(self.imf._multi_props, multiplicity.MultiplicityResolvedDK):
companions.add_column( Column(np.zeros(N_comp_tot, dtype=float), name='log_a') )
companions.add_column( Column(np.zeros(N_comp_tot, dtype=float), name='e') )
companions.add_column( Column(np.zeros(N_comp_tot, dtype=float), name='i', description = 'degrees') )
companions.add_column( Column(np.zeros(N_comp_tot, dtype=float), name='Omega') )
companions.add_column( Column(np.zeros(N_comp_tot, dtype=float), name='omega') )
-
+
for ii in range(len(companions)):
companions['log_a'][ii] = self.imf._multi_props.log_semimajoraxis(star_systems['mass'][companions['system_idx'][ii]])
-
- companions['e'] = self.imf._multi_props.random_e(np.random.rand(N_comp_tot))
- companions['i'], companions['Omega'], companions['omega'] = self.imf._multi_props.random_keplarian_parameters(np.random.rand(N_comp_tot),np.random.rand(N_comp_tot),np.random.rand(N_comp_tot))
+
+ companions['e'] = self.imf._multi_props.random_e(self.rng.random(N_comp_tot))
+ companions['i'], companions['Omega'], companions['omega'] = self.imf._multi_props.random_keplarian_parameters(
+ self.rng.random(N_comp_tot),
+ self.rng.random(N_comp_tot),
+ self.rng.random(N_comp_tot)
+ )
# Make an array that maps system index (ii), companion index (cc) to
# the place in the 1D companions array.
N_comp_max = N_companions.max()
-
+
comp_index = np.zeros((N_systems, N_comp_max), dtype=int)
kk = 0
for ii in range(N_systems):
@@ -341,9 +488,10 @@ def _make_companions_table(self, star_systems, compMass):
idx = np.where(N_companions >= cc)[0]
# Get the location in the companions array for each system and
- # the cc'th companion.
+ # the cc'th companion.
cdx = comp_index[idx, cc-1]
-
+
+ # companions['mass'][cdx] = compMass[idx, cc-1]
companions['mass'][cdx] = [compMass[ii][cc-1] for ii in idx]
comp_mass = companions['mass'][cdx]
@@ -361,13 +509,16 @@ def _make_companions_table(self, star_systems, compMass):
# stars, round phase down to nearest defined phase (e.g., if phase is 71,
# then round it down to 5, rather than up to 101).
# Convert nan_to_num to avoid errors on greater than, less than comparisons
- star_systems_phase_non_nan = np.nan_to_num(star_systems['phase'], nan=-99)
- bad = np.where( (star_systems_phase_non_nan > 5) & (star_systems_phase_non_nan < 101) & (star_systems_phase_non_nan != 9) & (star_systems_phase_non_nan != -99))
+ companions_phase_non_nan = np.nan_to_num(companions['phase'], nan=-99)
+ bad = np.where( (companions_phase_non_nan > 5) &
+ (companions_phase_non_nan < 101) &
+ (companions_phase_non_nan != 9) &
+ (companions_phase_non_nan != -99))[0]
# Print warning, if desired
verbose=False
if verbose:
- for ii in range(len(bad[0])):
- print('WARNING: changing phase {0} to 5'.format(companions['phase'][bad[0][ii]]))
+ for ii in range(len(bad)):
+ print('WARNING: changing phase {0} to 5'.format(companions['phase'][bad[ii]]))
companions['phase'][bad] = 5
for filt in self.filt_names:
@@ -387,15 +538,15 @@ def _make_companions_table(self, star_systems, compMass):
# If *both* objects are dark, then keep the magnitude
# as np.nan. Otherwise, add fluxes together
- good = np.where( (f1 != 0) | (f2 != 0) )
- bad = np.where( (f1 == 0) & (f2 == 0) )
-
+ good = np.where( (f1 != 0) | (f2 != 0) )[0]
+ bad = np.where( (f1 == 0) & (f2 == 0) )[0]
+
star_systems[filt][idx[good]] = -2.5 * np.log10(f1[good] + f2[good])
star_systems[filt][idx[bad]] = np.nan
#####
# Make Remnants with flux = 0 in all bands.
- #####
+ #####
if self.ifmr != None:
# Identify compact objects as those with Teff = 0 or with masses above the max iso mass
highest_mass_iso = self.iso.points['mass'].max()
@@ -405,19 +556,20 @@ def _make_companions_table(self, star_systems, compMass):
# Calculate remnant mass and ID for compact objects; update remnant_id and
# remnant_mass arrays accordingly
if 'metallicity_array' in inspect.getfullargspec(self.ifmr.generate_death_mass).args:
- r_mass_tmp, r_id_tmp = self.ifmr.generate_death_mass(mass_array=star_systems['mass'][cdx_rem],
- metallicity_array=star_systems['metallicity'][cdx_rem])
+ r_mass_tmp, r_id_tmp = self.ifmr.generate_death_mass(mass_array=companions['mass'][cdx_rem],
+ metallicity_array=companions['metallicity'][cdx_rem])
else:
- r_mass_tmp, r_id_tmp = self.ifmr.generate_death_mass(mass_array=star_systems['mass'][cdx_rem])
+ r_mass_tmp, r_id_tmp = self.ifmr.generate_death_mass(mass_array=companions['mass'][cdx_rem])
+
# Drop remnants where it is not relevant (e.g. not a compact object or
# outside mass range IFMR is defined for)
- good = np.where(r_id_tmp > 0)
+ good = np.where(r_id_tmp > 0)[0]
cdx_rem_good = cdx_rem[good]
companions['mass_current'][cdx_rem_good] = r_mass_tmp[good]
companions['phase'][cdx_rem_good] = r_id_tmp[good]
-
+
# Give remnants a magnitude of nan, so they can be filtered out later when calculating flux.
for filt in self.filt_names:
companions[filt][cdx_rem_good] = np.full(len(cdx_rem_good), np.nan)
@@ -430,19 +582,25 @@ def _make_companions_table(self, star_systems, compMass):
if len(idx) != N_comp_tot and self.verbose:
print( 'Found {0:d} companions out of stellar mass range'.format(N_comp_tot - len(idx)))
+ # For low-mass stars and substellar objects below isochrone, assume no mass loss and set phase to 98
+ low_mass_idxs = (companions['mass'] 0
+ if len(idx) > 0:
+ assert companions['mass'][companions_teff_non_nan > 0].min() > 0, "Companion mass is not positive"
- return companions
+ return star_systems, companions
-
- def _remove_bad_systems(self, star_systems, compMass):
+
+ def _remove_bad_systems(self, star_systems, compMass, keep_low_mass_stars):
"""
Helper function to remove stars with masses outside the isochrone
- mass range from the cluster. These stars are identified by having
+ mass range from the cluster. These stars are identified by having
a Teff = 0, as set up by _make_star_systems_table_interp.
- If self.ifmr == None, then both high and low-mass bad systems are
- removed. If self.ifmr != None, then we will save the high mass systems
+ If self.ifmr == None, then both high and low-mass bad systems are
+ removed. If self.ifmr != None, then we will save the high mass systems
since they will be plugged into an ifmr later.
"""
N_systems = len(star_systems)
@@ -451,23 +609,50 @@ def _remove_bad_systems(self, star_systems, compMass):
# Convert nan_to_num to avoid errors on greater than, less than comparisons
star_systems_teff_non_nan = np.nan_to_num(star_systems['Teff'], nan=-99)
star_systems_phase_non_nan = np.nan_to_num(star_systems['phase'], nan=-99)
- if self.ifmr == None:
+ if (self.ifmr == None) and (not keep_low_mass_stars):
+ print('Remove low mass stars below grid and compact objects')
# Keep only those stars with Teff assigned.
- idx = np.where(star_systems_teff_non_nan > 0)[0]
+ idx = star_systems_teff_non_nan > 0
+ elif not keep_low_mass_stars:
+ print('Remove low mass stars, keep compact objects')
+ # Keep stars (with Teff) and any other compact objects (with phase info).
+ idx = (star_systems_teff_non_nan > 0) | (star_systems_phase_non_nan >= 0)
+ elif self.ifmr == None:
+ print('Remove compact objects, keep low mass stars below grid')
+ # Keep stars (with Teff) and objects below mass grid
+ idx = (star_systems_teff_non_nan > 0) | (star_systems['mass'] < np.min(self.iso.points['mass']))
else:
- # Keep stars (with Teff) and any other compact objects (with phase info).
- idx = np.where( (star_systems_teff_non_nan > 0) | (star_systems_phase_non_nan >= 0) )[0]
-
- if len(idx) != N_systems and self.verbose:
- print( 'Found {0:d} stars out of mass range'.format(N_systems - len(idx)))
+ print('Keep low mass stars below grid and compact objects')
+ # Keep all
+ idx = (star_systems_teff_non_nan > 0) | \
+ (star_systems_phase_non_nan >= 0) | \
+ (star_systems['mass'] < np.min(self.iso.points['mass']))
+
+ n_out_of_range = N_systems - sum(idx)
+ if self.verbose and n_out_of_range > 0:
+ print( 'Found {0:d} stars out of mass range'.format(n_out_of_range))
+
+ if keep_low_mass_stars:
+ lm_idx = star_systems['mass']0:
+ self.verbose = True
+ print('Missing photometry for',len(comp_filters),'filter - recomputing these columns:',comp_filters)
+
+ print('Loading stellar spectra')
+ # Initialize output for stellar spectra
+ self.spec_list = []
+ # For each isochrone point, extract the synthetic photometry.
+ for ii in range(len(self.points['Teff'])):
+ # Loop is currently taking about 0.11 s per iteration
+ gravity = float( self.points['logg'][ii] )
+ L = float( (self.points['L'][ii]*units.W).cgs / (units.erg / units.s)) # in erg/s
+ T = float( self.points['Teff'][ii] ) # in Kelvin
+ R = float( (self.points['R'][ii]*units.m).to('pc') / units.pc) # in pc
+ phase = int(self.points['phase'][ii])
+ # Get the atmosphere model now. Wavelength is in Angstroms
+ # This is the time-intensive call... everything else is negligable.
+ # If source is a star, pull from star atmospheres. If it is a WD,
+ # pull from WD atmospheres
+ if phase == 101:
+ star = wd_atm_func(temperature=T, gravity=gravity, metallicity=metallicity,
+ verbose=False)
+ else:
+ star = atm_func(temperature=T, gravity=gravity, metallicity=metallicity,
+ rebin=rebin)
+ # Trim wavelength range down to appropriate range
+ star = spectrum.trimSpectrum(star, wave_range[0], wave_range[1])
+ # Convert into flux observed at Earth (unreddened)
+ star *= (R / self.points.meta["DISTANCE"])**2 # in erg s^-1 cm^-2 A^-1
+ # Redden the spectrum. This doesn't take much time at all.
+ red = red_law.reddening(AKs).resample(star.wave)
+ star *= red
+ # Save the final spectrum to our spec_list for later use.
+ self.spec_list.append(star)
+
+ self.make_photometry(rebin=rebin, vega=vega, comp_filters=comp_filters)
+
+ # Drop filters in the saved file that we don't actually want here
+ all_filters = ['m_'+get_filter_col_name(f) for f in filters]
+ drop_columns = [col for col in self.points.columns if (col[:2]=='m_' and
+ (col not in all_filters))]
+ self.points.remove_columns(drop_columns)
return
- def make_photometry(self, rebin=True, vega=vega):
- """
+ def make_photometry(self, rebin=True, vega=vega, comp_filters=None):
+ """
Make synthetic photometry for the specified filters. This function
udpates the self.points table to include new columns with the
photometry.
-
- """
- startTime = time.time()
- meta = self.points.meta
+ """
+ if self.verbose:
+ startTime = time.time()
- print( 'Making photometry for isochrone: log(t) = %.2f AKs = %.2f dist = %d' % \
- (meta['LOGAGE'], meta['AKS'], meta['DISTANCE']))
- print( ' Starting at: ', datetime.datetime.now(), ' Usually takes ~5 minutes')
+ # print('Making photometry for isochrone: log(t) = %.2f AKs = %.2f dist = %d' % \
+ # (meta['LOGAGE'], meta['AKS'], meta['DISTANCE']))
+ # print( 'Starting at: ', datetime.datetime.now(), ' Usually takes ~5 minutes')
npoints = len(self.points)
verbose_fmt = 'M = {0:7.3f} Msun T = {1:5.0f} K m_{2:s} = {3:4.2f}'
+ #Calculate all filters, or select filters
+ if comp_filters is None:
+ comp_filters = self.filters
+
# Loop through the filters, get filter info, make photometry for
# all stars in this filter.
- for ii in self.filters:
- prt_fmt = 'Starting filter: {0:s} Elapsed time: {1:.2f} seconds'
- print( prt_fmt.format(ii, time.time() - startTime))
-
+ for ii in comp_filters:
+ if self.verbose:
+ prt_fmt = 'Starting filter: {0:s} Elapsed time: {1:.2f} seconds'
+ print( prt_fmt.format(ii, time.time() - startTime))
+
filt = get_filter_info(ii, rebin=rebin, vega=vega)
filt_name = get_filter_col_name(ii)
@@ -1044,21 +1345,23 @@ def make_photometry(self, rebin=True, vega=vega):
col_name = 'm_' + filt_name
mag_col = Column(np.zeros(npoints, dtype=float), name=col_name)
self.points.add_column(mag_col)
-
+
# Loop through each star in the isochrone and do the filter integration
- print('Starting synthetic photometry')
+ if self.verbose:
+ print('Starting synthetic photometry')
for ss in range(npoints):
star = self.spec_list[ss] # These are already extincted, observed spectra.
star_mag = mag_in_filter(star, filt)
-
+
self.points[col_name][ss] = star_mag
-
- if (self.verbose and (ss % 100) == 0):
+
+ if self.verbose and (ss % 100) == 0:
print( verbose_fmt.format(self.points['mass'][ss], self.points['Teff'][ss],
filt_name, star_mag))
- endTime = time.time()
- print( ' Time taken: {0:.2f} seconds'.format(endTime - startTime))
+ if self.verbose:
+ endTime = time.time()
+ print( 'Time taken: {0:.2f} seconds'.format(endTime - startTime))
if self.save_file != None:
with warnings.catch_warnings():
@@ -1067,30 +1370,6 @@ def make_photometry(self, rebin=True, vega=vega):
return
- def check_save_file(self, evo_model, atm_func, red_law):
- """
- Check to see if save_file exists, as saved by the save_file
- and save_file_legacy objects. If the filename exists, check the
- meta-data as well.
-
- returns a boolean: True is file exists, false otherwise
- """
- out_bool = False
-
- if os.path.exists(self.save_file) | os.path.exists(self.save_file_legacy):
- try:
- tmp = Table.read(self.save_file)
- except:
- tmp = Table.read(self.save_file_legacy)
-
-
- # See if the meta-data matches: evo model, atm_func, redlaw
- if ( (tmp.meta['EVOMODEL'] == type(evo_model).__name__) &
- (tmp.meta['ATMFUNC'] == atm_func.__name__) &
- (tmp.meta['REDLAW'] == red_law.name) ):
- out_bool = True
-
- return out_bool
def plot_CMD(self, mag1, mag2, savefile=None):
"""
@@ -1103,7 +1382,7 @@ def plot_CMD(self, mag1, mag2, savefile=None):
mag2 : string
The name of the second magnitude column to be plotted.
savefile : string (default None)
- If a savefile is specified, then the plot will be saved to that file.
+ If a savefile is specified, then the plot will be saved to that file.
"""
plt.clf()
plt.plot(self.points[mag1] - self.points[mag2], self.points[mag1],
@@ -1111,7 +1390,7 @@ def plot_CMD(self, mag1, mag2, savefile=None):
plt.gca().invert_yaxis()
plt.xlabel(mag1 + ' - ' + mag2 + ' (mag)')
plt.ylabel(mag1 + ' (mag)')
-
+
fmt_title = 'logAge={0:.2f}, d={1:.2f} kpc, AKs={2:.2f}'
plt.title(fmt_title.format(self.points.meta['LOGAGE'],
self.points.meta['DISTANCE']/1e3,
@@ -1119,34 +1398,34 @@ def plot_CMD(self, mag1, mag2, savefile=None):
if savefile != None:
plt.savefig(savefile)
-
+
return
def plot_mass_magnitude(self, mag, savefile=None):
"""
Make a standard mass-luminosity relation plot for this isochrone.
-
+
Parameters
----------
mag : string
The name of the magnitude column to be plotted.
savefile : string (default None)
- If a savefile is specified, then the plot will be saved to that file.
+ If a savefile is specified, then the plot will be saved to that file.
"""
plt.clf()
plt.semilogx(self.points['mass'], self.points[mag], 'k.')
plt.gca().invert_yaxis()
plt.xlabel(r'Mass (M$_\odot$)')
plt.ylabel(mag + ' (mag)')
-
+
fmt_title = 'logAge={0:.2f}, d={1:.2f} kpc, AKs={2:.2f}'
plt.title(fmt_title.format(self.points.meta['LOGAGE'],
self.points.meta['DISTANCE']/1e3,
self.points.meta['AKS']))
-
+
if savefile != None:
plt.savefig(savefile)
-
+
return
#===================================================#
@@ -1168,7 +1447,7 @@ def __init__(self, logAge, distance, evo_model=default_evo_model,
Functions on this object:
apply_reddening (Apply reddening with defined redlaw and AKs)
make_photometry (make synthetic photometry for spectra)
-
+
Parameters
----------
logAge : float
@@ -1206,13 +1485,13 @@ def __init__(self, logAge, distance, evo_model=default_evo_model,
spectrum. This is very useful to save computation time down the
road.
"""
- t1 = time.time()
+ t1 = time.time()
c = constants
# Get solar metallicity models for a population at a specific age.
# Takes about 0.1 seconds.
- evol = evo_model.isochrone(age=10**logAge) # solar metallicity
-
+ evol = evo_model.isochrone(age=10**logAge) # solar metallicity
+
# Eliminate cases where log g is less than 0
idx = np.where(evol['logg'] > 0)
evol = evol[idx]
@@ -1223,8 +1502,8 @@ def __init__(self, logAge, distance, evo_model=default_evo_model,
evol = evol[idx]
if max_mass != None:
idx = np.where(evol['mass'] <= max_mass)
- evol = evol[idx]
-
+ evol = evol[idx]
+
# Trim down the table by selecting every Nth point where
# N = mass sampling factor.
evol = evol[::mass_sampling]
@@ -1259,30 +1538,31 @@ def __init__(self, logAge, distance, evo_model=default_evo_model,
# Get the atmosphere model now. Wavelength is in Angstroms
# This is the time-intensive call... everything else is negligable.
star = atm_func(temperature=T, gravity=gravity)
-
+
# Trim wavelength range down to JHKL range (0.5 - 5.2 microns)
star = spectrum.trimSpectrum(star, wave_range[0], wave_range[1])
# Convert into flux observed at Earth (unreddened)
star *= (R / distance)**2 # in erg s^-1 cm^-2 A^-1
-
- # Save the final spectrum to our spec_list for later use.
+
+ # Save the final spectrum to our spec_list for later use.
self.spec_list.append(star)
# Append all the meta data to the summary table.
-
+
tab.meta['ATMFUNC'] = atm_func.__name__
tab.meta['EVOMODEL'] = type(evo_model).__name__
+ tab.meta['EVOMODELVERSION'] = evo_model.model_version_name
tab.meta['LOGAGE'] = logAge
tab.meta['DISTANCE'] = distance
tab.meta['WAVEMIN'] = wave_range[0]
tab.meta['WAVEMAX'] = wave_range[1]
self.points = tab
-
+
t2 = time.time()
print('Isochrone generation took {0:f} s.'.format(t2-t1))
-
+
return
def apply_reddening(self, AKs, extinction_law, dAKs=0, dist='uniform', dAKs_max=None):
@@ -1294,7 +1574,7 @@ def apply_reddening(self, AKs, extinction_law, dAKs=0, dist='uniform', dAKs_max=
----------
AKs: float
Total extinction in AKs
-
+
extinction_law: SPISEA extinction object
Extinction law to be used on the spectra
@@ -1304,13 +1584,13 @@ def apply_reddening(self, AKs, extinction_law, dAKs=0, dist='uniform', dAKs_max=
dAKs_max: float or None
If not none, defines the maximum |dAKs| a star can
- have in gaussian distribution case
+ have in gaussian distribution case
dist: string, 'uniform' or 'gaussian'
Distribution to draw differential reddening from. If uniform,
dAKs will cut off at Aks +/- dAKs. Otherwise, will draw
from Gaussian of width AKs +/- dAks
-
+
"""
self.AKs = np.ones(len(self.spec_list))
# Apply reddening to each object in the spec list
@@ -1321,25 +1601,25 @@ def apply_reddening(self, AKs, extinction_law, dAKs=0, dist='uniform', dAKs_max=
# extinction law
if dAKs != 0:
if dist == 'gaussian':
- AKs_act = np.random.normal(loc=AKs, scale=dAKs)
+ AKs_act = self.rng.normal(loc=AKs, scale=dAKs)
# Apply dAKs_max if desired. Redo if diff > dAKs_max
if dAKs_max != None:
diff = abs(AKs_act - AKs)
while diff > dAKs_max:
print('While loop active')
- AKs_act = np.random.normal(loc=AKs, scale=dAKs)
+ AKs_act = self.rng.normal(loc=AKs, scale=dAKs)
diff = abs(AKs_act - AKs)
elif dist == 'uniform':
low = AKs - dAKs
high = AKs + dAKs
- AKs_act = np.random.uniform(low=low, high=high)
+ AKs_act = self.rng.uniform(low=low, high=high)
else:
print('dist {0} undefined'.format(dist))
return
else:
AKs_act = AKs
- red = extinction_law.reddening(AKs_act).resample(star.wave)
+ red = extinction_law.reddening(AKs_act).resample(star.wave)
star *= red
# Update the spectrum in spec list
@@ -1352,7 +1632,7 @@ def apply_reddening(self, AKs, extinction_law, dAKs=0, dist='uniform', dAKs_max=
return
def make_photometry(self, filters, rebin=True):
- """
+ """
Make synthetic photometry for the specified filters. This function
udpates the self.points table to include new columns with the
photometry.
@@ -1362,11 +1642,11 @@ def make_photometry(self, filters, rebin=True):
filters : dictionary
A dictionary containing the filter name (for the output columns)
and the filter specification string that can be processed by pysynphot.
-
+
rebin: boolean
- True to rebin filter function (only used if non-zero transmission points are
+ True to rebin filter function (only used if non-zero transmission points are
larger than 1500 points)
-
+
"""
npoints = len(self.points)
@@ -1383,35 +1663,78 @@ def make_photometry(self, filters, rebin=True):
col_name = 'mag_' + filt_name
mag_col = Column(np.zeros(npoints, dtype=float), name=col_name)
self.points.add_column(mag_col)
-
+
# Loop through each star in the isochrone and do the filter integration
for ss in range(npoints):
star = self.spec_list[ss] # These are already extincted, observed spectra.
star_mag = mag_in_filter(star, filt)
-
+
self.points[col_name][ss] = star_mag
-
-
+
+
endTime = time.time()
print( ' Time taken: {0:.2f} seconds'.format(endTime - ts))
return
+def check_save_file(save_file_path, evo_model, atm_func, red_law, verbose=False):
+ """
+ Check to see if save_file exists, as saved by the save_file
+ and save_file_legacy objects. If the filename exists, check the
+ meta-data as well.
+
+ returns a boolean: True is file exists, false otherwise
+ """
+ out_bool = False
+
+ if not os.path.exists(save_file_path):
+ if verbose: print(f'Isochrone file {save_file_path} does not exist.')
+ return out_bool
+
+ tmp = Table.read(save_file_path)
+
+ # See if the meta-data matches: evo model, atm_func, redlaw
+ if ( (tmp.meta['EVOMODEL'] == type(evo_model).__name__) &
+ (tmp.meta['ATMFUNC'] == atm_func.__name__) &
+ (tmp.meta['REDLAW'] == red_law.name) ):
+ out_bool = True
+ else:
+ # If out_bool is false, print out what doesn't match
+ if verbose:
+ print(f'Isochrone file {save_file_path} exists, but meta-data does not match.')
+ if tmp.meta['EVOMODEL'] != type(evo_model).__name__:
+ print(f' EVOMODEL: {tmp.meta["EVOMODEL"]} != {type(evo_model).__name__}')
+ if tmp.meta['ATMFUNC'] != atm_func.__name__:
+ print(f' ATMFUNC: {tmp.meta["ATMFUNC"]} != {atm_func.__name__}')
+ if tmp.meta['REDLAW'] != red_law.name:
+ print(f' REDLAW: {tmp.meta["REDLAW"]} != {red_law.name}')
+
+ # Check model version if it was logged
+ if 'EVOMODELVERSION' in tmp.meta:
+ if tmp.meta['EVOMODELVERSION'] != evo_model.model_version_name:
+ out_bool=False
+ if verbose:
+ print(f'EVOMODELVERSION does not match: The recorded {tmp.meta["EVOMODELVERSION"]} does not matched the existing version {evo_model.model_version_name}')
+
+
+ return out_bool
+
+
def get_filter_info(name, vega=vega, rebin=True):
- """
+ """
Define filter functions, setting ZP according to
Vega spectrum. Input name is the SPISEA
obs_string
"""
tmp = name.split(',')
filterName = tmp[-1]
-
+
if name.startswith('nirc2'):
filt = filters.get_nirc2_filt(filterName)
elif name.startswith('2mass'):
filt = filters.get_2mass_filt(filterName)
-
+
elif name.startswith('vista'):
filt = filters.get_vista_filt(filterName)
@@ -1426,10 +1749,10 @@ def get_filter_info(name, vega=vega, rebin=True):
elif name.startswith('jg'):
filt = filters.get_Johnson_Glass_filt(filterName)
-
+
elif name.startswith('nirc1'):
filt = filters.get_nirc1_filt(filterName)
-
+
elif name.startswith('ctio_osiris'):
filt = filters.get_ctio_osiris_filt(filterName)
@@ -1441,7 +1764,7 @@ def get_filter_info(name, vega=vega, rebin=True):
elif name.startswith('ukirt'):
filt = filters.get_ukirt_filt(filterName)
-
+
elif name.startswith('keck_osiris'):
filt = filters.get_keck_osiris_filt(filterName)
@@ -1454,10 +1777,23 @@ def get_filter_info(name, vega=vega, rebin=True):
elif name.startswith('hawki'):
filt = filters.get_hawki_filt(filterName)
-
+
+ elif name.startswith('rubin'):
+ filt = filters.get_rubin_filt(filterName)
+
+ elif name.startswith('euclid'):
+ filt = filters.get_euclid_filt(filterName)
+
+ elif name.startswith('nsfcam'):
+ filt = filters.get_nsfcam_filt(filterName)
+
else:
- filt = ObsBandpass(name)
-
+ # Otherwise, look for the filter info in the cdbs/mtab and cdbs/comp files
+ try:
+ filt = ObsBandpass(name)
+ except:
+ raise Exception('Filter {0} not understood. Check spelling and make sure cdbs/mtab and cdbs/comp files are up to date'.format(name))
+
# Convert to ArraySpectralElement for resampling.
filt = spectrum.ArraySpectralElement(filt.wave, filt.throughput,
waveunits=filt.waveunits,
@@ -1475,14 +1811,14 @@ def get_filter_info(name, vega=vega, rebin=True):
# Otherwise, throw an error
idx = np.where(filt.throughput > 0.001)[0]
if (min(filt.wave[idx]) < min(vega.wave)) | (max(filt.wave[idx]) > max(vega.wave)):
- raise ValueError('Vega spectrum doesnt cover filter wavelength range!')
+ raise ValueError('Vega spectrum doesnt cover filter wavelength range!')
vega_obs = obs.Observation(vega, filt, binset=filt.wave, force='taper')
#vega_flux = vega_obs.binflux.sum()
diff = np.diff(vega_obs.binwave)
diff = np.append(diff, diff[-1])
vega_flux = np.sum(vega_obs.binflux * diff)
-
+
vega_mag = 0.03
filt.flux0 = vega_flux
@@ -1490,9 +1826,10 @@ def get_filter_info(name, vega=vega, rebin=True):
return filt
+
def get_filter_col_name(obs_str):
"""
- Get standard column name for synthetic photometry based on
+ Get standard column name for synthetic photometry based on
the input string. The input string is expected to be an
appropriate SPISEA obs_string
"""
@@ -1505,11 +1842,13 @@ def get_filter_col_name(obs_str):
# Catch Gaia filter cases. Otherwise, it is HST filter
if 'dr2_rev' in tmp:
filt_name = 'gaiaDR2_{0}'.format(tmp[-1])
+ elif 'roman' in tmp:
+ filt_name = 'roman_{0}'.format(tmp[-1])
else:
filt_name = 'hst_{0}'.format(tmp[-1])
else:
filt_name = '{0}_{1}'.format(tmp[0], tmp[1])
-
+
return filt_name
def get_obs_str(col):
@@ -1519,7 +1858,7 @@ def get_obs_str(col):
"""
# Remove the trailing m_
name = col[2:]
-
+
# Define dictionary for filters
filt_list = {'hst_f127m': 'wfc3,ir,f127m', 'hst_f139m': 'wfc3,ir,f139m', 'hst_f153m': 'wfc3,ir,f153m',
'hst_f814w': 'acs,wfc1,f814w', 'hst_f125w': 'wfc3,ir,f125w', 'hst_f160w': 'wfc3,ir,f160w',
@@ -1541,7 +1880,7 @@ def get_obs_str(col):
'jwst_F187N': 'jwst,F187N',
'jwst_F200W': 'jwst,F200W',
'jwst_F210M': 'jwst,F210M',
- 'jwst_F250M': 'jwst,F250M',
+ 'jwst_F250M': 'jwst,F250M',
'jwst_F277W': 'jwst,F277W',
'jwst_F300M': 'jwst,F300M',
'jwst_F322W2': 'jwst,F322W2',
@@ -1561,10 +1900,14 @@ def get_obs_str(col):
'nirc2_FeII': 'nirc2,FeII', 'nirc2_Brgamma': 'nirc2,Brgamma',
'2mass_J': '2mass,J', '2mass_H': '2mass,H', '2mass_Ks': '2mass,Ks',
'ubv_U':'ubv,U', 'ubv_B':'ubv,B', 'ubv_V':'ubv,V', 'ubv_R':'ubv,R',
- 'ubv_I':'ubv,I',
+ 'ubv_I':'ubv,I',
'jg_J': 'jg,J', 'jg_H': 'jg,H', 'jg_K': 'jg,K',
'nirc1_K':'nirc1,K', 'nirc1_H':'nirc1,H',
'naco_J':'naco,J', 'naco_H':'naco,H', 'naco_Ks':'naco,Ks',
+ 'naco_IB_2.00': 'naco,IB_2.00', 'naco_IB_2.03':'naco,IB_2.03', 'naco_IB_2.06':'naco,IB_2.06',
+ 'naco_IB_2.24':'naco,IB_2.24', 'naco_IB_2.27':'naco,IB_2.27',
+ 'naco_IB_2.30':'naco,IB_2.30', 'naco_IB_2.33':'naco,IB_2.33',
+ 'naco_IB_2.36':'naco,IB_2.36',
'ukirt_J':'ukirt,J', 'ukirt_H':'ukirt,H', 'ukirt_K':'ukirt,K',
'ctio_osiris_H': 'ctio_osiris,H', 'ctio_osiris_K': 'ctio_osiris,K',
'ztf_g':'ztf,g', 'ztf_r':'ztf,r', 'ztf_i':'ztf,i',
@@ -1572,10 +1915,29 @@ def get_obs_str(col):
'gaiaDR2_Grp':'gaia,dr2_rev,Grp',
'hawki_J': 'hawki,J',
'hawki_H': 'hawki,H',
- 'hawki_Ks': 'hawki,Ks'}
+ 'hawki_Ks': 'hawki,Ks',
+ 'roman_f062': 'roman,wfi,f062',
+ 'roman_f087': 'roman,wfi,f087',
+ 'roman_f106': 'roman,wfi,f106',
+ 'roman_f129': 'roman,wfi,f129',
+ 'roman_f158': 'roman,wfi,f158',
+ 'roman_f146': 'roman,wfi,f146',
+ 'roman_f213': 'roman,wfi,f213',
+ 'roman_f184': 'roman,wfi,f184',
+ 'rubin_g':'rubin,g',
+ 'rubin_i':'rubin,i',
+ 'rubin_r':'rubin,r',
+ 'rubin_u':'rubin,u',
+ 'rubin_z':'rubin,z',
+ 'rubin_y':'rubin,y',
+ 'euclid_VIS':'euclid,VIS',
+ 'euclid_Y':'euclid,Y',
+ 'euclid_J':'euclid,J',
+ 'euclid_H':'euclid,H',
+ 'nsfcam_L':'nsfcam,L'}
obs_str = filt_list[name]
-
+
return obs_str
def rebin_spec(wave, specin, wavnew):
@@ -1588,7 +1950,7 @@ def rebin_spec(wave, specin, wavnew):
f = np.ones(len(wave))
filt = spectrum.ArraySpectralElement(wave, f, waveunits='angstrom')
obs_f = obs.Observation(spec, filt, binset=wavnew, force='taper')
-
+
return obs_f.binflux
def make_isochrone_grid(age_arr, AKs_arr, dist_arr, evo_model=default_evo_model,
@@ -1599,7 +1961,7 @@ def make_isochrone_grid(age_arr, AKs_arr, dist_arr, evo_model=default_evo_model,
'wfc3,ir,f153m']):
"""
Wrapper routine to generate a grid of isochrones of different ages,
- extinctions, and distances.
+ extinctions, and distances.
Parameters:
----------
@@ -1611,7 +1973,7 @@ def make_isochrone_grid(age_arr, AKs_arr, dist_arr, evo_model=default_evo_model,
dist_arr: array
Array of distances to loop over (pc)
-
+
evo_models: SPISEA evolution object
Which evolution models to use
@@ -1628,7 +1990,7 @@ def make_isochrone_grid(age_arr, AKs_arr, dist_arr, evo_model=default_evo_model,
Mass sampling of isochrone, relative to original mass sampling
filters: dictionary
- Which filters to do the synthetic photometry on
+ Which filters to do the synthetic photometry on
"""
print( '**************************************')
print( 'Start generating isochrones')
@@ -1673,7 +2035,7 @@ def mag_in_filter(star, filt):
diff = np.diff(star_in_filter.binwave)
diff = np.append(diff, diff[-1])
star_flux = np.sum(star_in_filter.binflux * diff)
-
+
star_mag = -2.5 * math.log10(star_flux / filt.flux0) + filt.mag0
return star_mag
@@ -1696,10 +2058,10 @@ def match_model_masses(isoMasses, starMasses):
idx = np.where(dm_frac > 0.1)[0]
indices[idx] = -1
-
+
return indices
-
+
def get_evo_model_by_string(evo_model_string):
return getattr(evolution, evo_model_string)
@@ -1710,7 +2072,7 @@ def calc_ab_vega_filter_conversion(filt_str):
AB and Vega magnitudes for a given filter:
m_AB - m_vega
- Note: this conversion is just the vega magnitude in
+ Note: this conversion is just the vega magnitude in
AB system
Parameters:
@@ -1730,14 +2092,14 @@ def calc_ab_vega_filter_conversion(filt_str):
filt_wave = filt.wave
filt_mu = c / filt_wave
s_filt = filt.throughput
-
+
# Interpolate the filter function, determine what the
# filter function is at the exact sampling of the
# vega spectrum (in freq space)
filt_interp = scipy.interpolate.interp1d(filt_mu, s_filt, kind='linear', bounds_error=False,
fill_value=0)
s_interp = filt_interp(vega_mu)
-
+
# Now for the m_ab calculation
mu_diff = np.diff(vega_mu)
numerator = np.sum(vega_flux_mu[:-1] * s_interp[:-1] * mu_diff)
@@ -1755,10 +2117,10 @@ def calc_ab_vega_filter_conversion(filt_str):
# fill_value=0)
#s_interp = filt_interp(vega.wave)
- # Calculate the numerator
+ # Calculate the numerator
#diff = np.diff(vega.wave)
#numerator2 = np.sum((vega.wave[:-1]**2. / c) * vega.flux[:-1] * s_interp[:-1] * diff)
-
+
# Now we need to intergrate the filter response for the denominator
#denominator2 = np.sum(s_interp[:-1] * diff)
@@ -1767,3 +2129,42 @@ def calc_ab_vega_filter_conversion(filt_str):
return vega_mag_ab
+def calc_st_vega_filter_conversion(filt_str):
+ """
+ Function to calculate the conversion between
+ ST and Vega magnitudes for a given filter:
+ m_ST - m_vega
+
+ Note: this conversion is just the vega magnitude in
+ ST system
+
+ Parameters:
+ -----------
+ filt_str: string
+ Filter identification string
+ """
+ # Get filter info
+ filt = get_filter_info(filt_str)
+
+ # Interpolate the filter function to be the exact same sampling as the
+ # vega spectrum
+ c = 2.997*10**18 # A / s
+ filt_interp = scipy.interpolate.interp1d(filt.wave, filt.throughput, kind='linear', bounds_error=False,
+ fill_value=0)
+ s_interp = filt_interp(vega.wave)
+
+ # Calculate the numerator
+ diff = np.diff(vega.wave)
+ numerator = np.sum(vega.flux[:-1] * s_interp[:-1] * diff)
+
+ # Now we need to intergrate the filter response for the denominator
+ denominator = np.sum(s_interp[:-1] * diff)
+ # Fλ must be in erg cm–2 sec–1 Å–1
+
+ # Calculate vega AB magnitude. This is the conversion
+ vega_mag_st = -2.5 * np.log10(numerator / denominator) - 21.1
+
+ print('For {0}, m_st - m_vega = {1}'.format(filt_str, vega_mag_st))
+
+ return vega_mag_st
+
diff --git a/spisea/tests/__init__.py b/spisea/tests/__init__.py
index 9319f894..45d1df25 100755
--- a/spisea/tests/__init__.py
+++ b/spisea/tests/__init__.py
@@ -2,20 +2,3 @@
"""
This packages contains package tests.
"""
-
-def test_evolution_merged_pisa_ekstrom():
- """Test the MergedPisaEkstromParsec() class in
- evolution.py
- """
-
- from popstar import evolution
-
- evo = evolution.MergedPisaEkstromParsec()
-
- iso1 = evo.isochrone(age=3e6)
- iso2 = evo.isochrone(age=5e6)
-
- # Check that the younger isochrone has a higher mass.
- assert iso1['mass'].max() > iso2['mass'].max()
-
- return
diff --git a/spisea/tests/test_data/companions.pkl b/spisea/tests/test_data/companions.pkl
new file mode 100644
index 00000000..0395d75d
Binary files /dev/null and b/spisea/tests/test_data/companions.pkl differ
diff --git a/spisea/tests/test_data/star_systems.pkl b/spisea/tests/test_data/star_systems.pkl
new file mode 100644
index 00000000..0cbdd246
Binary files /dev/null and b/spisea/tests/test_data/star_systems.pkl differ
diff --git a/spisea/tests/test_exceptions.py b/spisea/tests/test_exceptions.py
new file mode 100644
index 00000000..b20a132d
--- /dev/null
+++ b/spisea/tests/test_exceptions.py
@@ -0,0 +1,37 @@
+from spisea import evolution, exceptions
+import copy
+import os
+import pdb
+
+
+def test_grid_number_exception():
+ """
+ Make sure check_evo_grid_number works as expected
+ """
+ #----Case 1: installed model grid is too low (raise error)----#
+ # Get installed grid num
+ models_dir = '{0}/evolution/'.format(os.environ['SPISEA_MODELS'])
+ installed_grid = evolution.get_installed_grid_num(models_dir)
+
+ # Make sure required grid is too large
+ required_grid = installed_grid + 1
+
+ # Make sure correct error is raised, otherwise fail
+ try:
+ evolution.check_evo_grid_number(required_grid, models_dir)
+ except exceptions.ModelMismatch:
+ pass
+ else:
+ raise Exception('check_evo_grid_number failed')
+
+ # Case 2: installed model grid is same (no error)
+ required_grid = copy.deepcopy(installed_grid)
+
+ evolution.check_evo_grid_number(required_grid, models_dir)
+
+ # Case 3: installed model grid is higher than required grid (no error)
+ required_grid = installed_grid - 1.0
+
+ evolution.check_evo_grid_number(required_grid, models_dir)
+
+ return
\ No newline at end of file
diff --git a/spisea/imf/tests/test_imf.py b/spisea/tests/test_imf.py
similarity index 77%
rename from spisea/imf/tests/test_imf.py
rename to spisea/tests/test_imf.py
index 1c5fac06..5f465747 100755
--- a/spisea/imf/tests/test_imf.py
+++ b/spisea/tests/test_imf.py
@@ -1,12 +1,10 @@
import numpy as np
-import nose.tools
import time
import pdb
+import cProfile
+from spisea.imf import imf, multiplicity
def test_generate_cluster():
- from .. import imf
- from .. import multiplicity
-
# Make multiplicity object
imf_multi = multiplicity.MultiplicityUnresolved()
@@ -33,8 +31,6 @@ def test_generate_cluster():
return
def test_prim_power():
- from .. import imf
-
#mass_limits = np.array([0.1, 1.0, 100.0])
#powers = np.array([-2.0, -1.8])
mass_limits = np.array([1.0, 100.0])
@@ -61,9 +57,6 @@ def test_prim_power():
return
def test_xi():
- from .. import imf
-
- import cProfile, pstats, io
#from pstats import SortKey
pr = cProfile.Profile()
@@ -73,14 +66,14 @@ def test_xi():
##########
#
- # Test validity of returned values.
- #
+ # Test validity of returned values.
+ #
##########
N_size = 10
m = np.linspace(0.2, 20, N_size)
val_good = np.array([1.6206566 , 0.26895718, 0.10135922, 0.05639448, 0.03703704,
0.0243668 , 0.01613091, 0.01137139, 0.00839526, 0.00642142])
-
+
val_test = np.zeros(len(m), dtype=float)
for ii in range(len(m)):
val_test[ii] = imf_tmp.xi(m[ii])
@@ -91,33 +84,90 @@ def test_xi():
##########
#
# Performance testing
- #
+ #
##########
t1 = time.time()
# pr.enable()
-
+
# Run a time test
N_size = int(1e4)
m = np.random.uniform(1.1, 99.0, size=N_size)
foo1 = imf_tmp.xi(m)
-
+
# pr.disable()
t2 = time.time()
print('test_xi() runtime = {0:.3f} s for {1:d} masses'.format(t2 - t1, N_size))
-
+
# s = io.StringIO()
# sortby = SortKey.CUMULATIVE
# ps = pstats.Stats(pr, stream=s).sort_stats(sortby)
# ps.print_stats()
- # print(s.getvalue())
+ # print(s.getvalue())
return
-def test_mxi():
- from .. import imf
+def test_xi2():
+ """
+ Test that xi() produces the correct probability for
+ a given slope.
+ """
+ #from pstats import SortKey
+ pr = cProfile.Profile()
+
+ # Negative slope
+ mass_limits = np.array([1.0, 10.0])
+ powers = np.array([-2.0])
+ imf_tmp = imf.IMF_broken_powerlaw(mass_limits, powers)
+ imf_tmp.normalize(1e4)
+
+ tmp = np.random.rand(100)
+ masses = imf_tmp.dice_star_cl(tmp)
+
+ pdf = imf_tmp.xi(masses)
+
+ sdx = masses.argsort()
+
+ pdf_sorted = pdf[sdx]
+
+ print('Testing negative slope')
+ assert pdf_sorted[0] > pdf_sorted[-1]
+ assert pdf_sorted[0] > pdf_sorted[1]
+ assert pdf.max() == pdf_sorted[0]
+
+ # Positive slope
+ mass_limits2 = np.array([1.0, 10.0])
+ powers2 = np.array([2.0])
+ imf_tmp2 = imf.IMF_broken_powerlaw(mass_limits2, powers2)
+ imf_tmp2.normalize(1e4)
+
+ tmp2 = np.random.rand(100)
+ masses2 = imf_tmp2.dice_star_cl(tmp2)
+
+ pdf2 = imf_tmp2.xi(masses2)
+
+ sdx2 = masses2.argsort()
- import cProfile, pstats, io
+ pdf_sorted2 = pdf2[sdx2]
+
+ print('Testing positive slope')
+ assert pdf_sorted2[0] < pdf_sorted2[-1]
+ assert pdf_sorted2[0] < pdf_sorted2[1]
+ assert pdf2.min() == pdf_sorted2[0]
+
+
+ import pylab as plt
+ plt.clf()
+ plt.loglog(masses[sdx], pdf_sorted, 'k.')
+ plt.axis('equal')
+ # pdb.set_trace()
+
+ return
+
+
+
+
+def test_mxi():
#from pstats import SortKey
pr = cProfile.Profile()
@@ -127,8 +177,8 @@ def test_mxi():
##########
#
- # Test validity of returned values.
- #
+ # Test validity of returned values.
+ #
##########
N_size = 10
m = np.linspace(0.2, 20, N_size)
@@ -145,11 +195,11 @@ def test_mxi():
##########
#
# Performance testing
- #
+ #
##########
t1 = time.time()
# pr.enable()
-
+
# Run a time test
N_size = int(1e4)
m = np.random.uniform(1.1, 99.0, size=N_size)
@@ -160,29 +210,26 @@ def test_mxi():
t2 = time.time()
print('test_mxi() runtime = {0:.3f} s for {1:d} masses'.format(t2 - t1, N_size))
-
+
# s = io.StringIO()
# sortby = SortKey.CUMULATIVE
# ps = pstats.Stats(pr, stream=s).sort_stats(sortby)
# ps.print_stats()
- # print(s.getvalue())
+ # print(s.getvalue())
return
def test_theta_closed():
- from .. import imf
-
- import cProfile, pstats, io
#from pstats import SortKey
-
+
mass_limits = np.array([0.1, 1.0, 10.0, 100.0])
powers = np.array([-0.3, -1.5, -2.3])
imf_tmp = imf.IMF_broken_powerlaw(mass_limits, powers)
##########
#
- # Test validity of returned values.
- #
+ # Test validity of returned values.
+ #
##########
N_size = 10
m = np.linspace(0.2, 20, N_size)
@@ -203,22 +250,22 @@ def test_theta_closed():
np.testing.assert_equal(val_test, val_good)
-
+
##########
#
# Speed tests and performance profiling.
- #
+ #
##########
N_size = 10000
m = np.linspace(1.1, 99, N_size)
-
+
tmp = np.zeros((len(m), len(powers)), dtype=float)
t1 = time.time()
# pr = cProfile.Profile()
# pr.enable()
-
+
for ii in range(len(m)):
tmp[ii] = imf.theta_closed(m[ii] - imf_tmp._m_limits_low)
@@ -226,7 +273,7 @@ def test_theta_closed():
t2 = time.time()
print('Runtime = {0:.3f} s for {1:d} masses'.format(t2 - t1, N_size))
-
+
# s = io.StringIO()
# sortby = SortKey.CUMULATIVE
# ps = pstats.Stats(pr, stream=s).sort_stats(sortby)
@@ -235,4 +282,4 @@ def test_theta_closed():
return
-
+
diff --git a/spisea/tests/test_models.py b/spisea/tests/test_models.py
index 27c66ff2..4ba0e683 100644
--- a/spisea/tests/test_models.py
+++ b/spisea/tests/test_models.py
@@ -1,30 +1,44 @@
# Test functions for the different stellar evolution and atmosphere models
+from spisea import evolution, atmospheres, synthetic
+import numpy as np
import pdb
+def test_evo_model_grid_num():
+ """
+ Make sure evolution models have both evo_grid_num
+ and evo_grid_min (e.g., make sure these functions
+ are working). Try it on one evolution model here;
+ we'll test on all evo models in another function.
+ """
+ # Make MIST evolution model, check evo grid variables
+ evo = evolution.MISTv1()
+ assert isinstance(evo.evo_grid_min, float)
+
+ return
+
def test_evolution_models():
"""
Test to make sure the different evolution models work
"""
- from spisea import evolution
-
# Age ranges to test
age_young_arr = [6.7, 7.9]
age_all_arr = [6.7, 8.0, 9.7]
+ age_all_MIST_arr = [5.2, 6.7, 9.7, 10.13]
# Metallicity ranges to test (if applicable)
- metal_range = [-2.5, 0, 0.4]
+ metal_range = [-2.5, -1.5, 0, 0.25, 0.4]
metal_solar = [0]
# Array of evolution models to test
- evo_models = [evolution.MISTv1(version=1.2), evolution.MergedBaraffePisaEkstromParsec(), evolution.MergedSiessGenevaPadova(),
+ evo_models = [evolution.MISTv1(version=1.2), evolution.MergedBaraffePisaEkstromParsec(),
evolution.Parsec(), evolution.Baraffe15(), evolution.Ekstrom12(), evolution.Pisa()]
-
+
# Array of age_ranges for the specific evolution models to test
- age_vals = [age_all_arr, age_all_arr, age_all_arr, age_all_arr, age_young_arr, age_young_arr, age_young_arr]
+ age_vals = [age_all_MIST_arr, age_all_arr, age_all_arr, age_young_arr, age_young_arr, age_young_arr]
# Array of metallicities for the specific evolution models to test
- metal_vals = [metal_range, metal_solar, metal_solar, metal_solar, metal_solar, metal_solar, metal_solar]
+ metal_vals = [metal_range, metal_solar, metal_solar, metal_solar, metal_solar, metal_solar]
assert len(evo_models) == len(age_vals) == len(metal_vals)
@@ -38,22 +52,56 @@ def test_evolution_models():
for kk in age_vals[ii]:
try:
test = evo.isochrone(age=10**kk, metallicity=jj)
+
+ # Make sure the actual isochrone metallicity taken is
+ # indeed the closest to the desired metallicity (e.g., closest point
+ # in evo grid)
+ z_ratio = np.log10(np.array(evo.z_list) / evo.z_solar)
+ closest_idx = np.where( abs(z_ratio - jj) == min(abs(z_ratio - jj)) )[0][0]
+ expected_val = z_ratio[closest_idx]
+
+ assert np.isclose(test.meta['metallicity_act'], expected_val, atol=0.01)
+
except:
raise Exception('EVO TEST FAILED: {0}, age = {1}, metal = {2}'.format(evo, kk, jj))
print('Done {0}'.format(evo))
-
+
+ return
+
+def test_synthpop_MIST_extension():
+ """
+ Testing the synthpop MIST extension to consistently lower masses
+ """
+ evo1_grid = evolution.MISTv1(version=1.2, synthpop_extension=False)
+ evo2_grid = evolution.MISTv1(version=1.2, synthpop_extension=True)
+
+ # Extract same isochrone from these two models
+ logAge = 10.12
+ evo1 = evo1_grid.isochrone(10**logAge, metallicity=0)
+ evo2 = evo2_grid.isochrone(10**logAge, metallicity=0)
+
+ # I expect evo2 extends to low masses velow evo1
+ assert len(evo2) > len(evo1)
+ assert np.min(evo2['mass']) < np.min(evo1['mass'])
+
return
def test_atmosphere_models():
"""
Test the rebinned atmosphere models used for synthetic photometry
"""
- from spisea import atmospheres as atm
-
# Array of atmospheres
- atm_arr = [atm.get_merged_atmosphere, atm.get_castelli_atmosphere, atm.get_phoenixv16_atmosphere, atm.get_BTSettl_2015_atmosphere,
- atm.get_BTSettl_atmosphere, atm.get_kurucz_atmosphere, atm.get_phoenix_atmosphere, atm.get_wdKoester_atmosphere]
+ atm_arr = [
+ atmospheres.get_merged_atmosphere,
+ atmospheres.get_castelli_atmosphere,
+ atmospheres.get_phoenixv16_atmosphere,
+ atmospheres.get_BTSettl_2015_atmosphere,
+ atmospheres.get_BTSettl_atmosphere,
+ atmospheres.get_kurucz_atmosphere,
+ atmospheres.get_phoenix_atmosphere,
+ atmospheres.get_wdKoester_atmosphere
+ ]
# Array of metallicities
metals_range = [-2.0, 0, 0.15]
@@ -72,12 +120,12 @@ def test_atmosphere_models():
test = atm_func(metallicity=jj)
except:
raise Exception('ATM TEST FAILED: {0}, metal = {1}'.format(atm_func, jj))
-
+
print('Done {0}'.format(atm_func))
-
- # One last test: get_merged_atmospheres at different temps
+
+ # Test get_merged_atmospheres at different temps
temp_range = [2000, 3500, 4000, 5250, 6000, 12000]
- atm_func = atm.get_merged_atmosphere
+ atm_func = atmospheres.get_merged_atmosphere
for ii in metals_range:
for jj in temp_range:
try:
@@ -88,17 +136,27 @@ def test_atmosphere_models():
print('get_merged_atmosphere: all temps/metallicities passed')
+ # Test get_bb_atmosphere at different temps
+ # This func only requests temp
+ temp_range = [2000, 3500, 4000, 5250, 6000, 12000]
+ atm_func = atmospheres.get_bb_atmosphere
+ for jj in temp_range:
+ try:
+ test = atm_func(temperature=jj, verbose=True)
+ except:
+ raise Exception('ATM TEST FAILED: {0}, temp = {2}'.format(atm_func, jj))
+
+ print('get_bb_atmosphere: all temps passed')
+
return
def test_filters():
"""
Test to make sure all of the filters work as expected
"""
- from spisea import synthetic
-
# Define vega spectrum
vega = synthetic.Vega()
-
+
# Filter list to test
filt_list = ['wfc3,ir,f127m','acs,wfc1,f814w',
'2mass,J', '2mass,H','2mass,Ks',
@@ -116,6 +174,8 @@ def test_filters():
'jwst,F360M', 'jwst,F405N', 'jwst,F410M', 'jwst,F430M',
'jwst,F444W', 'jwst,F460M', 'jwst,F466N', 'jwst,F470N',
'jwst,F480M', 'naco,J', 'naco,H', 'naco,Ks',
+ 'naco,IB_2.00','naco,IB_2.03', 'naco,IB_2.06', 'naco,IB_2.24',
+ 'naco,IB_2.27', 'naco,IB_2.30', 'naco,IB_2.33', 'naco,IB_2.36',
'nirc1,K', 'nirc1,H', 'nirc2,J', 'nirc2,H',
'nirc2,Kp', 'nirc2,K', 'nirc2,Lp', 'nirc2,Hcont',
'nirc2,FeII', 'nirc2,Brgamma', 'ps1,z',
@@ -123,28 +183,28 @@ def test_filters():
'ukirt,J', 'ukirt,H', 'ukirt,K',
'vista,Y', 'vista,Z', 'vista,J',
'vista,H', 'vista,Ks', 'ztf,g', 'ztf,r', 'ztf,i',
- 'hawki,J', 'hawki,H', 'hawki,Ks']
+ 'hawki,J', 'hawki,H', 'hawki,Ks', 'roman,wfi,f062',
+ 'roman,wfi,f087', 'roman,wfi,f106', 'roman,wfi,f129',
+ 'roman,wfi,f158', 'roman,wfi,f146', 'roman,wfi,f213',
+ 'roman,wfi,f184', 'rubin,g', 'rubin,i', 'rubin,r',
+ 'rubin,u', 'rubin,z', 'rubin,y',
+ 'euclid,VIS', 'euclid,Y', 'euclid,J', 'euclid,H',
+ 'nsfcam,L']
# Loop through filters to test that they work: get_filter_info
for ii in filt_list:
- try:
- filt = synthetic.get_filter_info(ii, rebin=True, vega=vega)
- except:
- raise Exception('get_filter_info TEST FAILED for {0}'.format(ii))
+ filt = synthetic.get_filter_info(ii, rebin=True, vega=vega)
print('get_filter_info pass')
-
+
# Loop through filters to test that they work: get_obs_str
for ii in filt_list:
- try:
- # Test going from col_name to obs_str
- col_name = synthetic.get_filter_col_name(ii)
- obs_str = synthetic.get_obs_str('m_{0}'.format(col_name))
- # Does the obs_str work?
- filt_info = synthetic.get_filter_info(obs_str)
- except:
- raise Exception('get_obs_str TEST FAILED for {0}'.format(ii))
-
+ # Test going from col_name to obs_str
+ col_name = synthetic.get_filter_col_name(ii)
+ obs_str = synthetic.get_obs_str('m_{0}'.format(col_name))
+ # Does the obs_str work?
+ filt_info = synthetic.get_filter_info(obs_str)
+
print('get_obs_str pass')
print('Filters done')
diff --git a/spisea/imf/tests/test_multiplicity.py b/spisea/tests/test_multiplicity.py
similarity index 74%
rename from spisea/imf/tests/test_multiplicity.py
rename to spisea/tests/test_multiplicity.py
index fe89239a..9df0776d 100755
--- a/spisea/imf/tests/test_multiplicity.py
+++ b/spisea/tests/test_multiplicity.py
@@ -1,13 +1,12 @@
import numpy as np
-import nose.tools
import time
-
+import spisea
+from spisea.imf import imf, multiplicity
+
def test_create_MultiplicityUnresolved():
"""
Tests creating and accessing a MultiplicityUnresolved object.
"""
- from .. import multiplicity
-
# All default parameters -- check their values
mu1 = multiplicity.MultiplicityUnresolved()
assert mu1.MF_amp == 0.44
@@ -19,53 +18,51 @@ def test_create_MultiplicityUnresolved():
assert mu1.q_min == 0.01
# Test setting different parameters
- mu2 = multiplicity.MultiplicityUnresolved(MF_amp=0.4,
+ mu2 = multiplicity.MultiplicityUnresolved(MF_amp=0.4,
MF_power=0.4,
- CSF_amp=0.4,
- CSF_power=0.4,
+ CSF_amp=0.4,
+ CSF_power=0.4,
CSF_max=4,
- q_power=0.4,
+ q_power=0.4,
q_min=0.04)
- assert mu2.MF_amp == 0.4
+ assert mu2.MF_amp == 0.4
assert mu2.MF_pow == 0.4
- assert mu2.CSF_amp == 0.4
- assert mu2.CSF_pow == 0.4
+ assert mu2.CSF_amp == 0.4
+ assert mu2.CSF_pow == 0.4
assert mu2.CSF_max == 4
- assert mu2.q_pow == 0.4
+ assert mu2.q_pow == 0.4
assert mu2.q_min == 0.04
def test_multiplicity_fraction():
"""
Test creating a MultiplicityUnresolved object and getting
the multiplicity fraction out.
- """
- from spisea.imf import multiplicity
-
+ """
# First set of multiplicity parameters
mu1 = multiplicity.MultiplicityUnresolved()
mf1_1 = mu1.multiplicity_fraction(1.0)
- nose.tools.assert_almost_equal(mf1_1, 0.44, places=2)
+ np.testing.assert_almost_equal(mf1_1, 0.44, decimal=2)
mf1_2 = mu1.multiplicity_fraction(10.0)
- nose.tools.assert_almost_equal(mf1_2, 1.0, places=2)
+ np.testing.assert_almost_equal(mf1_2, 1.0, decimal=2)
mf1_3 = mu1.multiplicity_fraction(0.1)
- nose.tools.assert_almost_equal(mf1_3, 0.136, places=2)
+ np.testing.assert_almost_equal(mf1_3, 0.136, decimal=2)
# Second set of multiplicity parameters
mu2 = multiplicity.MultiplicityUnresolved(MF_amp=0.4, MF_power=0.4,
CSF_amp=0.4, CSF_power=0.4, CSF_max=4,
q_power=0.4, q_min=0.04)
- mf2_1 = mu1.multiplicity_fraction(1.0)
- nose.tools.assert_almost_equal(mf2_1, 0.44, places=2)
+ mf2_1 = mu2.multiplicity_fraction(1.0)
+ np.testing.assert_almost_equal(mf2_1, 0.4, decimal=2)
- mf2_2 = mu1.multiplicity_fraction(10.0)
- nose.tools.assert_almost_equal(mf2_2, 1.0, places=2)
+ mf2_2 = mu2.multiplicity_fraction(10.0)
+ np.testing.assert_almost_equal(mf2_2, 1.0, decimal=2)
- mf2_3 = mu1.multiplicity_fraction(0.1)
- nose.tools.assert_almost_equal(mf2_3, 0.136, places=2)
+ mf2_3 = mu2.multiplicity_fraction(0.1)
+ np.testing.assert_almost_equal(mf2_3, 0.159, decimal=2)
def test_multiplicity_fraction_array():
@@ -73,36 +70,32 @@ def test_multiplicity_fraction_array():
Test multiplicity_fraction() on the MultiplicityUnresolved object
where the inputs and outputs are in array form.
"""
- from spisea.imf import multiplicity
-
# First set of multiplicity parameters
mu1 = multiplicity.MultiplicityUnresolved()
mass_array = np.array([1.0, 10.0, 0.1])
mf_array = mu1.multiplicity_fraction(mass_array)
- nose.tools.assert_almost_equal(mf_array[0], 0.44, places=2)
- nose.tools.assert_almost_equal(mf_array[1], 1.0, places=2)
- nose.tools.assert_almost_equal(mf_array[2], 0.136, places=2)
-
-
+ np.testing.assert_almost_equal(mf_array[0], 0.44, decimal=2)
+ np.testing.assert_almost_equal(mf_array[1], 1.0, decimal=2)
+ np.testing.assert_almost_equal(mf_array[2], 0.136, decimal=2)
+
+
def test_companion_star_fraction():
"""
Test the companion_star fraction on the MultiplicityUnresolved object.
"""
- from spisea.imf import multiplicity
-
# First set of multiplicity parameters
mu1 = multiplicity.MultiplicityUnresolved()
csf1_1 = mu1.companion_star_fraction(1.0)
- nose.tools.assert_almost_equal(csf1_1, 0.5, places=2)
+ np.testing.assert_almost_equal(csf1_1, 0.5, decimal=2)
csf1_2 = mu1.companion_star_fraction(70.0)
- nose.tools.assert_almost_equal(csf1_2, 3.0, places=2)
+ np.testing.assert_almost_equal(csf1_2, 3.0, decimal=2)
csf1_3 = mu1.companion_star_fraction(0.1)
- nose.tools.assert_almost_equal(csf1_3, 0.177, places=2)
+ np.testing.assert_almost_equal(csf1_3, 0.177, decimal=2)
# Second set of multiplicity parameters
mu2 = multiplicity.MultiplicityUnresolved(MF_amp=0.4, MF_power=0.4,
@@ -110,23 +103,21 @@ def test_companion_star_fraction():
q_power=0.4, q_min=0.04)
# csf2_1 = mu1.companion_star_fraction(1.0)
- # nose.tools.assert_almost_equal(csf2_1, 0.4, places=2)
+ # np.testing.assert_almost_equal(csf2_1, 0.4, decimal=2)
# csf2_2 = mu1.companion_star_fraction(70.0)
- # nose.tools.assert_almost_equal(csf2_2, 2.0, places=2)
+ # np.testing.assert_almost_equal(csf2_2, 2.0, decimal=2)
# csf2_3 = mu1.companion_star_fraction(0.1)
- # nose.tools.assert_almost_equal(csf2_3, 0.159, places=2)
+ # np.testing.assert_almost_equal(csf2_3, 0.159, decimal=2)
def test_resolvedmult():
"""
- Test creating a MultiplicityResolvedDK object
+ Test creating a MultiplicityResolvedDK object
and that the parameters it's populated with are correct.
"""
from spisea import synthetic, evolution, atmospheres, reddening, ifmr
- from spisea.imf import imf, multiplicity
-
# Fetch isochrone
logAge = 6.70 # Age in log(years)
AKs = 1.0 # Ks filter extinction in mags
@@ -136,56 +127,54 @@ def test_resolvedmult():
evo_merged = evolution.MISTv1()
redlaw = reddening.RedLawCardelli(3.1) # Rv = 3.1
filt_list = ['nirc2,J', 'nirc2,Kp']
-
+
startTime = time.time()
iso_merged = synthetic.IsochronePhot(logAge, AKs, dist, metallicity=metallicity,
evo_model=evo_merged, atm_func=atm_func,
filters=filt_list, red_law=redlaw,
- mass_sampling=3)
+ mass_sampling=3, iso_dir=f'{spisea.__path__[0]}/tests/isochrones')
print('Constructed isochrone: %d seconds' % (time.time() - startTime))
-
- # Now we can make the cluster.
+
+ # Now we can make the cluster.
clust_mtot = 10**4.
clust_multiplicity = multiplicity.MultiplicityResolvedDK()
# Multiplicity is defined in the IMF object
clust_imf_Mult = imf.Kroupa_2001(multiplicity=clust_multiplicity)
-
+
# Make clusters
clust_Mult = synthetic.ResolvedCluster(iso_merged, clust_imf_Mult, clust_mtot)
clust_Mult_ss = clust_Mult.star_systems
-
+
print('Constructed cluster: %d seconds' % (time.time() - startTime))
-
+
#check if columns were created
assert 'log_a' in clust_Mult.companions.colnames
assert 'e' in clust_Mult.companions.colnames
assert 'i' in clust_Mult.companions.colnames
assert 'Omega' in clust_Mult.companions.colnames
assert 'omega' in clust_Mult.companions.colnames
-
+
#check values are in correct range
assert all(10**i<= 2000 and 10**i>= 0 for i in clust_Mult.companions['log_a']) #max separation is 2000 AU
assert all(i<= 1 and i>= 0 for i in clust_Mult.companions['e'])
assert all(i<= 180 and i>= 0 for i in clust_Mult.companions['i'])
assert all(i<= 360 and i>= 0 for i in clust_Mult.companions['omega'])
assert all(i<= 360 and i>= 0 for i in clust_Mult.companions['Omega'])
-
+
#checks sign for inclination is being randomly genarated
assert any(i > 90 for i in clust_Mult.companions['i']) and any(i < 90 for i in clust_Mult.companions['i'])
-
+
#checks eccentricity follows f(e) = 2e pdf
n, bins = np.histogram(clust_Mult.companions['e'], density = True)
bin_centers = 0.5*(bins[1:] + bins[:-1])
assert all(np.abs(i) < 0.3 for i in 2*bin_centers - n)
-
+
#checks shape of inclination histogram is sin(i)
n, bins = np.histogram(clust_Mult.companions['i'])
bin_centers = 0.5*(bins[1:] + bins[:-1])
assert all(np.abs(i) < 0.15 for i in n/max(n) - np.sin(np.pi*bin_centers/180))
-
- return
-
+ return
diff --git a/spisea/tests/test_reddening.py b/spisea/tests/test_reddening.py
index 73c6ecaf..99bbf78b 100644
--- a/spisea/tests/test_reddening.py
+++ b/spisea/tests/test_reddening.py
@@ -1,6 +1,7 @@
import numpy as np
-from spisea import reddening, synthetic
+from spisea import reddening, synthetic, evolution, atmospheres
import pylab as py
+import os
import pdb
@@ -38,7 +39,7 @@ def test_RedLawBrokenPowerLaw(plots=False):
# Compare law_test and the output from the redlaw object
law_output = red_law.broken_powerlaw(wave_test, 1)
-
+
assert len(law_test) == len(law_output)
assert np.sum(np.isnan(law_output)) == 0
@@ -61,7 +62,7 @@ def test_RedLawBrokenPowerLaw(plots=False):
idx2 = np.where(abs(wave_test-2.1) == np.min(abs(wave_test-2.1)))
slope = (log_output[idx1] - log_output[idx2]) / (log_wave[idx1] - log_wave[idx2])
assert abs(slope - (-1.0 * alpha1)) < 10**-4
-
+
# If desired (debug only), make plot to see what law looks like
if plots:
# Test plot: these should match nearly exactly
@@ -76,6 +77,11 @@ def test_RedLawBrokenPowerLaw(plots=False):
py.gca().invert_xaxis()
py.title('2-segment Extlaw: should match')
+ # Additional test here: make sure get_red_law is working
+ # for broken power law as intended
+ red_law_test = reddening.get_red_law('broken_pl,{0},{1},{2}'.format(lambda_limits, alpha_vals, K_wave))
+ assert np.all(red_law_test.obscuration == red_law.obscuration)
+
#===============================#
# Test 1: 4-segment law
#===============================#
@@ -103,7 +109,7 @@ def test_RedLawBrokenPowerLaw(plots=False):
idx = np.where( (wave_test >= 1.27) & (wave_test < 1.63))
coeff = (1.63 ** (-1*alpha1)) / (1.63 ** (-1*alpha2))
law_test[idx] = coeff * wave_test[idx] ** (-1*alpha2)
-
+
# 1.27 - 0.8
idx = np.where( (wave_test >= 0.8) & (wave_test < 1.27))
coeff1 = (1.63 ** (-1*alpha1)) / (1.63 ** (-1*alpha2))
@@ -118,7 +124,7 @@ def test_RedLawBrokenPowerLaw(plots=False):
coeff3 = (0.8 ** (-1*alpha3)) / (0.8 ** (-1*alpha4))
coeff_f = coeff1 * coeff2 * coeff3
law_test[idx] = coeff_f * wave_test[idx] ** (-1*alpha4)
-
+
assert np.sum(np.isnan(law_test)) == 0
# Put in terms of A_lambda / A_Ks, like the reddening object
@@ -127,7 +133,7 @@ def test_RedLawBrokenPowerLaw(plots=False):
# Compare law_test and the output from the redlaw object
law_output = red_law.broken_powerlaw(wave_test, 1)
-
+
assert len(law_test) == len(law_output)
assert np.sum(np.isnan(law_output)) == 0
@@ -160,7 +166,7 @@ def test_RedLawBrokenPowerLaw(plots=False):
idx2 = np.where(abs(wave_test-0.7) == np.min(abs(wave_test-0.7)))
slope = (log_output[idx1] - log_output[idx2]) / (log_wave[idx1] - log_wave[idx2])
assert abs(slope - (-1.0 * alpha4)) < 10**-4
-
+
# If desired (debug only), make plot to see what law looks like
if plots:
# Test plot: these should match nearly exactly
@@ -179,3 +185,74 @@ def test_RedLawBrokenPowerLaw(plots=False):
return
+def test_red_law_IsochronePhot():
+ """
+ Make sure each reddening law can run with IsochronePhot
+ """
+ # Define properties of stellar pop to models
+ logAge = np.log10(5*10**6.) # Age in log(years)
+ dist = 8000 # distance in parsec
+ metallicity = 0 # Metallicity in [M/H]
+
+ # Define evolution/atmosphere models and extinction law
+ evo_model = evolution.MISTv1()
+ atm_func = atmospheres.get_merged_atmosphere
+
+ # Also specify filters for synthetic photometry.
+ filt_list = ['wfc3,ir,f127m', 'wfc3,ir,f153m', 'nirc2,H', 'nirc2,Kp']
+
+ # Define reddening laws and associated AKs vals
+ redlaw_arr = ['F11', 'S10', 'NL20', 'I05', 'N09', 'RZ07',
+ 'RL85', 'D16', 'F09,2.5,3', 'S16,1.55,0', 'DM16',
+ 'H18b', 'NL18', 'C89,3.1', 'pl,2.12,0.9,2.4',
+ 'broken_pl,[2.3,1.63,0.9],[2.23, 3.0],2.12']
+
+ aks_arr = [2.62, 2.46, 1.67, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3, 2.3]
+ for ii in range(len(redlaw_arr)):
+ redlaw = reddening.get_red_law(redlaw_arr[ii])
+ #redlaw_arr[ii]
+ aks = aks_arr[ii]
+
+ # Try to run isochrone phot
+ iso_test = synthetic.IsochronePhot(
+ logAge,
+ aks,
+ dist,
+ metallicity=0,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=redlaw,
+ filters=filt_list,
+ min_mass=0.95,
+ max_mass=1.05,
+ iso_dir='isochrones/',
+ recomp=True
+ )
+ print('----EL {0} works OK!-----'.format(redlaw_arr[ii]))
+
+ return
+
+def test_all_EL():
+ """
+ Test to make sure all expected ELs are callable
+ and work OK.
+
+ (except for the broken power law, which is tested elsewhere)
+ """
+ # Will crash if any of these calls crash
+ red_law = reddening.RedLawNishiyama09()
+ red_law = reddening.RedLawCardelli(3.1)
+ red_law = reddening.RedLawRomanZuniga07()
+ red_law = reddening.RedLawRiekeLebofsky()
+ red_law = reddening.RedLawDamineli16()
+ red_law = reddening.RedLawDeMarchi16()
+ red_law = reddening.RedLawFitzpatrick09(1.8, 5)
+ red_law = reddening.RedLawSchlafly16(1.55, 3.3)
+ red_law = reddening.RedLawIndebetouw05()
+ red_law = reddening.RedLawFritz11()
+ red_law = reddening.RedLawHosek18b()
+ red_law = reddening.RedLawSchoedel10()
+ red_law = reddening.RedLawNoguerasLara18()
+ red_law = reddening.RedLawNoguerasLara20()
+
+ return
diff --git a/spisea/tests/test_synthetic.py b/spisea/tests/test_synthetic.py
index c8294788..7694ebfd 100755
--- a/spisea/tests/test_synthetic.py
+++ b/spisea/tests/test_synthetic.py
@@ -2,6 +2,8 @@
import numpy as np
import pylab as plt
import numpy as np
+import pickle
+import spisea
from spisea import reddening, evolution, atmospheres, ifmr
from spisea import synthetic as syn
from spisea.imf import imf
@@ -11,6 +13,8 @@
import pdb
from scipy.spatial import cKDTree as KDTree
+spisea_path = os.path.dirname(spisea.__file__)
+
def test_isochrone(plot=False):
logAge = 6.7
AKs = 2.7
@@ -26,11 +30,11 @@ def test_isochrone(plot=False):
assert iso.points.meta['AKS'] == AKs
assert iso.points.meta['DISTANCE'] == distance
assert len(iso.points) > 100
-
+
if plot:
- plt.figure(1)
+ plt.figure(1)
iso.plot_HR_diagram()
-
+
plt.figure(2)
iso.plot_mass_luminosity()
@@ -38,21 +42,23 @@ def test_isochrone(plot=False):
def test_iso_wave():
"""
- Test to make sure isochrones generated have spectra with the proper
+ Test to make sure isochrones generated have spectra with the proper
wavelength range, and that the user has control over that wavelength
range (propagated through IsochronePhot)
"""
# Define isochrone parameters
- logAge = np.log10(5*10**6.) # Age in log(years)
- AKs = 0.8 # extinction in mags
+ logAge = 6.7 # Age in log(years)
+ AKs = 2.7 # extinction in mags
dist = 4000 # distance in parsec
+ metal = 0.0 # metallicity
+ iso_dir = f'{spisea_path}/tests/isochrones'
# Define evolution/atmosphere models and extinction law (optional)
- evo_model = evolution.MergedBaraffePisaEkstromParsec()
+ evo_model = evolution.MergedBaraffePisaEkstromParsec()
atm_func = atmospheres.get_merged_atmosphere
red_law = reddening.RedLawHosek18b()
- # Also specify filters for synthetic photometry (optional). Here we use
+ # Also specify filters for synthetic photometry (optional). Here we use
# the HST WFC3-IR F127M, F139M, and F153M filters
filt_list = ['wfc3,ir,f127m']
@@ -65,11 +71,18 @@ def test_iso_wave():
# Make Isochrone object. Will use wave_range = [3000,52000].
# Make sure range matches to resolution of atmosphere.
wave_range1 = [3000, 52000]
- my_iso = syn.IsochronePhot(logAge, AKs, dist,
- evo_model=evo_model, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=10, wave_range=wave_range1,
- recomp=True)
+ my_iso = syn.IsochronePhot(
+ logAge, AKs, dist,
+ metallicity=metal,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=10,
+ wave_range=wave_range1,
+ recomp=True,
+ iso_dir=iso_dir
+ )
test = my_iso.spec_list[0]
@@ -79,11 +92,19 @@ def test_iso_wave():
# Now let's try changing the wave range. Is it carried through
# properly?
wave_range2 = [1200, 90000]
- my_iso = syn.IsochronePhot(logAge, AKs, dist,
- evo_model=evo_model, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=10, wave_range=wave_range2,
- recomp=True)
+ my_iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ dist,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=10,
+ wave_range=wave_range2,
+ recomp=True,
+ iso_dir=iso_dir
+ )
test2 = my_iso.spec_list[0]
@@ -93,13 +114,21 @@ def test_iso_wave():
# Does the error exception catch the bad wave_range?
wave_range3 = [1200, 1000000]
try:
- my_iso = syn.IsochronePhot(logAge, AKs, dist,
- evo_model=evo_model, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=10, wave_range=wave_range3,
- recomp=True)
+ my_iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ dist,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=10,
+ wave_range=wave_range3,
+ recomp=True,
+ iso_dir=iso_dir
+ )
print('WAVE TEST FAILED!!! Should have crashed here, wavelength range out of bounds')
- raise ValueError()
+ raise ValueError()
except:
print('Wavelength out of bound condition passed. Test is good')
pass
@@ -111,20 +140,28 @@ def test_IsochronePhot(plot=False):
distance = 4000
filt_list = ['wfc3,ir,f127m', 'nirc2,J']
mass_sampling=1
- iso_dir = 'iso/'
+ iso_dir = f'{spisea_path}/tests/isochrones'
evo_model = evolution.MISTv1()
atm_func = atmospheres.get_merged_atmosphere
redlaw = reddening.RedLawNishiyama09()
startTime = time.time()
- iso = syn.IsochronePhot(logAge, AKs, distance, evo_model=evo_model,
- atm_func=atm_func, red_law=redlaw,
- filters=filt_list,
- mass_sampling=mass_sampling, iso_dir=iso_dir)
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=redlaw,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir,
+ recomp=True
+ )
endTime = time.time()
print('IsochronePhot generated in: %d seconds' % (endTime - startTime))
- # Typically takes 120 seconds if file is regenerated.
+ # Typically takes 40 seconds if file is regenerated.
# Limited by pysynphot.Icat call in atmospheres.py
assert iso.points.meta['LOGAGE'] == logAge
@@ -135,54 +172,116 @@ def test_IsochronePhot(plot=False):
assert 'm_nirc2_J' in iso.points.colnames
if plot:
- plt.figure(1)
+ plt.figure(1)
iso.plot_CMD('mag814w', 'mag160w')
-
+
plt.figure(2)
iso.plot_mass_magnitude('mag160w')
# Finally, let's test the isochronePhot file generation
- assert os.path.exists('{0}/iso_{1:.2f}_{2:4.2f}_{3:4s}_p00.fits'.format(iso_dir, logAge,
- AKs, str(distance).zfill(5)))
-
+ metal_value = 0.
+ metal_sign = 'm' if metal_value < 0 else 'p'
+ assert os.path.exists(f'{iso_dir}/iso_{logAge:.2f}_{AKs:4.2f}_{str(distance).zfill(5)}_{metal_sign}{metal_value:.2f}.fits')
+
# Check 1: If we try to remake the isochrone, does it read the file rather than
# making a new one
- iso_new = syn.IsochronePhot(logAge, AKs, distance, evo_model=evo_model,
- atm_func=atm_func, red_law=redlaw,
- filters=filt_list,
- mass_sampling=mass_sampling, iso_dir=iso_dir)
+ iso_new = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=redlaw,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
assert iso_new.recalc == False
- # Check 2: If we change evo model, atmo model, or redlaw,
+ # Check 2: Confirm that adding a new column to an existing isochrone works properly.
+ # Does the new filter get added to the isochrone? And the old ones still there?
+ # Does the computed data for the new filter match the same result if you fully regenerate the isochrone?
+ iso_new_addfilt = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=redlaw,
+ filters=filt_list+['2mass,Ks'],
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
+
+ assert iso_new_addfilt.recalc == False
+ assert 'm_2mass_Ks' in iso_new_addfilt.points.colnames
+ assert 'm_nirc2_J' in iso_new_addfilt.points.colnames
+
+ iso_new_3filt = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=redlaw,
+ filters=filt_list+['2mass,Ks'],
+ mass_sampling=mass_sampling,
+ recomp=True,
+ iso_dir=iso_dir
+ )
+ np.testing.assert_almost_equal(iso_new_addfilt.points['m_2mass_Ks'], iso_new_3filt.points['m_2mass_Ks'])
+ assert iso_new_3filt.recalc==True
+
+ # Check 3: If we change evo model, atmo model, or redlaw,
# does IsochronePhot regenerate the isochrone and overwrite the existing one?
evo2 = evolution.MergedBaraffePisaEkstromParsec()
mass_sampling=20
- iso_new = syn.IsochronePhot(logAge, AKs, distance, evo_model=evo2,
- atm_func=atm_func, red_law=redlaw,
- filters=filt_list,
- mass_sampling=mass_sampling, iso_dir=iso_dir)
+ iso_new = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo2,
+ atm_func=atm_func,
+ red_law=redlaw,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
assert iso_new.recalc == True
redlaw2 = reddening.RedLawHosek18b()
- iso_new = syn.IsochronePhot(logAge, AKs, distance, evo_model=evo2,
- atm_func=atm_func, red_law=redlaw2,
- filters=filt_list,
- mass_sampling=mass_sampling, iso_dir=iso_dir)
+ iso_new = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo2,
+ atm_func=atm_func,
+ red_law=redlaw2,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
assert iso_new.recalc == True
atm2 = atmospheres.get_castelli_atmosphere
- iso_new = syn.IsochronePhot(logAge, AKs, distance, evo_model=evo2,
- atm_func=atm2, red_law=redlaw2,
- filters=filt_list,
- mass_sampling=mass_sampling, iso_dir=iso_dir)
+ iso_new = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo2,
+ atm_func=atm2,
+ red_law=redlaw2,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
assert iso_new.recalc == True
-
return
def test_ResolvedCluster():
@@ -192,21 +291,30 @@ def test_ResolvedCluster():
distance = 4000
cluster_mass = 10**5.
mass_sampling=5
+ iso_dir = f'{spisea_path}/tests/isochrones'
# Test filters
filt_list = ['nirc2,J', 'nirc2,Kp']
startTime = time.time()
-
+
evo = evolution.MergedBaraffePisaEkstromParsec()
atm_func = atmospheres.get_merged_atmosphere
red_law = reddening.RedLawNishiyama09()
-
- iso = syn.IsochronePhot(logAge, AKs, distance,
- evo_model=evo, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=mass_sampling)
+
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir,
+ recomp=True
+ )
print('Constructed isochrone: %d seconds' % (time.time() - startTime))
@@ -220,7 +328,7 @@ def test_ResolvedCluster():
my_imf1 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=None)
print('Constructed IMF: %d seconds' % (time.time() - startTime))
-
+
cluster1 = syn.ResolvedCluster(iso, my_imf1, cluster_mass)
clust1 = cluster1.star_systems
print('Constructed cluster: %d seconds' % (time.time() - startTime))
@@ -248,7 +356,7 @@ def test_ResolvedCluster():
my_imf2 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=multi)
print('Constructed IMF with multiples: %d seconds' % (time.time() - startTime))
-
+
cluster2 = syn.ResolvedCluster(iso, my_imf2, cluster_mass)
clust2 = cluster2.star_systems
print('Constructed cluster with multiples: %d seconds' % (time.time() - startTime))
@@ -258,7 +366,7 @@ def test_ResolvedCluster():
assert np.sum(clust2['N_companions']) == len(cluster2.companions)
##########
- # Plots
+ # Plots
##########
# Plot an IR CMD and compare cluster members to isochrone.
plt.figure(1)
@@ -268,7 +376,7 @@ def test_ResolvedCluster():
plt.plot(iso.points['m_nirc2_J'] - iso.points['m_nirc2_Kp'], iso.points['m_nirc2_J'], 'c-')
plt.gca().invert_yaxis()
plt.xlabel('J - Kp (mag)')
- plt.ylabel('J (mag')
+ plt.ylabel('J (mag)')
# Plot a mass-magnitude relationship.
plt.figure(2)
@@ -278,7 +386,7 @@ def test_ResolvedCluster():
plt.gca().invert_yaxis()
plt.xlabel('Mass (Msun)')
plt.ylabel('J (mag)')
-
+
# # Plot the spectrum of the most massive star
# idx = cluster.mass.argmax()
# plt.clf()
@@ -298,21 +406,29 @@ def test_ResolvedClusterDiffRedden():
cluster_mass = 10**5.
deltaAKs = 0.05
mass_sampling=5
+ iso_dir = f'{spisea_path}/tests/isochrones'
# Test filters
filt_list = ['nirc2,J', 'nirc2,Kp']
-
+
startTime = time.time()
-
+
evo = evolution.MergedBaraffePisaEkstromParsec()
atm_func = atmospheres.get_merged_atmosphere
red_law = reddening.RedLawNishiyama09()
-
- iso = syn.IsochronePhot(logAge, AKs, distance,
- evo_model=evo, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=mass_sampling)
+
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
print('Constructed isochrone: %d seconds' % (time.time() - startTime))
@@ -325,13 +441,13 @@ def test_ResolvedClusterDiffRedden():
my_imf1 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=None)
print('Constructed IMF: %d seconds' % (time.time() - startTime))
-
+
cluster1 = syn.ResolvedClusterDiffRedden(iso, my_imf1, cluster_mass, deltaAKs)
clust1 = cluster1.star_systems
print('Constructed cluster: %d seconds' % (time.time() - startTime))
assert len(clust1) > 0
-
+
plt.figure(3)
plt.clf()
plt.plot(clust1['m_nirc2_J'] - clust1['m_nirc2_Kp'], clust1['m_nirc2_J'], 'r.')
@@ -348,7 +464,7 @@ def test_ResolvedClusterDiffRedden():
my_imf2 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=multi)
print('Constructed IMF with multiples: %d seconds' % (time.time() - startTime))
-
+
cluster2 = syn.ResolvedClusterDiffRedden(iso, my_imf2, cluster_mass, deltaAKs)
clust2 = cluster2.star_systems
print('Constructed cluster with multiples: %d seconds' % (time.time() - startTime))
@@ -358,7 +474,7 @@ def test_ResolvedClusterDiffRedden():
assert np.sum(clust2['N_companions']) == len(cluster2.companions)
##########
- # Plots
+ # Plots
##########
# Plot an IR CMD and compare cluster members to isochrone.
plt.figure(1)
@@ -380,7 +496,7 @@ def test_ResolvedClusterDiffRedden():
plt.ylabel('J (mag)')
return
-
+
def test_UnresolvedCluster():
log_age = 6.7
AKs = 0.0
@@ -388,7 +504,7 @@ def test_UnresolvedCluster():
metallicity=0
cluster_mass = 10**4.
- startTime = time.time()
+ startTime = time.time()
multi = multiplicity.MultiplicityUnresolved()
imf_in = imf.Kroupa_2001(multiplicity=multi)
evo = evolution.MergedBaraffePisaEkstromParsec()
@@ -415,22 +531,30 @@ def test_ifmr_multiplicity():
distance = 1000
cluster_mass = 1e6
mass_sampling = 5
+ iso_dir = f'{spisea_path}/tests/isochrones'
# Test all filters
filt_list = ['nirc2,Kp', 'nirc2,H', 'nirc2,J']
startTime = time.time()
-
+
evo = evolution.MISTv1()
atm_func = atmospheres.get_merged_atmosphere
ifmr_obj = ifmr.IFMR_Raithel18()
red_law = reddening.RedLawNishiyama09()
-
- iso = syn.IsochronePhot(logAge, AKs, distance,
- evo_model=evo, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=mass_sampling)
+
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
print('Constructed isochrone: %d seconds' % (time.time() - startTime))
@@ -443,13 +567,13 @@ def test_ifmr_multiplicity():
##########
my_imf1 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=None)
- print('Constructed IMF: %d seconds' % (time.time() - startTime))
-
+ print('Constructed IMF: %d seconds' % (time.time() - startTime))
+
cluster1 = syn.ResolvedCluster(iso, my_imf1, cluster_mass, ifmr=ifmr_obj)
clust1 = cluster1.star_systems
print('Constructed cluster: %d seconds' % (time.time() - startTime))
-
+
##########
# Test with multiplicity and IFMR
##########
@@ -457,7 +581,7 @@ def test_ifmr_multiplicity():
my_imf2 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=multi)
print('Constructed IMF with multiples: %d seconds' % (time.time() - startTime))
-
+
cluster2 = syn.ResolvedCluster(iso, my_imf2, cluster_mass, ifmr=ifmr_obj)
clust2 = cluster2.star_systems
comps2 = cluster2.companions
@@ -493,43 +617,73 @@ def test_metallicity():
Test isochrone generation at different metallicities
"""
# Define isochrone parameters
- logAge = np.log10(5*10**6.)
- AKs = 0.8
- dist = 4000
+ logAge = np.log10(5*10**6.)
+ AKs = 0.8
+ dist = 4000
evo_model = evolution.MISTv1()
atm_func = atmospheres.get_phoenixv16_atmosphere
red_law = reddening.RedLawHosek18b()
filt_list = ['wfc3,ir,f127m', 'wfc3,ir,f139m', 'wfc3,ir,f153m']
+ iso_dir = f'{spisea_path}/tests/isochrones'
- # Start with a solar metallicity isochrone
- metallicity= 0.0
+ # Start with a solar metallicity isochrone
+ metallicity= 0.
+ metal_sign = 'm' if metallicity < 0 else 'p'
# Make Isochrone object, with high mass_sampling to decrease compute time
- my_iso = syn.IsochronePhot(logAge, AKs, dist, metallicity=metallicity,
- evo_model=evo_model, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=10)
+ my_iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ dist,
+ metallicity=metallicity,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=10,
+ iso_dir=iso_dir
+ )
# Test isochrone properties
assert my_iso.points.meta['METAL_IN'] == 0.0
- assert os.path.exists('iso_6.70_0.80_04000_p00.fits')
+ assert os.path.exists(f'{iso_dir}/iso_6.70_0.80_04000_p0.00.fits')
# Now for non-solar metallicity
metallicity= -1.5
# Make Isochrone object, with high mass_sampling to decrease compute time
- my_iso = syn.IsochronePhot(logAge, AKs, dist, metallicity=metallicity,
- evo_model=evo_model, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=10)
-
- metal_act = np.log10(0.00047 / 0.0142) # For Mist isochrones
+ my_iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ dist,
+ metallicity=metallicity,
+ evo_model=evo_model,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=10,
+ iso_dir=iso_dir
+ )
+
+ # MIST model sub-directory names changed in SPISEA v2.1.4 update;
+ # changing what "metal_act" value was. version 1 of MIST grid
+ # names mistakenly used 0.015 for Zsolar, which was fixed for
+ # version 2 onward. Note that this only effects this variable,
+ # and not the grid output itself.
+ # So, here the expected value for metal_act changes depending
+ # on the grid value
+ grid_version = evolution.get_installed_grid_num('{0}/evolution/'.format(os.environ['SPISEA_MODELS']))
+
+ if grid_version == 1:
+ metal_act = np.log10(0.00047 / 0.0142) # For Mist isochrones
+ else:
+ metal_act = np.log10(0.00045 / 0.0142) # For Mist isochrones
# Test isochrone properties
assert my_iso.points.meta['METAL_IN'] == -1.5
- assert my_iso.points.meta['METAL_ACT'] == metal_act
- assert os.path.exists('iso_6.70_0.80_04000_m15.fits')
-
+ assert np.isclose(my_iso.points.meta['METAL_ACT'], metal_act)
+ assert os.path.exists(f'{iso_dir}/iso_6.70_0.80_04000_m1.50.fits')
+
return
def test_cluster_mass():
@@ -539,21 +693,29 @@ def test_cluster_mass():
distance = 4000
cluster_mass = 10**5.
mass_sampling = 5
+ iso_dir = f'{spisea_path}/tests/isochrones'
# Test filters
filt_list = ['nirc2,J', 'nirc2,Kp']
startTime = time.time()
-
+
# Define evolution/atmosphere models and extinction law
- evo = evolution.MISTv1()
+ evo = evolution.MISTv1()
atm_func = atmospheres.get_merged_atmosphere
red_law = reddening.RedLawHosek18b()
-
- iso = syn.IsochronePhot(logAge, AKs, distance,
- evo_model=evo, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=mass_sampling)
+
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
print('Constructed isochrone: %d seconds' % (time.time() - startTime))
@@ -563,7 +725,7 @@ def test_cluster_mass():
# IFMR
my_ifmr = ifmr.IFMR_Raithel18()
-
+
##########
# Start without multiplicity
@@ -571,7 +733,7 @@ def test_cluster_mass():
my_imf1 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=None)
print('Constructed IMF: %d seconds' % (time.time() - startTime))
-
+
cluster1 = syn.ResolvedCluster(iso, my_imf1, cluster_mass, ifmr=my_ifmr)
clust1 = cluster1.star_systems
print('Constructed cluster: %d seconds' % (time.time() - startTime))
@@ -581,6 +743,15 @@ def test_cluster_mass():
assert np.abs(cluster_mass_out - cluster_mass) < 200.0 # within 200 Msun of desired mass.
print('Cluster Mass: IN = ', cluster_mass, " OUT = ", cluster_mass_out)
+ cluster3 = syn.ResolvedCluster(iso, my_imf1, cluster_mass, ifmr=my_ifmr, keep_low_mass_stars=True)
+ clust3 = cluster3.star_systems
+ print('Constructed cluster w/ keep_low_mass_stars: %d seconds' % (time.time() - startTime))
+
+ # Check that the total mass is within tolerance of input mass
+ cluster_mass_out = clust3['systemMass'].sum()
+ assert np.abs(cluster_mass_out - cluster_mass) < 200.0 # within 200 Msun of desired mass.
+ print('Cluster Mass: IN = ', cluster_mass, " OUT = ", cluster_mass_out)
+
##########
# Test with multiplicity
##########
@@ -588,7 +759,7 @@ def test_cluster_mass():
my_imf2 = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
multiplicity=multi)
print('Constructed IMF with multiples: %d seconds' % (time.time() - startTime))
-
+
cluster2 = syn.ResolvedCluster(iso, my_imf2, cluster_mass, ifmr=my_ifmr)
clust2 = cluster2.star_systems
print('Constructed cluster with multiples: %d seconds' % (time.time() - startTime))
@@ -600,41 +771,120 @@ def test_cluster_mass():
return
+def test_keep_low_mass_stars():
+ """
+ Test "keep_low_mass_stars = True" functionality introduced in v2.2
+ """
+ # Define cluster parameters, pulling on an isochrone generated in an earlier test (since
+ # we don't care about isochrone generation here
+ logAge = 6.7
+ AKs = 2.4
+ distance = 4000
+ cluster_mass = 10**5.
+ mass_sampling = 5
+ iso_dir = f'{spisea_path}/tests/isochrones'
+
+ # Test filters
+ filt_list = ['nirc2,J', 'nirc2,Kp']
+
+ # Define evolution/atmosphere models and extinction law
+ evo = evolution.MISTv1()
+ atm_func = atmospheres.get_merged_atmosphere
+ red_law = reddening.RedLawHosek18b()
+
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
+
+ # Get the minimum mass in the isochrones. This should be the lowest
+ # mass psosbile when keep_low_mass_stars == False.
+ # Make sure this min mass is low enough for a reasonalbe test
+ min_mass_iso = np.min(iso.points['mass'])
+ assert min_mass_iso >= 0.05
+
+ # Define IMF + IFMR. Make sure IMF goes to really low masses,
+ # below the 0.08 Msun limit of the MIST isochrones
+ imf_min = 0.01
+ imf_mass_limits = np.array([imf_min, 0.5, 1, 120.0])
+ imf_powers = np.array([-1.3, -2.3, -2.3])
+ my_ifmr = ifmr.IFMR_Raithel18()
+ my_imf = imf.IMF_broken_powerlaw(imf_mass_limits, imf_powers,
+ multiplicity=multiplicity.MultiplicityUnresolved())
+
+ # Define 2 clusters: one without keep_low_mass_stars and the other
+ # with keep_low_mass_stars
+ clust_remove = syn.ResolvedCluster(iso, my_imf, cluster_mass, ifmr=my_ifmr, keep_low_mass_stars=False)
+ clust_keep = syn.ResolvedCluster(iso, my_imf, cluster_mass, ifmr=my_ifmr, keep_low_mass_stars=True)
+
+ # Check the star_systems tables: clust_remove loweset mass should match
+ # min_mass_iso, while clust_keep should stretch to IMF limit (1%)
+ assert np.isclose(np.min(clust_keep.star_systems['mass']), imf_min, rtol=0.01, atol=10**-8)
+ assert (np.isclose(np.min(clust_remove.star_systems['mass']), imf_min, rtol=0.01, atol=10**-8) == False)
+
+ # NOTE: companion table always had the low-mass stars, this functionality is only on the star_systems table
+
+ # Finally, make sure these low-mass stars have properly assigned phase = 98
+ idx = np.where(clust_keep.star_systems['mass'] < min_mass_iso)
+ assert ( (len(idx[0]) > 0) & (np.all(clust_keep.star_systems['phase'][idx] == 98)) )
+
+ return
+
+
def test_compact_object_companions():
-
+
# Define cluster parameters
logAge = 6.7
AKs = 2.4
distance = 4000
cluster_mass = 10**4.
mass_sampling=5
+ iso_dir = f'{spisea_path}/tests/isochrones'
# Test filters
filt_list = ['nirc2,J', 'nirc2,Kp']
startTime = time.time()
-
+
evo = evolution.MergedBaraffePisaEkstromParsec()
atm_func = atmospheres.get_merged_atmosphere
red_law = reddening.RedLawNishiyama09()
-
- iso = syn.IsochronePhot(logAge, AKs, distance,
- evo_model=evo, atm_func=atm_func,
- red_law=red_law, filters=filt_list,
- mass_sampling=mass_sampling)
+
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=mass_sampling,
+ iso_dir=iso_dir
+ )
print('Constructed isochrone: %d seconds' % (time.time() - startTime))
-
+
clust_multiplicity = multiplicity.MultiplicityResolvedDK()
- clust_imf_Mult = imf.Kroupa_2001(multiplicity=clust_multiplicity)
+
+ massLimits = np.array([0.2, 0.5, 1, 120]) # mass segments
+ powers = np.array([-1.3, -2.3, -2.3]) # power-law exponents
+ clust_imf_Mult = imf.IMF_broken_powerlaw(massLimits, powers, multiplicity=clust_multiplicity)
+ #clust_imf_Mult = imf.Kroupa_2001(multiplicity=clust_multiplicity)
clust_Mult = syn.ResolvedCluster(iso, clust_imf_Mult, cluster_mass, ifmr=ifmr.IFMR_Raithel18())
-
+
# Makes sure compact object companions not including MIST WDs
#(i.e. those with no luminosity) are being given phases
nan_lum_companions = clust_Mult.companions[np.isnan(clust_Mult.companions['L'])]
-
- assert all(np.isnan(nan_lum_companions['phase'])) == False
+
+ assert (len(nan_lum_companions) == 0) | (all(np.isnan(nan_lum_companions['phase'])) == False)
#=================================#
# Additional timing functions
@@ -645,17 +895,25 @@ def time_test_cluster():
AKs = 2.7
distance = 4000
cluster_mass = 10**4
+ iso_dir = f'{spisea_path}/tests/isochrones'
startTime = time.time()
-
+
evo = evolution.MergedBaraffePisaEkstromParsec()
atm_func = atmospheres.get_merged_atmosphere
red_law = reddening.RedLawNishiyama09()
filt_list = ['nirc2,J', 'nirc2,Kp']
-
- iso = syn.IsochronePhot(logAge, AKs, distance,
- evo_model=evo, atm_func=atm_func,
- red_law=red_law, filters=filt_list)
+
+ iso = syn.IsochronePhot(
+ logAge,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ iso_dir=iso_dir
+ )
print('Constructed isochrone: %d seconds' % (time.time() - startTime))
imf_limits = np.array([0.07, 0.5, 150])
@@ -663,23 +921,30 @@ def time_test_cluster():
multi = multiplicity.MultiplicityUnresolved()
my_imf = imf.IMF_broken_powerlaw(imf_limits, imf_powers, multiplicity=multi)
print('Constructed IMF with multiples: %d seconds' % (time.time() - startTime))
-
+
cluster = syn.ResolvedCluster(iso, my_imf, cluster_mass)
print('Constructed cluster: %d seconds' % (time.time() - startTime))
return
-
+
def model_young_cluster_object(resolved=False):
log_age = 6.5
AKs = 0.1
distance = 8000.0
cluster_mass = 10000.
-
+
multi = multiplicity.MultiplicityUnresolved()
imf_in = imf.Kroupa_2001(multiplicity=multi)
- evo = evolution.MergedPisaEkstromParsec()
+ evo = evolution.MergedBaraffePisaEkstromParsec()
atm_func = atmospheres.get_merged_atmosphere
- iso = syn.Isochrone(log_age, AKs, distance, evo, mass_sampling=10)
+ iso = syn.Isochrone(
+ log_age,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ mass_sampling=10
+ )
if resolved:
cluster = syn.ResolvedCluster(iso, imf_in, cluster_mass)
@@ -701,30 +966,31 @@ def model_young_cluster_object(resolved=False):
plt.plot(wave, flux, 'k.')
return
-
+
def time_test_mass_match():
log_age = 6.7
AKs = 2.7
distance = 4000
cluster_mass = 5e3
-
+ iso_dir = f'{spisea_path}/tests/isochrones'
+
imf_in = imf.Kroupa_2001(multiplicity=None)
start_time = time.time()
- iso = syn.IsochronePhot(log_age, AKs, distance)
+ iso = syn.IsochronePhot(log_age, AKs, distance, iso_dir=iso_dir)
iso_masses = iso.points['mass']
print('Generated iso masses in {0:.0f} s'.format(time.time() - start_time))
start_time = time.time()
star_masses, isMulti, compMass, sysMass = imf_in.generate_cluster(cluster_mass)
print('Generated cluster masses in {0:.0f} s'.format(time.time() - start_time))
-
+
def match_model_masses1(isoMasses, starMasses):
indices = np.empty(len(starMasses), dtype=int)
-
+
for ii in range(len(starMasses)):
theMass = starMasses[ii]
-
+
dm = np.abs(isoMasses - theMass)
mdx = dm.argmin()
@@ -735,12 +1001,12 @@ def match_model_masses1(isoMasses, starMasses):
indices[ii] = mdx
return indices
-
+
def match_model_masses2(isoMasses, starMasses):
isoMasses_tmp = isoMasses.reshape((len(isoMasses), 1))
kdt = KDTree(isoMasses_tmp)
-
+
starMasses_tmp = starMasses.reshape((len(starMasses), 1))
q_results = kdt.query(starMasses_tmp, k=1)
indices = q_results[1]
@@ -749,7 +1015,7 @@ def match_model_masses2(isoMasses, starMasses):
idx = np.where(dm_frac > 0.1)[0]
indices[idx] = -1
-
+
return indices
print('Test #1 START')
@@ -780,7 +1046,7 @@ def FeH_from_Z(Z):
metal = np.array([2.0e-4, 1.0e-3, 2.0e-3, 2.0e-2]) #ensure that all Spera metallicity regimes are represented
FeH = FeH_from_Z(metal) #generate death mass takes metallicty as [Fe/H]
- #want to get a good range of masses for Spera, should expect 8 invalids, 8 WDs, 3 NSs, and 9 BHs
+ #want to get a good range of masses for Spera, should expect 8 invalids, 8 WDs, 3 NSs, and 9 BHs
ZAMS = np.array([-0.2*np.ones(len(FeH)), 0.2*np.ones(len(FeH)), 4.0*np.ones(len(FeH)), 9.2*np.ones(len(FeH)),
15.0*np.ones(len(FeH)), 30.0*np.ones(len(FeH)), 150.0*np.ones(len(FeH))])
@@ -872,7 +1138,7 @@ def test_Spera15_IFMR_7():
assert len(BH_idx) == 10 , "There are not the right number of BHs for the Spera15 IFMR"
return
-
+
def generate_Raithel18_IFMR():
"""
Make a set of objects using the Raithel18 IFMR for the purposes of testing
@@ -881,7 +1147,7 @@ def generate_Raithel18_IFMR():
"""
Raithel = ifmr.IFMR_Raithel18()
- ZAMS = np.array([-0.2, 0.2, 1.0, 7.0, 10.0, 14.0, 16.0, 18.0, 18.6, 22.0, 26.0, 28.0, 50.0, 61.0, 119.0, 121.0])
+ ZAMS = np.array([-0.2, 0.2, 1.0, 7.0, 10.0, 14.0, 16.0, 18.0, 18.6, 22.0, 26.0, 28.0, 50.0, 61.0, 119.0, 121.0])
#3 invalid indices, 2 WDs, cannot make statements about #of BHs and NSs because the Raithel IFMR has some randomness
output_array = Raithel.generate_death_mass(ZAMS)
@@ -949,3 +1215,62 @@ def test_Raithel18_IFMR_5():
assert len(WD_idx) == 2 , "There are not the right number of WDs for the Raithel18 IFMR"
return
+
+def test_ResolvedCluster_random_state():
+ """
+ Test that the random state is properly set in ResolvedCluster, such that two clusters with the same seed have the same stars.
+ """
+ log_age = 6.7
+ AKs = 2.7
+ distance = 4000
+ cluster_mass = 10**4.
+ iso_dir = f'{spisea_path}/tests/isochrones'
+
+ evo = evolution.MergedBaraffePisaEkstromParsec()
+ atm_func = atmospheres.get_merged_atmosphere
+ red_law = reddening.RedLawNishiyama09()
+ filt_list = ['nirc2,J', 'nirc2,Kp']
+
+ iso = syn.IsochronePhot(
+ log_age,
+ AKs,
+ distance,
+ evo_model=evo,
+ atm_func=atm_func,
+ red_law=red_law,
+ filters=filt_list,
+ mass_sampling=10,
+ iso_dir=iso_dir
+ )
+
+ imf_limits = np.array([0.07, 0.5, 150])
+ imf_powers = np.array([-1.3, -2.35])
+ imf_multi = multiplicity.MultiplicityUnresolved()
+ imf_test = imf.IMF_broken_powerlaw(imf_limits, imf_powers, multiplicity=imf_multi)
+
+ # Test that the same random seed produces the same cluster
+ imf_test.rng = np.random.default_rng(seed=42)
+ result1 = imf_test.generate_cluster(cluster_mass)
+ imf_test.rng = np.random.default_rng(seed=42)
+ result2 = imf_test.generate_cluster(cluster_mass)
+ np.testing.assert_equal(result1, result2)
+
+ # Test that two clusters generated with the same seed have the same star systems and companions
+ cluster1 = syn.ResolvedCluster(iso, imf_test, cluster_mass, seed=42)
+ cluster2 = syn.ResolvedCluster(iso, imf_test, cluster_mass, seed=42)
+ np.testing.assert_array_equal(cluster1.star_systems, cluster2.star_systems)
+
+ with open(f'{spisea_path}/tests/test_data/star_systems.pkl', 'rb') as file:
+ old_star_systems = pickle.load(file)
+ with open(f'{spisea_path}/tests/test_data/companions.pkl', 'rb') as file:
+ old_companion = pickle.load(file)
+
+ for key in old_star_systems.colnames:
+ #np.testing.assert_array_equal(cluster1.star_systems[key], old_star_systems[key])
+ assert np.all(np.isclose(cluster1.star_systems[key], old_star_systems[key], rtol=1e-05, atol=1e-08))
+
+ for key in old_companion.colnames:
+ # Require values are consistent within reasonable bounds
+ assert np.all(np.isclose(cluster1.companions[key], old_companion[key], rtol=1e-05, atol=1e-08))
+
+ return