Commit 1b0b5c1d96632608c05635cff8079b688b2ae61e

Authored by dmayerich
0 parents

first commit

CMakeLists.txt 0 → 100644
  1 +++ a/CMakeLists.txt
  1 +#Specify the version being used aswell as the language
  2 +cmake_minimum_required(VERSION 2.8)
  3 +#Name your project here
  4 +project(ricalc)
  5 +
  6 +#set the module directory
  7 +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}")
  8 +
  9 +#find BOOST
  10 +set(Boost_USE_STATIC_LIBS ON)
  11 +set(Boost_USE_MULTITHREADED ON)
  12 +set(Boost_USE_STATIC_RUNTIME OFF)
  13 +find_package( Boost 1.54.0 COMPONENTS program_options )
  14 +
  15 +#set up CUDA
  16 +find_package(CUDA)
  17 +if(CUDA_FOUND)
  18 + link_libraries(${CUDA_cufft_LIBRARY})
  19 + add_definitions(-DCUDA_AVAILABLE)
  20 +endif(CUDA_FOUND)
  21 +
  22 +#set up the FFTW package (fast Fourier transform)
  23 +find_package(FFTW)
  24 +if(FFTW_FOUND)
  25 + include_directories(${FFTW_INCLUDE_DIR})
  26 + link_libraries(${FFTW_LIBRARY})
  27 + add_definitions(-DFFTW_AVAILABLE)
  28 +endif(FFTW_FOUND)
  29 +
  30 +#ask the user for the RTS location
  31 +set(RTS_ROOT_PATH $ENV{RTS_ROOT_PATH})
  32 +find_package(RTS REQUIRED)
  33 +
  34 +#set the include directories
  35 +include_directories(
  36 + ${CMAKE_CURRENT_BINARY_DIR}
  37 + ${RTS_INCLUDE_DIR}
  38 + ${Boost_INCLUDE_DIR}
  39 +)
  40 +
  41 +#enable warnings
  42 +if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
  43 + add_definitions(-Wall -lfftw3 -lm)
  44 +endif()
  45 +
  46 +#Assign source files to the appropriate variables
  47 +file(GLOB SRC_CPP "*.cpp")
  48 +file(GLOB SRC_H "*.h")
  49 +file(GLOB SRC_CU "*.cu")
  50 +
  51 +#copy example material files
  52 +configure_file(etaPolyethylene.txt ${CMAKE_CURRENT_BINARY_DIR}/etaPolyethylene.txt COPYONLY)
  53 +configure_file(etaTeflon.txt ${CMAKE_CURRENT_BINARY_DIR}/etaTeflon.txt COPYONLY)
  54 +configure_file(etaToluene.txt ${CMAKE_CURRENT_BINARY_DIR}/etaToluene.txt COPYONLY)
  55 +
  56 +
  57 +#create an executable
  58 +cuda_add_executable(ricalc ${SRC_CPP} ${SRC_H} ${SRC_CU})
  59 +
  60 +#set the link libraries
  61 +target_link_libraries(ricalc ${Boost_LIBRARIES})
  62 +
  63 +
  64 +
... ...
FindCUDASDK.cmake 0 → 100644
  1 +++ a/FindCUDASDK.cmake
  1 +#
  2 +# The script defines the following variables:
  3 +#
  4 +##############################################################################
  5 +# Note: Removed everything related to CUDA_SDK_ROOT_DIR and only left this as
  6 +# a possible environment variable to set the SDK directory.
  7 +# Include file will be: CUDA_CUT_INCLUDE_DIR
  8 +# Cutil library: CUDA_CUT_LIBRARY
  9 +##############################################################################
  10 +#
  11 +#
  12 +# CUDA_SDK_ROOT_DIR -- Path to the CUDA SDK. Use this to find files in the
  13 +# SDK. This script will not directly support finding
  14 +# specific libraries or headers, as that isn't
  15 +# supported by NVIDIA. If you want to change
  16 +# libraries when the path changes see the
  17 +# FindCUDA.cmake script for an example of how to clear
  18 +# these variables. There are also examples of how to
  19 +# use the CUDA_SDK_ROOT_DIR to locate headers or
  20 +# libraries, if you so choose (at your own risk).
  21 +#
  22 +# This code is licensed under the MIT License. See the FindCUDASDK.cmake script
  23 +# for the text of the license.
  24 +
  25 +# The MIT License
  26 +#
  27 +# License for the specific language governing rights and limitations under
  28 +# Permission is hereby granted, free of charge, to any person obtaining a
  29 +# copy of this software and associated documentation files (the "Software"),
  30 +# to deal in the Software without restriction, including without limitation
  31 +# the rights to use, copy, modify, merge, publish, distribute, sublicense,
  32 +# and/or sell copies of the Software, and to permit persons to whom the
  33 +# Software is furnished to do so, subject to the following conditions:
  34 +#
  35 +# The above copyright notice and this permission notice shall be included
  36 +# in all copies or substantial portions of the Software.
  37 +#
  38 +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  39 +# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  40 +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  41 +# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  42 +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  43 +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  44 +# DEALINGS IN THE SOFTWARE.
  45 +#
  46 +###############################################################################
  47 +
  48 +# FindCUDASDK.cmake
  49 +
  50 +# # Check to see if the CUDA_SDK_ROOT_DIR has changed,
  51 +# # if it has then clear the cache variable, so that it will be detected again.
  52 +# if(NOT "${CUDA_SDK_ROOT_DIR}" STREQUAL "${CUDA_SDK_ROOT_DIR_INTERNAL}")
  53 +# # No specific variables to catch. Use this kind of code before calling
  54 +# # find_package(CUDA) to clean up any variables that may depend on this path.
  55 +#
  56 +# # unset(MY_SPECIAL_CUDA_SDK_INCLUDE_DIR CACHE)
  57 +# # unset(MY_SPECIAL_CUDA_SDK_LIBRARY CACHE)
  58 +# endif()
  59 +#
  60 +# ########################
  61 +# # Look for the SDK stuff
  62 +# find_path(CUDA_SDK_ROOT_DIR cutil.h
  63 +# PATH_SUFFIXES "common/inc" "C/common/inc"
  64 +# "$ENV{NVSDKCUDA_ROOT}"
  65 +# "[HKEY_LOCAL_MACHINE\\SOFTWARE\\NVIDIA Corporation\\Installed Products\\NVIDIA SDK 10\\Compute;InstallDir]"
  66 +# "/Developer/GPU\ Computing/C"
  67 +# )
  68 +#
  69 +# # fallback method for determining CUDA_SDK_ROOT_DIR in case the previous one failed!
  70 +# if (NOT CUDA_SDK_ROOT_DIR)
  71 +# find_path(CUDA_SDK_ROOT_DIR C/common/inc/cutil.h
  72 +# "$ENV{NVSDKCUDA_ROOT}"
  73 +# "[HKEY_LOCAL_MACHINE\\SOFTWARE\\NVIDIA Corporation\\Installed Products\\NVIDIA SDK 10\\Compute;InstallDir]"
  74 +# "/Developer/GPU\ Computing/C"
  75 +# )
  76 +# endif()
  77 +
  78 +# Keep the CUDA_SDK_ROOT_DIR first in order to be able to override the
  79 +# environment variables.
  80 +set(CUDA_SDK_SEARCH_PATH
  81 + "${CUDA_SDK_ROOT_DIR}"
  82 + "${CUDA_TOOLKIT_ROOT_DIR}/local/NVSDK0.2"
  83 + "${CUDA_TOOLKIT_ROOT_DIR}/NVSDK0.2"
  84 + "${CUDA_TOOLKIT_ROOT_DIR}/NV_SDK"
  85 + "${CUDA_TOOLKIT_ROOT_DIR}/NV_CUDA_SDK"
  86 + "$ENV{HOME}/NVIDIA_CUDA_SDK"
  87 + "$ENV{HOME}/NVIDIA_CUDA_SDK_MACOSX"
  88 + "$ENV{HOME}/NVIDIA_GPU_Computing_SDK"
  89 + "/Developer/CUDA"
  90 + )
  91 +
  92 +# Find include file from the CUDA_SDK_SEARCH_PATH
  93 +
  94 +find_path(CUDA_CUT_INCLUDE_DIR
  95 + cutil.h
  96 + PATHS ${CUDA_SDK_SEARCH_PATH}
  97 + PATH_SUFFIXES "common/inc" "C/common/inc"
  98 + DOC "Location of cutil.h"
  99 + NO_DEFAULT_PATH
  100 + )
  101 +# Now search system paths
  102 +find_path(CUDA_CUT_INCLUDE_DIR cutil.h DOC "Location of cutil.h")
  103 +
  104 +# mark_as_advanced(CUDA_CUT_INCLUDE_DIR)
  105 +
  106 +
  107 +# Example of how to find a library in the CUDA_SDK_ROOT_DIR
  108 +
  109 +# cutil library is called cutil64 for 64 bit builds on windows. We don't want
  110 +# to get these confused, so we are setting the name based on the word size of
  111 +# the build.
  112 +
  113 +# New library might be called cutil_x86_64 !
  114 +
  115 +if(CMAKE_SIZEOF_VOID_P EQUAL 8)
  116 + set(cuda_cutil_name cutil64)
  117 +else(CMAKE_SIZEOF_VOID_P EQUAL 8)
  118 + set(cuda_cutil_name cutil32)
  119 +endif(CMAKE_SIZEOF_VOID_P EQUAL 8)
  120 +
  121 +find_library(CUDA_CUT_LIBRARY
  122 + NAMES ${cuda_cutil_name} cutil cutil_x86_64 cutil_i386
  123 + PATHS ${CUDA_SDK_SEARCH_PATH}
  124 + # The new version of the sdk shows up in common/lib, but the old one is in lib
  125 + # The very newest installation Path of the SDK is in subdirectory 'C'. Please add this Path to the possible suffixes.
  126 + PATH_SUFFIXES "C/lib" "common/lib" "lib" "C/common/lib" "common/lib"
  127 + DOC "Location of cutil library"
  128 + NO_DEFAULT_PATH
  129 + )
  130 +# # Now search system paths
  131 +# find_library(CUDA_CUT_LIBRARY NAMES cutil ${cuda_cutil_name} DOC "Location of cutil library")
  132 +mark_as_advanced(CUDA_CUT_LIBRARY)
  133 +set(CUDA_CUT_LIBRARIES ${CUDA_CUT_LIBRARY})
  134 +
  135 +#############################
  136 +# Check for required components
  137 +if(CUDA_CUT_INCLUDE_DIR)
  138 + set(CUDASDK_FOUND TRUE)
  139 +endif(CUDA_CUT_INCLUDE_DIR)
  140 +
  141 +# set(CUDA_SDK_ROOT_DIR_INTERNAL "${CUDA_SDK_ROOT_DIR}" CACHE INTERNAL
  142 +# "This is the value of the last time CUDA_SDK_ROOT_DIR was set successfully." FORCE)
... ...
FindFFTW.cmake 0 → 100644
  1 +++ a/FindFFTW.cmake
  1 +# - Find the native FFTW includes and library
  2 +#
  3 +# This module defines
  4 +#
  5 +# FFTW_INCLUDE_DIR, where to find fftw3.h, etc.
  6 +# FFTW_LIBRARY, the libraries to link against to use FFTW.
  7 +#
  8 +# FFTW_FOUND
  9 +#
  10 +# Was borrowed from http://houdini-ocean-toolkit.googlecode.com
  11 +#
  12 +
  13 +find_path(FFTW_INCLUDE_DIR fftw3.h
  14 + PATHS ${CMAKE_SOURCE_DIR}/../3rdparty/include;
  15 + ${CMAKE_SOURCE_DIR}/3rdparty/include)
  16 +
  17 +find_library(FFTW_LIBRARY fftw3
  18 + PATHS ${CMAKE_SOURCE_DIR}/../3rdparty/lib;
  19 + ${CMAKE_SOURCE_DIR}/3rdparty/lib)
  20 +
  21 +if (FFTW_INCLUDE_DIR AND FFTW_LIBRARY)
  22 + set(FFTW_FOUND TRUE)
  23 +else (FFTW_INCLUDE_DIR AND FFTW_LIBRARY)
  24 + set(FFTW_FOUND FALSE)
  25 +endif (FFTW_INCLUDE_DIR AND FFTW_LIBRARY)
... ...
FindRTS.cmake 0 → 100644
  1 +++ a/FindRTS.cmake
  1 +# Tries to find the RTS include directory
  2 +
  3 + FIND_PATH( RTS_INCLUDE_DIR NAMES rts_glShaderProgram.h
  4 + PATHS
  5 + ${CMAKE_CURRENT_SOURCE_DIR}/rts
  6 + ${RTS_ROOT_PATH}
  7 +)
  8 +
  9 +IF (RTS_FOUND)
  10 + #The following deprecated settings are for backwards compatibility with CMake1.4
  11 + SET (RTS_INCLUDE_PATH ${RTS_INCLUDE_DIR})
  12 +ENDIF(RTS_FOUND)
  13 +
  14 +FIND_PACKAGE_HANDLE_STANDARD_ARGS(RTS REQUIRED_VARS TRUE RTS_INCLUDE_DIR)
... ...
README.md 0 → 100644
  1 +++ a/README.md
  1 +Computes the dispersion of a material given material properties. For example, given an absorbance spectrum, this software can estimate the complex refractive index and Chi values.
  2 +
  3 +A Windows 32 executable is provided in the Win32 directory. All of the necessary runtime libraries are included. Start by running 'ricalc -h' for command-line options.
  4 +
  5 +This software is designed to be used with CMake, so we recommend using it to build the application.
  6 +
  7 +This software requires the following libraries for compiling:
  8 +
  9 +FFTW - Fast Fourier Transform library -- http://www.fftw.org
  10 + or
  11 +CUDA - NVidia's GPU programming toolkit -- https://developer.nvidia.com/
  12 +
  13 +RTS - Real-Time Scraps C++ library (my codebase) -- https://github.com/dmayerich/RTS
  14 +
  15 +
  16 +
  17 +
  18 +
  19 +
... ...
Win32/libfftw3-3.dll 0 → 100644
No preview for this file type
Win32/ricalc.exe 0 → 100644
No preview for this file type
etaPolyethylene.txt 0 → 100644
  1 +++ a/etaPolyethylene.txt
  1 +#nu n k
  2 +898.666 1.54119 0.00042801
  3 +902.523 1.54118 0.00038246
  4 +906.38 1.541 0.00040294
  5 +910.237 1.54094 0.00039488
  6 +914.094 1.54085 0.00037618
  7 +917.95 1.54084 0.0003536
  8 +921.807 1.54082 0.0003278
  9 +925.664 1.54081 0.0003156
  10 +929.521 1.54084 0.00028804
  11 +933.378 1.54084 0.00032099
  12 +937.235 1.54084 0.00031952
  13 +941.092 1.54084 0.00033633
  14 +944.949 1.54087 0.00036991
  15 +948.806 1.54083 0.00040887
  16 +952.663 1.54078 0.00044517
  17 +956.52 1.54076 0.00043966
  18 +960.377 1.54073 0.00044863
  19 +964.234 1.54068 0.00044314
  20 +968.091 1.54065 0.00045241
  21 +971.948 1.54062 0.00043188
  22 +975.804 1.54052 0.00039329
  23 +979.661 1.54055 0.00034324
  24 +983.518 1.54054 0.00027772
  25 +987.375 1.54053 0.00024005
  26 +991.232 1.54061 0.00018819
  27 +995.089 1.54062 0.00017644
  28 +998.946 1.54068 0.0001743
  29 +1002.8 1.5407 0.0001892
  30 +1006.66 1.54073 0.00022698
  31 +1010.52 1.54072 0.00025522
  32 +1014.37 1.54074 0.00027914
  33 +1018.23 1.54071 0.00028447
  34 +1022.09 1.54068 0.00030539
  35 +1025.94 1.54067 0.00030134
  36 +1029.8 1.54064 0.00030709
  37 +1033.66 1.54061 0.00030649
  38 +1037.52 1.54057 0.00027764
  39 +1041.37 1.54054 0.00024089
  40 +1045.23 1.54051 0.00017639
  41 +1049.09 1.54056 0.00013155
  42 +1052.94 1.54056 7.972e-005
  43 +1056.8 1.54061 4.678e-005
  44 +1060.66 1.54065 2.414e-005
  45 +1064.51 1.54066 6.56e-006
  46 +1068.37 1.54075 4.52e-006
  47 +1072.23 1.54077 1.86e-006
  48 +1076.08 1.54081 3.15e-005
  49 +1079.94 1.54086 5.205e-005
  50 +1083.8 1.54083 9.191e-005
  51 +1087.66 1.54083 0.00012551
  52 +1091.51 1.54082 0.00013487
  53 +1095.37 1.54082 0.0001366
  54 +1099.23 1.54081 0.00012324
  55 +1103.08 1.54082 0.00011624
  56 +1106.94 1.5408 9.228e-005
  57 +1110.8 1.54081 7.841e-005
  58 +1114.65 1.54084 5.534e-005
  59 +1118.51 1.54084 3.409e-005
  60 +1122.37 1.54087 1.855e-005
  61 +1126.22 1.54091 0
  62 +1130.08 1.54097 7.19e-006
  63 +1133.94 1.54103 1.989e-005
  64 +1137.8 1.54105 5.403e-005
  65 +1141.65 1.54112 8.195e-005
  66 +1145.51 1.54112 0.00012699
  67 +1149.37 1.54114 0.0001768
  68 +1153.22 1.54114 0.00021147
  69 +1157.08 1.54112 0.00025829
  70 +1160.94 1.54113 0.00029061
  71 +1164.79 1.54108 0.00032397
  72 +1168.65 1.54108 0.00034385
  73 +1172.51 1.54107 0.00036836
  74 +1176.36 1.54104 0.0003735
  75 +1180.22 1.54101 0.00035023
  76 +1184.08 1.54101 0.00033782
  77 +1187.94 1.541 0.00032161
  78 +1191.79 1.54104 0.00032158
  79 +1195.65 1.54104 0.00031863
  80 +1199.51 1.54107 0.00033038
  81 +1203.36 1.54108 0.00035069
  82 +1207.22 1.54107 0.00037485
  83 +1211.08 1.54113 0.00041366
  84 +1214.93 1.54108 0.00045119
  85 +1218.79 1.54104 0.0004902
  86 +1222.65 1.54106 0.00050622
  87 +1226.51 1.54101 0.00053244
  88 +1230.36 1.54099 0.00054526
  89 +1234.22 1.54095 0.00054043
  90 +1238.08 1.54092 0.00053686
  91 +1241.93 1.54086 0.00051393
  92 +1245.79 1.54085 0.00049385
  93 +1249.65 1.54085 0.00045921
  94 +1253.5 1.54083 0.00043153
  95 +1257.36 1.54087 0.00041048
  96 +1261.22 1.54087 0.00039754
  97 +1265.07 1.54086 0.00038579
  98 +1268.93 1.54086 0.00037209
  99 +1272.79 1.54091 0.00037321
  100 +1276.65 1.54089 0.00036889
  101 +1280.5 1.54092 0.00038267
  102 +1284.36 1.54093 0.00039353
  103 +1288.22 1.54091 0.00040998
  104 +1292.07 1.54092 0.00042425
  105 +1295.93 1.54088 0.0004231
  106 +1299.79 1.54087 0.00042156
  107 +1303.64 1.54088 0.0004027
  108 +1307.5 1.54081 0.00038994
  109 +1311.36 1.5408 0.00035638
  110 +1315.21 1.54081 0.00031839
  111 +1319.07 1.54081 0.00027074
  112 +1322.93 1.54083 0.00022097
  113 +1326.79 1.54089 0.00019314
  114 +1330.64 1.54091 0.00016466
  115 +1334.5 1.54099 0.0001724
  116 +1338.36 1.541 0.00019304
  117 +1342.21 1.54104 0.00020191
  118 +1346.07 1.54107 0.00020463
  119 +1349.93 1.54106 0.00022886
  120 +1353.78 1.5411 0.00024824
  121 +1357.64 1.54113 0.00026467
  122 +1361.5 1.54111 0.00032192
  123 +1365.35 1.54108 0.0003319
  124 +1369.21 1.54108 0.00032069
  125 +1373.07 1.54105 0.00029896
  126 +1376.93 1.54105 0.00025182
  127 +1380.78 1.54107 0.00020386
  128 +1384.64 1.54113 0.0001788
  129 +1388.5 1.54116 0.00017692
  130 +1392.35 1.54121 0.0001595
  131 +1396.21 1.54127 0.00018172
  132 +1400.07 1.5413 0.00017101
  133 +1403.92 1.54136 0.0001655
  134 +1407.78 1.54141 0.00018251
  135 +1411.64 1.54146 0.00019087
  136 +1415.49 1.54156 0.00025939
  137 +1419.35 1.54158 0.00030871
  138 +1423.21 1.54164 0.00033849
  139 +1427.07 1.54165 0.00035628
  140 +1430.92 1.54177 0.000422
  141 +1434.78 1.54179 0.00051804
  142 +1438.64 1.54183 0.00054932
  143 +1442.49 1.54189 0.00058626
  144 +1446.35 1.54205 0.00063101
  145 +1450.21 1.54229 0.00074238
  146 +1454.06 1.54272 0.00099416
  147 +1457.92 1.54287 0.00209105
  148 +1461.78 1.54195 0.00321291
  149 +1465.64 1.54094 0.0028369
  150 +1469.49 1.54041 0.00267381
  151 +1473.35 1.53961 0.00253731
  152 +1477.21 1.53925 0.00128331
  153 +1481.06 1.53969 0.0006213
  154 +1484.92 1.54017 0.0005394
  155 +1488.78 1.54031 0.00057298
  156 +1492.63 1.54042 0.00056345
  157 +1496.49 1.54052 0.0005445
  158 +1500.35 1.54061 0.00054085
  159 +1504.2 1.54068 0.00058144
  160 +1508.06 1.54061 0.00064828
  161 +1511.92 1.5406 0.00055856
  162 +1515.78 1.54067 0.00052929
  163 +1519.63 1.54066 0.00059563
  164 +1523.49 1.54066 0.0005584
  165 +1527.35 1.54065 0.00048296
  166 +1531.2 1.54072 0.00043625
  167 +1535.06 1.54079 0.00046385
  168 +1538.92 1.5408 0.00056596
  169 +1542.77 1.54071 0.00054466
  170 +1546.63 1.54071 0.00043963
  171 +1550.49 1.5408 0.00041193
  172 +1554.34 1.54084 0.00048176
  173 +1558.2 1.54081 0.00058085
  174 +1562.06 1.54073 0.00049177
  175 +1565.92 1.54075 0.00041398
  176 +1569.77 1.54077 0.00042723
  177 +1573.63 1.54075 0.00042759
  178 +1577.49 1.54079 0.00040069
  179 +1581.34 1.54077 0.00034118
  180 +1585.2 1.54084 0.00031186
  181 +1589.06 1.54086 0.00031601
  182 +1592.91 1.54085 0.00030593
  183 +1596.77 1.54091 0.00030831
  184 +1600.63 1.54092 0.00028967
  185 +1604.48 1.54096 0.0002833
  186 +1608.34 1.54101 0.00028289
  187 +1612.2 1.54103 0.00028776
  188 +1616.06 1.54106 0.00033643
  189 +1619.91 1.54106 0.00034205
  190 +1623.77 1.54106 0.00035702
  191 +1627.63 1.54108 0.00033927
  192 +1631.48 1.54112 0.00034108
  193 +1635.34 1.54112 0.00042011
  194 +1639.2 1.54112 0.00038127
  195 +1643.05 1.54115 0.00036647
  196 +1646.91 1.54119 0.0004247
  197 +1650.77 1.54112 0.00048308
  198 +1654.62 1.54103 0.00045178
  199 +1658.48 1.54108 0.00034997
  200 +1662.34 1.54111 0.00034021
  201 +1666.2 1.54118 0.00036197
  202 +1670.05 1.54121 0.00038175
  203 +1673.91 1.54122 0.00039106
  204 +1677.77 1.54127 0.00037529
  205 +1681.62 1.5413 0.00045005
  206 +1685.48 1.54125 0.0005006
  207 +1689.34 1.54125 0.00044082
  208 +1693.19 1.54131 0.00045592
  209 +1697.05 1.54133 0.00057514
  210 +1700.91 1.54124 0.00061893
  211 +1704.77 1.54118 0.00056482
  212 +1708.62 1.54121 0.00051541
  213 +1712.48 1.54123 0.00053415
  214 +1716.34 1.54123 0.00061049
  215 +1720.19 1.54118 0.00056453
  216 +1724.05 1.5412 0.00049607
  217 +1727.91 1.54127 0.0005118
  218 +1731.76 1.54129 0.0005872
  219 +1735.62 1.54125 0.00061749
  220 +1739.48 1.54122 0.00058433
  221 +1743.33 1.54128 0.00058925
  222 +1747.19 1.54126 0.0006168
  223 +1751.05 1.54119 0.00061892
  224 +1754.91 1.54124 0.00058246
  225 +1758.76 1.54123 0.00058189
  226 +1762.62 1.54122 0.00059579
  227 +1766.48 1.5413 0.00060041
  228 +1770.33 1.54126 0.00066851
  229 +1774.19 1.54123 0.00066629
  230 +1778.05 1.54117 0.00063365
  231 +1781.9 1.54118 0.00063274
  232 +1785.76 1.54122 0.00061577
  233 +1789.62 1.54119 0.00063319
  234 +1793.47 1.54122 0.00063621
  235 +1797.33 1.54117 0.00061639
  236 +1801.19 1.54115 0.00060149
  237 +1805.05 1.5412 0.00057813
  238 +1808.9 1.54116 0.00056311
  239 +1812.76 1.54119 0.00054928
  240 +1816.62 1.54123 0.00053613
  241 +1820.47 1.54126 0.00053938
  242 +1824.33 1.54126 0.00057278
  243 +1828.19 1.54123 0.00060054
  244 +1832.04 1.54127 0.00058871
  245 +1835.9 1.5412 0.00056005
  246 +1839.76 1.54125 0.00056531
  247 +1843.61 1.5413 0.00059206
  248 +1847.47 1.54121 0.00057401
  249 +1851.33 1.54128 0.00054448
  250 +1855.19 1.54123 0.00053538
  251 +1859.04 1.54123 0.00051986
  252 +1862.9 1.54125 0.00050818
  253 +1866.76 1.54135 0.00053157
  254 +1870.61 1.54126 0.00051802
  255 +1874.47 1.54133 0.0004774
  256 +1878.33 1.54137 0.00047584
  257 +1882.18 1.54141 0.00047928
  258 +1886.04 1.54144 0.0005107
  259 +1889.9 1.54146 0.00055251
  260 +1893.75 1.54144 0.00056678
  261 +1897.61 1.54144 0.00056701
  262 +1901.47 1.54142 0.00056308
  263 +1905.33 1.54143 0.00057764
  264 +1909.18 1.54144 0.00058333
  265 +1913.04 1.54148 0.00058837
  266 +1916.9 1.54148 0.00061175
  267 +1920.75 1.54147 0.00061958
  268 +1924.61 1.54141 0.0006037
  269 +1928.47 1.54141 0.00058767
  270 +1932.32 1.54147 0.00058077
  271 +1936.18 1.54149 0.0005759
  272 +1940.04 1.54152 0.00058999
  273 +1943.9 1.54149 0.00060248
  274 +1947.75 1.54154 0.00060227
  275 +1951.61 1.54154 0.0006155
  276 +1955.47 1.54158 0.00064083
  277 +1959.32 1.54159 0.00066146
  278 +1963.18 1.54157 0.00068457
  279 +1967.04 1.54157 0.00070872
  280 +1970.89 1.54163 0.0007175
  281 +1974.75 1.54155 0.00073
  282 +1978.61 1.54156 0.00074496
  283 +1982.46 1.54161 0.00076088
  284 +1986.32 1.54158 0.00077477
  285 +1990.18 1.54157 0.00077673
  286 +1994.04 1.54155 0.00078181
  287 +1997.89 1.54155 0.00077858
  288 +2001.75 1.54155 0.00077439
  289 +2005.61 1.54158 0.00077198
  290 +2009.46 1.54163 0.00078891
  291 +2013.32 1.54162 0.00082924
  292 +2017.18 1.54154 0.00085872
  293 +2021.03 1.54158 0.00087082
  294 +2024.89 1.54157 0.00087384
  295 +2028.75 1.54156 0.0008829
  296 +2032.6 1.54151 0.0008848
  297 +2036.46 1.54152 0.00088407
  298 +2040.32 1.5415 0.00089069
  299 +2044.18 1.54152 0.00089026
  300 +2048.03 1.54147 0.00088623
  301 +2051.89 1.54147 0.00087477
  302 +2055.75 1.54141 0.0008616
  303 +2059.6 1.54144 0.00083997
  304 +2063.46 1.54145 0.00081664
  305 +2067.32 1.54142 0.00079261
  306 +2071.17 1.54144 0.00077244
  307 +2075.03 1.54148 0.00076483
  308 +2078.89 1.54151 0.00075797
  309 +2082.74 1.5415 0.00075846
  310 +2086.6 1.54149 0.00075997
  311 +2090.46 1.54156 0.00076488
  312 +2094.32 1.54156 0.00076722
  313 +2098.17 1.54153 0.00077003
  314 +2102.03 1.54157 0.00077852
  315 +2105.89 1.54153 0.00077923
  316 +2109.74 1.54152 0.00078499
  317 +2113.6 1.54158 0.000785
  318 +2117.46 1.54156 0.00078399
  319 +2121.31 1.54153 0.00077331
  320 +2125.17 1.54156 0.00075105
  321 +2129.03 1.54153 0.00073147
  322 +2132.88 1.54156 0.00070562
  323 +2136.74 1.54158 0.00068282
  324 +2140.6 1.54158 0.00067026
  325 +2144.46 1.54162 0.00066793
  326 +2148.31 1.54164 0.0006594
  327 +2152.17 1.54168 0.00065716
  328 +2156.03 1.5417 0.00067029
  329 +2159.88 1.54178 0.00069187
  330 +2163.74 1.54176 0.00072229
  331 +2167.6 1.54176 0.00073334
  332 +2171.45 1.54178 0.0007447
  333 +2175.31 1.54175 0.00076316
  334 +2179.17 1.54174 0.00077651
  335 +2183.02 1.54177 0.00077775
  336 +2186.88 1.54173 0.00076711
  337 +2190.74 1.54181 0.0007568
  338 +2194.6 1.54177 0.00074338
  339 +2198.45 1.54179 0.00073547
  340 +2202.31 1.54182 0.00072207
  341 +2206.17 1.54185 0.00070938
  342 +2210.02 1.54187 0.00071166
  343 +2213.88 1.54194 0.00072989
  344 +2217.74 1.54196 0.00075587
  345 +2221.59 1.54195 0.00077353
  346 +2225.45 1.54196 0.00079876
  347 +2229.31 1.54203 0.00082352
  348 +2233.17 1.54201 0.00086501
  349 +2237.02 1.54204 0.00091213
  350 +2240.88 1.54201 0.00093793
  351 +2244.74 1.54199 0.00096032
  352 +2248.59 1.54196 0.00096721
  353 +2252.45 1.54199 0.00096175
  354 +2256.31 1.54193 0.00096046
  355 +2260.16 1.54196 0.00095994
  356 +2264.02 1.54194 0.00095129
  357 +2267.88 1.54199 0.00094074
  358 +2271.73 1.54201 0.00093223
  359 +2275.59 1.54197 0.00092793
  360 +2279.45 1.54204 0.0009338
  361 +2283.31 1.54205 0.00094035
  362 +2287.16 1.54208 0.00096031
  363 +2291.02 1.54213 0.00098612
  364 +2294.88 1.54213 0.00101782
  365 +2298.73 1.54208 0.00104571
  366 +2302.59 1.54211 0.00106189
  367 +2306.45 1.54212 0.00108411
  368 +2310.3 1.5421 0.00111481
  369 +2314.16 1.5421 0.00115452
  370 +2318.02 1.54208 0.001163
  371 +2321.87 1.54207 0.00116496
  372 +2325.73 1.54204 0.00117256
  373 +2329.59 1.542 0.00117223
  374 +2333.45 1.54206 0.00118796
  375 +2337.3 1.54197 0.00118167
  376 +2341.16 1.54196 0.00120538
  377 +2345.02 1.54193 0.00115249
  378 +2348.87 1.54197 0.00105582
  379 +2352.73 1.54204 0.00106231
  380 +2356.59 1.54216 0.00117235
  381 +2360.44 1.54201 0.00125922
  382 +2364.3 1.542 0.00125306
  383 +2368.16 1.54195 0.00127072
  384 +2372.01 1.54182 0.00127012
  385 +2375.87 1.54176 0.00116702
  386 +2379.73 1.54181 0.0010674
  387 +2383.59 1.54184 0.00101542
  388 +2387.44 1.54186 0.00098892
  389 +2391.3 1.54189 0.00096576
  390 +2395.16 1.5419 0.00094014
  391 +2399.01 1.54191 0.00091325
  392 +2402.87 1.54191 0.00088611
  393 +2406.73 1.54198 0.00085887
  394 +2410.58 1.542 0.00084275
  395 +2414.44 1.54209 0.00083137
  396 +2418.3 1.54208 0.00082863
  397 +2422.15 1.54213 0.00083674
  398 +2426.01 1.54218 0.00083869
  399 +2429.87 1.54218 0.00084283
  400 +2433.73 1.54229 0.00085037
  401 +2437.58 1.54228 0.00086494
  402 +2441.44 1.54225 0.00087925
  403 +2445.3 1.54231 0.0008872
  404 +2449.15 1.54234 0.00088704
  405 +2453.01 1.54233 0.00088184
  406 +2456.87 1.54237 0.00088997
  407 +2460.72 1.54233 0.00088295
  408 +2464.58 1.54234 0.00086279
  409 +2468.44 1.5424 0.00084932
  410 +2472.29 1.54241 0.00083665
  411 +2476.15 1.54241 0.000818
  412 +2480.01 1.54247 0.00080394
  413 +2483.87 1.54254 0.00080496
  414 +2487.72 1.54259 0.00080721
  415 +2491.58 1.54265 0.00082332
  416 +2495.44 1.54267 0.00084785
  417 +2499.29 1.5427 0.00087751
  418 +2503.15 1.54271 0.00090758
  419 +2507.01 1.54276 0.00092693
  420 +2510.86 1.54274 0.00095352
  421 +2514.72 1.5428 0.00098152
  422 +2518.58 1.54278 0.00100501
  423 +2522.44 1.54277 0.00101241
  424 +2526.29 1.54277 0.00100269
  425 +2530.15 1.54274 0.00097869
  426 +2534.01 1.5428 0.00095432
  427 +2537.86 1.54283 0.00093501
  428 +2541.72 1.54288 0.00092148
  429 +2545.58 1.54294 0.00093745
  430 +2549.43 1.54295 0.00095068
  431 +2553.29 1.54299 0.00095236
  432 +2557.15 1.54303 0.00095116
  433 +2561 1.54306 0.00095723
  434 +2564.86 1.54317 0.00098358
  435 +2568.72 1.54318 0.00100349
  436 +2572.58 1.54317 0.00102338
  437 +2576.43 1.54325 0.00104696
  438 +2580.29 1.5432 0.00107025
  439 +2584.15 1.54325 0.00108889
  440 +2588 1.54333 0.00110354
  441 +2591.86 1.54331 0.00110847
  442 +2595.72 1.5433 0.00110923
  443 +2599.57 1.54335 0.00110253
  444 +2603.43 1.5434 0.0010792
  445 +2607.29 1.5434 0.00108422
  446 +2611.14 1.54347 0.00110512
  447 +2615 1.54353 0.00112134
  448 +2618.86 1.54351 0.00111506
  449 +2622.72 1.54358 0.00111099
  450 +2626.57 1.54364 0.0011527
  451 +2630.43 1.54369 0.00118538
  452 +2634.29 1.54375 0.00121323
  453 +2638.14 1.5437 0.00122503
  454 +2642 1.54372 0.00121947
  455 +2645.86 1.54378 0.00122436
  456 +2649.71 1.54383 0.00122898
  457 +2653.57 1.54389 0.00123706
  458 +2657.43 1.54393 0.0012365
  459 +2661.28 1.54393 0.00123909
  460 +2665.14 1.54391 0.0012298
  461 +2669 1.544 0.00121291
  462 +2672.86 1.54408 0.00118508
  463 +2676.71 1.54413 0.00113969
  464 +2680.57 1.5443 0.00112845
  465 +2684.43 1.5443 0.0011388
  466 +2688.28 1.54435 0.00115424
  467 +2692.14 1.54448 0.00115946
  468 +2696 1.54456 0.00116087
  469 +2699.85 1.54466 0.0011892
  470 +2703.71 1.54477 0.00123892
  471 +2707.57 1.54488 0.00127081
  472 +2711.43 1.54486 0.00127712
  473 +2715.28 1.54497 0.00129201
  474 +2719.14 1.54511 0.00130355
  475 +2723 1.54508 0.00132832
  476 +2726.85 1.54531 0.00136051
  477 +2730.71 1.54535 0.00137992
  478 +2734.57 1.54541 0.00139079
  479 +2738.42 1.54561 0.00139874
  480 +2742.28 1.54567 0.00142823
  481 +2746.14 1.5458 0.0014439
  482 +2749.99 1.54593 0.00144809
  483 +2753.85 1.54608 0.00146405
  484 +2757.71 1.5462 0.00149177
  485 +2761.57 1.54633 0.00152907
  486 +2765.42 1.54653 0.00156536
  487 +2769.28 1.54672 0.00160128
  488 +2773.14 1.5469 0.00163716
  489 +2776.99 1.54713 0.00170169
  490 +2780.85 1.54729 0.00176736
  491 +2784.71 1.5475 0.00182123
  492 +2788.56 1.5477 0.0018825
  493 +2792.42 1.54798 0.00195435
  494 +2796.28 1.54822 0.00203335
  495 +2800.13 1.5485 0.00209338
  496 +2803.99 1.54878 0.00216905
  497 +2807.85 1.54914 0.00224688
  498 +2811.71 1.54955 0.00231271
  499 +2815.56 1.55007 0.00240789
  500 +2819.42 1.55062 0.00252931
  501 +2823.28 1.55132 0.00268691
  502 +2827.13 1.55214 0.00288805
  503 +2830.99 1.55324 0.00319675
  504 +2834.85 1.55482 0.0037317
  505 +2838.7 1.55701 0.00490491
  506 +2842.56 1.55977 0.00752726
  507 +2846.42 1.56455 0.0127859
  508 +2850.27 1.55241 0.0354717
  509 +2854.13 1.5369 0.0186466
  510 +2857.99 1.53824 0.0102007
  511 +2861.85 1.54118 0.00678025
  512 +2865.7 1.54381 0.00520933
  513 +2869.56 1.54602 0.00455058
  514 +2873.42 1.54793 0.00442317
  515 +2877.27 1.5497 0.00468809
  516 +2881.13 1.55129 0.0052601
  517 +2884.99 1.55265 0.00601824
  518 +2888.84 1.55396 0.006806
  519 +2892.7 1.55533 0.00756426
  520 +2896.56 1.55689 0.00831596
  521 +2900.41 1.5591 0.00907269
  522 +2904.27 1.56216 0.010234
  523 +2908.13 1.56663 0.0120281
  524 +2911.99 1.57391 0.0148133
  525 +2915.84 1.59432 0.0201016
  526 +2919.7 1.58496 0.081593
  527 +2923.56 1.54819 0.081593
  528 +2927.41 1.52461 0.081593
  529 +2931.27 1.48563 0.081593
  530 +2935.13 1.47716 0.0134472
  531 +2938.98 1.50114 0.00846779
  532 +2942.84 1.51 0.00599405
  533 +2946.7 1.51551 0.00462005
  534 +2950.55 1.51934 0.00384985
  535 +2954.41 1.52215 0.00339581
  536 +2958.27 1.52428 0.00311217
  537 +2962.13 1.52599 0.00293415
  538 +2965.98 1.52732 0.00280584
  539 +2969.84 1.52841 0.00266669
  540 +2973.7 1.52942 0.0025436
  541 +2977.55 1.53024 0.0024508
  542 +2981.41 1.53098 0.00238963
  543 +2985.27 1.53166 0.0023609
  544 +2989.12 1.53223 0.00234872
  545 +2992.98 1.53269 0.00233873
  546 +2996.84 1.53319 0.00232613
  547 +3000.7 1.53361 0.00233535
  548 +3004.55 1.53395 0.00233868
  549 +3008.41 1.53427 0.00232737
  550 +3012.27 1.53459 0.00233329
  551 +3016.12 1.53481 0.00234665
  552 +3019.98 1.5351 0.00235345
  553 +3023.84 1.53537 0.00236011
  554 +3027.69 1.53555 0.00236947
  555 +3031.55 1.53576 0.00238511
  556 +3035.41 1.53595 0.00241039
  557 +3039.26 1.53607 0.00240936
  558 +3043.12 1.53631 0.00239143
  559 +3046.98 1.53639 0.00238718
  560 +3050.84 1.5366 0.0024097
  561 +3054.69 1.53672 0.00245612
  562 +3058.55 1.53681 0.00247351
  563 +3062.41 1.537 0.00247046
  564 +3066.26 1.53708 0.00248492
  565 +3070.12 1.53725 0.00251256
  566 +3073.98 1.53731 0.0025365
  567 +3077.83 1.53734 0.00253988
  568 +3081.69 1.53747 0.00252814
  569 +3085.55 1.53755 0.00253247
  570 +3089.4 1.53765 0.00256518
  571 +3093.26 1.53776 0.00257485
  572 +3097.12 1.53782 0.00256107
  573 +3100.98 1.53791 0.00258556
  574 +3104.83 1.53796 0.00261868
  575 +3108.69 1.53802 0.00262195
  576 +3112.55 1.53812 0.0026374
  577 +3116.4 1.53813 0.00264531
  578 +3120.26 1.53821 0.00266315
  579 +3124.12 1.53832 0.00271453
  580 +3127.97 1.5383 0.00272884
  581 +3131.83 1.53838 0.00273801
  582 +3135.69 1.53844 0.00274658
  583 +3139.54 1.53845 0.0027568
  584 +3143.4 1.53856 0.00278555
  585 +3147.26 1.53855 0.00278531
  586 +3151.12 1.53865 0.00280644
  587 +3154.97 1.5386 0.00282855
  588 +3158.83 1.53867 0.00282387
  589 +3162.69 1.53871 0.00283106
  590 +3166.54 1.53879 0.00285258
  591 +3170.4 1.53886 0.00287859
  592 +3174.26 1.53878 0.002904
  593 +3178.11 1.53889 0.00294073
  594 +3181.97 1.53883 0.00292664
  595 +3185.83 1.53894 0.00291102
  596 +3189.68 1.53904 0.00295654
  597 +3193.54 1.539 0.00300153
  598 +3197.4 1.53904 0.00304076
  599 +3201.26 1.53902 0.00304851
  600 +3205.11 1.53905 0.00304563
  601 +3208.97 1.53907 0.00305357
  602 +3212.83 1.53914 0.00306796
  603 +3216.68 1.53913 0.00310194
  604 +3220.54 1.53919 0.0031221
  605 +3224.4 1.53917 0.00313876
  606 +3228.25 1.53913 0.00314126
  607 +3232.11 1.53919 0.00313369
  608 +3235.97 1.53921 0.00315882
  609 +3239.82 1.53925 0.00317707
  610 +3243.68 1.53925 0.0031754
  611 +3247.54 1.53933 0.00319288
  612 +3251.4 1.53932 0.00321948
  613 +3255.25 1.53928 0.00324138
  614 +3259.11 1.53938 0.00326708
  615 +3262.97 1.53934 0.0032804
  616 +3266.82 1.53943 0.003278
  617 +3270.68 1.53947 0.00329835
  618 +3274.54 1.53947 0.0033465
  619 +3278.39 1.53944 0.00337762
  620 +3282.25 1.53949 0.00340154
  621 +3286.11 1.5395 0.00342881
  622 +3289.97 1.53948 0.00345075
  623 +3293.82 1.53957 0.00347906
  624 +3297.68 1.53953 0.00350114
  625 +3301.54 1.53952 0.00351199
  626 +3305.39 1.53957 0.00351983
  627 +3309.25 1.53958 0.003562
  628 +3313.11 1.53964 0.0036275
  629 +3316.96 1.53963 0.00366295
  630 +3320.82 1.53957 0.0036812
  631 +3324.68 1.53958 0.00370943
  632 +3328.53 1.53956 0.00373606
  633 +3332.39 1.53957 0.00374156
  634 +3336.25 1.53959 0.00377316
  635 +3340.11 1.53963 0.00381299
  636 +3343.96 1.53957 0.00382803
  637 +3347.82 1.53965 0.00384863
  638 +3351.68 1.53957 0.00387344
  639 +3355.53 1.53964 0.00391755
  640 +3359.39 1.53962 0.00396881
  641 +3363.25 1.5396 0.00401809
  642 +3367.1 1.53959 0.0040365
  643 +3370.96 1.53951 0.00405394
  644 +3374.82 1.53957 0.00408003
  645 +3378.67 1.53957 0.00406788
  646 +3382.53 1.53956 0.00410868
  647 +3386.39 1.53954 0.00416363
  648 +3390.25 1.53954 0.00418181
  649 +3394.1 1.5395 0.00418514
  650 +3397.96 1.5395 0.00420373
  651 +3401.82 1.53948 0.00425953
  652 +3405.67 1.53943 0.00427757
  653 +3409.53 1.53947 0.00430295
  654 +3413.39 1.53943 0.00432285
  655 +3417.24 1.5395 0.004355
  656 +3421.1 1.53938 0.00440059
  657 +3424.96 1.53933 0.00438144
  658 +3428.81 1.53939 0.00438745
  659 +3432.67 1.5393 0.00440176
  660 +3436.53 1.53938 0.00441479
  661 +3440.39 1.53939 0.00446113
  662 +3444.24 1.53933 0.00454693
  663 +3448.1 1.53929 0.00458408
  664 +3451.96 1.5392 0.00453192
  665 +3455.81 1.53923 0.00453524
  666 +3459.67 1.53925 0.00454045
  667 +3463.53 1.53912 0.00453562
  668 +3467.38 1.53924 0.00454329
  669 +3471.24 1.53916 0.00453832
  670 +3475.1 1.53917 0.00455571
  671 +3478.96 1.53919 0.00458273
  672 +3482.81 1.53915 0.00463572
  673 +3486.67 1.53921 0.00467153
  674 +3490.53 1.53914 0.00468294
  675 +3494.38 1.53913 0.00467316
  676 +3498.24 1.53915 0.0046946
  677 +3502.1 1.53914 0.00476743
  678 +3505.95 1.53914 0.00480509
  679 +3509.81 1.53902 0.00481056
  680 +3513.67 1.53906 0.00477007
  681 +3517.52 1.53907 0.00476513
  682 +3521.38 1.53908 0.0048312
  683 +3525.24 1.53907 0.00494273
  684 +3529.1 1.53892 0.00498595
  685 +3532.95 1.5389 0.00489976
  686 +3536.81 1.53895 0.00483772
  687 +3540.67 1.53899 0.00483548
  688 +3544.52 1.53905 0.00497348
  689 +3548.38 1.53897 0.00507212
  690 +3552.24 1.53887 0.00503781
  691 +3556.09 1.53892 0.00497842
  692 +3559.95 1.53907 0.00492978
  693 +3563.81 1.53914 0.00529133
  694 +3567.66 1.53883 0.0056289
  695 +3571.52 1.53854 0.00538575
  696 +3575.38 1.53845 0.00509557
  697 +3579.24 1.53869 0.00488392
  698 +3583.09 1.53897 0.0049707
  699 +3586.95 1.53897 0.00539608
  700 +3590.81 1.53881 0.00551493
  701 +3594.66 1.5387 0.00545023
  702 +3598.52 1.53859 0.00545352
  703 +3602.38 1.53872 0.00531468
  704 +3606.23 1.53887 0.00545
  705 +3610.09 1.53881 0.00574529
  706 +3613.95 1.53877 0.00583345
  707 +3617.8 1.53853 0.00601032
  708 +3621.66 1.53848 0.00576763
  709 +3625.52 1.53874 0.0059285
  710 +3629.38 1.53827 0.00666404
  711 +3633.23 1.53771 0.00629983
  712 +3637.09 1.53766 0.00574148
  713 +3640.95 1.53798 0.00534971
  714 +3644.8 1.53865 0.0056094
  715 +3648.66 1.53846 0.00676182
  716 +3652.52 1.53761 0.00677093
  717 +3656.37 1.53716 0.00626823
  718 +3660.23 1.53715 0.00571434
  719 +3664.09 1.53766 0.00525168
  720 +3667.94 1.53832 0.00557497
  721 +3671.8 1.53837 0.00650441
  722 +3675.66 1.53767 0.00720812
  723 +3679.52 1.53695 0.00656422
  724 +3683.37 1.53715 0.00584071
  725 +3687.23 1.53761 0.00639159
  726 +3691.09 1.53703 0.00689051
  727 +3694.94 1.53669 0.00635556
  728 +3698.8 1.5367 0.00611035
  729 +3702.66 1.53683 0.00600736
  730 +3706.51 1.53713 0.0059881
  731 +3710.37 1.53701 0.00659889
  732 +3714.23 1.53649 0.00659443
  733 +3718.08 1.53643 0.00602004
  734 +3721.94 1.53662 0.00604124
  735 +3725.8 1.53664 0.00590578
  736 +3729.66 1.53711 0.00583357
  737 +3733.51 1.53719 0.00655091
  738 +3737.37 1.53682 0.00667907
  739 +3741.23 1.53705 0.00649775
  740 +3745.08 1.53726 0.00722164
  741 +3748.94 1.53662 0.00828452
  742 +3752.8 1.53551 0.00834798
  743 +3756.65 1.5348 0.007622
  744 +3760.51 1.53469 0.00704227
  745 +3764.37 1.53478 0.00680495
  746 +3768.23 1.53472 0.00692232
  747 +3772.08 1.53437 0.00675462
  748 +3775.94 1.53442 0.00640782
  749 +3779.8 1.53451 0.00651172
  750 +3783.65 1.53423 0.00648195
  751 +3787.51 1.53408 0.00620286
  752 +3791.37 1.53431 0.00587595
  753 +3795.22 1.53459 0.00584694
  754 +3799.08 1.53483 0.00646239
  755 +3802.94 1.53437 0.00710322
  756 +3806.79 1.53355 0.00709429
  757 +3810.65 1.53333 0.00642264
  758 +3814.51 1.53363 0.00626551
  759 +3818.37 1.5336 0.00709295
  760 +3822.22 1.5327 0.00752153
  761 +3826.08 1.53192 0.00703719
  762 +3829.94 1.53176 0.00641066
  763 +3833.79 1.5318 0.00653867
  764 +3837.65 1.53125 0.00732171
  765 +3841.51 1.52976 0.00760431
  766 +3845.36 1.52827 0.00661533
  767 +3849.22 1.52594 0.00611614
  768 +3853.08 1.52611 0.00757909
... ...
etaTeflon.txt 0 → 100644
  1 +++ a/etaTeflon.txt
  1 +#nu n k
  2 +898.666 1.45645 0.00958376
  3 +902.523 1.45631 0.00908888
  4 +906.38 1.45222 0.00853688
  5 +910.237 1.45115 0.00798344
  6 +914.094 1.45082 0.0079708
  7 +917.95 1.45053 0.00809632
  8 +921.807 1.45026 0.00839
  9 +925.664 1.4498 0.00856512
  10 +929.521 1.44959 0.00824848
  11 +933.378 1.44976 0.00823104
  12 +937.235 1.45003 0.00844192
  13 +941.092 1.45009 0.00897344
  14 +944.949 1.44993 0.00945176
  15 +948.806 1.44964 0.0098668
  16 +952.663 1.44916 0.0100585
  17 +956.52 1.44888 0.0098612
  18 +960.377 1.44877 0.00987752
  19 +964.234 1.44868 0.0097348
  20 +968.091 1.44868 0.0096144
  21 +971.948 1.44877 0.0094676
  22 +975.804 1.44903 0.00924992
  23 +979.661 1.44943 0.00924992
  24 +983.518 1.44983 0.0092748
  25 +987.375 1.45034 0.00943368
  26 +991.232 1.45094 0.0096464
  27 +995.089 1.45165 0.0100814
  28 +998.946 1.45233 0.0108606
  29 +1002.8 1.4528 0.011959
  30 +1006.66 1.45293 0.0132826
  31 +1010.52 1.45258 0.0147379
  32 +1014.37 1.45165 0.0159643
  33 +1018.23 1.45054 0.0164327
  34 +1022.09 1.44955 0.0167181
  35 +1025.94 1.4485 0.0167983
  36 +1029.8 1.44754 0.0163765
  37 +1033.66 1.44692 0.0156532
  38 +1037.52 1.44674 0.0148226
  39 +1041.37 1.44695 0.0141885
  40 +1045.23 1.44725 0.0137426
  41 +1049.09 1.44767 0.0134539
  42 +1052.94 1.44818 0.0132167
  43 +1056.8 1.44876 0.0131372
  44 +1060.66 1.44944 0.0131707
  45 +1064.51 1.45018 0.0134246
  46 +1068.37 1.45081 0.0140043
  47 +1072.23 1.45126 0.0146434
  48 +1076.08 1.45155 0.0154083
  49 +1079.94 1.45165 0.0161227
  50 +1083.8 1.45165 0.0167206
  51 +1087.66 1.4516 0.0173126
  52 +1091.51 1.45138 0.0179873
  53 +1095.37 1.45082 0.0184437
  54 +1099.23 1.45023 0.0182773
  55 +1103.08 1.45002 0.0177127
  56 +1106.94 1.45026 0.0170319
  57 +1110.8 1.45088 0.0164068
  58 +1114.65 1.45193 0.0156457
  59 +1118.51 1.45366 0.0151316
  60 +1122.37 1.45577 0.0152001
  61 +1126.22 1.45829 0.0156091
  62 +1130.08 1.46134 0.0165546
  63 +1133.94 1.4651 0.0185177
  64 +1137.8 1.46943 0.0222101
  65 +1141.65 1.47373 0.0289751
  66 +1145.51 1.47466 0.0407015
  67 +1149.37 1.46753 0.0540783
  68 +1153.22 1.45454 0.0594347
  69 +1157.08 1.44235 0.0570854
  70 +1160.94 1.43406 0.0507401
  71 +1164.79 1.42996 0.0430564
  72 +1168.65 1.42902 0.0361458
  73 +1172.51 1.43042 0.0297156
  74 +1176.36 1.43441 0.0243978
  75 +1180.22 1.44027 0.0218038
  76 +1184.08 1.44644 0.0222627
  77 +1187.94 1.45203 0.024945
  78 +1191.79 1.45676 0.0296347
  79 +1195.65 1.46008 0.0365257
  80 +1199.51 1.46055 0.0456804
  81 +1203.36 1.4567 0.0552022
  82 +1207.22 1.44952 0.0614423
  83 +1211.08 1.44172 0.0641595
  84 +1214.93 1.43484 0.0649608
  85 +1218.79 1.42853 0.065203
  86 +1222.65 1.42231 0.0645851
  87 +1226.51 1.41622 0.0632206
  88 +1230.36 1.41026 0.0608679
  89 +1234.22 1.40479 0.0573654
  90 +1238.08 1.39984 0.0531957
  91 +1241.93 1.39572 0.0477833
  92 +1245.79 1.393 0.0416125
  93 +1249.65 1.39187 0.0353035
  94 +1253.5 1.39205 0.0298416
  95 +1257.36 1.39253 0.0251831
  96 +1261.22 1.39332 0.0203275
  97 +1265.07 1.39523 0.0151478
  98 +1268.93 1.39861 0.01093
  99 +1272.79 1.40253 0.00862624
  100 +1276.65 1.40591 0.00769936
  101 +1280.5 1.40852 0.00735648
  102 +1284.36 1.41059 0.00722472
  103 +1288.22 1.41216 0.00727752
  104 +1292.07 1.41337 0.00727344
  105 +1295.93 1.41429 0.00721008
  106 +1299.79 1.415 0.00707352
  107 +1303.64 1.4156 0.00652736
  108 +1307.5 1.41644 0.0058708
  109 +1311.36 1.41754 0.0053452
  110 +1315.21 1.41862 0.00509624
  111 +1319.07 1.41961 0.00500128
  112 +1322.93 1.42049 0.00489616
  113 +1326.79 1.42136 0.00490488
  114 +1330.64 1.42217 0.00495144
  115 +1334.5 1.42295 0.00510808
  116 +1338.36 1.4235 0.00533728
  117 +1342.21 1.42401 0.00546328
  118 +1346.07 1.4245 0.00551592
  119 +1349.93 1.42505 0.00568936
  120 +1353.78 1.42546 0.00597304
  121 +1357.64 1.42574 0.00622208
  122 +1361.5 1.42587 0.00647488
  123 +1365.35 1.42595 0.0064788
  124 +1369.21 1.42609 0.00636984
  125 +1373.07 1.42627 0.00632784
  126 +1376.93 1.4265 0.0061136
  127 +1380.78 1.42692 0.00588552
  128 +1384.64 1.42735 0.0059224
  129 +1388.5 1.42772 0.00599744
  130 +1392.35 1.42811 0.00601384
  131 +1396.21 1.42845 0.00622456
  132 +1400.07 1.42871 0.00633568
  133 +1403.92 1.42899 0.00644528
  134 +1407.78 1.42924 0.00664448
  135 +1411.64 1.42947 0.00676336
  136 +1415.49 1.42964 0.00716624
  137 +1419.35 1.42951 0.00746088
  138 +1423.21 1.42941 0.00730784
  139 +1427.07 1.42958 0.0072184
  140 +1430.92 1.42977 0.00732024
  141 +1434.78 1.42977 0.00759576
  142 +1438.64 1.42961 0.0075088
  143 +1442.49 1.42965 0.00723648
  144 +1446.35 1.42981 0.007168
  145 +1450.21 1.43004 0.00699016
  146 +1454.06 1.43034 0.00706392
  147 +1457.92 1.43035 0.00727536
  148 +1461.78 1.43047 0.006928
  149 +1465.64 1.43092 0.00687352
  150 +1469.49 1.43127 0.00719224
  151 +1473.35 1.43129 0.00755504
  152 +1477.21 1.43119 0.00756536
  153 +1481.06 1.43139 0.00736288
  154 +1484.92 1.43162 0.00773512
  155 +1488.78 1.43151 0.00801528
  156 +1492.63 1.43136 0.0079396
  157 +1496.49 1.43136 0.00783488
  158 +1500.35 1.43165 0.00756352
  159 +1504.2 1.43194 0.00804712
  160 +1508.06 1.43151 0.00847256
  161 +1511.92 1.43132 0.0078256
  162 +1515.78 1.43173 0.00765912
  163 +1519.63 1.43179 0.00805192
  164 +1523.49 1.43162 0.00791848
  165 +1527.35 1.43176 0.00753704
  166 +1531.2 1.43222 0.0074356
  167 +1535.06 1.43271 0.00767776
  168 +1538.92 1.43266 0.0084832
  169 +1542.77 1.4321 0.00852576
  170 +1546.63 1.43208 0.00789504
  171 +1550.49 1.43262 0.00774968
  172 +1554.34 1.433 0.00834304
  173 +1558.2 1.43246 0.00916744
  174 +1562.06 1.43192 0.00848104
  175 +1565.92 1.43215 0.00802656
  176 +1569.77 1.43239 0.008154
  177 +1573.63 1.43244 0.00817728
  178 +1577.49 1.4324 0.00818584
  179 +1581.34 1.43244 0.00792248
  180 +1585.2 1.43267 0.007886
  181 +1589.06 1.4328 0.0079476
  182 +1592.91 1.43294 0.00785384
  183 +1596.77 1.43307 0.00794368
  184 +1600.63 1.4332 0.00788048
  185 +1604.48 1.43341 0.00794328
  186 +1608.34 1.4336 0.00798928
  187 +1612.2 1.43388 0.0081656
  188 +1616.06 1.4339 0.00866336
  189 +1619.91 1.43373 0.00871536
  190 +1623.77 1.43359 0.00888384
  191 +1627.63 1.43355 0.0087392
  192 +1631.48 1.43365 0.00878224
  193 +1635.34 1.43339 0.00919464
  194 +1639.2 1.43314 0.0086412
  195 +1643.05 1.43347 0.00831384
  196 +1646.91 1.4339 0.00848272
  197 +1650.77 1.43384 0.00900848
  198 +1654.62 1.43342 0.00897768
  199 +1658.48 1.4335 0.00838768
  200 +1662.34 1.43385 0.00843776
  201 +1666.2 1.43409 0.0085516
  202 +1670.05 1.43421 0.00877904
  203 +1673.91 1.43415 0.00891584
  204 +1677.77 1.4343 0.00877032
  205 +1681.62 1.43437 0.0092928
  206 +1685.48 1.43401 0.00943152
  207 +1689.34 1.43399 0.00890168
  208 +1693.19 1.43444 0.00898456
  209 +1697.05 1.43436 0.0096852
  210 +1700.91 1.4338 0.00974248
  211 +1704.77 1.43356 0.0092616
  212 +1708.62 1.43379 0.008816
  213 +1712.48 1.43423 0.00882776
  214 +1716.34 1.4342 0.00939048
  215 +1720.19 1.43389 0.0090988
  216 +1724.05 1.43411 0.00864768
  217 +1727.91 1.43462 0.0087724
  218 +1731.76 1.4348 0.00925784
  219 +1735.62 1.43459 0.0095192
  220 +1739.48 1.4345 0.00936488
  221 +1743.33 1.43456 0.00940104
  222 +1747.19 1.43454 0.00959544
  223 +1751.05 1.43434 0.009654
  224 +1754.91 1.4343 0.00936744
  225 +1758.76 1.43446 0.00930144
  226 +1762.62 1.43462 0.00934304
  227 +1766.48 1.43478 0.00934552
  228 +1770.33 1.43471 0.00983328
  229 +1774.19 1.43445 0.00968656
  230 +1778.05 1.43452 0.00943992
  231 +1781.9 1.4346 0.00949232
  232 +1785.76 1.43473 0.00942624
  233 +1789.62 1.43482 0.00967232
  234 +1793.47 1.43468 0.0097256
  235 +1797.33 1.43464 0.00963024
  236 +1801.19 1.43473 0.00952968
  237 +1805.05 1.43487 0.00947432
  238 +1808.9 1.435 0.00967432
  239 +1812.76 1.43494 0.00975472
  240 +1816.62 1.43494 0.00974144
  241 +1820.47 1.43505 0.00980016
  242 +1824.33 1.43505 0.0100018
  243 +1828.19 1.43488 0.0100835
  244 +1832.04 1.43471 0.0099788
  245 +1835.9 1.43474 0.00979952
  246 +1839.76 1.43488 0.00972864
  247 +1843.61 1.43489 0.0098832
  248 +1847.47 1.43484 0.00979096
  249 +1851.33 1.43491 0.00960712
  250 +1855.19 1.43507 0.00958088
  251 +1859.04 1.4353 0.00959552
  252 +1862.9 1.43547 0.00972688
  253 +1866.76 1.43553 0.0100704
  254 +1870.61 1.43534 0.0101491
  255 +1874.47 1.43535 0.0100062
  256 +1878.33 1.43541 0.0101007
  257 +1882.18 1.43546 0.0101518
  258 +1886.04 1.43545 0.0103024
  259 +1889.9 1.43532 0.0104711
  260 +1893.75 1.43517 0.0104123
  261 +1897.61 1.4351 0.0102994
  262 +1901.47 1.43513 0.0101672
  263 +1905.33 1.43514 0.0100918
  264 +1909.18 1.43525 0.0099584
  265 +1913.04 1.43545 0.00995736
  266 +1916.9 1.43553 0.0101143
  267 +1920.75 1.43554 0.0101396
  268 +1924.61 1.43558 0.0100745
  269 +1928.47 1.43574 0.0100995
  270 +1932.32 1.43578 0.0102557
  271 +1936.18 1.43582 0.010341
  272 +1940.04 1.43585 0.0104554
  273 +1943.9 1.43582 0.0105679
  274 +1947.75 1.43574 0.0105908
  275 +1951.61 1.4357 0.0105671
  276 +1955.47 1.4357 0.0105656
  277 +1959.32 1.43576 0.0106002
  278 +1963.18 1.43578 0.0106473
  279 +1967.04 1.43572 0.0107467
  280 +1970.89 1.43564 0.0106906
  281 +1974.75 1.43561 0.0106353
  282 +1978.61 1.43556 0.0105766
  283 +1982.46 1.43564 0.0104306
  284 +1986.32 1.43575 0.0104166
  285 +1990.18 1.43588 0.0104191
  286 +1994.04 1.43596 0.0104555
  287 +1997.89 1.43605 0.0104686
  288 +2001.75 1.43613 0.0105218
  289 +2005.61 1.43625 0.0106105
  290 +2009.46 1.43629 0.0107048
  291 +2013.32 1.43631 0.0108702
  292 +2017.18 1.43624 0.0109802
  293 +2021.03 1.43612 0.0110223
  294 +2024.89 1.43607 0.0109722
  295 +2028.75 1.43607 0.0109314
  296 +2032.6 1.43611 0.010903
  297 +2036.46 1.43613 0.0109201
  298 +2040.32 1.43608 0.0109159
  299 +2044.18 1.43612 0.01078
  300 +2048.03 1.43624 0.0107474
  301 +2051.89 1.43637 0.0107388
  302 +2055.75 1.43645 0.010765
  303 +2059.6 1.43655 0.0107627
  304 +2063.46 1.4367 0.0108269
  305 +2067.32 1.43681 0.0109859
  306 +2071.17 1.43686 0.0110686
  307 +2075.03 1.4369 0.0112402
  308 +2078.89 1.43684 0.0113514
  309 +2082.74 1.43684 0.011429
  310 +2086.6 1.43678 0.0115308
  311 +2090.46 1.43671 0.0115401
  312 +2094.32 1.4367 0.0115422
  313 +2098.17 1.43667 0.0115391
  314 +2102.03 1.43667 0.0115203
  315 +2105.89 1.43665 0.0114782
  316 +2109.74 1.43671 0.0114809
  317 +2113.6 1.4368 0.0114521
  318 +2117.46 1.43688 0.0114847
  319 +2121.31 1.43688 0.0115277
  320 +2125.17 1.43697 0.0115306
  321 +2129.03 1.43697 0.0116054
  322 +2132.88 1.43709 0.0115987
  323 +2136.74 1.43711 0.0115796
  324 +2140.6 1.43731 0.0116502
  325 +2144.46 1.4374 0.0118258
  326 +2148.31 1.43739 0.0120009
  327 +2152.17 1.43741 0.0121498
  328 +2156.03 1.43733 0.0122641
  329 +2159.88 1.43727 0.0122482
  330 +2163.74 1.43725 0.012321
  331 +2167.6 1.43721 0.012401
  332 +2171.45 1.43716 0.0124548
  333 +2175.31 1.43708 0.0124709
  334 +2179.17 1.43702 0.0124042
  335 +2183.02 1.43704 0.0123294
  336 +2186.88 1.43703 0.0122587
  337 +2190.74 1.43715 0.0122406
  338 +2194.6 1.43728 0.0122222
  339 +2198.45 1.43737 0.0122375
  340 +2202.31 1.43752 0.0122629
  341 +2206.17 1.43767 0.012395
  342 +2210.02 1.4377 0.0126055
  343 +2213.88 1.43775 0.0127371
  344 +2217.74 1.43777 0.0129057
  345 +2221.59 1.4377 0.0130407
  346 +2225.45 1.43763 0.0132125
  347 +2229.31 1.43744 0.0133158
  348 +2233.17 1.43735 0.0132776
  349 +2237.02 1.43727 0.0132582
  350 +2240.88 1.43726 0.0132736
  351 +2244.74 1.43714 0.0132252
  352 +2248.59 1.43717 0.0130951
  353 +2252.45 1.43726 0.0130719
  354 +2256.31 1.4373 0.013067
  355 +2260.16 1.43741 0.0130501
  356 +2264.02 1.43751 0.0131008
  357 +2267.88 1.43762 0.0132295
  358 +2271.73 1.4376 0.0133439
  359 +2275.59 1.43761 0.0133714
  360 +2279.45 1.43764 0.0134734
  361 +2283.31 1.43772 0.0135977
  362 +2287.16 1.43764 0.0138165
  363 +2291.02 1.43744 0.013947
  364 +2294.88 1.43725 0.0139136
  365 +2298.73 1.43715 0.0138193
  366 +2302.59 1.43712 0.0136647
  367 +2306.45 1.43713 0.0135833
  368 +2310.3 1.43719 0.0133955
  369 +2314.16 1.43743 0.0133906
  370 +2318.02 1.43753 0.0135477
  371 +2321.87 1.43756 0.013496
  372 +2325.73 1.43769 0.0135263
  373 +2329.59 1.4378 0.0137143
  374 +2333.45 1.43772 0.0137604
  375 +2337.3 1.43784 0.0137384
  376 +2341.16 1.43775 0.014185
  377 +2345.02 1.43749 0.0137733
  378 +2348.87 1.438 0.013191
  379 +2352.73 1.43868 0.0136737
  380 +2356.59 1.4389 0.0143961
  381 +2360.44 1.43871 0.0150154
  382 +2364.3 1.43838 0.0154669
  383 +2368.16 1.43781 0.0157069
  384 +2372.01 1.43723 0.015708
  385 +2375.87 1.43679 0.015261
  386 +2379.73 1.43671 0.0148996
  387 +2383.59 1.43676 0.0146017
  388 +2387.44 1.43691 0.0144191
  389 +2391.3 1.43705 0.0143135
  390 +2395.16 1.43725 0.014257
  391 +2399.01 1.43734 0.0142837
  392 +2402.87 1.43743 0.0142886
  393 +2406.73 1.43761 0.0143012
  394 +2410.58 1.43777 0.0144146
  395 +2414.44 1.43783 0.0146149
  396 +2418.3 1.43785 0.0147826
  397 +2422.15 1.4378 0.0149215
  398 +2426.01 1.43769 0.015029
  399 +2429.87 1.43763 0.0150815
  400 +2433.73 1.43754 0.0150913
  401 +2437.58 1.43748 0.0151026
  402 +2441.44 1.43743 0.0151154
  403 +2445.3 1.43739 0.0150839
  404 +2449.15 1.43734 0.0150694
  405 +2453.01 1.4373 0.0149938
  406 +2456.87 1.43735 0.0149267
  407 +2460.72 1.43741 0.0148906
  408 +2464.58 1.43741 0.0148299
  409 +2468.44 1.43758 0.014807
  410 +2472.29 1.43771 0.0148624
  411 +2476.15 1.43773 0.014915
  412 +2480.01 1.43783 0.01495
  413 +2483.87 1.43788 0.0150971
  414 +2487.72 1.4379 0.0151925
  415 +2491.58 1.43793 0.015273
  416 +2495.44 1.43786 0.0153879
  417 +2499.29 1.43789 0.0154566
  418 +2503.15 1.43777 0.0155789
  419 +2507.01 1.43768 0.0156026
  420 +2510.86 1.43759 0.0155746
  421 +2514.72 1.43756 0.015566
  422 +2518.58 1.43747 0.0155218
  423 +2522.44 1.43745 0.0154122
  424 +2526.29 1.4374 0.0152551
  425 +2530.15 1.43756 0.0151166
  426 +2534.01 1.43767 0.0150406
  427 +2537.86 1.43791 0.0150451
  428 +2541.72 1.43811 0.0150786
  429 +2545.58 1.43826 0.0152417
  430 +2549.43 1.43836 0.0154326
  431 +2553.29 1.43831 0.0155717
  432 +2557.15 1.43829 0.0156298
  433 +2561 1.43836 0.0156784
  434 +2564.86 1.43839 0.0159134
  435 +2568.72 1.43826 0.0160473
  436 +2572.58 1.43811 0.0160585
  437 +2576.43 1.43804 0.0159945
  438 +2580.29 1.43804 0.0159286
  439 +2584.15 1.43806 0.0159235
  440 +2588 1.43806 0.0158598
  441 +2591.86 1.43809 0.0158445
  442 +2595.72 1.43812 0.0157886
  443 +2599.57 1.43819 0.0157209
  444 +2603.43 1.43829 0.0156753
  445 +2607.29 1.43845 0.0156818
  446 +2611.14 1.4386 0.0157334
  447 +2615 1.43876 0.0158004
  448 +2618.86 1.43884 0.015966
  449 +2622.72 1.43893 0.016073
  450 +2626.57 1.43896 0.0162658
  451 +2630.43 1.43892 0.0164602
  452 +2634.29 1.43881 0.0165366
  453 +2638.14 1.43875 0.0165854
  454 +2642 1.43871 0.0165488
  455 +2645.86 1.4387 0.0165359
  456 +2649.71 1.4387 0.0165694
  457 +2653.57 1.43864 0.0165665
  458 +2657.43 1.43861 0.0163679
  459 +2661.28 1.43882 0.0162378
  460 +2665.14 1.439 0.0163046
  461 +2669 1.43905 0.0163272
  462 +2672.86 1.43918 0.0163604
  463 +2676.71 1.43937 0.0163522
  464 +2680.57 1.43956 0.0164314
  465 +2684.43 1.43973 0.0166156
  466 +2688.28 1.4398 0.0168526
  467 +2692.14 1.43976 0.0170632
  468 +2696 1.43969 0.0170571
  469 +2699.85 1.43976 0.0170903
  470 +2703.71 1.43992 0.0172391
  471 +2707.57 1.43993 0.0174042
  472 +2711.43 1.43981 0.0175987
  473 +2715.28 1.43961 0.0176357
  474 +2719.14 1.43963 0.017476
  475 +2723 1.43972 0.0173922
  476 +2726.85 1.43979 0.0174182
  477 +2730.71 1.4399 0.0174154
  478 +2734.57 1.44004 0.0174363
  479 +2738.42 1.44019 0.0175206
  480 +2742.28 1.44026 0.0175865
  481 +2746.14 1.44038 0.017595
  482 +2749.99 1.4406 0.0176916
  483 +2753.85 1.44073 0.0178879
  484 +2757.71 1.44084 0.0181158
  485 +2761.57 1.44089 0.0182923
  486 +2765.42 1.44085 0.0184601
  487 +2769.28 1.4409 0.0186528
  488 +2773.14 1.44084 0.0187157
  489 +2776.99 1.44088 0.0188476
  490 +2780.85 1.4408 0.0189662
  491 +2784.71 1.44079 0.018963
  492 +2788.56 1.44078 0.0190226
  493 +2792.42 1.44086 0.0190642
  494 +2796.28 1.44086 0.0190752
  495 +2800.13 1.44095 0.0190198
  496 +2803.99 1.44119 0.0190088
  497 +2807.85 1.44135 0.0191519
  498 +2811.71 1.44159 0.0193885
  499 +2815.56 1.44165 0.0196023
  500 +2819.42 1.44171 0.0197702
  501 +2823.28 1.44182 0.0199962
  502 +2827.13 1.44184 0.0202353
  503 +2830.99 1.44176 0.0204493
  504 +2834.85 1.44174 0.0205133
  505 +2838.7 1.44181 0.0206196
  506 +2842.56 1.44187 0.0208939
  507 +2846.42 1.44182 0.0210803
  508 +2850.27 1.44178 0.0212109
  509 +2854.13 1.4417 0.0213187
  510 +2857.99 1.44173 0.0214307
  511 +2861.85 1.44162 0.0215004
  512 +2865.7 1.44174 0.0215455
  513 +2869.56 1.44173 0.0216245
  514 +2873.42 1.44187 0.0216745
  515 +2877.27 1.44198 0.0217744
  516 +2881.13 1.44208 0.0219539
  517 +2884.99 1.44219 0.0221772
  518 +2888.84 1.44224 0.0223802
  519 +2892.7 1.44232 0.02258
  520 +2896.56 1.44238 0.0228485
  521 +2900.41 1.4423 0.0231524
  522 +2904.27 1.44221 0.0233552
  523 +2908.13 1.4422 0.0234814
  524 +2911.99 1.44217 0.0236257
  525 +2915.84 1.4422 0.0237874
  526 +2919.7 1.4422 0.0240624
  527 +2923.56 1.44206 0.0243133
  528 +2927.41 1.44192 0.0243873
  529 +2931.27 1.44198 0.0243909
  530 +2935.13 1.44204 0.0246027
  531 +2938.98 1.44202 0.0248052
  532 +2942.84 1.44211 0.0247957
  533 +2946.7 1.44243 0.0250375
  534 +2950.55 1.44268 0.0255975
  535 +2954.41 1.44263 0.0264707
  536 +2958.27 1.44203 0.0273266
  537 +2962.13 1.44114 0.0276765
  538 +2965.98 1.44025 0.0274483
  539 +2969.84 1.43986 0.0268602
  540 +2973.7 1.43985 0.0264762
  541 +2977.55 1.43992 0.0262054
  542 +2981.41 1.44007 0.0261064
  543 +2985.27 1.44017 0.0262314
  544 +2989.12 1.44015 0.0262465
  545 +2992.98 1.44017 0.026201
  546 +2996.84 1.44031 0.0262088
  547 +3000.7 1.44039 0.0263514
  548 +3004.55 1.44039 0.0264222
  549 +3008.41 1.44049 0.0264527
  550 +3012.27 1.44059 0.026531
  551 +3016.12 1.44075 0.0267178
  552 +3019.98 1.44081 0.026991
  553 +3023.84 1.44084 0.0271514
  554 +3027.69 1.44085 0.027449
  555 +3031.55 1.44075 0.0277373
  556 +3035.41 1.44059 0.0279199
  557 +3039.26 1.44049 0.0279652
  558 +3043.12 1.44052 0.0280378
  559 +3046.98 1.44054 0.0283796
  560 +3050.84 1.44035 0.0285471
  561 +3054.69 1.4402 0.0286752
  562 +3058.55 1.44005 0.0288298
  563 +3062.41 1.43988 0.0287964
  564 +3066.26 1.43984 0.0287126
  565 +3070.12 1.43991 0.0286894
  566 +3073.98 1.43998 0.0287583
  567 +3077.83 1.44007 0.0288626
  568 +3081.69 1.44022 0.0290316
  569 +3085.55 1.44027 0.0292302
  570 +3089.4 1.44033 0.0295178
  571 +3093.26 1.44034 0.0298005
  572 +3097.12 1.44025 0.0300819
  573 +3100.98 1.44013 0.0303574
  574 +3104.83 1.44005 0.0305574
  575 +3108.69 1.43982 0.030847
  576 +3112.55 1.43955 0.0309273
  577 +3116.4 1.43945 0.0308171
  578 +3120.26 1.43954 0.0309351
  579 +3124.12 1.43947 0.0312195
  580 +3127.97 1.43933 0.0314166
  581 +3131.83 1.43912 0.0315262
  582 +3135.69 1.43893 0.0314853
  583 +3139.54 1.43896 0.031313
  584 +3143.4 1.43913 0.0314438
  585 +3147.26 1.43916 0.0317043
  586 +3151.12 1.43912 0.0318726
  587 +3154.97 1.43906 0.0320275
  588 +3158.83 1.43904 0.0321611
  589 +3162.69 1.43901 0.032341
  590 +3166.54 1.43901 0.0325346
  591 +3170.4 1.43899 0.0326952
  592 +3174.26 1.43898 0.0329019
  593 +3178.11 1.43899 0.0332526
  594 +3181.97 1.43871 0.0335789
  595 +3185.83 1.43837 0.03374
  596 +3189.68 1.43826 0.0335541
  597 +3193.54 1.43837 0.0335314
  598 +3197.4 1.43846 0.0339666
  599 +3201.26 1.4382 0.0341394
  600 +3205.11 1.4381 0.0342918
  601 +3208.97 1.43798 0.0343742
  602 +3212.83 1.43799 0.0343806
  603 +3216.68 1.438 0.0346578
  604 +3220.54 1.438 0.0348972
  605 +3224.4 1.43783 0.0351445
  606 +3228.25 1.4377 0.0353099
  607 +3232.11 1.43763 0.0354488
  608 +3235.97 1.43753 0.0356317
  609 +3239.82 1.4375 0.03585
  610 +3243.68 1.43735 0.0361094
  611 +3247.54 1.43716 0.0363406
  612 +3251.4 1.43691 0.0365185
  613 +3255.25 1.43672 0.0364836
  614 +3259.11 1.43669 0.0366383
  615 +3262.97 1.43647 0.0368095
  616 +3266.82 1.43635 0.0367498
  617 +3270.68 1.43634 0.036792
  618 +3274.54 1.4364 0.0369038
  619 +3278.39 1.43641 0.0370885
  620 +3282.25 1.43643 0.0373966
  621 +3286.11 1.43626 0.037713
  622 +3289.97 1.43609 0.0378058
  623 +3293.82 1.43604 0.0379191
  624 +3297.68 1.43604 0.0381209
  625 +3301.54 1.43598 0.0382846
  626 +3305.39 1.43604 0.0386587
  627 +3309.25 1.43579 0.0391452
  628 +3313.11 1.43547 0.039376
  629 +3316.96 1.43524 0.0393823
  630 +3320.82 1.43513 0.0395513
  631 +3324.68 1.435 0.0398004
  632 +3328.53 1.43477 0.0401215
  633 +3332.39 1.43441 0.0403067
  634 +3336.25 1.43409 0.040246
  635 +3340.11 1.434 0.0402368
  636 +3343.96 1.43392 0.0401726
  637 +3347.82 1.43396 0.0402305
  638 +3351.68 1.43411 0.040389
  639 +3355.53 1.43424 0.0407766
  640 +3359.39 1.43407 0.0413566
  641 +3363.25 1.43367 0.0416856
  642 +3367.1 1.4334 0.0416956
  643 +3370.96 1.43334 0.041813
  644 +3374.82 1.43318 0.0422339
  645 +3378.67 1.43288 0.0423829
  646 +3382.53 1.4327 0.042617
  647 +3386.39 1.43245 0.0427376
  648 +3390.25 1.43235 0.0428688
  649 +3394.1 1.43198 0.0433086
  650 +3397.96 1.43164 0.0431234
  651 +3401.82 1.43165 0.0430714
  652 +3405.67 1.43168 0.0434155
  653 +3409.53 1.43148 0.0436807
  654 +3413.39 1.43136 0.0438359
  655 +3417.24 1.43126 0.0441355
  656 +3421.1 1.43095 0.0446006
  657 +3424.96 1.43052 0.0446965
  658 +3428.81 1.43027 0.0447978
  659 +3432.67 1.43013 0.0448462
  660 +3436.53 1.43002 0.0449981
  661 +3440.39 1.42988 0.0453558
  662 +3444.24 1.42954 0.0457121
  663 +3448.1 1.42916 0.045839
  664 +3451.96 1.42889 0.0458574
  665 +3455.81 1.42867 0.0461697
  666 +3459.67 1.42834 0.0462317
  667 +3463.53 1.42799 0.0463298
  668 +3467.38 1.42776 0.0462697
  669 +3471.24 1.42774 0.0463366
  670 +3475.1 1.4275 0.046571
  671 +3478.96 1.4274 0.0465016
  672 +3482.81 1.42737 0.0469175
  673 +3486.67 1.42707 0.0471308
  674 +3490.53 1.42692 0.0472842
  675 +3494.38 1.42672 0.04745
  676 +3498.24 1.42668 0.0476968
  677 +3502.1 1.42641 0.0482621
  678 +3505.95 1.42586 0.0485219
  679 +3509.81 1.42529 0.0485838
  680 +3513.67 1.42507 0.0480953
  681 +3517.52 1.42553 0.0482479
  682 +3521.38 1.42538 0.0492436
  683 +3525.24 1.42462 0.0499415
  684 +3529.1 1.42363 0.0498074
  685 +3532.95 1.42321 0.0491674
  686 +3536.81 1.42339 0.0487461
  687 +3540.67 1.42392 0.0487809
  688 +3544.52 1.424 0.050064
  689 +3548.38 1.42306 0.0503334
  690 +3552.24 1.4227 0.0498415
  691 +3556.09 1.42298 0.0494673
  692 +3559.95 1.4244 0.0495578
  693 +3563.81 1.42433 0.0530433
  694 +3567.66 1.42145 0.0544212
  695 +3571.52 1.41966 0.0522634
  696 +3575.38 1.41981 0.0510141
  697 +3579.24 1.42107 0.0502189
  698 +3583.09 1.4222 0.0518066
  699 +3586.95 1.42112 0.0543877
  700 +3590.81 1.41932 0.0539125
  701 +3594.66 1.41855 0.053285
  702 +3598.52 1.4182 0.0527294
  703 +3602.38 1.41913 0.0513698
  704 +3606.23 1.42048 0.0529876
  705 +3610.09 1.42012 0.0549326
  706 +3613.95 1.419 0.0559207
  707 +3617.8 1.41725 0.0566609
  708 +3621.66 1.41767 0.0542005
  709 +3625.52 1.41897 0.0574755
  710 +3629.38 1.41496 0.0620043
  711 +3633.23 1.4105 0.0576971
  712 +3637.09 1.41094 0.053463
  713 +3640.95 1.4152 0.0508198
  714 +3644.8 1.41952 0.0554458
  715 +3648.66 1.41624 0.0641037
  716 +3652.52 1.40946 0.062633
  717 +3656.37 1.40631 0.0586637
  718 +3660.23 1.40696 0.0535098
  719 +3664.09 1.41178 0.0509808
  720 +3667.94 1.41655 0.0550451
  721 +3671.8 1.41565 0.0629919
  722 +3675.66 1.40821 0.0670302
  723 +3679.52 1.4036 0.0599183
  724 +3683.37 1.40712 0.0560045