diff --git a/.gitignore b/.gitignore index af4667b..d25e26f 100644 --- a/.gitignore +++ b/.gitignore @@ -43,4 +43,6 @@ Thumbs.db *.aps **/obj **/x64 -**/x86 \ No newline at end of file +**/x86 +cmake_build/ +win32/packages/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..5c4d9fe --- /dev/null +++ b/.gitmodules @@ -0,0 +1,12 @@ +[submodule "test/lib/googletest"] + path = test/lib/googletest + url = https://github.com/google/googletest.git + branch = v1.12.x + +[submodule "extern/doxygen-awesome-css"] + path = extern/doxygen-awesome-css + url = https://github.com/jothepro/doxygen-awesome-css +[submodule "extern/googletest"] + path = extern/googletest + url = https://github.com/google/googletest + branch = v1.12.x diff --git a/P528GTest/P528GTest.vcxproj b/P528GTest/P528GTest.vcxproj new file mode 100644 index 0000000..adfd451 --- /dev/null +++ b/P528GTest/P528GTest.vcxproj @@ -0,0 +1,148 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {c47d3094-b751-4cc3-923b-3c177eb4c020} + Win32Proj + 10.0.22621.0 + Application + v143 + Unicode + + + + + + + + + true + $(SolutionDir)..\bin\x86\$(Configuration)\ + + + false + $(SolutionDir)..\bin\x86\$(Configuration)\ + + + true + $(SolutionDir)..\bin\x64\$(Configuration)\ + + + false + $(SolutionDir)..\bin\x64\$(Configuration)\ + + + + + NotUsing + pch.h + Disabled + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + EnableFastChecks + MultiThreadedDebugDLL + Level3 + ..\include;%(AdditionalIncludeDirectories) + stdcpp17 + + + true + Console + + + + + NotUsing + pch.h + Disabled + X64;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + EnableFastChecks + MultiThreadedDebugDLL + Level3 + ..\include;%(AdditionalIncludeDirectories) + stdcpp17 + + + true + Console + + + + + NotUsing + pch.h + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + ProgramDatabase + ..\include;%(AdditionalIncludeDirectories) + stdcpp17 + + + true + Console + true + true + + + + + NotUsing + pch.h + X64;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + ProgramDatabase + ..\include;%(AdditionalIncludeDirectories) + stdcpp17 + + + true + Console + true + true + + + + + {1802289f-bf6d-4386-84f9-a850c27db1af} + + + + + + + + + + + + + + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + \ No newline at end of file diff --git a/P528GTest/packages.config b/P528GTest/packages.config new file mode 100644 index 0000000..be1fa03 --- /dev/null +++ b/P528GTest/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt new file mode 100644 index 0000000..0892ea2 --- /dev/null +++ b/cmake/CMakeLists.txt @@ -0,0 +1,81 @@ +# CMakeList.txt : Top-level CMake project file, do global configuration +# and include sub-projects here. + +cmake_minimum_required (VERSION 3.14) + +# Enable Hot Reload for MSVC compilers if supported. +if (POLICY CMP0141) + cmake_policy(SET CMP0141 NEW) +endif() + +set(LIB_NAME "p528") + +# set the project name and version +project ( + "${LIB_NAME}-distribution" + VERSION 1.0.0.0 + DESCRIPTION "Recommendation ITU-R P.528-5 - U.S. Reference Implementation Distribution" + LANGUAGES "CXX" +) + +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + +# control where the static and shared libraries are built so that on windows +# we don't need to tinker with the path to run the executable +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}" CACHE STRING "Set the CMAKE Archive Output Directory") +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}" CACHE STRING "Set the CMAKE Library Output Directory") +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}" CACHE STRING "Set the CMAKE Runtime Output Directory") + +# If not specified, fall back to Debug build type +set(DEFAULT_BUILD_TYPE "Debug") + +if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + message(STATUS "STATUS: Setting build type to '${DEFAULT_BUILD_TYPE}' as none was specified.") + set(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}" CACHE STRING "Choose the type of build." FORCE) + + # Set the possible values of build type for cmake-gui + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo") +endif() + +include(CMakeDependentOption) +include(GNUInstallDirs) + +# By Default, build shared libaray +set(BUILD_SHARED_LIBS ON CACHE BOOL "Build using shared libraries" FORCE) +set(RUN_TESTS ON CACHE BOOL "Run C++ unit tests with Google Test" FORCE) +set(ENABLE_INSTALL ON CACHE BOOL "Enable installation of (${LIB_NAME}. (Projects embedding (${LIB_NAME} may want to turn this OFF.)" FORCE) + +get_filename_component(PARENT_DIR ${PROJECT_SOURCE_DIR} DIRECTORY) +set (INCLUDE_DIR ${PARENT_DIR}/include) +message(STATUS "STATUS: ${PROJECT_NAME} PARENT_DIR is " ${PARENT_DIR}) + +# add the library +add_subdirectory(${LIB_NAME}) + +if (RUN_TESTS) # Build and run unit tests + set(GOOGLETEST_DIR "${PARENT_DIR}/test/lib/googletest") + if (EXISTS "${GOOGLETEST_DIR}/CMakeLists.txt") + enable_testing() + add_subdirectory(test) + else () + message(SEND_ERROR + "ERROR: Unable to build tests. GoogleTest submodule is missing. " + "Run `git submodule init && git submodule update` and try again." + ) + endif() +endif () + +message(STATUS "STATUS: ${PROJECT_NAME} VERSION_MAJOR is " ${${PROJECT_NAME}_VERSION_MAJOR}) +message(STATUS "STATUS: ${PROJECT_NAME} VERSION_MINOR is " ${${PROJECT_NAME}_VERSION_MINOR}) + +if (ENABLE_INSTALL) + # setup installer + include(InstallRequiredSystemLibraries) + set(CPACK_RESOURCE_FILE_LICENSE "${PARENT_DIR}/License.md") + set(CPACK_PACKAGE_VERSION_MAJOR "${${PROJECT_NAME}_VERSION_MAJOR}") + set(CPACK_PACKAGE_VERSION_MINOR "${${PROJECT_NAME}_VERSION_MINOR}") + set(CPACK_SOURCE_GENERATOR "TGZ" CACHE STRING "Set the CPack Archive Generator") + include(CPack) +endif () \ No newline at end of file diff --git a/cmake/CMakePresets.json b/cmake/CMakePresets.json new file mode 100644 index 0000000..8828701 --- /dev/null +++ b/cmake/CMakePresets.json @@ -0,0 +1,148 @@ +{ + "version": 3, + "cmakeMinimumRequired": { + "major": 3, + "minor": 14, + "patch": 0 + }, + "configurePresets": [ + { + "name": "windows-base", + "hidden": true, + "binaryDir": "${sourceDir}/build/${presetName}", + "installDir": "${sourceDir}/install/${presetName}", + "cacheVariables": { + "CMAKE_ARCHIVE_OUTPUT_DIRECTORY": "${sourceDir}/build/${presetName}", + "CMAKE_LIBRARY_OUTPUT_DIRECTORY": "${sourceDir}/build/${presetName}", + "CMAKE_RUNTIME_OUTPUT_DIRECTORY": "${sourceDir}/build/${presetName}", + "BUILD_SHARED_LIBS": "ON", + "ENABLE_INSTALL": "OFF" + }, + "condition": { + "type": "equals", + "lhs": "${hostSystemName}", + "rhs": "Windows" + } + }, + { + "name": "x64-debug", + "displayName": "x64 Debug", + "inherits": "windows-base", + "architecture": { + "value": "x64", + "strategy": "external" + }, + "cacheVariables": { + "RUN_TESTS": "ON", + "CMAKE_BUILD_TYPE": "Debug", + "BUILD_32BIT": "OFF" + } + }, + { + "name": "x64-release", + "displayName": "x64 Release", + "inherits": "x64-debug", + "cacheVariables": { + "RUN_TESTS": "OFF", + "CMAKE_BUILD_TYPE": "Release" + } + }, + { + "name": "x86-debug", + "displayName": "x86 Debug", + "inherits": "windows-base", + "architecture": { + "value": "x86", + "strategy": "external" + }, + "cacheVariables": { + "RUN_TESTS": "ON", + "CMAKE_BUILD_TYPE": "Debug", + "BUILD_32BIT": "ON" + } + }, + { + "name": "x86-release", + "displayName": "x86 Release", + "inherits": "x86-debug", + "cacheVariables": { + "RUN_TESTS": "OFF", + "CMAKE_BUILD_TYPE": "Release" + } + }, + { + "name": "linux-debug", + "displayName": "Linux Debug", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build/${presetName}", + "installDir": "${sourceDir}/install/${presetName}", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + }, + "condition": { + "type": "equals", + "lhs": "${hostSystemName}", + "rhs": "Linux" + }, + "vendor": { + "microsoft.com/VisualStudioRemoteSettings/CMake/1.0": { + "sourceDir": "$env{HOME}/.vs/$ms{projectDirName}" + } + } + }, + { + "name": "macos-debug", + "displayName": "macOS Debug", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build/${presetName}", + "installDir": "${sourceDir}/install/${presetName}", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + }, + "condition": { + "type": "equals", + "lhs": "${hostSystemName}", + "rhs": "Darwin" + }, + "vendor": { + "microsoft.com/VisualStudioRemoteSettings/CMake/1.0": { + "sourceDir": "$env{HOME}/.vs/$ms{projectDirName}" + } + } + } + ], + "buildPresets": [ + { + "name": "windows-base", + "hidden": true, + "description": "Custom build preset description", + "cleanFirst": true + }, + { + "name": "x64-debug", + "displayName": "x64 Debug", + "inherits": "windows-base", + "configurePreset": "x64-debug" + }, + { + "name": "x64-release", + "displayName": "x64 Release", + "inherits": "x64-debug", + "configurePreset": "x64-release" + }, + { + "name": "x86-debug", + "displayName": "x86 Debug", + "inherits": "windows-base", + "configurePreset": "x86-debug" + }, + { + "name": "x86-release", + "displayName": "x86 Release", + "inherits": "x86-debug", + "configurePreset": "x86-release" + } + ], + "testPresets": [ + ] +} \ No newline at end of file diff --git a/cmake/README.md b/cmake/README.md new file mode 100644 index 0000000..2366a79 --- /dev/null +++ b/cmake/README.md @@ -0,0 +1,50 @@ +# CMake Configuration for P528 + +This folder contains CMake build configuration and preset for P528. It also includes a P528 Driver CMake configuration for testing the P528 library. + +## Prerequisites + + * A modern C/C++ compiler + * CMake 3.14+ installed (on a Mac, run `brew install cmake`) + +## Building and Running ## + +### Project Structure + +All CMake configuration is inside this cmake folder. + +P528 Propagation library source code is in src folder and header files are in include folder. + +### Building Manually + +To manually build the project, you can run the following commands step by step. As an example, we use /cmake_build as CMake build folder (cmake binary folder) and /if77install as installation folder. + +``` +mkdir cmake_build +cd cmake_build +cmake ../cmake +cmake --build . +cmake --install . --config Debug --prefix ../p528install +``` + +### Cross Platform Building with Preset ### + +CMake also supports preset building. The configuration is set in CMake Presets.json. The configurations can be changed based on your preference. The following is an example to build the project in windows x64 debug mode. + +``` +cmake --preset x64-debug +cmake --build --preset x64-debug +``` + +### Running the tests ### + +``` +ctest +``` + +## Package + +``` +cpack -G ZIP -C Debug +cpack -G TGZ -C Debug +``` diff --git a/cmake/p528/CMakeLists.txt b/cmake/p528/CMakeLists.txt new file mode 100644 index 0000000..0ea2122 --- /dev/null +++ b/cmake/p528/CMakeLists.txt @@ -0,0 +1,101 @@ +cmake_minimum_required(VERSION 3.14) + +if (NOT DEFINED LIB_NAME) + set(LIB_NAME "p528") +endif() +message(STATUS "STATUS: Set LIB_NAME: " ${LIB_NAME}) + +project ( + "${LIB_NAME}" + VERSION 5.1.0.0 + DESCRIPTION "Recommendation ITU-R P.528-5 - U.S. Reference Implementation" + LANGUAGES "CXX" +) + +set (LIB_SOURCE "${PARENT_DIR}/src/") +set (LIB_HEADER "${INCLUDE_DIR}/") + +set(LIB_FILES + ${LIB_HEADER}p528.h + ${LIB_HEADER}p676.h + ${LIB_HEADER}p835.h + ${LIB_SOURCE}p528/CombineDistributions.cpp + ${LIB_SOURCE}p528/data.cpp + ${LIB_SOURCE}p528/FindKForYpiAt99Percent.cpp + ${LIB_SOURCE}p528/GetPathLoss.cpp + ${LIB_SOURCE}p528/InverseComplementaryCumulativeDistributionFunction.cpp + ${LIB_SOURCE}p528/LinearInterpolation.cpp + ${LIB_SOURCE}p528/LineOfSight.cpp + ${LIB_SOURCE}p528/LongTermVariability.cpp + ${LIB_SOURCE}p528/NakagamiRice.cpp + ${LIB_SOURCE}p528/P528.cpp + ${LIB_SOURCE}p528/RayOptics.cpp + ${LIB_SOURCE}p528/ReflectionCoefficients.cpp + ${LIB_SOURCE}p528/SmoothEarthDiffraction.cpp + ${LIB_SOURCE}p528/TerminalGeometry.cpp + ${LIB_SOURCE}p528/TranshorizonSearch.cpp + ${LIB_SOURCE}p528/Troposcatter.cpp + ${LIB_SOURCE}p528/ValidateInputs.cpp + ${LIB_SOURCE}p676/GlobalWetPressure.cpp + ${LIB_SOURCE}p676/LineShapeFactor.cpp + ${LIB_SOURCE}p676/NonresonantDebyeAttenuation.cpp + ${LIB_SOURCE}p676/OxygenData.cpp + ${LIB_SOURCE}p676/RayTrace.cpp + ${LIB_SOURCE}p676/RefractiveIndex.cpp + ${LIB_SOURCE}p676/Refractivity.cpp + ${LIB_SOURCE}p676/SlantPath.cpp + ${LIB_SOURCE}p676/SpecificAttenuation.cpp + ${LIB_SOURCE}p676/TerrestrialPath.cpp + ${LIB_SOURCE}p676/WaterVapourData.cpp + ${LIB_SOURCE}p676/WaterVapourDensityToPartialPressure.cpp + ${LIB_SOURCE}p835/Conversions.cpp + ${LIB_SOURCE}p835/MeanAnnualGlobalReferenceAtmosphere.cpp + ) + +# Create shared library +if(NOT DEFINED BUILD_SHARED_LIBS) + message(STATUS "STATUS: BUILD_SHARED_LIBS is not defined to build " ${PROJECT_NAME} " library.") + add_library(${PROJECT_NAME} SHARED ${LIB_FILES}) +else() + message(STATUS "STATUS: BUILD_SHARED_LIBS is " ${BUILD_SHARED_LIBS} " to build " ${PROJECT_NAME} " library.") + add_library(${PROJECT_NAME} ${LIB_FILES}) +endif() + +target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_11) + +set_target_properties( + ${PROJECT_NAME} PROPERTIES + VERSION ${PROJECT_VERSION} + SOVERSION ${PROJECT_VERSION_MAJOR} +) + +target_include_directories(${PROJECT_NAME} + PUBLIC + ${INCLUDE_DIR} + ) + +if (DEFINED ENABLE_INSTALL AND ENABLE_INSTALL) + + # Create a variable called installable_libs that is a list of all + # libraries we want to install (e.g. MathFunctions and tutorial_compiler_flags) + # Then install the installable libraries to the lib folder. + set(installable_libs ${PROJECT_NAME}) + + install(TARGETS ${installable_libs} + DESTINATION ${CMAKE_INSTALL_BINDIR}) + + install(TARGETS ${installable_libs} + DESTINATION ${CMAKE_INSTALL_LIBDIR}) + + # Install the library headers to the include folder. + # Hint: Use the FILES and DESTINATION parameters + + install(FILES + ${LIB_HEADER}p528.h + ${LIB_HEADER}p676.h + ${LIB_HEADER}p835.h + DESTINATION + ${CMAKE_INSTALL_INCLUDEDIR} + ) + +endif() diff --git a/cmake/test/CMakeLists.txt b/cmake/test/CMakeLists.txt new file mode 100644 index 0000000..4468454 --- /dev/null +++ b/cmake/test/CMakeLists.txt @@ -0,0 +1,59 @@ +cmake_minimum_required(VERSION 3.14) + +if (NOT DEFINED LIB_NAME) + set(LIB_NAME "p528") +endif() +message(STATUS "STATUS: Set LIB_NAME: " ${LIB_NAME}) + +project ( + "${LIB_NAME}GTest" + VERSION 5.1.0.0 + DESCRIPTION "Recommendation ITU-R P.528-5 - U.S. Reference Implementation Google Tests" + LANGUAGES "CXX" +) + +set(INSTALL_GTEST ON CACHE BOOL "Enable installation of googletest. (Projects embedding googletest may want to turn this OFF.)" FORCE) + +set (TEST_SOURCE "${PARENT_DIR}/test/src/") + +set(TEST_FILES + ${TEST_SOURCE}P528GTest.h + ${TEST_SOURCE}P528GTestUtils.cpp + ${TEST_SOURCE}TestP528.cpp + ${TEST_SOURCE}TestP528DataTables.cpp +) + +include_directories(${INCLUDE_DIR}) +add_executable(${PROJECT_NAME} ${TEST_FILES}) + +########################################### +## SET UP AND DISCOVER TESTS +########################################### +set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) + +if (DEFINED BUILD_SHARED_LIBS AND BUILD_SHARED_LIBS) + set(BUILD_SHARED_LIBS_OLD ${BUILD_SHARED_LIBS}) + set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build using shared libraries" FORCE) + message(STATUS "STATUS: BUILD_SHARED_LIBS is " ${BUILD_SHARED_LIBS} " to build gtest library.") +endif() +add_subdirectory(${GOOGLETEST_DIR} "lib/googletest") + +include(GoogleTest) +include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR}) + +target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_17) + +target_link_libraries(${PROJECT_NAME} ${LIB_NAME} GTest::gtest_main) +gtest_discover_tests(${PROJECT_NAME}) + +if (DEFINED BUILD_SHARED_LIBS_OLD) + set(BUILD_SHARED_LIBS ${BUILD_SHARED_LIBS_OLD} CACHE BOOL "Build using shared libraries" FORCE) + message(STATUS "STATUS: BUILD_SHARED_LIBS is " ${BUILD_SHARED_LIBS} ", old: " ${BUILD_SHARED_LIBS_OLD}) +endif() + +if (DEFINED ENABLE_INSTALL AND ENABLE_INSTALL) + if (DEFINED INSTALL_GTEST AND INSTALL_GTEST) + install(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR}) + install(TARGETS gtest DESTINATION ${CMAKE_INSTALL_BINDIR}) + endif() +endif() \ No newline at end of file diff --git a/extern/doxygen-awesome-css b/extern/doxygen-awesome-css new file mode 160000 index 0000000..cc1bee0 --- /dev/null +++ b/extern/doxygen-awesome-css @@ -0,0 +1 @@ +Subproject commit cc1bee08048035a81eff21e45a8d69e1e7962c3f diff --git a/extern/googletest b/extern/googletest new file mode 160000 index 0000000..58d77fa --- /dev/null +++ b/extern/googletest @@ -0,0 +1 @@ +Subproject commit 58d77fa8070e8cec2dc1ed015d66b454c8d78850 diff --git a/include/p528.h b/include/p528.h index c68ebad..dbd1c84 100644 --- a/include/p528.h +++ b/include/p528.h @@ -1,9 +1,18 @@ +#pragma once +#ifndef ITS_ITU_PSERIES_P528_H +#define ITS_ITU_PSERIES_P528_H + #include #include using namespace std; -#define DLLEXPORT extern "C" __declspec(dllexport) +#ifdef _WIN32 // windows +# define DLLEXPORT extern "C" __declspec(dllexport) +#else // non windows +# define DLLEXPORT extern "C" +#endif + #define MAX(x, y) (((x) > (y)) ? (x) : (y)) #define MIN(x, y) (((x) < (y)) ? (x) : (y)) @@ -194,4 +203,5 @@ DLLEXPORT int P528_Ex(double d__km, double h_1__meter, double h_2__meter, double int T_pol, double p, Result* result, Terminal* terminal_1, Terminal* terminal_2, TroposcatterParams* tropo, Path* path, LineOfSightParams* los_params); DLLEXPORT double FindKForYpiAt99Percent(double Y_pi_99__db); -DLLEXPORT double NakagamiRice(double K, double q); \ No newline at end of file +DLLEXPORT double NakagamiRice(double K, double q); +#endif \ No newline at end of file diff --git a/include/p676.h b/include/p676.h index 42c32aa..12f65ba 100644 --- a/include/p676.h +++ b/include/p676.h @@ -1,9 +1,12 @@ +#pragma once +#ifndef ITS_ITU_PSERIES_P676_H +#define ITS_ITU_PSERIES_P676_H + #include #include using namespace std; -#define DLLEXPORT extern "C" __declspec(dllexport) #define MAX(x, y) (((x) > (y)) ? (x) : (y)) #define MIN(x, y) (((x) < (y)) ? (x) : (y)) @@ -74,4 +77,5 @@ void RayTrace(double f__ghz, double h_1__km, double h_2__km, double beta_1__rad, int SlantPathAttenuation(double f__ghz, double h_1__km, double h_2__km, double beta_1__rad, SlantPathAttenuationResult* result); -double GlobalWetPressure(double h__km); \ No newline at end of file +double GlobalWetPressure(double h__km); +#endif \ No newline at end of file diff --git a/include/p835.h b/include/p835.h index 75d9fd9..9759281 100644 --- a/include/p835.h +++ b/include/p835.h @@ -1,4 +1,7 @@ -#define DLLEXPORT extern "C" __declspec(dllexport) +#pragma once +#ifndef ITS_ITU_PSERIES_P835_H +#define ITS_ITU_PSERIES_P835_H + #define MAX(x, y) (((x) > (y)) ? (x) : (y)) #define MIN(x, y) (((x) < (y)) ? (x) : (y)) @@ -31,3 +34,4 @@ double GlobalPressure_Regime1(double h_prime__km); double GlobalPressure_Regime2(double h__km); double GlobalWaterVapourDensity(double h__km, double rho_0); double GlobalWaterVapourPressure(double h__km, double rho_0); +#endif \ No newline at end of file diff --git a/src/p528/CombineDistributions.cpp b/src/p528/CombineDistributions.cpp index 29687fb..58145b2 100644 --- a/src/p528/CombineDistributions.cpp +++ b/src/p528/CombineDistributions.cpp @@ -1,5 +1,5 @@ #include -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/FindKForYpiAt99Percent.cpp b/src/p528/FindKForYpiAt99Percent.cpp index 0f51499..aaaa06e 100644 --- a/src/p528/FindKForYpiAt99Percent.cpp +++ b/src/p528/FindKForYpiAt99Percent.cpp @@ -1,4 +1,4 @@ -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/GetPathLoss.cpp b/src/p528/GetPathLoss.cpp index 608c45f..b021afe 100644 --- a/src/p528/GetPathLoss.cpp +++ b/src/p528/GetPathLoss.cpp @@ -1,6 +1,6 @@ #include #include -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/InverseComplementaryCumulativeDistributionFunction.cpp b/src/p528/InverseComplementaryCumulativeDistributionFunction.cpp index 9fda290..1953d41 100644 --- a/src/p528/InverseComplementaryCumulativeDistributionFunction.cpp +++ b/src/p528/InverseComplementaryCumulativeDistributionFunction.cpp @@ -1,5 +1,5 @@ #include -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/LineOfSight.cpp b/src/p528/LineOfSight.cpp index fbb1d65..b5c337e 100644 --- a/src/p528/LineOfSight.cpp +++ b/src/p528/LineOfSight.cpp @@ -1,6 +1,6 @@ #include -#include "../../include/p528.h" -#include "../../include/p676.h" +#include "p528.h" +#include "p676.h" double FindPsiAtDistance(double d__km, Path *path, Terminal *terminal_1, Terminal *terminal_2) { diff --git a/src/p528/LinearInterpolation.cpp b/src/p528/LinearInterpolation.cpp index 2096a60..1585da3 100644 --- a/src/p528/LinearInterpolation.cpp +++ b/src/p528/LinearInterpolation.cpp @@ -1,4 +1,4 @@ -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/LongTermVariability.cpp b/src/p528/LongTermVariability.cpp index 71a29c7..66ff75c 100644 --- a/src/p528/LongTermVariability.cpp +++ b/src/p528/LongTermVariability.cpp @@ -1,5 +1,5 @@ #include -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/NakagamiRice.cpp b/src/p528/NakagamiRice.cpp index d3b5df9..266d4f8 100644 --- a/src/p528/NakagamiRice.cpp +++ b/src/p528/NakagamiRice.cpp @@ -1,4 +1,4 @@ -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/P528.cpp b/src/p528/P528.cpp index b9ccb8a..9d06aac 100644 --- a/src/p528/P528.cpp +++ b/src/p528/P528.cpp @@ -1,6 +1,6 @@ #include -#include "../../include/p528.h" -#include "../../include/p676.h" +#include "p528.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p528/RayOptics.cpp b/src/p528/RayOptics.cpp index 29b120f..dddb2d6 100644 --- a/src/p528/RayOptics.cpp +++ b/src/p528/RayOptics.cpp @@ -1,5 +1,5 @@ #include -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/ReflectionCoefficients.cpp b/src/p528/ReflectionCoefficients.cpp index 770b21a..5b6d2fc 100644 --- a/src/p528/ReflectionCoefficients.cpp +++ b/src/p528/ReflectionCoefficients.cpp @@ -1,5 +1,5 @@ #include -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/SmoothEarthDiffraction.cpp b/src/p528/SmoothEarthDiffraction.cpp index 5a6aab1..4ff3885 100644 --- a/src/p528/SmoothEarthDiffraction.cpp +++ b/src/p528/SmoothEarthDiffraction.cpp @@ -1,5 +1,5 @@ #include -#include "../../include/p528.h" +#include "p528.h" // References: // - [Vogler 1964] Calculation of Groundwave Attenuation in the Far Diffraction Region. L. Vogler. 1964 diff --git a/src/p528/TerminalGeometry.cpp b/src/p528/TerminalGeometry.cpp index 0a6bbe2..bc24b1d 100644 --- a/src/p528/TerminalGeometry.cpp +++ b/src/p528/TerminalGeometry.cpp @@ -1,6 +1,6 @@ #include -#include "../../include/p528.h" -#include "../../include/p676.h" +#include "p528.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p528/TranshorizonSearch.cpp b/src/p528/TranshorizonSearch.cpp index 1ed8c2d..f529369 100644 --- a/src/p528/TranshorizonSearch.cpp +++ b/src/p528/TranshorizonSearch.cpp @@ -1,4 +1,4 @@ -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/Troposcatter.cpp b/src/p528/Troposcatter.cpp index 2ed3f60..c435101 100644 --- a/src/p528/Troposcatter.cpp +++ b/src/p528/Troposcatter.cpp @@ -1,5 +1,5 @@ #include -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/ValidateInputs.cpp b/src/p528/ValidateInputs.cpp index f86f233..3806037 100644 --- a/src/p528/ValidateInputs.cpp +++ b/src/p528/ValidateInputs.cpp @@ -1,4 +1,4 @@ -#include "../../include/p528.h" +#include "p528.h" /*============================================================================= | diff --git a/src/p528/data.cpp b/src/p528/data.cpp index 5d82797..5d85315 100644 --- a/src/p528/data.cpp +++ b/src/p528/data.cpp @@ -1,4 +1,4 @@ -#include "../../include/p528.h" +#include "p528.h" // Data curves corresponding Nakagami-Rice distributions const vector> data::NakagamiRiceCurves = diff --git a/src/p676/GlobalWetPressure.cpp b/src/p676/GlobalWetPressure.cpp index dad7394..6f05b03 100644 --- a/src/p676/GlobalWetPressure.cpp +++ b/src/p676/GlobalWetPressure.cpp @@ -1,5 +1,5 @@ -#include "../../include/p676.h" -#include "../../include/p835.h" +#include "p676.h" +#include "p835.h" /*============================================================================= | diff --git a/src/p676/LineShapeFactor.cpp b/src/p676/LineShapeFactor.cpp index f26735b..763f72d 100644 --- a/src/p676/LineShapeFactor.cpp +++ b/src/p676/LineShapeFactor.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p676/NonresonantDebyeAttenuation.cpp b/src/p676/NonresonantDebyeAttenuation.cpp index 97d8764..18dc934 100644 --- a/src/p676/NonresonantDebyeAttenuation.cpp +++ b/src/p676/NonresonantDebyeAttenuation.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p676/OxygenData.cpp b/src/p676/OxygenData.cpp index b4bae09..2020fd1 100644 --- a/src/p676/OxygenData.cpp +++ b/src/p676/OxygenData.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" // Spectroscopic data for oxygen attenuation (Table 1) diff --git a/src/p676/RayTrace.cpp b/src/p676/RayTrace.cpp index 1e1ed0f..7ea18be 100644 --- a/src/p676/RayTrace.cpp +++ b/src/p676/RayTrace.cpp @@ -1,5 +1,5 @@ -#include "../../include/p676.h" -#include "../../include/p835.h" +#include "p676.h" +#include "p835.h" /*============================================================================= | diff --git a/src/p676/RefractiveIndex.cpp b/src/p676/RefractiveIndex.cpp index 299a451..5cfafa1 100644 --- a/src/p676/RefractiveIndex.cpp +++ b/src/p676/RefractiveIndex.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p676/Refractivity.cpp b/src/p676/Refractivity.cpp index 4559552..a203627 100644 --- a/src/p676/Refractivity.cpp +++ b/src/p676/Refractivity.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p676/SlantPath.cpp b/src/p676/SlantPath.cpp index 852a0f3..2159ce2 100644 --- a/src/p676/SlantPath.cpp +++ b/src/p676/SlantPath.cpp @@ -1,5 +1,5 @@ -#include "../../include/p676.h" -#include "../../include/p835.h" +#include "p676.h" +#include "p835.h" // Calculation the slant path attenuation due to atmospheric gases int SlantPathAttenuation(double f__ghz, double h_1__km, double h_2__km, double beta_1__rad, diff --git a/src/p676/SpecificAttenuation.cpp b/src/p676/SpecificAttenuation.cpp index 15c21ea..7643b69 100644 --- a/src/p676/SpecificAttenuation.cpp +++ b/src/p676/SpecificAttenuation.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p676/TerrestrialPath.cpp b/src/p676/TerrestrialPath.cpp index ca2ca9d..e347cf5 100644 --- a/src/p676/TerrestrialPath.cpp +++ b/src/p676/TerrestrialPath.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" /*============================================================================= | diff --git a/src/p676/WaterVapourData.cpp b/src/p676/WaterVapourData.cpp index 5e2d9cd..0bc0d23 100644 --- a/src/p676/WaterVapourData.cpp +++ b/src/p676/WaterVapourData.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" // Spectroscopic data for water vapor attenuation (Table 2) diff --git a/src/p676/WaterVapourDensityToPartialPressure.cpp b/src/p676/WaterVapourDensityToPartialPressure.cpp index e8d2d02..a5f729c 100644 --- a/src/p676/WaterVapourDensityToPartialPressure.cpp +++ b/src/p676/WaterVapourDensityToPartialPressure.cpp @@ -1,4 +1,4 @@ -#include "../../include/p676.h" +#include "p676.h" double WaterVapourDensityToPartialPressure(double rho__g_m3, double T__kelvin) { diff --git a/src/p835/Conversions.cpp b/src/p835/Conversions.cpp index c6daf71..549ba29 100644 --- a/src/p835/Conversions.cpp +++ b/src/p835/Conversions.cpp @@ -1,5 +1,5 @@ #include "math.h" -#include "../../include/p835.h" +#include "p835.h" /*============================================================================= | diff --git a/src/p835/MeanAnnualGlobalReferenceAtmosphere.cpp b/src/p835/MeanAnnualGlobalReferenceAtmosphere.cpp index 80f2938..7792d5c 100644 --- a/src/p835/MeanAnnualGlobalReferenceAtmosphere.cpp +++ b/src/p835/MeanAnnualGlobalReferenceAtmosphere.cpp @@ -1,5 +1,5 @@ #include "math.h" -#include "../../include/p835.h" +#include "p835.h" /*============================================================================= | diff --git a/test/.git-keep b/test/.git-keep new file mode 100644 index 0000000..139597f --- /dev/null +++ b/test/.git-keep @@ -0,0 +1,2 @@ + + diff --git a/test/Data Tables/1,200 MHz - Lb(0.01)_P528.csv b/test/Data Tables/1,200 MHz - Lb(0.01)_P528.csv new file mode 100644 index 0000000..e81a0db --- /dev/null +++ b/test/Data Tables/1,200 MHz - Lb(0.01)_P528.csv @@ -0,0 +1,1005 @@ +1200MHz / Lb(0.01) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,94,88.6,88.5,88.3,88.1,0,108.6,108.6,108.6,108.6,107.7,0,114.6,114.6,114.6,114.6,114.2,108.6,0 +1,97,91.1,91,91,91,90.8,108.6,108.6,108.6,108.6,108.3,93.5,114.6,114.6,114.6,114.6,114.5,111.6,93.7 +2,101,94.6,94.6,94.6,94.6,95.2,108.6,108.6,108.6,108.6,108.4,99.2,114.6,114.6,114.6,114.6,114.5,111.7,99.5 +3,104,97.5,97.5,97.5,97.5,98,108.8,108.7,108.7,108.7,108.5,102.4,114.6,114.6,114.6,114.6,114.5,111.8,102.9 +4,106.3,99.7,99.7,99.7,99.7,100.1,108.9,108.9,108.9,108.9,108.7,104.5,114.6,114.6,114.6,114.6,114.5,112,105.3 +5,108.2,101.5,101.5,101.5,101.5,101.8,109.2,109.2,109.2,109.1,109,106.1,114.7,114.7,114.7,114.6,114.5,112.2,107 +6,109.7,103,103,103,103,103.2,109.4,109.4,109.4,109.4,109.3,107.4,114.7,114.7,114.7,114.7,114.6,112.5,108.4 +7,111,104.2,104.2,104.2,104.2,104.5,109.8,109.8,109.7,109.7,109.7,108.4,114.8,114.8,114.8,114.8,114.7,112.8,109.6 +8,112.2,105.4,105.4,105.4,105.4,105.6,110.1,110.1,110.1,110.1,110,109.3,114.9,114.9,114.9,114.9,114.8,113.1,110.6 +9,113.2,106.4,106.4,106.4,106.4,106.5,110.5,110.5,110.5,110.5,110.4,110.1,115,115,115,115,114.9,113.4,111.4 +10,114.1,107.3,107.3,107.3,107.3,107.4,110.8,110.8,110.8,110.8,110.8,110.8,115.1,115.1,115.1,115.1,115,113.7,112.2 +11,114.9,108.1,108.1,108.1,108.1,108.2,111.2,111.2,111.2,111.2,111.2,111.4,115.2,115.2,115.2,115.2,115.1,114,112.8 +12,115.6,108.8,108.8,108.8,108.8,108.9,111.6,111.6,111.6,111.6,111.6,111.9,115.3,115.3,115.3,115.3,115.3,114.3,113.4 +13,116.3,109.5,109.5,109.5,109.5,109.6,112,112,112,112,112,112.4,115.5,115.5,115.5,115.5,115.4,114.6,114 +14,117,110.1,110.1,110.1,110.1,110.2,112.4,112.4,112.4,112.4,112.4,112.9,115.7,115.7,115.7,115.7,115.6,114.9,114.4 +15,117.6,110.7,110.7,110.7,110.7,110.8,112.8,112.8,112.8,112.8,112.8,113.3,115.8,115.8,115.8,115.8,115.8,115.2,114.9 +16,118.1,111.3,111.3,111.3,111.3,111.4,113.1,113.1,113.1,113.1,113.2,113.7,116,116,116,116,116,115.5,115.3 +17,118.7,111.8,111.8,111.8,111.8,111.9,113.5,113.5,113.5,113.5,113.5,114.1,116.2,116.2,116.2,116.2,116.1,115.8,115.7 +18,119.2,112.3,112.3,112.3,112.3,112.4,113.9,113.9,113.9,113.9,113.9,114.4,116.4,116.4,116.4,116.4,116.3,116.1,116.1 +19,119.6,112.8,112.8,112.8,112.8,112.8,114.2,114.2,114.2,114.2,114.2,114.8,116.6,116.6,116.6,116.6,116.5,116.3,116.4 +20,120.1,113.2,113.2,113.2,113.2,113.3,114.5,114.5,114.5,114.5,114.6,115.1,116.7,116.7,116.7,116.7,116.7,116.6,116.7 +21,120.5,113.7,113.7,113.7,113.7,113.7,114.9,114.9,114.9,114.9,114.9,115.4,116.9,116.9,116.9,116.9,116.9,116.8,117 +22,120.9,114.2,114.1,114.1,114.1,114.1,115.2,115.2,115.2,115.2,115.2,115.7,117.1,117.1,117.1,117.1,117.1,117.1,117.3 +23,121.3,114.7,114.4,114.4,114.5,114.5,115.5,115.5,115.5,115.5,115.5,116,117.3,117.3,117.3,117.3,117.3,117.3,117.6 +24,121.6,115.2,114.8,114.8,114.8,114.9,115.8,115.8,115.8,115.8,115.8,116.3,117.5,117.5,117.5,117.5,117.5,117.5,117.9 +25,122,115.7,115.2,115.2,115.2,115.2,116.1,116.1,116.1,116.1,116.1,116.6,117.7,117.7,117.7,117.7,117.7,117.8,118.1 +26,122.3,116.3,115.5,115.5,115.5,115.6,116.4,116.4,116.4,116.4,116.4,116.9,117.9,117.9,117.9,117.9,117.9,118,118.4 +27,122.7,116.9,115.8,115.8,115.9,115.9,116.7,116.7,116.7,116.7,116.7,117.1,118.1,118.1,118.1,118.1,118.1,118.2,118.6 +28,123,117.5,116.2,116.2,116.2,116.2,116.9,116.9,116.9,116.9,117,117.4,118.3,118.3,118.3,118.3,118.3,118.4,118.8 +29,123.3,118.1,116.5,116.5,116.5,116.5,117.2,117.2,117.2,117.2,117.2,117.6,118.5,118.5,118.5,118.5,118.5,118.6,119 +30,123.6,118.7,116.8,116.8,116.8,116.8,117.5,117.5,117.5,117.5,117.5,117.9,118.7,118.7,118.7,118.7,118.7,118.8,119.3 +31,123.9,119.3,117,117,117.1,117.1,117.7,117.7,117.7,117.7,117.7,118.1,118.9,118.9,118.9,118.9,118.9,119,119.5 +32,124.1,119.9,117.3,117.3,117.3,117.4,118,118,118,118,118,118.3,119.1,119.1,119.1,119.1,119.1,119.2,119.7 +33,124.4,120.4,117.6,117.6,117.6,117.6,118.2,118.2,118.2,118.2,118.2,118.6,119.3,119.3,119.3,119.3,119.3,119.4,119.8 +34,124.7,121,117.8,117.8,117.9,117.9,118.4,118.4,118.4,118.4,118.4,118.8,119.5,119.5,119.5,119.5,119.5,119.6,120 +35,124.9,121.5,118.1,118.1,118.1,118.2,118.7,118.7,118.7,118.7,118.7,119,119.6,119.6,119.6,119.6,119.6,119.8,120.2 +36,125.2,122,118.3,118.3,118.4,118.4,118.9,118.9,118.9,118.9,118.9,119.2,119.8,119.8,119.8,119.8,119.8,120,120.4 +37,125.4,122.4,118.6,118.6,118.6,118.6,119.1,119.1,119.1,119.1,119.1,119.4,120,120,120,120,120,120.1,120.6 +38,125.6,122.9,118.8,118.8,118.8,118.9,119.3,119.3,119.3,119.3,119.3,119.6,120.2,120.2,120.2,120.2,120.2,120.3,120.7 +39,125.9,123.3,119,119,119,119.1,119.5,119.5,119.5,119.5,119.5,119.8,120.3,120.3,120.3,120.3,120.3,120.5,120.9 +40,126.1,123.7,119.2,119.2,119.3,119.3,119.7,119.7,119.7,119.7,119.7,120,120.5,120.5,120.5,120.5,120.5,120.7,121.1 +41,126.3,124,119.4,119.4,119.5,119.5,119.9,119.9,119.9,119.9,119.9,120.2,120.7,120.7,120.7,120.7,120.7,120.8,121.2 +42,126.5,124.3,119.6,119.7,119.7,119.8,120.1,120.1,120.1,120.1,120.1,120.4,120.8,120.8,120.8,120.8,120.8,121,121.4 +43,126.7,124.6,119.8,119.9,119.9,120,120.3,120.3,120.3,120.3,120.3,120.5,121,121,121,121,121,121.2,121.5 +44,126.9,124.9,120,120,120.1,120.2,120.5,120.5,120.5,120.5,120.5,120.7,121.2,121.2,121.2,121.2,121.2,121.3,121.7 +45,127.1,125.1,120.2,120.2,120.3,120.4,120.7,120.7,120.7,120.7,120.7,120.9,121.3,121.3,121.3,121.3,121.3,121.5,121.8 +46,127.3,125.3,120.4,120.4,120.5,120.6,120.9,120.9,120.9,120.9,120.9,121.1,121.5,121.5,121.5,121.5,121.5,121.6,122 +47,127.5,125.5,120.6,120.6,120.6,120.8,121,121,121,121,121.1,121.2,121.6,121.6,121.6,121.6,121.6,121.8,122.1 +48,127.7,125.7,120.7,120.8,120.8,120.9,121.2,121.2,121.2,121.2,121.2,121.4,121.8,121.8,121.8,121.8,121.8,121.9,122.3 +49,127.8,125.8,120.9,120.9,121,121.1,121.4,121.4,121.4,121.4,121.4,121.6,121.9,121.9,121.9,121.9,121.9,122.1,122.4 +50,128,126,121.1,121.1,121.2,121.3,121.6,121.6,121.6,121.6,121.6,121.7,122.1,122.1,122.1,122.1,122.1,122.2,122.6 +51,128.2,126.1,121.2,121.3,121.3,121.5,121.7,121.7,121.7,121.7,121.7,121.9,122.2,122.2,122.2,122.2,122.2,122.4,122.7 +52,128.4,126.2,121.4,121.4,121.5,121.7,121.9,121.9,121.9,121.9,121.9,122,122.4,122.4,122.4,122.4,122.4,122.5,122.8 +53,128.5,126.4,121.5,121.6,121.6,121.8,122,122,122,122,122,122.2,122.5,122.5,122.5,122.5,122.5,122.6,123 +54,128.7,126.7,121.7,121.7,121.8,122,122.2,122.2,122.2,122.2,122.2,122.3,122.7,122.7,122.7,122.7,122.6,122.8,123.1 +55,128.8,127,121.8,121.9,121.9,122.2,122.4,122.4,122.4,122.4,122.4,122.5,122.8,122.8,122.8,122.8,122.8,122.9,123.2 +56,129,127.3,121.9,122,122.1,122.3,122.5,122.5,122.5,122.5,122.5,122.6,122.9,122.9,122.9,122.9,122.9,123,123.3 +57,129.2,127.5,122.1,122.1,122.2,122.5,122.7,122.7,122.7,122.7,122.7,122.8,123.1,123.1,123.1,123,123,123.1,123.5 +58,129.3,127.8,122.2,122.3,122.4,122.6,122.8,122.8,122.8,122.8,122.8,122.9,123.2,123.2,123.2,123.2,123.2,123.3,123.6 +59,129.5,128.1,122.3,122.4,122.5,122.8,122.9,122.9,122.9,122.9,122.9,123,123.3,123.3,123.3,123.3,123.3,123.4,123.7 +60,129.6,128.3,122.5,122.5,122.6,122.9,123.1,123.1,123.1,123.1,123.1,123.2,123.4,123.4,123.4,123.4,123.4,123.5,123.8 +61,129.7,128.6,122.6,122.7,122.8,123.1,123.2,123.2,123.2,123.2,123.2,123.3,123.6,123.6,123.6,123.6,123.5,123.6,124 +62,129.9,128.8,122.7,122.8,122.9,123.2,123.3,123.3,123.3,123.3,123.3,123.4,123.7,123.7,123.7,123.7,123.7,123.7,124.1 +63,130,129,122.8,122.9,123,123.4,123.5,123.5,123.5,123.5,123.5,123.6,123.8,123.8,123.8,123.8,123.8,123.8,124.2 +64,130.2,129.2,122.9,123,123.1,123.5,123.6,123.6,123.6,123.6,123.6,123.7,123.9,123.9,123.9,123.9,123.9,124,124.3 +65,130.3,129.5,123,123.1,123.2,123.6,123.7,123.7,123.7,123.7,123.7,123.8,124,124,124,124,124,124.1,124.4 +66,130.4,129.7,123.1,123.2,123.4,123.8,123.9,123.9,123.9,123.9,123.9,123.9,124.1,124.1,124.1,124.1,124.1,124.2,124.5 +67,130.6,129.8,123.2,123.3,123.5,123.9,124,124,124,124,124,124.1,124.2,124.2,124.2,124.2,124.2,124.3,124.6 +68,130.7,130,123.3,123.4,123.6,124,124.1,124.1,124.1,124.1,124.1,124.2,124.4,124.4,124.4,124.4,124.4,124.4,124.7 +69,130.8,130.2,123.4,123.5,123.7,124.2,124.2,124.2,124.2,124.2,124.2,124.3,124.5,124.5,124.5,124.5,124.5,124.5,124.8 +70,130.9,130.4,123.4,123.6,123.8,124.3,124.3,124.3,124.3,124.3,124.3,124.4,124.6,124.6,124.6,124.6,124.6,124.6,125 +71,131.1,130.6,123.5,123.7,123.8,124.4,124.5,124.5,124.5,124.5,124.5,124.5,124.7,124.7,124.7,124.7,124.7,124.7,125.1 +72,131.2,130.8,123.6,123.7,123.9,124.5,124.6,124.6,124.6,124.6,124.6,124.7,124.8,124.8,124.8,124.8,124.8,124.8,125.2 +73,131.3,131,123.6,123.8,124,124.7,124.7,124.7,124.7,124.7,124.7,124.8,124.9,124.9,124.9,124.9,124.9,124.9,125.3 +74,131.4,131.1,123.7,123.9,124.1,124.8,124.8,124.8,124.8,124.8,124.8,124.9,125,125,125,125,125,125,125.4 +75,131.5,131.3,123.8,124,124.2,124.9,124.9,124.9,124.9,124.9,124.9,125,125.1,125.1,125.1,125.1,125.1,125.1,125.5 +76,131.7,131.5,123.8,124,124.3,125,125,125,125,125,125,125.1,125.2,125.2,125.2,125.2,125.2,125.2,125.6 +77,131.8,131.7,123.9,124.1,124.3,125.1,125.1,125.1,125.1,125.1,125.1,125.2,125.3,125.3,125.3,125.3,125.3,125.3,125.7 +78,131.9,131.9,123.9,124.2,124.4,125.2,125.2,125.2,125.2,125.2,125.2,125.3,125.4,125.4,125.4,125.4,125.4,125.4,125.8 +79,132,132,124,124.2,124.5,125.3,125.3,125.3,125.3,125.3,125.3,125.4,125.5,125.5,125.5,125.5,125.5,125.5,125.9 +80,132.1,132.2,124,124.3,124.5,125.4,125.4,125.4,125.4,125.4,125.4,125.5,125.6,125.6,125.6,125.6,125.6,125.6,126 +81,132.2,132.4,124.1,124.3,124.6,125.5,125.5,125.5,125.5,125.5,125.5,125.6,125.7,125.7,125.7,125.7,125.7,125.7,126 +82,132.3,132.6,124.1,124.4,124.7,125.6,125.6,125.6,125.6,125.6,125.6,125.7,125.8,125.8,125.8,125.8,125.8,125.8,126.1 +83,132.4,132.8,124.2,124.4,124.7,125.7,125.7,125.7,125.7,125.7,125.7,125.8,125.9,125.9,125.9,125.9,125.9,125.8,126.2 +84,132.5,132.9,124.2,124.5,124.8,125.8,125.8,125.8,125.8,125.8,125.8,125.9,126,126,126,126,126,125.9,126.3 +85,132.6,133.1,124.4,124.5,124.8,125.9,125.9,125.9,125.9,125.9,125.9,126,126.1,126.1,126.1,126.1,126,126,126.4 +86,132.7,133.3,124.5,124.5,124.9,126,126,126,126,126,126,126.1,126.2,126.2,126.2,126.2,126.1,126.1,126.5 +87,132.8,133.5,124.6,124.6,124.9,126.1,126.1,126.1,126.1,126.1,126.1,126.2,126.2,126.2,126.2,126.2,126.2,126.2,126.6 +88,132.9,133.7,124.7,124.7,125,126.2,126.2,126.2,126.2,126.2,126.2,126.3,126.3,126.3,126.3,126.3,126.3,126.3,126.7 +89,133,133.9,124.8,124.8,125,126.3,126.3,126.3,126.3,126.3,126.3,126.4,126.4,126.4,126.4,126.4,126.4,126.4,126.8 +90,133.1,134.1,124.9,124.9,125,126.4,126.4,126.4,126.4,126.4,126.4,126.5,126.5,126.5,126.5,126.5,126.5,126.5,126.8 +91,133.2,134.2,125.1,125,125.1,126.5,126.5,126.5,126.5,126.5,126.5,126.6,126.6,126.6,126.6,126.6,126.6,126.5,126.9 +92,133.3,134.4,125.2,125.2,125.2,126.6,126.6,126.6,126.6,126.6,126.6,126.7,126.7,126.7,126.7,126.7,126.7,126.6,127 +93,133.4,134.6,125.3,125.3,125.3,126.7,126.7,126.7,126.7,126.7,126.7,126.8,126.8,126.8,126.8,126.8,126.7,126.7,127.1 +94,133.5,134.8,125.5,125.4,125.4,126.7,126.8,126.8,126.8,126.8,126.8,126.8,126.8,126.8,126.8,126.8,126.8,126.8,127.2 +95,133.6,135,125.6,125.5,125.5,126.8,126.9,126.9,126.9,126.9,126.9,126.9,126.9,126.9,126.9,126.9,126.9,126.9,127.2 +96,133.7,135.2,125.7,125.7,125.6,126.9,127,127,127,127,127,127,127,127,127,127,127,126.9,127.3 +97,133.8,135.4,125.9,125.8,125.7,127,127.1,127.1,127.1,127.1,127,127.1,127.1,127.1,127.1,127.1,127.1,127,127.4 +98,133.9,135.6,126,125.9,125.9,127,127.1,127.1,127.1,127.1,127.1,127.2,127.2,127.2,127.2,127.2,127.2,127.1,127.5 +99,133.9,135.9,126.1,126.1,126,127.1,127.2,127.2,127.2,127.2,127.2,127.3,127.3,127.3,127.3,127.3,127.2,127.2,127.6 +100,134,136.1,126.2,126.2,126.1,127.2,127.3,127.3,127.3,127.3,127.3,127.3,127.3,127.3,127.3,127.3,127.3,127.3,127.6 +101,134.1,136.3,126.4,126.3,126.2,127.3,127.4,127.4,127.4,127.4,127.4,127.4,127.4,127.4,127.4,127.4,127.4,127.3,127.7 +102,134.2,136.5,126.5,126.4,126.4,127.3,127.5,127.5,127.5,127.5,127.5,127.5,127.5,127.5,127.5,127.5,127.5,127.4,127.8 +103,134.3,136.8,126.7,126.6,126.5,127.4,127.6,127.6,127.6,127.6,127.6,127.6,127.6,127.6,127.6,127.6,127.6,127.5,127.9 +104,134.4,137,126.8,126.7,126.6,127.5,127.6,127.6,127.6,127.6,127.6,127.7,127.7,127.7,127.7,127.7,127.6,127.6,127.9 +105,134.5,137.3,127,126.8,126.7,127.5,127.7,127.7,127.7,127.7,127.7,127.7,127.7,127.7,127.7,127.7,127.7,127.6,128 +106,134.5,137.5,127.2,127,126.9,127.6,127.8,127.8,127.8,127.8,127.8,127.8,127.8,127.8,127.8,127.8,127.8,127.7,128.1 +107,134.6,137.8,127.4,127.1,127,127.7,127.9,127.9,127.9,127.9,127.9,127.9,127.9,127.9,127.9,127.9,127.9,127.8,128.1 +108,134.7,138,127.7,127.2,127.1,127.7,128,128,128,128,128,128,128,128,128,128,127.9,127.9,128.2 +109,134.8,138.3,127.9,127.3,127.2,127.8,128,128,128,128,128,128,128,128,128,128,128,127.9,128.3 +110,134.9,138.6,128.2,127.5,127.4,127.8,128.1,128.1,128.1,128.1,128.1,128.1,128.1,128.1,128.1,128.1,128.1,128,128.3 +111,134.9,138.9,128.4,127.6,127.5,127.9,128.2,128.2,128.2,128.2,128.2,128.2,128.2,128.2,128.2,128.2,128.2,128.1,128.4 +112,135,139.2,128.7,127.7,127.6,128,128.3,128.3,128.3,128.3,128.3,128.3,128.3,128.3,128.3,128.3,128.2,128.1,128.5 +113,135.1,139.6,128.9,127.9,127.7,128,128.4,128.4,128.4,128.4,128.3,128.3,128.3,128.3,128.3,128.3,128.3,128.2,128.6 +114,135.2,139.9,129.1,128,127.9,128.1,128.4,128.4,128.4,128.4,128.4,128.4,128.4,128.4,128.4,128.4,128.4,128.3,128.6 +115,135.2,140.1,129.3,128.1,128,128.1,128.5,128.5,128.5,128.5,128.5,128.5,128.5,128.5,128.5,128.5,128.4,128.3,128.7 +116,135.3,140.4,129.5,128.2,128.1,128.2,128.6,128.6,128.6,128.6,128.6,128.5,128.5,128.5,128.5,128.5,128.5,128.4,128.7 +117,135.4,140.6,129.6,128.4,128.2,128.2,128.7,128.7,128.7,128.7,128.6,128.6,128.6,128.6,128.6,128.6,128.6,128.5,128.8 +118,135.5,140.9,129.8,128.5,128.4,128.3,128.7,128.7,128.7,128.7,128.7,128.7,128.7,128.7,128.7,128.7,128.7,128.5,128.9 +119,135.5,141.1,129.9,128.6,128.5,128.3,128.8,128.8,128.8,128.8,128.8,128.7,128.7,128.7,128.7,128.7,128.7,128.6,128.9 +120,135.6,141.3,130,128.8,128.6,128.4,128.9,128.9,128.9,128.9,128.9,128.8,128.8,128.8,128.8,128.8,128.8,128.7,129 +121,135.7,141.6,130.1,128.9,128.7,128.4,128.9,128.9,128.9,128.9,128.9,128.9,128.9,128.9,128.9,128.9,128.9,128.7,129.1 +122,135.8,141.8,130.2,129.1,128.8,128.4,129,129,129,129,129,128.9,129,129,129,129,128.9,128.8,129.1 +123,135.8,142.1,130.2,129.2,129,128.5,129.1,129.1,129.1,129.1,129.1,129,129,129,129,129,129,128.9,129.2 +124,135.9,142.3,130.3,129.4,129.1,128.5,129.1,129.1,129.1,129.1,129.1,129.1,129.1,129.1,129.1,129.1,129.1,128.9,129.3 +125,136,142.5,130.4,129.7,129.2,128.6,129.2,129.2,129.2,129.2,129.2,129.1,129.2,129.2,129.2,129.2,129.1,129,129.3 +126,136,142.8,130.5,129.9,129.3,128.6,129.3,129.3,129.3,129.3,129.3,129.2,129.2,129.2,129.2,129.2,129.2,129.1,129.4 +127,136.1,143,130.5,130.1,129.5,128.6,129.4,129.4,129.4,129.4,129.4,129.2,129.3,129.3,129.3,129.3,129.3,129.1,129.4 +128,136.2,143.2,130.6,130.3,129.6,128.7,129.4,129.4,129.4,129.4,129.4,129.3,129.3,129.3,129.3,129.3,129.3,129.2,129.5 +129,136.2,143.5,130.7,130.4,129.7,128.7,129.5,129.5,129.5,129.5,129.5,129.4,129.4,129.4,129.4,129.4,129.4,129.2,129.6 +130,136.3,143.7,130.8,130.6,129.8,128.7,129.6,129.6,129.6,129.6,129.6,129.4,129.5,129.5,129.5,129.5,129.4,129.3,129.6 +131,136.4,143.9,130.9,130.7,129.9,128.8,129.6,129.6,129.6,129.6,129.6,129.5,129.5,129.5,129.5,129.5,129.5,129.4,129.7 +132,136.4,144.2,131,130.8,130.1,128.8,129.7,129.7,129.7,129.7,129.7,129.6,129.6,129.6,129.6,129.6,129.6,129.4,129.7 +133,136.5,144.4,131.1,130.9,130.2,128.8,129.7,129.7,129.7,129.7,129.7,129.6,129.7,129.7,129.7,129.7,129.6,129.5,129.8 +134,136.6,144.6,131.2,131,130.3,128.9,129.8,129.8,129.8,129.8,129.8,129.7,129.7,129.7,129.7,129.7,129.7,129.6,129.8 +135,136.6,144.8,131.3,131.1,130.4,128.9,129.9,129.9,129.9,129.9,129.9,129.7,129.8,129.8,129.8,129.8,129.8,129.6,129.9 +136,136.7,145,131.3,131.1,130.5,128.9,129.9,129.9,129.9,129.9,129.9,129.8,129.8,129.8,129.8,129.8,129.8,129.7,130 +137,136.8,145.2,131.4,131.2,130.6,129,130,130,130,130,130,129.9,129.9,129.9,129.9,129.9,129.9,129.7,130 +138,136.8,145.5,131.6,131.3,130.7,129,130.1,130.1,130.1,130.1,130.1,129.9,130,130,130,130,129.9,129.8,130.1 +139,136.9,145.7,131.7,131.4,130.9,129.1,130.1,130.1,130.1,130.1,130.1,130,130,130,130,130,130,129.8,130.1 +140,137,146.3,131.8,131.4,131,129.2,130.2,130.2,130.2,130.2,130.2,130,130.1,130.1,130.1,130.1,130.1,129.9,130.2 +141,137,147.1,131.9,131.5,131.2,129.2,130.2,130.2,130.3,130.3,130.2,130.1,130.1,130.1,130.1,130.1,130.1,130,130.2 +142,137.1,148,132,131.6,131.3,129.3,130.3,130.3,130.3,130.3,130.3,130.1,130.2,130.2,130.2,130.2,130.2,130,130.3 +143,137.1,148.8,132.1,131.6,131.4,129.4,130.4,130.4,130.4,130.4,130.4,130.2,130.3,130.3,130.3,130.3,130.2,130.1,130.3 +144,137.2,149.6,132.3,131.7,131.5,129.5,130.4,130.4,130.4,130.4,130.4,130.2,130.3,130.3,130.3,130.3,130.3,130.1,130.4 +145,137.2,150.5,132.8,131.8,131.6,129.5,130.5,130.5,130.5,130.5,130.5,130.3,130.4,130.4,130.4,130.4,130.3,130.2,130.4 +146,137.3,151.3,133.3,131.8,131.7,129.6,130.5,130.5,130.5,130.5,130.5,130.4,130.4,130.4,130.4,130.4,130.4,130.2,130.5 +147,137.3,152.2,133.7,132,131.8,129.7,130.6,130.6,130.6,130.6,130.6,130.4,130.5,130.5,130.5,130.5,130.4,130.3,130.6 +148,137.4,153,134.2,132.1,131.9,129.8,130.7,130.7,130.7,130.7,130.7,130.5,130.5,130.5,130.5,130.5,130.5,130.3,130.6 +149,137.5,153.9,134.7,132.2,131.9,129.9,130.7,130.7,130.7,130.7,130.7,130.5,130.6,130.6,130.6,130.6,130.6,130.4,130.7 +150,137.5,154.7,135.1,132.3,132,130,130.8,130.8,130.8,130.8,130.8,130.6,130.6,130.6,130.6,130.6,130.6,130.5,130.7 +151,137.6,155.6,135.7,132.4,132.1,130,130.8,130.8,130.8,130.8,130.8,130.6,130.7,130.7,130.7,130.7,130.7,130.5,130.8 +152,137.6,156.4,136.5,132.5,132.1,130.1,130.9,130.9,130.9,130.9,130.9,130.7,130.8,130.8,130.8,130.8,130.7,130.6,130.8 +153,137.7,157.3,137.4,132.6,132.2,130.2,130.9,130.9,130.9,131,131,130.7,130.8,130.8,130.8,130.8,130.8,130.6,130.9 +154,137.7,158.1,138.2,132.7,132.3,130.3,131,131,131,131,131,130.8,130.9,130.9,130.9,130.9,130.8,130.7,130.9 +155,137.8,159,139.1,132.8,132.3,130.4,131.1,131.1,131.1,131.1,131.1,130.8,130.9,130.9,130.9,130.9,130.9,130.7,131 +156,137.9,159.8,139.9,133.4,132.4,130.4,131.1,131.1,131.1,131.1,131.1,130.9,131,131,131,131,130.9,130.8,131 +157,137.9,160.7,140.8,133.9,132.4,130.5,131.2,131.2,131.2,131.2,131.2,130.9,131,131,131,131,131,130.8,131.1 +158,138,161.5,141.6,134.6,132.5,130.6,131.2,131.2,131.2,131.2,131.2,131,131.1,131.1,131.1,131.1,131,130.9,131.1 +159,138,162.4,142.5,135.5,132.6,130.7,131.3,131.3,131.3,131.3,131.3,131,131.1,131.1,131.1,131.1,131.1,130.9,131.2 +160,138.1,163.2,143.3,136.3,132.8,130.8,131.3,131.3,131.3,131.3,131.3,131.1,131.2,131.2,131.2,131.2,131.1,131,131.2 +161,138.1,164.1,144.2,137.2,132.9,130.8,131.4,131.4,131.4,131.4,131.4,131.1,131.2,131.2,131.2,131.2,131.2,131,131.2 +162,138.2,164.9,145.1,138,133,130.9,131.4,131.4,131.4,131.4,131.4,131.2,131.3,131.3,131.3,131.3,131.2,131.1,131.3 +163,138.2,165.8,145.9,138.9,133.1,131,131.5,131.5,131.5,131.5,131.5,131.2,131.3,131.3,131.3,131.3,131.3,131.1,131.3 +164,138.3,166.7,146.8,139.7,133.2,131.1,131.5,131.5,131.5,131.5,131.5,131.3,131.4,131.4,131.4,131.4,131.3,131.2,131.4 +165,138.3,167.5,147.6,140.6,133.3,131.2,131.6,131.6,131.6,131.6,131.6,131.3,131.4,131.4,131.4,131.4,131.4,131.2,131.4 +166,138.4,168.4,148.5,141.4,133.4,131.2,131.7,131.6,131.6,131.6,131.6,131.4,131.5,131.5,131.5,131.5,131.4,131.3,131.5 +167,138.5,168.9,149.4,142.3,133.7,131.3,131.7,131.7,131.7,131.7,131.7,131.4,131.5,131.5,131.5,131.5,131.5,131.3,131.5 +168,138.5,169,150.2,143.2,134.5,131.4,131.8,131.7,131.7,131.7,131.7,131.5,131.6,131.6,131.6,131.6,131.5,131.4,131.6 +169,138.6,169,151.1,144,135.4,131.5,131.8,131.8,131.8,131.8,131.8,131.5,131.6,131.6,131.6,131.6,131.6,131.4,131.6 +170,138.6,169,151.9,144.9,136.2,131.6,131.9,131.8,131.8,131.8,131.8,131.6,131.7,131.7,131.7,131.7,131.6,131.4,131.7 +171,138.7,169.1,152.8,145.7,137.1,131.6,131.9,131.9,131.9,131.9,131.9,131.6,131.7,131.7,131.7,131.7,131.7,131.5,131.7 +172,138.7,169.1,153.7,146.6,137.9,131.7,132,131.9,131.9,131.9,131.9,131.7,131.8,131.8,131.8,131.8,131.7,131.5,131.8 +173,138.8,169.1,154,147.5,138.8,131.8,132.1,132,132,132,132,131.8,131.8,131.8,131.8,131.8,131.8,131.6,131.8 +174,138.8,169.1,154.3,148.3,139.7,131.9,132.1,132,132,132,132,131.9,131.8,131.8,131.8,131.8,131.8,131.6,131.8 +175,138.9,169.2,154.5,149.2,140.5,131.9,132.2,132.1,132.1,132.1,132.1,131.9,131.9,131.9,131.9,131.9,131.9,131.7,131.9 +176,138.9,169.2,154.8,150.1,141.4,132,132.2,132.1,132.1,132.1,132.1,131.9,131.9,131.9,131.9,131.9,131.9,131.7,131.9 +177,139,169.2,155.1,150.8,142.3,132.1,132.3,132.2,132.2,132.2,132.2,132,132,132,132,132,132,131.8,132 +178,139,169.2,155.3,151.2,143.1,132.2,132.3,132.2,132.2,132.2,132.2,132,132,132,132,132,132,131.8,132 +179,139.1,169.3,155.6,151.6,144,132.2,132.4,132.3,132.3,132.3,132.3,132.1,132.1,132.1,132.1,132.1,132,131.8,132.1 +180,139.1,169.3,155.8,151.9,144.9,132.3,132.5,132.3,132.3,132.3,132.3,132.1,132.1,132.1,132.1,132.1,132.1,131.9,132.1 +181,139.2,169.3,155.9,152.3,145.7,132.4,132.5,132.4,132.4,132.4,132.3,132.2,132.2,132.2,132.2,132.2,132.1,131.9,132.2 +182,139.2,169.3,156.1,152.6,146.6,132.4,132.6,132.4,132.4,132.4,132.4,132.2,132.2,132.2,132.2,132.2,132.2,132,132.2 +183,139.2,169.4,156.3,153,147.4,132.5,132.6,132.4,132.4,132.4,132.4,132.3,132.2,132.2,132.2,132.2,132.2,132,132.2 +184,139.3,169.4,156.4,153.3,148,132.6,132.7,132.5,132.5,132.5,132.5,132.3,132.3,132.3,132.3,132.3,132.3,132,132.3 +185,139.3,169.4,156.6,153.6,148.6,132.7,132.7,132.5,132.5,132.5,132.5,132.3,132.3,132.3,132.3,132.3,132.3,132.1,132.3 +186,139.4,169.5,156.7,153.9,149.1,132.7,132.8,132.6,132.6,132.6,132.5,132.4,132.4,132.4,132.4,132.4,132.3,132.1,132.4 +187,139.4,169.5,156.9,154.1,149.6,132.8,132.8,132.6,132.6,132.6,132.6,132.4,132.4,132.4,132.4,132.4,132.4,132.2,132.4 +188,139.5,169.5,157.1,154.3,150,132.9,132.9,132.6,132.6,132.6,132.6,132.5,132.5,132.5,132.5,132.5,132.4,132.2,132.5 +189,139.5,169.6,157.2,154.5,150.5,132.9,133,132.7,132.7,132.7,132.6,132.5,132.5,132.5,132.5,132.5,132.5,132.2,132.5 +190,139.6,169.6,157.3,154.7,150.9,133,133,132.7,132.7,132.7,132.7,132.6,132.5,132.5,132.5,132.5,132.5,132.3,132.5 +191,139.6,169.7,157.5,154.9,151.3,133.1,133.1,132.8,132.8,132.8,132.7,132.6,132.6,132.6,132.6,132.6,132.6,132.3,132.6 +192,139.7,169.7,157.6,155.1,151.7,133.2,133.1,132.8,132.8,132.8,132.7,132.6,132.6,132.6,132.6,132.6,132.6,132.4,132.6 +193,139.7,169.7,157.8,155.3,152.1,133.2,133.2,132.8,132.8,132.8,132.8,132.7,132.7,132.7,132.7,132.7,132.6,132.4,132.7 +194,139.8,169.8,157.9,155.5,152.4,133.3,133.2,132.9,132.9,132.9,132.8,132.7,132.7,132.7,132.7,132.7,132.7,132.4,132.7 +195,139.8,169.8,158,155.7,152.8,133.4,133.3,132.9,132.9,132.9,132.8,132.8,132.7,132.7,132.7,132.7,132.7,132.5,132.7 +196,139.8,169.9,158.2,155.9,153.1,133.4,133.3,132.9,132.9,132.9,132.8,132.8,132.8,132.8,132.8,132.8,132.7,132.5,132.8 +197,139.9,169.9,158.3,156.1,153.3,133.5,133.3,133,133,133,132.9,132.8,132.8,132.8,132.8,132.8,132.8,132.5,132.8 +198,139.9,170,158.5,156.2,153.6,133.6,133.4,133,133,133,132.9,132.9,132.8,132.8,132.8,132.8,132.8,132.6,132.9 +199,140,170,158.6,156.4,153.8,133.6,133.4,133,133,133,132.9,132.9,132.9,132.9,132.9,132.9,132.8,132.6,132.9 +200,140,170.1,158.7,156.6,154.1,133.7,133.5,133,133.1,133.1,132.9,133,132.9,132.9,132.9,132.9,132.9,132.6,132.9 +201,140.1,170.2,158.9,156.7,154.3,133.7,133.5,133.1,133.1,133.1,133,133,133,133,133,133,132.9,132.7,133 +202,140.1,170.2,159,156.9,154.5,133.8,133.5,133.1,133.1,133.1,133,133,133,133,133,133,133,132.7,133 +203,140.2,170.3,159.1,157,154.7,133.9,133.6,133.1,133.1,133.1,133,133.1,133,133,133,133,133,132.7,133.1 +204,140.2,170.4,159.3,157.2,154.9,133.9,133.6,133.1,133.1,133.1,133,133.1,133.1,133.1,133.1,133.1,133,132.8,133.1 +205,140.2,170.4,159.4,157.4,155.1,134,133.6,133.1,133.1,133.2,133,133.2,133.1,133.1,133.1,133.1,133.1,132.8,133.1 +206,140.3,170.5,159.5,157.5,155.3,134,133.6,133.1,133.2,133.2,133.1,133.2,133.1,133.1,133.1,133.1,133.1,132.8,133.2 +207,140.3,170.6,159.7,157.7,155.5,134.1,133.6,133.1,133.2,133.2,133.1,133.2,133.2,133.2,133.2,133.2,133.1,132.9,133.2 +208,140.4,170.7,159.8,157.8,155.7,134.2,133.6,133.1,133.2,133.2,133.1,133.3,133.2,133.2,133.2,133.2,133.2,132.9,133.2 +209,140.4,170.7,159.9,158,155.9,134.2,133.6,133.1,133.2,133.2,133.1,133.3,133.2,133.2,133.2,133.2,133.2,132.9,133.3 +210,140.4,170.8,160.1,158.1,156.1,134.3,133.6,133.1,133.2,133.2,133.1,133.4,133.3,133.3,133.3,133.3,133.2,133,133.3 +211,140.5,170.9,160.2,158.3,156.2,134.3,133.6,133.1,133.1,133.2,133.1,133.4,133.3,133.3,133.3,133.3,133.3,133,133.4 +212,140.5,171,160.4,158.4,156.4,134.4,133.6,133.1,133.1,133.2,133.2,133.4,133.3,133.3,133.3,133.3,133.3,133,133.4 +213,140.6,171.1,160.5,158.6,156.6,134.4,133.5,133.1,133.1,133.1,133.2,133.5,133.4,133.4,133.4,133.4,133.3,133.1,133.4 +214,140.6,171.2,160.6,158.8,156.8,134.5,133.5,133.1,133.1,133.1,133.2,133.5,133.4,133.4,133.4,133.4,133.3,133.1,133.5 +215,140.7,171.3,160.8,158.9,156.9,134.5,133.5,133.1,133.1,133.1,133.2,133.5,133.4,133.4,133.4,133.4,133.4,133.1,133.5 +216,140.7,171.4,160.9,159.1,157.1,134.6,133.4,133,133.1,133.1,133.2,133.6,133.4,133.4,133.4,133.4,133.4,133.1,133.5 +217,140.7,171.5,161.1,159.2,157.3,134.6,133.4,133,133.1,133.1,133.3,133.6,133.4,133.4,133.4,133.4,133.4,133.2,133.6 +218,140.8,171.6,161.2,159.4,157.4,134.7,133.4,133,133,133.1,133.3,133.6,133.5,133.5,133.5,133.5,133.4,133.2,133.6 +219,140.8,171.7,161.4,159.5,157.6,134.7,133.3,133,133,133.1,133.3,133.7,133.5,133.5,133.5,133.5,133.4,133.2,133.6 +220,140.9,171.8,161.5,159.7,157.8,134.8,133.3,132.9,133,133,133.3,133.7,133.5,133.5,133.5,133.5,133.5,133.3,133.7 +221,140.9,171.9,161.7,159.8,157.9,134.8,133.3,132.9,133,133,133.3,133.7,133.5,133.5,133.5,133.5,133.5,133.3,133.7 +222,140.9,172,161.8,160,158.1,134.9,133.2,132.9,133,133,133.4,133.8,133.5,133.5,133.5,133.5,133.5,133.3,133.8 +223,141,172.1,162,160.2,158.3,134.9,133.2,132.9,132.9,133,133.4,133.8,133.5,133.5,133.5,133.5,133.5,133.3,133.8 +224,141,172.2,162.1,160.3,158.4,135,133.2,132.9,132.9,133,133.4,133.9,133.5,133.5,133.5,133.5,133.5,133.3,133.8 +225,141,172.3,162.3,160.5,158.6,135,133.1,132.8,132.9,133,133.4,133.9,133.5,133.5,133.5,133.5,133.5,133.4,133.9 +226,141.1,172.4,162.5,160.6,158.8,135.1,133.1,132.8,132.9,132.9,133.4,133.9,133.5,133.5,133.5,133.5,133.5,133.4,133.9 +227,141.1,172.5,162.6,160.8,158.9,135.1,133,132.8,132.8,132.9,133.4,134,133.4,133.4,133.4,133.4,133.4,133.4,133.9 +228,141.2,172.6,162.8,161,159.1,135.2,132.9,132.7,132.8,132.9,133.4,134,133.4,133.4,133.4,133.4,133.4,133.4,134 +229,141.2,172.8,162.9,161.1,159.2,135.2,132.9,132.7,132.8,132.9,133.4,134,133.5,133.5,133.5,133.5,133.4,133.4,134 +230,141.2,172.9,163.1,161.3,159.4,135.3,132.9,132.7,132.8,132.9,133.4,134.1,133.5,133.5,133.5,133.5,133.5,133.4,134 +231,141.3,173,163.3,161.5,159.6,135.3,132.9,132.7,132.7,132.8,133.4,134.1,133.6,133.6,133.6,133.6,133.5,133.5,134.1 +232,141.3,173.1,163.4,161.6,159.7,135.3,133,132.7,132.7,132.8,133.5,134.1,133.6,133.6,133.6,133.6,133.6,133.5,134.1 +233,141.4,173.3,163.6,161.8,159.9,135.4,133,132.7,132.7,132.8,133.5,134.1,133.6,133.6,133.6,133.6,133.6,133.5,134.1 +234,141.4,173.4,163.8,162,160.1,135.4,132.9,132.7,132.7,132.8,133.5,134.2,133.7,133.7,133.7,133.7,133.6,133.5,134.2 +235,141.4,173.5,163.9,162.1,160.2,135.5,132.9,132.7,132.8,132.8,133.5,134.2,133.7,133.7,133.7,133.7,133.7,133.5,134.2 +236,141.5,173.6,164.1,162.3,160.4,135.5,132.9,132.8,132.8,132.8,133.4,134.2,133.8,133.8,133.8,133.8,133.7,133.4,134.2 +237,141.5,173.8,164.3,162.5,160.6,135.5,132.9,132.8,132.8,132.8,133.4,134.3,133.8,133.8,133.8,133.8,133.7,133.4,134.3 +238,141.5,173.9,164.4,162.7,160.8,135.6,132.9,132.8,132.8,132.8,133.4,134.3,133.8,133.8,133.8,133.8,133.8,133.3,134.3 +239,141.6,174,164.6,162.8,160.9,135.6,132.8,132.8,132.7,132.8,133.4,134.3,133.9,133.9,133.9,133.9,133.8,133.4,134.3 +240,141.6,174.2,164.8,163,161.1,135.6,132.8,132.7,132.7,132.7,133.4,134.4,133.9,133.9,133.9,133.9,133.9,133.4,134.4 +241,141.6,174.3,165,163.2,161.3,135.7,132.9,132.8,132.8,132.7,133.4,134.4,134,134,134,134,133.9,133.4,134.4 +242,141.7,174.4,165.1,163.4,161.4,135.7,132.9,132.9,132.8,132.8,133.3,134.4,134,134,134,134,133.9,133.5,134.4 +243,141.7,174.6,165.3,163.5,161.6,135.7,133,132.9,132.9,132.8,133.3,134.5,134,134,134,134,134,133.5,134.4 +244,141.8,174.7,165.5,163.7,161.8,135.8,133,133,132.9,132.9,133.3,134.5,134.1,134.1,134.1,134.1,134,133.5,134.5 +245,141.8,174.8,165.7,163.9,162,135.8,133.1,133,133,132.9,133.3,134.5,134.1,134.1,134.1,134.1,134,133.6,134.5 +246,141.8,175,165.8,164.1,162.1,135.8,133.2,133.1,133,133,133.3,134.5,134.1,134.1,134.1,134.1,134.1,133.6,134.5 +247,141.9,175.1,166,164.2,162.3,135.9,133.2,133.1,133.1,133,133.3,134.6,134.2,134.2,134.2,134.2,134.1,133.6,134.6 +248,141.9,175.2,166.2,164.4,162.5,135.9,133.3,133.2,133.1,133.1,133.4,134.6,134.2,134.2,134.2,134.2,134.2,133.7,134.6 +249,141.9,175.4,166.4,164.6,162.7,135.9,133.3,133.2,133.2,133.1,133.4,134.6,134.3,134.3,134.3,134.2,134.2,133.7,134.6 +250,142,175.5,166.6,164.8,162.9,135.9,133.4,133.3,133.3,133.2,133.4,134.7,134.3,134.3,134.3,134.3,134.2,133.7,134.7 +251,142,175.7,166.7,165,163,135.9,133.4,133.4,133.3,133.3,133.4,134.7,134.3,134.3,134.3,134.3,134.3,133.8,134.7 +252,142,175.8,166.9,165.2,163.2,135.9,133.5,133.4,133.4,133.3,133.4,134.7,134.4,134.4,134.4,134.4,134.3,133.8,134.7 +253,142.1,175.9,167.1,165.4,163.4,136,133.5,133.5,133.4,133.4,133.5,134.7,134.4,134.4,134.4,134.4,134.3,133.8,134.8 +254,142.1,176.1,167.3,165.5,163.6,136,133.6,133.5,133.5,133.4,133.5,134.8,134.4,134.4,134.4,134.4,134.4,133.9,134.8 +255,142.1,176.2,167.5,165.7,163.8,136,133.7,133.6,133.5,133.5,133.5,134.8,134.5,134.5,134.5,134.5,134.4,133.9,134.8 +256,142.2,176.4,167.6,165.9,164,136,133.7,133.6,133.6,133.5,133.5,134.8,134.5,134.5,134.5,134.5,134.4,133.9,134.8 +257,142.2,176.5,167.8,166.1,164.1,136,133.8,133.7,133.6,133.6,133.5,134.8,134.5,134.5,134.5,134.5,134.5,134,134.9 +258,142.2,176.7,168,166.3,164.3,136,133.8,133.7,133.7,133.6,133.5,134.9,134.6,134.6,134.6,134.6,134.5,134,134.9 +259,142.3,176.8,168.2,166.5,164.5,136,133.9,133.8,133.7,133.7,133.6,134.9,134.6,134.6,134.6,134.6,134.6,134,134.9 +260,142.3,176.9,168.4,166.7,164.7,136,133.9,133.8,133.8,133.7,133.6,134.9,134.6,134.6,134.6,134.6,134.6,134.1,135 +261,142.3,177.1,168.6,166.8,164.9,135.9,134,133.9,133.8,133.8,133.6,134.9,134.7,134.7,134.7,134.7,134.6,134.1,135 +262,142.4,177.2,168.7,167,165.1,135.9,134,133.9,133.9,133.8,133.6,135,134.7,134.7,134.7,134.7,134.7,134.1,135 +263,142.4,177.4,168.9,167.2,165.3,135.9,134.1,134,133.9,133.9,133.6,135,134.8,134.8,134.8,134.7,134.7,134.2,135 +264,142.4,177.5,169.1,167.4,165.5,136,134.1,134,134,133.9,133.6,135,134.8,134.8,134.8,134.8,134.7,134.2,135.1 +265,142.5,177.7,169.3,167.6,165.7,136.1,134.2,134.1,134,134,133.6,135.1,134.8,134.8,134.8,134.8,134.8,134.2,135.1 +266,142.5,177.8,169.5,167.8,165.8,136.3,134.2,134.1,134.1,134,133.7,135.1,134.9,134.9,134.9,134.9,134.8,134.3,135.1 +267,142.5,178,169.7,168,166,136.5,134.3,134.2,134.1,134.1,133.7,135.1,134.9,134.9,134.9,134.9,134.8,134.3,135.1 +268,142.6,178.1,169.9,168.2,166.2,136.7,134.3,134.2,134.2,134.1,133.7,135.1,134.9,134.9,134.9,134.9,134.9,134.3,135.2 +269,142.6,178.2,170,168.4,166.4,136.9,134.4,134.3,134.2,134.2,133.7,135.1,135,135,135,135,134.9,134.3,135.2 +270,142.6,178.4,170.2,168.5,166.6,137.1,134.4,134.3,134.3,134.2,133.7,135.2,135,135,135,135,134.9,134.4,135.2 +271,142.7,178.5,170.4,168.7,166.8,137.2,134.5,134.4,134.3,134.3,133.8,135.2,135,135,135,135,135,134.4,135.2 +272,142.7,178.7,170.6,168.9,167,137.3,134.5,134.4,134.4,134.3,133.8,135.2,135.1,135.1,135.1,135.1,135,134.4,135.3 +273,142.7,178.8,170.8,169.1,167.2,137.9,134.6,134.5,134.4,134.4,133.8,135.2,135.1,135.1,135.1,135.1,135,134.5,135.3 +274,142.8,179,171,169.3,167.4,138.6,134.6,134.5,134.5,134.4,133.9,135.3,135.1,135.1,135.1,135.1,135.1,134.5,135.3 +275,142.8,179.1,171.1,169.5,167.6,139.4,134.7,134.6,134.5,134.5,133.9,135.3,135.2,135.2,135.2,135.2,135.1,134.5,135.4 +276,142.8,179.2,171.3,169.7,167.8,140.1,134.7,134.6,134.6,134.5,133.9,135.3,135.2,135.2,135.2,135.2,135.1,134.5,135.4 +277,142.9,179.4,171.5,169.9,167.9,140.8,134.8,134.7,134.6,134.6,134,135.3,135.2,135.2,135.2,135.2,135.2,134.6,135.4 +278,142.9,179.5,171.7,170.1,168.1,141.5,134.8,134.7,134.7,134.6,134,135.4,135.3,135.3,135.3,135.3,135.2,134.6,135.4 +279,142.9,179.7,171.9,170.2,168.3,142.3,134.9,134.8,134.7,134.7,134,135.4,135.3,135.3,135.3,135.3,135.2,134.6,135.5 +280,142.9,179.8,172,170.4,168.5,143,134.9,134.8,134.8,134.7,134.1,135.4,135.3,135.3,135.3,135.3,135.3,134.7,135.5 +281,143,179.9,172.2,170.6,168.7,143.7,135,134.9,134.8,134.8,134.1,135.4,135.4,135.4,135.4,135.4,135.3,134.7,135.5 +282,143,180.1,172.4,170.8,168.9,144.4,135,134.9,134.9,134.8,134.2,135.4,135.4,135.4,135.4,135.4,135.3,134.7,135.5 +283,143,180.2,172.6,171,169.1,145.3,135.1,135,134.9,134.9,134.2,135.5,135.4,135.4,135.4,135.4,135.4,134.7,135.6 +284,143.1,180.4,172.8,171.2,169.3,146.2,135.1,135,135,134.9,134.2,135.5,135.4,135.4,135.4,135.4,135.4,134.8,135.6 +285,143.1,180.5,172.9,171.4,169.5,146.9,135.2,135.1,135,135,134.3,135.5,135.5,135.5,135.5,135.5,135.4,134.8,135.6 +286,143.1,180.6,173.1,171.5,169.7,147.7,135.2,135.1,135.1,135,134.3,135.5,135.5,135.5,135.5,135.5,135.4,134.8,135.6 +287,143.2,180.8,173.3,171.7,169.9,148.4,135.3,135.2,135.1,135.1,134.4,135.5,135.5,135.5,135.5,135.5,135.5,134.9,135.6 +288,143.2,180.9,173.5,171.9,170.1,149,135.3,135.2,135.2,135.1,134.4,135.6,135.6,135.6,135.6,135.6,135.5,134.9,135.7 +289,143.2,181,173.6,172.1,170.2,149.6,135.3,135.3,135.2,135.1,134.5,135.6,135.6,135.6,135.6,135.6,135.5,134.9,135.7 +290,143.3,181.2,173.8,172.3,170.4,150.2,135.4,135.3,135.3,135.2,134.5,135.6,135.6,135.6,135.6,135.6,135.6,134.9,135.7 +291,143.3,181.3,174,172.5,170.6,150.7,135.4,135.4,135.3,135.2,134.6,135.6,135.7,135.7,135.7,135.7,135.6,135,135.7 +292,143.3,181.4,174.2,172.6,170.8,151.2,135.5,135.4,135.4,135.3,134.6,135.6,135.7,135.7,135.7,135.7,135.6,135,135.8 +293,143.3,181.6,174.3,172.8,171,151.7,135.5,135.4,135.4,135.3,134.6,135.7,135.7,135.7,135.7,135.7,135.7,135,135.8 +294,143.4,181.7,174.5,173,171.2,152.2,135.6,135.5,135.4,135.4,134.7,135.7,135.8,135.8,135.8,135.8,135.7,135,135.8 +295,143.4,181.8,174.7,173.2,171.4,152.7,135.6,135.5,135.5,135.4,134.7,135.7,135.8,135.8,135.8,135.8,135.7,135.1,135.8 +296,143.4,182,174.8,173.4,171.6,153.1,135.7,135.6,135.5,135.5,134.8,135.7,135.8,135.8,135.8,135.8,135.8,135.1,135.9 +297,143.5,182.1,175,173.5,171.7,153.5,135.7,135.6,135.6,135.5,134.8,135.7,135.8,135.8,135.8,135.8,135.8,135.1,135.9 +298,143.5,182.2,175.2,173.7,171.9,153.9,135.8,135.7,135.6,135.6,134.9,135.7,135.9,135.9,135.9,135.9,135.8,135.2,135.9 +299,143.5,182.4,175.3,173.9,172.1,154.2,135.8,135.7,135.7,135.6,134.9,135.7,135.9,135.9,135.9,135.9,135.8,135.2,135.9 +300,143.5,182.5,175.5,174.1,172.3,154.5,135.9,135.8,135.7,135.6,134.9,135.8,135.9,135.9,135.9,135.9,135.9,135.2,135.9 +301,143.6,182.6,175.7,174.2,172.5,154.7,135.9,135.8,135.8,135.7,135,135.8,136,136,136,136,135.9,135.2,136 +302,143.6,182.8,175.8,174.4,172.7,155,135.9,135.9,135.8,135.7,135,135.8,136,136,136,136,135.9,135.3,136 +303,143.6,182.9,176,174.6,172.8,155.3,136,135.9,135.9,135.8,135.1,135.8,136,136,136,136,136,135.3,136 +304,143.7,183,176.2,174.8,173,155.5,136,135.9,135.9,135.8,135.1,135.8,136,136.1,136.1,136.1,136,135.3,136 +305,143.7,183.2,176.3,174.9,173.2,155.8,136.1,136,135.9,135.9,135.2,135.8,136.1,136.1,136.1,136.1,136,135.3,136.1 +306,143.7,183.3,176.5,175.1,173.4,156,136.1,136,136,135.9,135.2,135.8,136.1,136.1,136.1,136.1,136,135.4,136.1 +307,143.7,183.4,176.7,175.3,173.6,156.2,136.2,136.1,136,136,135.2,135.8,136.1,136.1,136.1,136.1,136.1,135.4,136.1 +308,143.8,183.6,176.8,175.4,173.7,156.4,136.2,136.1,136.1,136,135.3,135.9,136.2,136.2,136.2,136.2,136.1,135.4,136.1 +309,143.8,183.7,177,175.6,173.9,156.7,136.3,136.2,136.1,136,135.3,135.9,136.2,136.2,136.2,136.2,136.1,135.4,136.1 +310,143.8,183.8,177.2,175.8,174.1,156.9,136.3,136.2,136.2,136.1,135.4,135.9,136.2,136.2,136.2,136.2,136.1,135.5,136.1 +311,143.9,183.9,177.3,175.9,174.3,157.1,136.3,136.3,136.2,136.1,135.4,135.9,136.2,136.2,136.2,136.2,136.2,135.5,136.2 +312,143.9,184.1,177.5,176.1,174.5,157.3,136.4,136.3,136.2,136.2,135.5,135.9,136.3,136.3,136.3,136.3,136.2,135.5,136.2 +313,143.9,184.2,177.6,176.3,174.6,157.5,136.4,136.3,136.3,136.2,135.5,135.9,136.3,136.3,136.3,136.3,136.2,135.5,136.2 +314,143.9,184.3,177.8,176.4,174.8,157.7,136.5,136.4,136.3,136.3,135.5,135.9,136.3,136.3,136.3,136.3,136.2,135.5,136.2 +315,144,184.4,178,176.6,175,157.9,136.5,136.4,136.4,136.3,135.6,135.9,136.3,136.3,136.3,136.3,136.2,135.6,136.2 +316,144,184.6,178.1,176.8,175.1,158.1,136.6,136.5,136.4,136.4,135.6,136,136.4,136.4,136.4,136.4,136.3,135.6,136.3 +317,144,184.7,178.3,176.9,175.3,158.3,136.6,136.5,136.5,136.4,135.7,136,136.4,136.4,136.4,136.4,136.3,135.6,136.3 +318,144.1,184.8,178.4,177.1,175.5,158.5,136.6,136.6,136.5,136.4,135.7,136,136.4,136.4,136.4,136.4,136.3,135.6,136.3 +319,144.1,184.9,178.6,177.3,175.7,158.6,136.7,136.6,136.5,136.5,135.7,136,136.4,136.4,136.4,136.4,136.3,135.7,136.4 +320,144.1,185.1,178.7,177.4,175.8,158.8,136.7,136.6,136.6,136.5,135.8,136,136.4,136.4,136.5,136.5,136.3,135.7,136.4 +321,144.1,185.2,178.9,177.6,176,159,136.8,136.7,136.6,136.6,135.8,136,136.5,136.5,136.5,136.5,136.4,135.7,136.4 +322,144.2,185.3,179,177.8,176.2,159.2,136.8,136.7,136.7,136.6,135.9,136,136.5,136.5,136.5,136.5,136.4,135.7,136.4 +323,144.2,185.4,179.2,177.9,176.3,159.4,136.9,136.8,136.7,136.6,135.9,136,136.5,136.5,136.5,136.5,136.4,135.8,136.4 +324,144.2,185.6,179.3,178.1,176.5,159.5,136.9,136.8,136.8,136.7,136,136,136.5,136.5,136.5,136.5,136.4,135.8,136.5 +325,144.2,185.7,179.5,178.2,176.7,159.7,136.9,136.9,136.8,136.7,136,136,136.5,136.5,136.5,136.5,136.4,135.8,136.5 +326,144.3,185.8,179.7,178.4,176.8,159.9,137,136.9,136.8,136.8,136,136,136.5,136.6,136.6,136.6,136.4,135.8,136.5 +327,144.3,185.9,179.8,178.5,177,160.1,137,136.9,136.9,136.8,136.1,136,136.6,136.6,136.6,136.6,136.4,135.8,136.5 +328,144.3,186,180,178.7,177.2,160.3,137.1,137,136.9,136.9,136.1,136,136.6,136.6,136.6,136.6,136.4,135.9,136.5 +329,144.3,186.2,180.1,178.9,177.3,160.4,137.1,137,137,136.9,136.2,136,136.6,136.6,136.6,136.6,136.4,135.9,136.6 +330,144.4,186.3,180.3,179,177.5,160.6,137.2,137.1,137,136.9,136.2,136,136.6,136.6,136.6,136.6,136.4,135.9,136.6 +331,144.4,186.4,180.4,179.2,177.6,160.8,137.3,137.1,137.1,137,136.2,135.9,136.6,136.6,136.6,136.6,136.4,135.9,136.6 +332,144.4,186.5,180.6,179.3,177.8,161,137.3,137.1,137.1,137,136.3,135.9,136.6,136.6,136.6,136.6,136.4,136,136.6 +333,144.5,186.7,180.7,179.5,178,161.1,137.4,137.2,137.1,137.1,136.3,135.9,136.6,136.6,136.6,136.6,136.4,136,136.6 +334,144.5,186.8,180.8,179.6,178.1,161.3,137.5,137.2,137.2,137.1,136.4,135.9,136.6,136.6,136.6,136.6,136.4,136,136.6 +335,144.5,186.9,181,179.8,178.3,161.5,137.5,137.3,137.2,137.1,136.4,135.9,136.6,136.6,136.6,136.6,136.4,136,136.6 +336,144.5,187,181.1,179.9,178.5,161.7,137.6,137.3,137.3,137.2,136.4,135.8,136.6,136.6,136.6,136.6,136.4,136,136.6 +337,144.6,187.1,181.3,180.1,178.6,161.9,137.7,137.3,137.3,137.2,136.5,135.7,136.6,136.6,136.6,136.6,136.4,136.1,136.6 +338,144.6,187.3,181.4,180.2,178.8,162,137.7,137.4,137.3,137.3,136.5,135.8,136.6,136.6,136.6,136.6,136.4,136.1,136.6 +339,144.6,187.4,181.6,180.4,178.9,162.2,137.8,137.4,137.4,137.3,136.6,135.8,136.5,136.6,136.6,136.6,136.4,136.1,136.7 +340,144.6,187.5,181.7,180.5,179.1,162.4,137.8,137.5,137.4,137.3,136.6,135.8,136.5,136.5,136.6,136.6,136.3,136.1,136.7 +341,144.7,187.6,181.9,180.7,179.2,162.6,137.9,137.5,137.5,137.4,136.6,135.8,136.5,136.5,136.5,136.6,136.3,136.1,136.7 +342,144.7,187.7,182,180.8,179.4,162.8,138,137.5,137.5,137.4,136.7,135.8,136.5,136.5,136.5,136.5,136.3,136.2,136.7 +343,144.7,187.8,182.2,181,179.5,162.9,138,137.6,137.5,137.5,136.7,135.8,136.4,136.5,136.5,136.5,136.3,136.2,136.7 +344,144.7,188,182.3,181.1,179.7,163.1,138.1,137.6,137.6,137.5,136.8,135.9,136.4,136.4,136.5,136.5,136.3,136.2,136.7 +345,144.8,188.1,182.4,181.3,179.9,163.3,138.1,137.7,137.6,137.5,136.8,135.9,136.3,136.4,136.4,136.4,136.3,136.2,136.7 +346,144.8,188.2,182.6,181.4,180,163.5,138.2,137.7,137.7,137.6,136.8,135.9,136.3,136.4,136.4,136.4,136.3,136.2,136.7 +347,144.8,188.3,182.7,181.6,180.2,163.7,138.3,137.7,137.7,137.6,136.9,135.9,136.2,136.3,136.3,136.4,136.3,136.3,136.7 +348,144.8,188.4,182.9,181.7,180.3,163.9,138.3,137.8,137.7,137.7,136.9,135.9,136.2,136.3,136.3,136.3,136.3,136.3,136.6 +349,144.9,188.6,183,181.9,180.5,164,138.4,137.8,137.8,137.7,136.9,135.9,136.1,136.2,136.2,136.3,136.3,136.3,136.6 +350,144.9,188.7,183.2,182,180.6,164.2,138.5,137.9,137.8,137.7,137,135.9,136.1,136.2,136.2,136.2,136.3,136.3,136.6 +351,144.9,188.8,183.3,182.2,180.8,164.4,138.5,137.9,137.9,137.8,137,136,136,136.1,136.2,136.2,136.2,136.3,136.6 +352,144.9,188.9,183.4,182.3,180.9,164.6,138.6,137.9,137.9,137.8,137.1,136,136,136.1,136.1,136.1,136.2,136.4,136.6 +353,145,189,183.6,182.5,181.1,164.8,138.6,138,137.9,137.9,137.1,136,136,136,136.1,136.1,136.2,136.4,136.5 +354,145,189.1,183.7,182.6,181.2,165,138.7,138,138,137.9,137.1,136,136,136,136,136.1,136.2,136.4,136.5 +355,145,189.2,183.9,182.7,181.4,165.2,138.8,138.1,138,137.9,137.2,136,136.1,136.1,136.1,136.1,136.2,136.4,136.5 +356,145,189.4,184,182.9,181.5,165.3,138.8,138.1,138,138,137.2,136,136.1,136.1,136.1,136.1,136.2,136.4,136.5 +357,145.1,189.5,184.1,183,181.7,165.5,138.9,138.1,138.1,138,137.3,136,136.2,136.1,136.1,136.1,136.2,136.5,136.5 +358,145.1,189.6,184.3,183.2,181.8,165.7,138.9,138.2,138.1,138.1,137.3,136.1,136.2,136.2,136.2,136.1,136.2,136.5,136.6 +359,145.1,189.7,184.4,183.3,182,165.9,139,138.2,138.2,138.1,137.3,136.1,136.3,136.2,136.2,136.2,136.2,136.5,136.6 +360,145.1,189.8,184.5,183.5,182.1,166.1,139,138.2,138.2,138.1,137.4,136.1,136.3,136.3,136.3,136.2,136.2,136.5,136.6 +361,145.2,189.9,184.7,183.6,182.2,166.3,139.1,138.3,138.2,138.2,137.4,136.1,136.4,136.3,136.3,136.3,136.2,136.5,136.6 +362,145.2,190.1,184.8,183.7,182.4,166.5,139.2,138.3,138.3,138.2,137.4,136.1,136.5,136.4,136.4,136.3,136.2,136.6,136.6 +363,145.2,190.2,185,183.9,182.5,166.7,139.2,138.4,138.3,138.2,137.5,136.1,136.5,136.5,136.4,136.4,136.2,136.6,136.7 +364,145.2,190.3,185.1,184,182.7,166.9,139.3,138.4,138.3,138.3,137.5,136.1,136.6,136.5,136.5,136.4,136.2,136.6,136.7 +365,145.2,190.4,185.2,184.2,182.8,167.1,139.3,138.4,138.4,138.3,137.6,136.2,136.6,136.6,136.5,136.5,136.2,136.6,136.7 +366,145.3,190.5,185.4,184.3,183,167.3,139.4,138.5,138.4,138.4,137.6,136.2,136.7,136.6,136.6,136.5,136.3,136.6,136.7 +367,145.3,190.6,185.5,184.4,183.1,167.5,139.5,138.5,138.5,138.4,137.6,136.2,136.7,136.7,136.6,136.6,136.3,136.6,136.7 +368,145.3,190.7,185.6,184.6,183.3,167.7,139.5,138.5,138.5,138.4,137.7,136.2,136.8,136.7,136.7,136.6,136.3,136.7,136.8 +369,145.3,190.9,185.8,184.7,183.4,167.8,139.6,138.6,138.5,138.5,137.7,136.2,136.8,136.8,136.7,136.7,136.3,136.7,136.8 +370,145.4,191,185.9,184.8,183.5,168,139.8,138.6,138.6,138.5,137.7,136.2,136.9,136.8,136.8,136.7,136.4,136.7,136.8 +371,145.4,191.1,186,185,183.7,168.2,140,138.7,138.6,138.5,137.8,136.2,136.9,136.9,136.8,136.8,136.4,136.7,136.8 +372,145.4,191.2,186.2,185.1,183.8,168.4,140.2,138.7,138.6,138.6,137.8,136.2,137,136.9,136.9,136.8,136.4,136.7,136.8 +373,145.4,191.3,186.3,185.3,184,168.6,140.5,138.7,138.7,138.6,137.9,136.3,137,136.9,136.9,136.9,136.4,136.7,136.9 +374,145.5,191.4,186.4,185.4,184.1,168.8,140.7,138.8,138.7,138.7,137.9,136.3,137,137,137,136.9,136.5,136.8,136.9 +375,145.5,191.5,186.6,185.5,184.3,169,140.9,138.8,138.8,138.7,137.9,136.3,137.1,137,137,137,136.5,136.8,136.9 +376,145.5,191.6,186.7,185.7,184.4,169.2,141.2,138.8,138.8,138.7,138,136.3,137.1,137.1,137,137,136.5,136.8,136.9 +377,145.5,191.8,186.8,185.8,184.5,169.4,141.4,138.9,138.8,138.8,138,136.3,137.2,137.1,137.1,137,136.6,136.8,136.9 +378,145.6,191.9,187,185.9,184.7,169.6,141.7,138.9,138.9,138.8,138,136.3,137.2,137.2,137.1,137.1,136.6,136.8,137 +379,145.6,192,187.1,186.1,184.8,169.8,141.9,138.9,138.9,138.8,138.1,136.3,137.3,137.2,137.2,137.1,136.7,136.8,137 +380,145.6,192.1,187.2,186.2,184.9,170,142.2,139,138.9,138.9,138.1,136.3,137.3,137.2,137.2,137.2,136.7,136.9,137 +381,145.6,192.2,187.4,186.3,185.1,170.2,142.5,139,139,138.9,138.1,136.3,137.3,137.3,137.3,137.2,136.7,136.9,137 +382,145.6,192.3,187.5,186.5,185.2,170.4,142.8,139.1,139,138.9,138.2,136.3,137.4,137.3,137.3,137.2,136.8,136.9,137 +383,145.7,192.4,187.6,186.6,185.4,170.6,143.1,139.1,139,139,138.2,136.4,137.4,137.4,137.3,137.3,136.8,136.9,137.1 +384,145.7,192.5,187.8,186.8,185.5,170.8,143.4,139.1,139.1,139,138.3,136.4,137.5,137.4,137.4,137.3,136.8,136.9,137.1 +385,145.7,192.7,187.9,186.9,185.6,170.9,143.7,139.2,139.1,139.1,138.3,136.4,137.5,137.4,137.4,137.4,136.9,136.9,137.1 +386,145.7,192.8,188,187,185.8,171.1,144.1,139.2,139.2,139.1,138.4,136.4,137.5,137.5,137.5,137.4,136.9,136.9,137.1 +387,145.8,192.9,188.1,187.2,185.9,171.3,144.4,139.2,139.2,139.1,138.4,136.4,137.6,137.5,137.5,137.4,136.9,137,137.1 +388,145.8,193,188.3,187.3,186,171.5,144.8,139.3,139.2,139.2,138.4,136.4,137.6,137.6,137.5,137.5,137,137,137.1 +389,145.8,193.1,188.4,187.4,186.2,171.7,145.1,139.3,139.3,139.2,138.4,136.4,137.7,137.6,137.6,137.5,137,137,137.2 +390,145.8,193.2,188.5,187.5,186.3,171.9,145.4,139.3,139.3,139.2,138.5,136.5,137.7,137.6,137.6,137.6,137,137,137.2 +391,145.8,193.3,188.7,187.7,186.5,172.1,145.7,139.4,139.3,139.3,138.5,136.5,137.7,137.7,137.6,137.6,137.1,137,137.2 +392,145.9,193.4,188.8,187.8,186.6,172.3,146,139.4,139.4,139.3,138.5,136.5,137.8,137.7,137.7,137.6,137.1,137,137.2 +393,145.9,193.6,188.9,187.9,186.7,172.5,146.3,139.4,139.4,139.3,138.6,136.5,137.8,137.8,137.7,137.7,137.1,137,137.2 +394,145.9,193.7,189.1,188.1,186.9,172.7,146.6,139.5,139.4,139.4,138.6,136.5,137.9,137.8,137.8,137.7,137.2,137.1,137.2 +395,145.9,193.8,189.2,188.2,187,172.8,146.8,139.5,139.5,139.4,138.6,136.6,137.9,137.8,137.8,137.7,137.2,137.1,137.3 +396,146,193.9,189.3,188.3,187.1,173,147.1,139.5,139.5,139.4,138.7,136.6,137.9,137.9,137.8,137.8,137.3,137.1,137.3 +397,146,194,189.4,188.5,187.3,173.2,147.4,139.6,139.5,139.5,138.7,136.6,138,137.9,137.9,137.8,137.3,137.1,137.3 +398,146,194.1,189.6,188.6,187.4,173.4,147.7,139.6,139.6,139.5,138.8,136.6,138,137.9,137.9,137.9,137.3,137.1,137.3 +399,146,194.2,189.7,188.7,187.5,173.6,148,139.6,139.6,139.5,138.8,136.7,138,138,137.9,137.9,137.4,137.1,137.3 +400,146,194.3,189.8,188.9,187.7,173.8,148.3,139.7,139.6,139.6,138.8,136.7,138.1,138,138,137.9,137.4,137.1,137.4 +401,146.1,194.4,190,189,187.8,174,148.6,139.7,139.7,139.6,138.9,136.7,138.1,138.1,138,138,137.4,137.2,137.4 +402,146.1,194.6,190.1,189.1,187.9,174.1,148.9,139.8,139.7,139.6,138.9,136.7,138.1,138.1,138.1,138,137.5,137.2,137.4 +403,146.1,194.7,190.2,189.3,188.1,174.3,149.2,139.8,139.7,139.7,138.9,136.7,138.2,138.1,138.1,138,137.5,137.2,137.4 +404,146.1,194.8,190.3,189.4,188.2,174.5,149.5,139.8,139.8,139.7,139,136.8,138.2,138.2,138.1,138.1,137.5,137.2,137.4 +405,146.1,194.9,190.5,189.5,188.3,174.7,149.8,139.9,139.8,139.8,139,136.8,138.3,138.2,138.2,138.1,137.6,137.2,137.4 +406,146.2,195,190.6,189.6,188.5,174.9,150.1,139.9,139.8,139.8,139,136.8,138.3,138.2,138.2,138.1,137.6,137.2,137.4 +407,146.2,195.1,190.7,189.8,188.6,175,150.4,139.9,139.9,139.8,139.1,136.8,138.3,138.3,138.2,138.2,137.6,137.2,137.5 +408,146.2,195.2,190.8,189.9,188.7,175.2,150.7,140,139.9,139.9,139.1,136.9,138.4,138.3,138.3,138.2,137.7,137.2,137.5 +409,146.2,195.3,191,190,188.8,175.4,150.9,140,140,139.9,139.1,136.9,138.4,138.3,138.3,138.2,137.7,137.3,137.5 +410,146.3,195.4,191.1,190.2,189,175.6,151.2,140,140,139.9,139.2,136.9,138.4,138.4,138.3,138.3,137.7,137.3,137.5 +411,146.3,195.5,191.2,190.3,189.1,175.8,151.5,140.1,140,140,139.2,136.9,138.5,138.4,138.4,138.3,137.8,137.3,137.5 +412,146.3,195.7,191.3,190.4,189.2,175.9,151.8,140.1,140.1,140,139.2,137,138.5,138.4,138.4,138.4,137.8,137.3,137.5 +413,146.3,195.8,191.5,190.5,189.4,176.1,152.1,140.2,140.1,140,139.3,137,138.5,138.5,138.4,138.4,137.8,137.3,137.6 +414,146.3,195.9,191.6,190.7,189.5,176.3,152.8,140.3,140.1,140.1,139.3,137,138.6,138.5,138.5,138.4,137.9,137.3,137.6 +415,146.4,196,191.7,190.8,189.6,176.5,153.7,140.5,140.2,140.1,139.3,137.1,138.6,138.5,138.5,138.5,137.9,137.3,137.6 +416,146.4,196.1,191.8,190.9,189.8,176.6,154.7,140.6,140.2,140.1,139.4,137.1,138.6,138.6,138.5,138.5,137.9,137.3,137.6 +417,146.4,196.2,192,191,189.9,176.8,155.6,140.7,140.2,140.2,139.4,137.1,138.7,138.6,138.6,138.5,138,137.4,137.6 +418,146.4,196.3,192.1,191.2,190,177,156.6,140.8,140.3,140.2,139.4,137.2,138.7,138.6,138.6,138.6,138,137.4,137.6 +419,146.4,196.4,192.2,191.3,190.1,177.2,157.5,140.9,140.3,140.2,139.5,137.2,138.7,138.7,138.6,138.6,138,137.4,137.7 +420,146.5,196.5,192.3,191.4,190.3,177.3,158.4,141,140.3,140.3,139.5,137.2,138.8,138.7,138.7,138.6,138.1,137.4,137.7 +421,146.5,196.6,192.5,191.6,190.4,177.5,159.4,141.1,140.4,140.3,139.5,137.2,138.8,138.7,138.7,138.7,138.1,137.4,137.7 +422,146.5,196.7,192.6,191.7,190.5,177.7,160.3,141.2,140.4,140.3,139.6,137.3,138.8,138.8,138.7,138.7,138.1,137.4,137.7 +423,146.5,196.9,192.7,191.8,190.7,177.8,161.3,141.3,140.4,140.4,139.6,137.3,138.9,138.8,138.8,138.7,138.1,137.4,137.7 +424,146.5,197,192.8,191.9,190.8,178,162.2,141.6,140.6,140.4,139.6,137.3,138.9,138.8,138.8,138.8,138.2,137.4,137.7 +425,146.6,197.1,193,192.1,190.9,178.2,163.2,142.3,140.7,140.4,139.7,137.4,138.9,138.9,138.8,138.8,138.2,137.5,137.7 +426,146.6,197.2,193.1,192.2,191,178.3,164.1,143.2,140.9,140.5,139.7,137.4,139,138.9,138.9,138.8,138.2,137.5,137.8 +427,146.6,197.3,193.2,192.3,191.2,178.5,165.1,144.2,141,140.5,139.7,137.4,139,138.9,138.9,138.9,138.3,137.5,137.8 +428,146.6,197.4,193.3,192.4,191.3,178.7,166,145.1,141.1,140.5,139.8,137.4,139,139,138.9,138.9,138.3,137.5,137.8 +429,146.6,197.5,193.5,192.6,191.4,178.8,167,146,141.2,140.6,139.8,137.5,139.1,139,139,138.9,138.3,137.5,137.8 +430,146.7,197.6,193.6,192.7,191.6,179,167.9,147,141.4,140.6,139.8,137.5,139.1,139,139,139,138.4,137.5,137.8 +431,146.7,197.7,193.7,192.8,191.7,179.2,168.8,147.9,141.5,140.6,139.9,137.5,139.1,139.1,139,139,138.4,137.5,137.8 +432,146.7,197.8,193.8,192.9,191.8,179.3,169.8,148.9,141.6,140.6,139.9,137.6,139.2,139.1,139.1,139,138.4,137.5,137.8 +433,146.7,197.9,193.9,193.1,191.9,179.5,170.7,149.8,141.9,140.7,139.9,137.6,139.2,139.1,139.1,139.1,138.5,137.5,137.9 +434,146.7,198.1,194.1,193.2,192.1,179.6,171.7,150.8,142.6,140.7,140,137.6,139.2,139.2,139.1,139.1,138.5,137.6,137.9 +435,146.8,198.2,194.2,193.3,192.2,179.8,172,151.6,143.3,140.8,140,137.6,139.3,139.2,139.2,139.1,138.5,137.6,137.9 +436,146.8,198.3,194.3,193.4,192.3,180,172.2,152.3,144,141,140,137.7,139.3,139.2,139.2,139.2,138.6,137.6,137.9 +437,146.8,198.4,194.4,193.6,192.4,180.1,172.4,152.9,144.8,141.2,140.1,137.7,139.3,139.3,139.2,139.2,138.6,137.6,137.9 +438,146.8,198.5,194.6,193.7,192.6,180.3,172.6,153.5,145.5,141.3,140.1,137.7,139.4,139.3,139.3,139.2,138.6,137.6,137.9 +439,146.8,198.6,194.7,193.8,192.7,180.4,172.7,154.1,146.2,141.4,140.1,137.8,139.4,139.3,139.3,139.2,138.7,137.6,137.9 +440,146.9,198.7,194.8,193.9,192.8,180.6,172.9,154.6,146.9,141.6,140.2,137.8,139.4,139.4,139.3,139.3,138.7,137.6,138 +441,146.9,198.8,194.9,194,192.9,180.8,173.1,155.1,147.7,141.7,140.2,137.8,139.5,139.4,139.4,139.3,138.7,137.6,138 +442,146.9,198.9,195,194.2,193.1,180.9,173.2,155.6,148.4,141.8,140.2,137.8,139.5,139.4,139.4,139.3,138.7,137.6,138 +443,146.9,199,195.2,194.3,193.2,181.1,173.3,156.1,149.3,141.9,140.2,137.9,139.5,139.5,139.4,139.4,138.8,137.6,138 +444,146.9,199.1,195.3,194.4,193.3,181.2,173.3,156.5,150,142.3,140.3,137.9,139.6,139.5,139.5,139.4,138.8,137.6,138 +445,147,199.3,195.4,194.5,193.4,181.4,173.3,156.9,150.7,142.9,140.3,137.9,139.6,139.5,139.5,139.4,138.8,137.7,138 +446,147,199.4,195.5,194.7,193.6,181.5,173.3,157.3,151.4,143.5,140.3,137.9,139.6,139.6,139.5,139.5,138.9,137.7,138 +447,147,199.5,195.6,194.8,193.7,181.7,173.4,157.7,152,144.1,140.4,138,139.7,139.6,139.6,139.5,138.9,137.7,138 +448,147,199.6,195.8,194.9,193.8,181.8,173.4,158.1,152.6,144.7,140.4,138,139.7,139.6,139.6,139.5,138.9,137.7,138.1 +449,147,199.7,195.9,195,193.9,182,173.4,158.5,153.2,145.3,140.4,138,139.7,139.7,139.6,139.6,139,137.7,138.1 +450,147.1,199.8,196,195.1,194.1,182.1,173.5,158.8,153.7,145.9,140.5,138.1,139.7,139.7,139.6,139.6,139,137.7,138.1 +451,147.1,199.9,196.1,195.3,194.2,182.3,173.5,159.2,154.3,146.6,140.5,138.1,139.8,139.7,139.7,139.6,139,137.7,138.1 +452,147.1,200,196.2,195.4,194.3,182.4,173.5,159.5,154.8,147.2,140.5,138.1,139.8,139.7,139.7,139.7,139.1,137.7,138.1 +453,147.1,200.1,196.4,195.5,194.4,182.6,173.5,159.8,155.2,147.8,140.6,138.1,139.8,139.8,139.7,139.7,139.1,137.7,138.1 +454,147.1,200.2,196.5,195.6,194.5,182.7,173.6,160,155.7,148.4,140.6,138.2,139.9,139.8,139.8,139.7,139.1,137.7,138.1 +455,147.2,200.3,196.6,195.8,194.7,182.9,173.6,160.2,156.1,149,140.6,138.2,139.9,139.8,139.8,139.7,139.1,137.7,138.1 +456,147.2,200.4,196.7,195.9,194.8,183,173.6,160.4,156.6,149.9,140.7,138.2,139.9,139.9,139.8,139.8,139.2,137.8,138.2 +457,147.2,200.5,196.8,196,194.9,183.2,173.7,160.6,157,150.6,140.7,138.3,140,139.9,139.9,139.8,139.2,137.8,138.2 +458,147.2,200.7,197,196.1,195,183.3,173.7,160.7,157.4,151.3,140.7,138.3,140,139.9,139.9,139.8,139.2,137.8,138.2 +459,147.2,200.8,197.1,196.2,195.2,183.5,173.7,160.9,157.7,151.9,140.8,138.3,140,140,139.9,139.9,139.3,137.8,138.2 +460,147.2,200.9,197.2,196.4,195.3,183.6,173.7,161.1,158.1,152.5,140.8,138.3,140.1,140,140,139.9,139.3,137.8,138.2 +461,147.3,201,197.3,196.5,195.4,183.8,173.8,161.2,158.4,153.1,140.8,138.4,140.1,140,140,139.9,139.3,137.8,138.2 +462,147.3,201.1,197.4,196.6,195.5,183.9,173.8,161.4,158.6,153.6,140.8,138.4,140.1,140.1,140,140,139.4,137.8,138.2 +463,147.3,201.2,197.6,196.7,195.6,184.1,173.9,161.5,158.8,154.2,140.9,138.4,140.1,140.1,140,140,139.4,137.8,138.2 +464,147.3,201.3,197.7,196.8,195.8,184.2,173.9,161.7,159,154.7,140.9,138.4,140.2,140.1,140.1,140,139.4,137.9,138.3 +465,147.3,201.4,197.8,197,195.9,184.4,173.9,161.8,159.2,155.1,140.9,138.5,140.2,140.1,140.1,140.1,139.4,137.9,138.3 +466,147.4,201.5,197.9,197.1,196,184.5,174,162,159.4,155.6,141,138.5,140.2,140.2,140.1,140.1,139.5,137.9,138.3 +467,147.4,201.6,198,197.2,196.1,184.7,174,162.1,159.6,156.1,141,138.5,140.3,140.2,140.2,140.1,139.5,137.9,138.3 +468,147.4,201.7,198.1,197.3,196.3,184.8,174.1,162.3,159.8,156.5,141,138.6,140.3,140.2,140.2,140.1,139.5,137.9,138.3 +469,147.4,201.8,198.3,197.4,196.4,184.9,174.1,162.4,160,156.9,141.1,138.6,140.3,140.3,140.2,140.2,139.6,138,138.3 +470,147.4,201.9,198.4,197.6,196.5,185.1,174.2,162.6,160.2,157.3,141.1,138.6,140.4,140.3,140.3,140.2,139.6,138,138.3 +471,147.4,202,198.5,197.7,196.6,185.2,174.2,162.7,160.4,157.5,141.1,138.6,140.4,140.3,140.3,140.2,139.6,138,138.3 +472,147.5,202.2,198.6,197.8,196.7,185.4,174.3,162.8,160.6,157.8,141.2,138.7,140.4,140.4,140.3,140.3,139.7,138,138.3 +473,147.5,202.3,198.7,197.9,196.9,185.5,174.3,163,160.7,158.1,141.2,138.7,140.4,140.4,140.3,140.3,139.7,138,138.4 +474,147.5,202.4,198.9,198,197,185.7,174.4,163.1,160.9,158.3,141.2,138.7,140.5,140.4,140.4,140.3,139.7,138.1,138.4 +475,147.5,202.5,199,198.2,197.1,185.8,174.4,163.3,161.1,158.5,141.2,138.7,140.5,140.4,140.4,140.4,139.7,138.1,138.4 +476,147.5,202.6,199.1,198.3,197.2,185.9,174.5,163.4,161.3,158.8,141.3,138.8,140.5,140.5,140.4,140.4,139.8,138.1,138.4 +477,147.6,202.7,199.2,198.4,197.3,186.1,174.6,163.5,161.4,159,141.3,138.8,140.6,140.5,140.5,140.4,139.8,138.1,138.4 +478,147.6,202.8,199.3,198.5,197.5,186.2,174.6,163.7,161.6,159.2,141.3,138.8,140.6,140.5,140.5,140.4,139.8,138.1,138.4 +479,147.6,202.9,199.4,198.6,197.6,186.4,174.7,163.8,161.8,159.4,141.4,138.8,140.6,140.6,140.5,140.5,139.9,138.1,138.4 +480,147.6,203,199.6,198.7,197.7,186.5,174.8,164,161.9,159.6,141.4,138.9,140.6,140.6,140.6,140.5,139.9,138.2,138.4 +481,147.6,203.1,199.7,198.9,197.8,186.6,174.8,164.1,162.1,159.8,141.4,138.9,140.7,140.6,140.6,140.5,139.9,138.2,138.4 +482,147.6,203.2,199.8,199,197.9,186.8,174.9,164.2,162.2,160,141.5,138.9,140.7,140.6,140.6,140.6,139.9,138.2,138.4 +483,147.7,203.3,199.9,199.1,198.1,186.9,175,164.4,162.4,160.2,141.5,139,140.7,140.7,140.6,140.6,140,138.2,138.5 +484,147.7,203.4,200,199.2,198.2,187.1,175.1,164.5,162.6,160.4,141.5,139,140.8,140.7,140.7,140.6,140,138.2,138.5 +485,147.7,203.5,200.1,199.3,198.3,187.2,175.2,164.7,162.7,160.6,141.6,139,140.8,140.7,140.7,140.6,140,138.3,138.5 +486,147.7,203.6,200.2,199.4,198.4,187.3,175.2,164.8,162.9,160.8,141.6,139,140.8,140.8,140.7,140.7,140.1,138.3,138.5 +487,147.7,203.8,200.4,199.6,198.5,187.5,175.3,165,163,160.9,141.6,139.1,140.8,140.8,140.8,140.7,140.1,138.3,138.5 +488,147.8,203.9,200.5,199.7,198.7,187.6,175.4,165.1,163.2,161.1,141.6,139.1,140.9,140.8,140.8,140.7,140.1,138.3,138.5 +489,147.8,204,200.6,199.8,198.8,187.7,175.5,165.3,163.4,161.3,141.7,139.1,140.9,140.8,140.8,140.8,140.1,138.4,138.5 +490,147.8,204.1,200.7,199.9,198.9,187.9,175.6,165.4,163.5,161.5,141.7,139.1,140.9,140.9,140.8,140.8,140.2,138.4,138.5 +491,147.8,204.2,200.8,200,199,188,175.7,165.6,163.7,161.6,141.7,139.2,141,140.9,140.9,140.8,140.2,138.4,138.5 +492,147.8,204.3,200.9,200.1,199.1,188.2,175.8,165.7,163.8,161.8,141.8,139.2,141,140.9,140.9,140.8,140.2,138.4,138.5 +493,147.8,204.4,201.1,200.3,199.2,188.3,175.9,165.9,164,162,141.8,139.2,141,141,140.9,140.9,140.3,138.5,138.5 +494,147.9,204.5,201.2,200.4,199.4,188.4,176,166,164.2,162.2,141.8,139.2,141.1,141,141,140.9,140.3,138.5,138.6 +495,147.9,204.6,201.3,200.5,199.5,188.6,176.1,166.2,164.3,162.3,141.9,139.3,141.1,141,141,140.9,140.3,138.5,138.6 +496,147.9,204.7,201.4,200.6,199.6,188.7,176.2,166.3,164.5,162.5,141.9,139.3,141.2,141,141,141,140.3,138.5,138.6 +497,147.9,204.8,201.5,200.7,199.7,188.8,176.3,166.5,164.6,162.7,141.9,139.3,141.2,141.1,141,141,140.4,138.6,138.6 +498,147.9,204.9,201.6,200.8,199.8,189,176.4,166.6,164.8,162.8,141.9,139.3,141.3,141.1,141.1,141,140.4,138.6,138.6 +499,147.9,205,201.7,201,199.9,189.1,176.5,166.8,165,163,142,139.4,141.3,141.1,141.1,141,140.4,138.6,138.6 +500,148,205.1,201.9,201.1,200.1,189.2,176.6,167,165.1,163.2,142,139.4,141.4,141.2,141.1,141.1,140.5,138.6,138.6 +501,148,205.2,202,201.2,200.2,189.4,176.7,167.1,165.3,163.3,142,139.4,141.4,141.2,141.2,141.1,140.5,138.7,138.6 +502,148,205.3,202.1,201.3,200.3,189.5,176.9,167.3,165.5,163.5,142.1,139.4,141.5,141.2,141.2,141.1,140.5,138.7,138.6 +503,148,205.4,202.2,201.4,200.4,189.6,177,167.4,165.6,163.7,142.1,139.5,141.5,141.2,141.2,141.2,140.5,138.7,138.6 +504,148,205.5,202.3,201.5,200.5,189.8,177.1,167.6,165.8,163.9,142.1,139.5,141.6,141.3,141.2,141.2,140.6,138.7,138.6 +505,148.1,205.7,202.4,201.7,200.6,189.9,177.2,167.8,166,164,142.2,139.5,141.6,141.3,141.3,141.2,140.6,138.7,138.7 +506,148.1,205.8,202.5,201.8,200.8,190,177.3,167.9,166.1,164.2,142.2,139.5,141.7,141.3,141.3,141.2,140.6,138.8,138.7 +507,148.1,205.9,202.7,201.9,200.9,190.2,177.4,168.1,166.3,164.4,142.2,139.6,141.7,141.4,141.3,141.3,140.7,138.8,138.7 +508,148.1,206,202.8,202,201,190.3,177.6,168.3,166.5,164.5,142.2,139.6,141.8,141.4,141.4,141.3,140.7,138.8,138.7 +509,148.1,206.1,202.9,202.1,201.1,190.4,177.7,168.4,166.7,164.7,142.3,139.6,141.8,141.4,141.4,141.3,140.7,138.8,138.7 +510,148.1,206.2,203,202.2,201.2,190.5,177.8,168.6,166.8,164.9,142.3,139.6,141.9,141.4,141.4,141.4,140.7,138.9,138.7 +511,148.2,206.3,203.1,202.3,201.3,190.7,177.9,168.8,167,165,142.3,139.7,141.9,141.5,141.4,141.4,140.8,138.9,138.7 +512,148.2,206.4,203.2,202.5,201.5,190.8,178.1,169,167.2,165.2,142.4,139.7,142,141.5,141.5,141.4,140.8,138.9,138.7 +513,148.2,206.5,203.3,202.6,201.6,190.9,178.2,169.1,167.4,165.4,142.4,139.7,142,141.5,141.5,141.4,140.8,138.9,138.7 +514,148.2,206.6,203.4,202.7,201.7,191.1,178.3,169.3,167.5,165.6,142.4,139.7,142.1,141.6,141.5,141.5,140.8,139,138.7 +515,148.2,206.7,203.6,202.8,201.8,191.2,178.5,169.5,167.7,165.7,142.4,139.8,142.1,141.6,141.5,141.5,140.9,139,138.7 +516,148.2,206.8,203.7,202.9,201.9,191.3,178.6,169.7,167.9,165.9,142.5,139.8,142.2,141.6,141.6,141.5,140.9,139,138.7 +517,148.3,206.9,203.8,203,202,191.5,178.7,169.8,168.1,166.1,142.5,139.8,142.3,141.6,141.6,141.6,140.9,139,138.7 +518,148.3,207,203.9,203.1,202.1,191.6,178.8,170,168.2,166.3,142.5,139.8,142.3,141.7,141.6,141.6,141,139.1,138.7 +519,148.3,207.1,204,203.2,202.3,191.7,179,170.2,168.4,166.5,142.6,139.9,142.4,141.7,141.7,141.6,141,139.1,138.8 +520,148.3,207.2,204.1,203.4,202.4,191.8,179.1,170.4,168.6,166.6,142.6,139.9,142.4,141.7,141.7,141.6,141,139.1,138.8 +521,148.3,207.3,204.2,203.5,202.5,192,179.2,170.5,168.8,166.8,142.6,139.9,142.5,141.7,141.7,141.7,141,139.1,138.8 +522,148.3,207.4,204.3,203.6,202.6,192.1,179.4,170.7,169,167,142.7,139.9,142.5,141.8,141.7,141.7,141.1,139.2,138.8 +523,148.4,207.5,204.4,203.7,202.7,192.2,179.5,170.9,169.2,167.2,142.7,140,142.6,141.8,141.8,141.7,141.1,139.2,138.8 +524,148.4,207.6,204.6,203.8,202.8,192.4,179.6,171.1,169.3,167.4,142.7,140,142.6,141.8,141.8,141.7,141.1,139.2,138.8 +525,148.4,207.7,204.7,203.9,202.9,192.5,179.8,171.3,169.5,167.5,142.7,140,142.7,141.9,141.8,141.8,141.2,139.2,138.8 +526,148.4,207.8,204.8,204,203.1,192.6,179.9,171.4,169.7,167.7,142.8,140,142.7,141.9,141.8,141.8,141.2,139.2,138.8 +527,148.4,207.9,204.9,204.1,203.2,192.7,180.1,171.6,169.9,167.9,142.8,140.1,142.8,141.9,141.9,141.8,141.2,139.3,138.8 +528,148.4,208,205,204.3,203.3,192.9,180.2,171.8,170.1,168.1,142.8,140.1,142.8,141.9,141.9,141.9,141.2,139.3,138.8 +529,148.5,208.1,205.1,204.4,203.4,193,180.3,172,170.3,168.3,142.9,140.1,142.9,142,141.9,141.9,141.3,139.3,138.8 +530,148.5,208.2,205.2,204.5,203.5,193.1,180.5,172.2,170.5,168.5,142.9,140.1,142.9,142,142,141.9,141.3,139.3,138.8 +531,148.5,208.3,205.3,204.6,203.6,193.3,180.6,172.4,170.6,168.7,142.9,140.2,143,142,142,141.9,141.3,139.4,138.8 +532,148.5,208.4,205.4,204.7,203.7,193.4,180.7,172.5,170.8,168.8,143,140.2,143.1,142,142,142,141.3,139.4,138.8 +533,148.5,208.5,205.5,204.8,203.9,193.5,180.9,172.7,171,169,143,140.2,143.3,142.1,142,142,141.4,139.4,138.9 +534,148.5,208.6,205.7,204.9,204,193.6,181,172.9,171.2,169.2,143,140.2,143.6,142.1,142.1,142,141.4,139.4,138.9 +535,148.5,208.8,205.8,205,204.1,193.8,181.2,173.1,171.4,169.4,143,140.3,143.8,142.1,142.1,142,141.4,139.5,138.9 +536,148.6,208.9,205.9,205.1,204.2,193.9,181.3,173.3,171.6,169.6,143.1,140.3,144.1,142.1,142.1,142.1,141.4,139.5,138.9 +537,148.6,209,206,205.3,204.3,194,181.4,173.5,171.8,169.8,143.1,140.3,144.4,142.2,142.1,142.1,141.5,139.5,138.9 +538,148.6,209.1,206.1,205.4,204.4,194.1,181.6,173.6,172,170,143.1,140.3,144.7,142.2,142.2,142.1,141.5,139.5,138.9 +539,148.6,209.2,206.2,205.5,204.5,194.3,181.7,173.8,172.1,170.2,143.2,140.4,145,142.2,142.2,142.1,141.5,139.5,139 +540,148.6,209.3,206.3,205.6,204.6,194.4,181.9,174,172.3,170.4,143.4,140.4,145.3,142.3,142.2,142.2,141.6,139.6,139 +541,148.6,209.4,206.4,205.7,204.7,194.5,182,174.2,172.5,170.5,143.6,140.4,145.6,142.3,142.2,142.2,141.6,139.6,139 +542,148.7,209.5,206.5,205.8,204.9,194.6,182.1,174.4,172.7,170.7,143.8,140.4,145.9,142.3,142.3,142.2,141.6,139.6,139 +543,148.7,209.6,206.6,205.9,205,194.8,182.3,174.5,172.9,170.9,144.1,140.5,146.3,142.3,142.3,142.3,141.6,139.6,139 +544,148.7,209.7,206.7,206,205.1,194.9,182.4,174.7,173.1,171.1,144.2,140.5,146.6,142.4,142.3,142.3,141.7,139.7,139 +545,148.7,209.8,206.8,206.1,205.2,195,182.5,174.9,173.3,171.3,144.2,140.5,147,142.4,142.4,142.3,141.7,139.7,139 +546,148.7,209.9,206.9,206.2,205.3,195.1,182.7,175.1,173.5,171.5,144.3,140.5,147.3,142.4,142.4,142.3,141.7,139.7,139.1 +547,148.7,210,207.1,206.3,205.4,195.3,182.8,175.3,173.7,171.7,144.6,140.6,147.6,142.4,142.4,142.4,141.7,139.7,139.1 +548,148.8,210.1,207.2,206.5,205.5,195.4,183,175.5,173.8,171.9,145,140.6,147.9,142.5,142.4,142.4,141.8,139.8,139.1 +549,148.8,210.2,207.3,206.6,205.6,195.5,183.1,175.6,174,172.1,145.5,140.6,148.2,142.5,142.5,142.4,141.8,139.8,139.1 +550,148.8,210.3,207.4,206.7,205.7,195.6,183.2,175.8,174.2,172.3,146,140.6,148.5,142.5,142.5,142.4,141.8,139.8,139.1 +551,148.8,210.4,207.5,206.8,205.9,195.8,183.4,176,174.4,172.5,146.5,140.7,148.8,142.5,142.5,142.5,141.9,139.8,139.1 +552,148.8,210.5,207.6,206.9,206,195.9,183.5,176.2,174.6,172.6,147,140.7,149.1,142.6,142.5,142.5,141.9,139.8,139.2 +553,148.8,210.6,207.7,207,206.1,196,183.6,176.3,174.8,172.8,147.4,140.7,149.4,142.6,142.6,142.5,141.9,139.9,139.2 +554,148.8,210.7,207.8,207.1,206.2,196.1,183.8,176.5,175,173,147.9,140.7,149.7,142.6,142.6,142.5,141.9,139.9,139.2 +555,148.9,210.8,207.9,207.2,206.3,196.2,183.9,176.7,175.1,173.2,148.4,140.8,150,142.6,142.6,142.6,142,139.9,139.2 +556,148.9,210.9,208,207.3,206.4,196.4,184,176.9,175.3,173.4,148.9,140.8,150.3,142.7,142.6,142.6,142,139.9,139.2 +557,148.9,211,208.1,207.4,206.5,196.5,184.2,177.1,175.5,173.6,149.4,140.8,150.6,142.7,142.7,142.6,142,140,139.2 +558,148.9,211.1,208.2,207.5,206.6,196.6,184.3,177.2,175.7,173.8,149.8,140.8,150.9,142.7,142.7,142.7,142,140,139.2 +559,148.9,211.2,208.3,207.6,206.7,196.7,184.4,177.4,175.9,174,150.3,140.8,151.3,142.8,142.7,142.7,142.1,140,139.3 +560,148.9,211.3,208.4,207.7,206.8,196.9,184.6,177.6,176.1,174.2,151.1,140.9,151.6,142.8,142.8,142.7,142.1,140,139.3 +561,149,211.4,208.5,207.8,206.9,197,184.7,177.8,176.2,174.4,151.8,140.9,151.9,142.8,142.8,142.7,142.1,140,139.3 +562,149,211.5,208.6,208,207,197.1,184.8,177.9,176.4,174.5,152.5,140.9,152.2,142.8,142.8,142.8,142.1,140.1,139.3 +563,149,211.6,208.7,208.1,207.2,197.2,185,178.1,176.6,174.7,153.2,140.9,152.5,142.9,142.8,142.8,142.2,140.1,139.3 +564,149,211.6,208.8,208.2,207.3,197.3,185.1,178.3,176.8,174.9,153.8,141,152.8,142.9,142.9,142.8,142.2,140.1,139.4 +565,149,211.7,208.9,208.3,207.4,197.5,185.2,178.4,177,175.1,154.4,141,153,142.9,142.9,142.9,142.2,140.1,139.4 +566,149,211.8,209.1,208.4,207.5,197.6,185.4,178.6,177.1,175.3,154.9,141,153.3,143,142.9,142.9,142.2,140.2,139.4 +567,149,211.9,209.2,208.5,207.6,197.7,185.5,178.8,177.3,175.5,155.5,141,153.6,143,143,142.9,142.3,140.2,139.4 +568,149.1,212,209.3,208.6,207.7,197.8,185.6,179,177.5,175.7,156,141.1,153.9,143,143,142.9,142.3,140.2,139.4 +569,149.1,212.1,209.4,208.7,207.8,197.9,185.8,179.1,177.7,175.8,156.5,141.1,154.2,143,143,143,142.3,140.2,139.5 +570,149.1,212.2,209.5,208.8,207.9,198.1,185.9,179.3,177.8,176,156.9,141.1,154.5,143.1,143,143,142.3,140.2,139.5 +571,149.1,212.3,209.6,208.9,208,198.2,186,179.5,178,176.2,157.4,141.1,155.1,143.1,143,143,142.4,140.3,139.5 +572,149.1,212.4,209.7,209,208.1,198.3,186.2,179.6,178.2,176.4,157.7,141.2,156,143.3,143.1,143,142.4,140.3,139.5 +573,149.1,212.5,209.8,209.1,208.2,198.4,186.3,179.8,178.4,176.6,158,141.2,157,143.4,143.1,143,142.4,140.3,139.5 +574,149.2,212.6,209.9,209.2,208.3,198.6,186.4,180,178.5,176.8,158.3,141.2,158,143.5,143.1,143.1,142.4,140.3,139.6 +575,149.2,212.7,210,209.3,208.4,198.7,186.5,180.1,178.7,176.9,158.6,141.2,158.9,143.6,143.1,143.1,142.5,140.4,139.6 +576,149.2,212.8,210.1,209.4,208.5,198.8,186.7,180.3,178.9,177.1,158.9,141.2,159.9,143.7,143.2,143.1,142.5,140.4,139.6 +577,149.2,212.9,210.2,209.5,208.6,198.9,186.8,180.4,179.1,177.3,159.1,141.3,160.8,143.8,143.2,143.1,142.5,140.4,139.6 +578,149.2,213,210.3,209.6,208.7,199,186.9,180.6,179.2,177.5,159.4,141.3,161.8,143.9,143.2,143.2,142.5,140.4,139.6 +579,149.2,213.1,210.4,209.7,208.9,199.2,187,180.8,179.4,177.7,159.6,141.3,162.7,144,143.2,143.2,142.6,140.4,139.7 +580,149.2,213.2,210.5,209.8,209,199.3,187.2,180.9,179.6,177.8,159.9,141.3,163.7,144.1,143.3,143.2,142.6,140.5,139.7 +581,149.3,213.3,210.6,209.9,209.1,199.4,187.3,181.1,179.7,178,160.1,141.4,164.6,144.2,143.3,143.3,142.6,140.5,139.7 +582,149.3,213.4,210.7,210,209.2,199.5,187.4,181.3,179.9,178.2,160.3,141.4,165.6,144.5,143.5,143.3,142.6,140.5,139.7 +583,149.3,213.5,210.8,210.1,209.3,199.6,187.6,181.4,180.1,178.4,160.5,141.4,166.6,145.3,143.6,143.3,142.7,140.5,139.7 +584,149.3,213.6,210.9,210.2,209.4,199.7,187.7,181.6,180.2,178.5,160.7,141.4,167.5,146.2,143.8,143.3,142.7,140.6,139.8 +585,149.3,213.7,211,210.3,209.5,199.9,187.8,181.7,180.4,178.7,160.9,141.5,168.5,147,143.9,143.4,142.7,140.6,139.8 +586,149.3,213.8,211.1,210.4,209.6,200,187.9,181.9,180.6,178.9,161.1,141.5,169.4,147.8,144,143.4,142.7,140.6,139.8 +587,149.3,213.9,211.2,210.5,209.7,200.1,188,182,180.7,179.1,161.4,141.5,170.4,148.6,144.1,143.4,142.8,140.6,139.8 +588,149.4,214,211.3,210.6,209.8,200.2,188.2,182.2,180.9,179.2,161.5,141.5,171.3,149.4,144.2,143.4,142.8,140.6,139.8 +589,149.4,214,211.4,210.7,209.9,200.3,188.3,182.4,181.1,179.4,161.7,141.5,172.3,150.2,144.3,143.4,142.8,140.7,139.9 +590,149.4,214.1,211.5,210.8,210,200.5,188.4,182.5,181.2,179.6,161.9,141.6,172.8,151.1,144.4,143.5,142.8,140.7,139.9 +591,149.4,214.2,211.6,210.9,210.1,200.6,188.5,182.7,181.4,179.7,162.1,141.6,173,151.9,144.7,143.5,142.9,140.7,139.9 +592,149.4,214.3,211.7,211,210.2,200.7,188.7,182.8,181.5,179.9,162.3,141.6,173.3,152.7,145.3,143.5,142.9,140.7,139.9 +593,149.4,214.4,211.8,211.1,210.3,200.8,188.8,183,181.7,180.1,162.5,141.6,173.5,153.4,145.9,143.7,142.9,140.7,139.9 +594,149.4,214.5,211.9,211.2,210.4,200.9,188.9,183.1,181.9,180.2,162.7,141.7,173.7,154,146.5,143.9,142.9,140.8,140 +595,149.5,214.6,212,211.3,210.5,201,189,183.3,182,180.4,162.9,141.7,173.9,154.6,147.2,144,143,140.8,140 +596,149.5,214.7,212.1,211.4,210.6,201.2,189.2,183.4,182.2,180.6,163,141.7,174.1,155.2,147.8,144.1,143,140.8,140 +597,149.5,214.8,212.2,211.5,210.7,201.3,189.3,183.6,182.3,180.7,163.2,141.7,174.3,155.7,148.4,144.3,143,140.8,140 +598,149.5,214.9,212.3,211.6,210.8,201.4,189.4,183.7,182.5,180.9,163.4,141.7,174.4,156.3,149,144.4,143,140.9,140 +599,149.5,215,212.4,211.7,210.9,201.5,189.5,183.9,182.6,181.1,163.6,141.8,174.6,156.8,149.6,144.5,143.1,140.9,140.1 +600,149.5,215.1,212.5,211.8,211,201.6,189.6,184,182.8,181.2,163.8,141.8,174.6,157.2,150.2,144.6,143.1,140.9,140.1 +601,149.5,215.2,212.6,211.9,211.1,201.8,189.8,184.2,183,181.4,163.9,141.8,174.7,157.7,151.1,144.6,143.1,140.9,140.1 +602,149.6,215.3,212.6,212,211.2,201.9,189.9,184.3,183.1,181.6,164.1,141.8,174.7,158.1,151.8,144.9,143.1,140.9,140.1 +603,149.6,215.3,212.7,212.1,211.3,202,190,184.5,183.3,181.7,164.3,141.9,174.7,158.6,152.5,145.5,143.2,141,140.1 +604,149.6,215.4,212.8,212.2,211.4,202.1,190.1,184.6,183.4,181.9,164.5,141.9,174.8,159,153.1,146,143.2,141,140.2 +605,149.6,215.5,212.9,212.3,211.5,202.2,190.2,184.8,183.6,182,164.7,141.9,174.8,159.4,153.8,146.6,143.2,141,140.2 +606,149.6,215.6,213,212.4,211.6,202.3,190.3,184.9,183.7,182.2,164.8,141.9,174.8,159.7,154.3,147.1,143.2,141,140.2 +607,149.6,215.7,213.1,212.5,211.7,202.4,190.5,185.1,183.9,182.4,165,142,174.8,160.1,154.9,147.6,143.3,141,140.2 +608,149.6,215.8,213.2,212.6,211.8,202.6,190.6,185.2,184,182.5,165.2,142,174.9,160.5,155.4,148.2,143.3,141.1,140.2 +609,149.7,215.9,213.3,212.7,211.9,202.7,190.7,185.4,184.2,182.7,165.4,142,174.9,160.8,156,148.7,143.3,141.1,140.3 +610,149.7,216,213.4,212.8,212,202.8,190.8,185.5,184.3,182.8,165.5,142,174.9,161.2,156.5,149.3,143.3,141.1,140.3 +611,149.7,216.1,213.5,212.9,212.1,202.9,190.9,185.7,184.5,183,165.7,142,174.9,161.4,156.9,149.8,143.4,141.1,140.3 +612,149.7,216.2,213.6,213,212.2,203,191.1,185.8,184.6,183.1,165.9,142.1,175,161.6,157.4,150.3,143.4,141.1,140.3 +613,149.7,216.3,213.7,213.1,212.3,203.1,191.2,185.9,184.8,183.3,166.1,142.1,175,161.8,157.8,150.9,143.4,141.2,140.3 +614,149.7,216.3,213.8,213.2,212.4,203.3,191.3,186.1,184.9,183.5,166.3,142.1,175,161.9,158.3,151.7,143.4,141.2,140.4 +615,149.7,216.4,213.9,213.3,212.5,203.4,191.4,186.2,185.1,183.6,166.4,142.1,175,162.1,158.7,152.4,143.5,141.2,140.4 +616,149.8,216.5,214,213.4,212.6,203.5,191.5,186.4,185.2,183.8,166.6,142.2,175.1,162.3,159.1,153,143.5,141.2,140.4 +617,149.8,216.6,214.1,213.5,212.7,203.6,191.6,186.5,185.4,183.9,166.8,142.2,175.1,162.4,159.5,153.7,143.5,141.3,140.4 +618,149.8,216.7,214.2,213.6,212.8,203.7,191.8,186.7,185.5,184.1,167,142.2,175.1,162.6,159.7,154.3,143.5,141.3,140.4 +619,149.8,216.8,214.2,213.7,212.9,203.8,191.9,186.8,185.7,184.2,167.2,142.2,175.2,162.8,160,154.8,143.6,141.3,140.4 +620,149.8,216.9,214.3,213.8,213,203.9,192,186.9,185.8,184.4,167.3,142.2,175.2,162.9,160.2,155.4,143.6,141.3,140.5 +621,149.8,217,214.4,213.9,213.1,204.1,192.1,187.1,186,184.5,167.5,142.3,175.2,163.1,160.4,155.9,143.6,141.3,140.5 +622,149.8,217.1,214.5,213.9,213.2,204.2,192.2,187.2,186.1,184.7,167.7,142.3,175.3,163.2,160.6,156.4,143.6,141.4,140.5 +623,149.9,217.1,214.6,214,213.3,204.3,192.3,187.4,186.2,184.8,167.9,142.3,175.3,163.4,160.8,156.9,143.7,141.4,140.5 +624,149.9,217.2,214.7,214.1,213.4,204.4,192.4,187.5,186.4,185,168.1,142.3,175.3,163.5,161,157.4,143.7,141.4,140.5 +625,149.9,217.3,214.8,214.2,213.5,204.5,192.6,187.6,186.5,185.1,168.3,142.3,175.4,163.7,161.2,157.8,143.7,141.4,140.6 +626,149.9,217.4,214.9,214.3,213.5,204.6,192.7,187.8,186.7,185.3,168.5,142.4,175.4,163.8,161.4,158.2,143.7,141.4,140.6 +627,149.9,217.5,215,214.4,213.6,204.7,192.8,187.9,186.8,185.4,168.6,142.4,175.5,164,161.6,158.6,143.8,141.5,140.6 +628,149.9,217.6,215.1,214.5,213.7,204.9,192.9,188.1,187,185.6,168.8,142.4,175.5,164.1,161.8,158.9,143.8,141.5,140.6 +629,149.9,217.7,215.2,214.6,213.8,205,193,188.2,187.1,185.7,169,142.4,175.6,164.2,162,159.2,143.8,141.5,140.6 +630,150,217.8,215.2,214.7,213.9,205.1,193.1,188.3,187.2,185.9,169.2,142.5,175.6,164.4,162.2,159.4,143.8,141.5,140.7 +631,150,217.9,215.3,214.8,214,205.2,193.3,188.5,187.4,186,169.4,142.5,175.7,164.5,162.3,159.7,143.9,141.5,140.7 +632,150,217.9,215.4,214.9,214.1,205.3,193.4,188.6,187.5,186.2,169.6,142.5,175.7,164.7,162.5,159.9,143.9,141.6,140.7 +633,150,218,215.5,215,214.2,205.4,193.5,188.7,187.7,186.3,169.8,142.5,175.8,164.8,162.7,160.1,143.9,141.6,140.7 +634,150,218.1,215.6,215.1,214.3,205.5,193.6,188.9,187.8,186.4,170,142.5,175.9,164.9,162.8,160.4,143.9,141.6,140.7 +635,150,218.2,215.7,215.1,214.4,205.6,193.7,189,187.9,186.6,170.2,142.6,175.9,165.1,163,160.6,144,141.6,140.8 +636,150,218.3,215.8,215.2,214.5,205.8,193.8,189.2,188.1,186.7,170.3,142.6,176,165.2,163.2,160.8,144,141.6,140.8 +637,150.1,218.4,215.9,215.3,214.6,205.9,193.9,189.3,188.2,186.9,170.5,142.6,176.1,165.4,163.3,161,144,141.7,140.8 +638,150.1,218.5,216,215.4,214.7,206,194,189.4,188.4,187,170.7,142.6,176.1,165.5,163.5,161.2,144,141.7,140.8 +639,150.1,218.5,216,215.5,214.8,206.1,194.2,189.6,188.5,187.2,170.9,142.7,176.2,165.7,163.7,161.4,144.1,141.7,140.8 +640,150.1,218.6,216.1,215.6,214.9,206.2,194.3,189.7,188.6,187.3,171.1,142.7,176.3,165.8,163.8,161.6,144.1,141.7,140.8 +641,150.1,218.7,216.2,215.7,214.9,206.3,194.4,189.8,188.8,187.4,171.3,142.7,176.4,165.9,164,161.8,144.1,141.7,140.9 +642,150.1,218.8,216.3,215.8,215,206.4,194.5,190,188.9,187.6,171.5,142.7,176.5,166.1,164.2,162,144.1,141.8,140.9 +643,150.1,218.9,216.4,215.9,215.1,206.5,194.6,190.1,189.1,187.7,171.7,142.7,176.5,166.2,164.3,162.2,144.1,141.8,140.9 +644,150.1,219,216.5,215.9,215.2,206.6,194.7,190.2,189.2,187.9,171.9,142.8,176.6,166.4,164.5,162.4,144.2,141.8,140.9 +645,150.2,219.1,216.6,216,215.3,206.8,194.8,190.4,189.3,188,172.1,142.8,176.7,166.5,164.6,162.5,144.2,141.8,140.9 +646,150.2,219.1,216.7,216.1,215.4,206.9,194.9,190.5,189.5,188.1,172.3,142.8,176.8,166.7,164.8,162.7,144.2,141.9,141 +647,150.2,219.2,216.7,216.2,215.5,207,195.1,190.6,189.6,188.3,172.5,142.8,176.9,166.8,165,162.9,144.2,141.9,141 +648,150.2,219.3,216.8,216.3,215.6,207.1,195.2,190.8,189.7,188.4,172.7,142.8,177,167,165.1,163.1,144.3,141.9,141 +649,150.2,219.4,216.9,216.4,215.7,207.2,195.3,190.9,189.9,188.6,172.9,142.9,177.1,167.1,165.3,163.2,144.3,141.9,141 +650,150.2,219.5,217,216.5,215.8,207.3,195.4,191,190,188.7,173.1,142.9,177.2,167.3,165.4,163.4,144.3,141.9,141 +651,150.2,219.6,217.1,216.6,215.9,207.4,195.5,191.1,190.1,188.8,173.2,142.9,177.3,167.4,165.6,163.6,144.3,142,141.1 +652,150.3,219.7,217.2,216.6,215.9,207.5,195.6,191.3,190.3,189,173.4,142.9,177.4,167.6,165.8,163.8,144.4,142,141.1 +653,150.3,219.7,217.3,216.7,216,207.6,195.7,191.4,190.4,189.1,173.6,143,177.5,167.8,165.9,163.9,144.4,142,141.1 +654,150.3,219.8,217.3,216.8,216.1,207.7,195.8,191.5,190.5,189.3,173.8,143,177.6,167.9,166.1,164.1,144.4,142,141.1 +655,150.3,219.9,217.4,216.9,216.2,207.9,195.9,191.7,190.7,189.4,174,143,177.7,168.1,166.3,164.3,144.4,142,141.1 +656,150.3,220,217.5,217,216.3,208,196.1,191.8,190.8,189.5,174.2,143,177.8,168.2,166.4,164.5,144.5,142.1,141.1 +657,150.3,220.1,217.6,217.1,216.4,208.1,196.2,191.9,190.9,189.7,174.4,143,177.9,168.4,166.6,164.6,144.5,142.1,141.2 +658,150.3,220.2,217.7,217.2,216.5,208.2,196.3,192.1,191.1,189.8,174.6,143.1,178,168.6,166.8,164.8,144.5,142.1,141.2 +659,150.3,220.2,217.8,217.3,216.6,208.3,196.4,192.2,191.2,189.9,174.8,143.1,178.1,168.7,166.9,165,144.5,142.1,141.2 +660,150.4,220.3,217.9,217.3,216.6,208.4,196.5,192.3,191.3,190.1,175,143.1,178.2,168.9,167.1,165.1,144.6,142.1,141.2 +661,150.4,220.4,217.9,217.4,216.7,208.5,196.6,192.4,191.5,190.2,175.2,143.1,178.4,169.1,167.3,165.3,144.6,142.2,141.2 +662,150.4,220.5,218,217.5,216.8,208.6,196.7,192.6,191.6,190.3,175.4,143.1,178.5,169.2,167.4,165.5,144.6,142.2,141.3 +663,150.4,220.6,218.1,217.6,216.9,208.7,196.8,192.7,191.7,190.5,175.6,143.2,178.6,169.4,167.6,165.6,144.6,142.2,141.3 +664,150.4,220.7,218.2,217.7,217,208.8,196.9,192.8,191.9,190.6,175.7,143.2,178.7,169.6,167.8,165.8,144.7,142.2,141.3 +665,150.4,220.8,218.3,217.8,217.1,208.9,197,193,192,190.7,175.9,143.2,178.8,169.7,168,166,144.7,142.2,141.3 +666,150.4,220.8,218.4,217.8,217.2,209,197.2,193.1,192.1,190.9,176.1,143.2,179,169.9,168.1,166.2,144.7,142.3,141.3 +667,150.4,220.9,218.4,217.9,217.3,209.2,197.3,193.2,192.2,191,176.3,143.2,179.1,170.1,168.3,166.3,144.7,142.3,141.3 +668,150.5,221,218.5,218,217.3,209.3,197.4,193.3,192.4,191.1,176.5,143.3,179.2,170.2,168.5,166.5,144.8,142.3,141.4 +669,150.5,221.1,218.6,218.1,217.4,209.4,197.5,193.5,192.5,191.3,176.7,143.3,179.3,170.4,168.7,166.7,144.8,142.3,141.4 +670,150.5,221.2,218.7,218.2,217.5,209.5,197.6,193.6,192.6,191.4,176.9,143.3,179.5,170.6,168.8,166.9,144.8,142.3,141.4 +671,150.5,221.3,218.8,218.3,217.6,209.6,197.7,193.7,192.8,191.5,177.1,143.3,179.6,170.8,169,167,144.8,142.4,141.4 +672,150.5,221.3,218.9,218.4,217.7,209.7,197.8,193.8,192.9,191.7,177.2,143.4,179.7,170.9,169.2,167.2,144.9,142.4,141.4 +673,150.5,221.4,218.9,218.4,217.8,209.8,197.9,194,193,191.8,177.4,143.4,179.8,171.1,169.4,167.4,144.9,142.4,141.5 +674,150.5,221.5,219,218.5,217.9,209.9,198,194.1,193.2,191.9,177.6,143.4,180,171.3,169.5,167.6,144.9,142.4,141.5 +675,150.5,221.6,219.1,218.6,217.9,210,198.1,194.2,193.3,192.1,177.8,143.4,180.1,171.5,169.7,167.7,144.9,142.4,141.5 +676,150.6,221.7,219.2,218.7,218,210.1,198.3,194.3,193.4,192.2,178,143.4,180.2,171.7,169.9,167.9,145,142.5,141.5 +677,150.6,221.8,219.3,218.8,218.1,210.2,198.4,194.5,193.5,192.3,178.2,143.5,180.4,171.8,170.1,168.1,145,142.5,141.5 +678,150.6,221.8,219.3,218.9,218.2,210.3,198.5,194.6,193.7,192.5,178.3,143.5,180.5,172,170.3,168.3,145,142.5,141.5 +679,150.6,221.9,219.4,218.9,218.3,210.4,198.6,194.7,193.8,192.6,178.5,143.5,180.6,172.2,170.5,168.5,145,142.5,141.6 +680,150.6,222,219.5,219,218.4,210.5,198.7,194.8,193.9,192.7,178.7,143.5,180.8,172.4,170.6,168.7,145.1,142.5,141.6 +681,150.6,222.1,219.6,219.1,218.4,210.6,198.8,195,194,192.8,178.9,143.5,180.9,172.6,170.8,168.8,145.1,142.5,141.6 +682,150.6,222.2,219.7,219.2,218.5,210.7,198.9,195.1,194.2,193,179.1,143.6,181,172.7,171,169,145.1,142.6,141.6 +683,150.7,222.3,219.8,219.3,218.6,210.8,199,195.2,194.3,193.1,179.2,143.6,181.2,172.9,171.2,169.2,145.1,142.6,141.6 +684,150.7,222.3,219.8,219.3,218.7,210.9,199.1,195.3,194.4,193.2,179.4,143.6,181.3,173.1,171.4,169.4,145.2,142.6,141.6 +685,150.7,222.4,219.9,219.4,218.8,211,199.2,195.5,194.5,193.4,179.6,143.6,181.4,173.3,171.6,169.6,145.2,142.6,141.7 +686,150.7,222.5,220,219.5,218.9,211.2,199.3,195.6,194.7,193.5,179.8,143.6,181.6,173.5,171.8,169.8,145.2,142.6,141.7 +687,150.7,222.6,220.1,219.6,218.9,211.3,199.4,195.7,194.8,193.6,179.9,143.7,181.7,173.6,171.9,169.9,145.2,142.7,141.7 +688,150.7,222.7,220.2,219.7,219,211.4,199.6,195.8,194.9,193.7,180.1,143.7,181.9,173.8,172.1,170.1,145.3,142.7,141.7 +689,150.7,222.8,220.2,219.8,219.1,211.5,199.7,196,195.1,193.9,180.3,143.7,182,174,172.3,170.3,145.3,142.7,141.7 +690,150.7,222.9,220.3,219.8,219.2,211.6,199.8,196.1,195.2,194,180.5,143.7,182.1,174.2,172.5,170.5,145.3,142.7,141.8 +691,150.8,222.9,220.4,219.9,219.3,211.7,199.9,196.2,195.3,194.1,180.6,143.7,182.3,174.4,172.7,170.7,145.3,142.7,141.8 +692,150.8,223,220.5,220,219.4,211.8,200,196.3,195.4,194.3,180.8,143.8,182.4,174.6,172.9,170.9,145.4,142.8,141.8 +693,150.8,223.1,220.6,220.1,219.4,211.9,200.1,196.4,195.5,194.4,181,143.8,182.5,174.8,173.1,171.1,145.4,142.8,141.8 +694,150.8,223.2,220.7,220.2,219.5,212,200.2,196.6,195.7,194.5,181.1,143.8,182.7,174.9,173.3,171.3,145.4,142.8,141.8 +695,150.8,223.3,220.7,220.3,219.6,212.1,200.3,196.7,195.8,194.6,181.3,143.8,182.8,175.1,173.5,171.5,145.4,142.8,141.8 +696,150.8,223.4,220.8,220.3,219.7,212.2,200.4,196.8,195.9,194.8,181.5,143.8,183,175.3,173.6,171.7,145.5,142.8,141.9 +697,150.8,223.4,220.9,220.4,219.8,212.3,200.5,196.9,196,194.9,181.7,143.9,183.1,175.5,173.8,171.8,145.6,142.9,141.9 +698,150.8,223.5,221,220.5,219.9,212.4,200.6,197.1,196.2,195,181.8,143.9,183.2,175.7,174,172,145.9,142.9,141.9 +699,150.9,223.6,221.1,220.6,219.9,212.5,200.7,197.2,196.3,195.1,182,143.9,183.4,175.9,174.2,172.2,146.1,142.9,141.9 +700,150.9,223.7,221.1,220.7,220,212.6,200.9,197.3,196.4,195.3,182.2,143.9,183.5,176,174.4,172.4,146.3,142.9,141.9 +701,150.9,223.8,221.2,220.7,220.1,212.7,201,197.4,196.5,195.4,182.3,143.9,183.7,176.2,174.6,172.6,146.4,142.9,141.9 +702,150.9,223.9,221.3,220.8,220.2,212.8,201.1,197.5,196.7,195.5,182.5,144,183.8,176.4,174.8,172.8,146.5,143,142 +703,150.9,224,221.4,220.9,220.3,212.9,201.2,197.7,196.8,195.6,182.7,144,183.9,176.6,175,173,146.6,143,142 +704,150.9,224,221.5,221,220.3,213,201.3,197.8,196.9,195.8,182.8,144,184.1,176.8,175.2,173.2,146.6,143,142 +705,150.9,224.1,221.6,221.1,220.4,213.1,201.4,197.9,197,195.9,183,144,184.2,176.9,175.3,173.4,147,143,142 +706,150.9,224.2,221.6,221.2,220.5,213.2,201.5,198,197.2,196,183.1,144.1,184.3,177.1,175.5,173.6,147.4,143,142 +707,150.9,224.3,221.7,221.2,220.6,213.3,201.6,198.1,197.3,196.1,183.3,144.1,184.5,177.3,175.7,173.8,147.9,143.1,142 +708,151,224.4,221.8,221.3,220.7,213.4,201.7,198.3,197.4,196.3,183.5,144.1,184.6,177.5,175.9,174,148.3,143.1,142.1 +709,151,224.5,221.9,221.4,220.8,213.5,201.8,198.4,197.5,196.4,183.6,144.1,184.7,177.7,176.1,174.1,148.7,143.1,142.1 +710,151,224.6,222,221.5,220.8,213.6,201.9,198.5,197.6,196.5,183.8,144.1,184.9,177.8,176.3,174.3,149.1,143.1,142.1 +711,151,224.6,222,221.6,220.9,213.7,202,198.6,197.8,196.6,183.9,144.2,185,178,176.5,174.5,149.6,143.1,142.1 +712,151,224.7,222.1,221.6,221,213.8,202.1,198.7,197.9,196.8,184.1,144.2,185.2,178.2,176.6,174.7,150,143.1,142.1 +713,151,224.8,222.2,221.7,221.1,213.9,202.2,198.9,198,196.9,184.3,144.2,185.3,178.4,176.8,174.9,150.4,143.2,142.2 +714,151,224.9,222.3,221.8,221.2,214,202.4,199,198.1,197,184.4,144.2,185.4,178.5,177,175.1,150.8,143.2,142.2 +715,151,225,222.4,221.9,221.2,214.1,202.5,199.1,198.2,197.1,184.6,144.2,185.6,178.7,177.2,175.3,151.3,143.2,142.2 +716,151.1,225.1,222.5,222,221.3,214.2,202.6,199.2,198.4,197.2,184.7,144.3,185.7,178.9,177.4,175.5,151.7,143.2,142.2 +717,151.1,225.2,222.5,222.1,221.4,214.3,202.7,199.3,198.5,197.4,184.9,144.3,185.8,179.1,177.6,175.7,152.1,143.2,142.2 +718,151.1,225.2,222.6,222.1,221.5,214.4,202.8,199.5,198.6,197.5,185,144.3,186,179.3,177.7,175.9,152.5,143.3,142.2 +719,151.1,225.3,222.7,222.2,221.6,214.5,202.9,199.6,198.7,197.6,185.2,144.3,186.1,179.4,177.9,176,153.5,143.3,142.3 +720,151.1,225.4,222.8,222.3,221.7,214.5,203,199.7,198.8,197.7,185.3,144.3,186.2,179.6,178.1,176.2,154.2,143.3,142.3 +721,151.1,225.5,222.9,222.4,221.7,214.6,203.1,199.8,199,197.9,185.5,144.4,186.4,179.8,178.3,176.4,154.8,143.3,142.3 +722,151.1,225.6,223,222.5,221.8,214.7,203.2,199.9,199.1,198,185.6,144.4,186.5,179.9,178.5,176.6,155.4,143.3,142.3 +723,151.1,225.7,223,222.5,221.9,214.8,203.3,200,199.2,198.1,185.8,144.4,186.6,180.1,178.6,176.8,156,143.4,142.3 +724,151.2,225.8,223.1,222.6,222,214.9,203.4,200.2,199.3,198.2,185.9,144.4,186.7,180.3,178.8,177,156.5,143.4,142.3 +725,151.2,225.8,223.2,222.7,222.1,215,203.5,200.3,199.4,198.3,186.1,144.4,186.9,180.5,179,177.2,157.1,143.4,142.4 +726,151.2,225.9,223.3,222.8,222.1,215.1,203.6,200.4,199.6,198.5,186.3,144.5,187,180.6,179.2,177.4,157.6,143.4,142.4 +727,151.2,226,223.4,222.9,222.2,215.2,203.7,200.5,199.7,198.6,186.4,144.5,187.1,180.8,179.4,177.5,158.1,143.4,142.4 +728,151.2,226.1,223.4,223,222.3,215.3,203.8,200.6,199.8,198.7,186.6,144.5,187.3,181,179.5,177.7,158.5,143.4,142.4 +729,151.2,226.2,223.5,223,222.4,215.4,204,200.8,199.9,198.8,186.7,144.5,187.4,181.1,179.7,177.9,158.9,143.5,142.4 +730,151.2,226.3,223.6,223.1,222.5,215.5,204.1,200.9,200,199,186.8,144.5,187.5,181.3,179.9,178.1,159.2,143.5,142.4 +731,151.2,226.4,223.7,223.2,222.6,215.6,204.2,201,200.2,199.1,187,144.6,187.7,181.5,180.1,178.3,159.5,143.5,142.5 +732,151.2,226.4,223.8,223.3,222.6,215.7,204.3,201.1,200.3,199.2,187.1,144.6,187.8,181.6,180.2,178.5,159.8,143.5,142.5 +733,151.3,226.5,223.9,223.4,222.7,215.8,204.4,201.2,200.4,199.3,187.3,144.6,187.9,181.8,180.4,178.6,160.1,143.5,142.5 +734,151.3,226.6,223.9,223.5,222.8,215.9,204.5,201.3,200.5,199.4,187.4,144.6,188,182,180.6,178.8,160.3,143.6,142.5 +735,151.3,226.7,224,223.5,222.9,216,204.6,201.5,200.6,199.6,187.6,144.6,188.2,182.1,180.7,179,160.6,143.6,142.5 +736,151.3,226.8,224.1,223.6,223,216.1,204.7,201.6,200.8,199.7,187.7,144.7,188.3,182.3,180.9,179.2,160.8,143.6,142.5 +737,151.3,226.9,224.2,223.7,223.1,216.2,204.8,201.7,200.9,199.8,187.9,144.7,188.4,182.4,181.1,179.3,161.1,143.6,142.6 +738,151.3,227,224.3,223.8,223.1,216.2,204.9,201.8,201,199.9,188,144.7,188.5,182.6,181.3,179.5,161.3,143.6,142.6 +739,151.3,227.1,224.4,223.9,223.2,216.3,205,201.9,201.1,200,188.2,144.7,188.7,182.8,181.4,179.7,161.5,143.7,142.6 +740,151.3,227.1,224.4,224,223.3,216.4,205.1,202,201.2,200.1,188.3,144.7,188.8,182.9,181.6,179.9,161.8,143.7,142.6 +741,151.4,227.2,224.5,224,223.4,216.5,205.2,202.2,201.3,200.3,188.5,144.8,188.9,183.1,181.8,180.1,162,143.7,142.6 +742,151.4,227.3,224.6,224.1,223.5,216.6,205.3,202.3,201.5,200.4,188.6,144.8,189,183.2,181.9,180.2,162.2,143.7,142.6 +743,151.4,227.4,224.7,224.2,223.5,216.7,205.4,202.4,201.6,200.5,188.7,144.8,189.2,183.4,182.1,180.4,162.4,143.7,142.7 +744,151.4,227.5,224.8,224.3,223.6,216.8,205.5,202.5,201.7,200.6,188.9,144.8,189.3,183.6,182.3,180.6,162.6,143.7,142.7 +745,151.4,227.6,224.9,224.4,223.7,216.9,205.6,202.6,201.8,200.7,189,144.8,189.4,183.7,182.4,180.7,162.8,143.8,142.7 +746,151.4,227.7,224.9,224.5,223.8,217,205.8,202.7,201.9,200.9,189.2,144.9,189.5,183.9,182.6,180.9,163,143.8,142.7 +747,151.4,227.7,225,224.5,223.9,217.1,205.9,202.8,202,201,189.3,144.9,189.7,184,182.7,181.1,163.2,143.8,142.7 +748,151.4,227.8,225.1,224.6,224,217.2,206,203,202.2,201.1,189.4,144.9,189.8,184.2,182.9,181.3,163.4,143.8,142.7 +749,151.4,227.9,225.2,224.7,224,217.2,206.1,203.1,202.3,201.2,189.6,144.9,189.9,184.3,183.1,181.4,163.6,143.8,142.8 +750,151.5,228,225.3,224.8,224.1,217.3,206.2,203.2,202.4,201.3,189.7,144.9,190,184.5,183.2,181.6,163.8,143.9,142.8 +751,151.5,228.1,225.4,224.9,224.2,217.4,206.3,203.3,202.5,201.5,189.9,145,190.2,184.7,183.4,181.8,163.9,143.9,142.8 +752,151.5,228.2,225.4,225,224.3,217.5,206.4,203.4,202.6,201.6,190,145,190.3,184.8,183.6,181.9,164.1,143.9,142.8 +753,151.5,228.3,225.5,225,224.4,217.6,206.5,203.5,202.7,201.7,190.1,145,190.4,185,183.7,182.1,164.3,143.9,142.8 +754,151.5,228.3,225.6,225.1,224.5,217.7,206.6,203.6,202.9,201.8,190.3,145,190.5,185.1,183.9,182.3,164.5,143.9,142.8 +755,151.5,228.4,225.7,225.2,224.5,217.8,206.7,203.8,203,201.9,190.4,145,190.6,185.3,184,182.4,164.7,143.9,142.9 +756,151.5,228.5,225.8,225.3,224.6,217.9,206.8,203.9,203.1,202,190.6,145.1,190.8,185.4,184.2,182.6,164.9,144,142.9 +757,151.5,228.6,225.9,225.4,224.7,218,206.9,204,203.2,202.2,190.7,145.1,190.9,185.6,184.3,182.8,165,144,142.9 +758,151.6,228.7,226,225.5,224.8,218,207,204.1,203.3,202.3,190.8,145.1,191,185.7,184.5,182.9,165.2,144,142.9 +759,151.6,228.8,226,225.5,224.9,218.1,207.1,204.2,203.4,202.4,191,145.1,191.1,185.9,184.7,183.1,165.4,144,142.9 +760,151.6,228.9,226.1,225.6,225,218.2,207.2,204.3,203.5,202.5,191.1,145.1,191.2,186,184.8,183.2,165.6,144,142.9 +761,151.6,228.9,226.2,225.7,225.1,218.3,207.3,204.4,203.7,202.6,191.2,145.1,191.4,186.2,185,183.4,165.8,144.1,142.9 +762,151.6,229,226.3,225.8,225.1,218.4,207.4,204.6,203.8,202.7,191.4,145.2,191.5,186.3,185.1,183.6,165.9,144.1,143 +763,151.6,229.1,226.4,225.9,225.2,218.5,207.5,204.7,203.9,202.9,191.5,145.2,191.6,186.5,185.3,183.7,166.1,144.1,143 +764,151.6,229.2,226.4,226,225.3,218.6,207.6,204.8,204,203,191.7,145.2,191.7,186.6,185.4,183.9,166.3,144.1,143 +765,151.6,229.3,226.5,226,225.4,218.7,207.7,204.9,204.1,203.1,191.8,145.2,191.8,186.7,185.6,184,166.5,144.1,143 +766,151.6,229.4,226.6,226.1,225.5,218.7,207.9,205,204.2,203.2,191.9,145.2,192,186.9,185.7,184.2,166.6,144.1,143 +767,151.7,229.5,226.7,226.2,225.6,218.8,208,205.1,204.3,203.3,192.1,145.3,192.1,187,185.9,184.4,166.8,144.2,143 +768,151.7,229.5,226.8,226.3,225.6,218.9,208.1,205.2,204.5,203.4,192.2,145.3,192.2,187.2,186,184.5,167,144.2,143.1 +769,151.7,229.6,226.9,226.4,225.7,219,208.2,205.3,204.6,203.5,192.3,145.3,192.3,187.3,186.2,184.7,167.2,144.2,143.1 +770,151.7,229.7,226.9,226.5,225.8,219.1,208.3,205.5,204.7,203.7,192.5,145.3,192.4,187.5,186.3,184.8,167.4,144.2,143.1 +771,151.7,229.8,227,226.5,225.9,219.2,208.4,205.6,204.8,203.8,192.6,145.3,192.5,187.6,186.5,185,167.5,144.2,143.1 +772,151.7,229.9,227.1,226.6,226,219.3,208.5,205.7,204.9,203.9,192.7,145.4,192.7,187.8,186.6,185.1,167.7,144.3,143.1 +773,151.7,230,227.2,226.7,226.1,219.3,208.6,205.8,205,204,192.9,145.4,192.8,187.9,186.8,185.3,167.9,144.3,143.1 +774,151.7,230.1,227.3,226.8,226.1,219.4,208.7,205.9,205.1,204.1,193,145.4,192.9,188,186.9,185.5,168.1,144.3,143.2 +775,151.7,230.1,227.4,226.9,226.2,219.5,208.8,206,205.3,204.2,193.1,145.4,193,188.2,187.1,185.6,168.3,144.3,143.2 +776,151.8,230.2,227.4,227,226.3,219.6,208.9,206.1,205.4,204.4,193.3,145.4,193.1,188.3,187.2,185.8,168.5,144.3,143.2 +777,151.8,230.3,227.5,227,226.4,219.7,209,206.2,205.5,204.5,193.4,145.5,193.2,188.5,187.4,185.9,168.6,144.3,143.2 +778,151.8,230.4,227.6,227.1,226.5,219.8,209.1,206.4,205.6,204.6,193.5,145.5,193.4,188.6,187.5,186.1,168.8,144.4,143.2 +779,151.8,230.5,227.7,227.2,226.6,219.9,209.2,206.5,205.7,204.7,193.7,145.5,193.5,188.8,187.6,186.2,169,144.4,143.2 +780,151.8,230.6,227.8,227.3,226.6,219.9,209.3,206.6,205.8,204.8,193.8,145.5,193.6,188.9,187.8,186.4,169.2,144.4,143.3 +781,151.8,230.7,227.9,227.4,226.7,220,209.4,206.7,205.9,204.9,193.9,145.5,193.7,189,187.9,186.5,169.4,144.4,143.3 +782,151.8,230.7,227.9,227.5,226.8,220.1,209.5,206.8,206,205,194,145.6,193.8,189.2,188.1,186.7,169.6,144.4,143.3 +783,151.8,230.8,228,227.5,226.9,220.2,209.6,206.9,206.2,205.2,194.2,145.6,193.9,189.3,188.2,186.8,169.8,144.5,143.3 +784,151.8,230.9,228.1,227.6,227,220.3,209.7,207,206.3,205.3,194.3,145.6,194.1,189.4,188.4,187,170,144.5,143.3 +785,151.9,231,228.2,227.7,227.1,220.4,209.8,207.1,206.4,205.4,194.4,145.6,194.2,189.6,188.5,187.1,170.1,144.5,143.3 +786,151.9,231.1,228.3,227.8,227.1,220.4,209.9,207.2,206.5,205.5,194.6,145.6,194.3,189.7,188.6,187.2,170.3,144.5,143.3 +787,151.9,231.2,228.3,227.9,227.2,220.5,210,207.4,206.6,205.6,194.7,145.7,194.4,189.9,188.8,187.4,170.5,144.5,143.4 +788,151.9,231.2,228.4,227.9,227.3,220.6,210.1,207.5,206.7,205.7,194.8,145.7,194.5,190,188.9,187.5,170.7,144.5,143.4 +789,151.9,231.3,228.5,228,227.4,220.7,210.2,207.6,206.8,205.8,195,145.7,194.6,190.1,189.1,187.7,170.9,144.6,143.4 +790,151.9,231.4,228.6,228.1,227.5,220.8,210.3,207.7,206.9,205.9,195.1,145.7,194.7,190.3,189.2,187.8,171.1,144.6,143.4 +791,151.9,231.5,228.7,228.2,227.5,220.9,210.4,207.8,207,206.1,195.2,145.7,194.9,190.4,189.3,188,171.3,144.6,143.4 +792,151.9,231.6,228.8,228.3,227.6,220.9,210.5,207.9,207.2,206.2,195.3,145.8,195,190.5,189.5,188.1,171.5,144.6,143.4 +793,151.9,231.7,228.8,228.4,227.7,221,210.6,208,207.3,206.3,195.5,145.8,195.1,190.7,189.6,188.3,171.7,144.6,143.5 +794,152,231.8,228.9,228.4,227.8,221.1,210.7,208.1,207.4,206.4,195.6,145.8,195.2,190.8,189.8,188.4,171.9,144.7,143.5 +795,152,231.8,229,228.5,227.9,221.2,210.8,208.2,207.5,206.5,195.7,145.8,195.3,190.9,189.9,188.6,172.1,144.7,143.5 +796,152,231.9,229.1,228.6,228,221.3,210.9,208.3,207.6,206.6,195.8,145.8,195.4,191.1,190,188.7,172.2,144.7,143.5 +797,152,232,229.2,228.7,228,221.4,211,208.4,207.7,206.7,196,145.9,195.5,191.2,190.2,188.8,172.4,144.7,143.5 +798,152,232.1,229.2,228.8,228.1,221.4,211.1,208.6,207.8,206.8,196.1,145.9,195.6,191.3,190.3,189,172.6,144.7,143.5 +799,152,232.2,229.3,228.8,228.2,221.5,211.2,208.7,207.9,207,196.2,145.9,195.8,191.5,190.5,189.1,172.8,144.7,143.6 +800,152,232.3,229.4,228.9,228.3,221.6,211.3,208.8,208,207.1,196.4,145.9,195.9,191.6,190.6,189.3,173,144.8,143.6 +801,152,232.3,229.5,229,228.4,221.7,211.4,208.9,208.2,207.2,196.5,145.9,196,191.7,190.7,189.4,173.2,144.8,143.6 +802,152,232.4,229.6,229.1,228.5,221.8,211.5,209,208.3,207.3,196.6,146,196.1,191.9,190.9,189.5,173.4,144.8,143.6 +803,152.1,232.5,229.6,229.2,228.5,221.8,211.6,209.1,208.4,207.4,196.7,146,196.2,192,191,189.7,173.6,144.8,143.6 +804,152.1,232.6,229.7,229.3,228.6,221.9,211.7,209.2,208.5,207.5,196.9,146,196.3,192.1,191.1,189.8,173.8,144.8,143.6 +805,152.1,232.7,229.8,229.3,228.7,222,211.8,209.3,208.6,207.6,197,146,196.4,192.3,191.3,190,174,144.8,143.6 +806,152.1,232.8,229.9,229.4,228.8,222.1,211.9,209.4,208.7,207.7,197.1,146,196.5,192.4,191.4,190.1,174.2,144.9,143.7 +807,152.1,232.8,230,229.5,228.9,222.2,212,209.5,208.8,207.8,197.2,146.1,196.7,192.5,191.5,190.2,174.4,144.9,143.7 +808,152.1,232.9,230,229.6,228.9,222.3,212.1,209.6,208.9,207.9,197.4,146.1,196.8,192.7,191.7,190.4,174.6,144.9,143.7 +809,152.1,233,230.1,229.7,229,222.3,212.2,209.7,209,208.1,197.5,146.1,196.9,192.8,191.8,190.5,174.8,144.9,143.7 +810,152.1,233.1,230.2,229.7,229.1,222.4,212.3,209.8,209.1,208.2,197.6,146.1,197,192.9,191.9,190.7,175,144.9,143.7 +811,152.1,233.2,230.3,229.8,229.2,222.5,212.4,209.9,209.2,208.3,197.7,146.1,197.1,193.1,192.1,190.8,175.2,145,143.7 +812,152.1,233.3,230.4,229.9,229.3,222.6,212.5,210.1,209.3,208.4,197.9,146.2,197.2,193.2,192.2,190.9,175.4,145,143.8 +813,152.2,233.3,230.5,230,229.3,222.7,212.6,210.2,209.5,208.5,198,146.2,197.3,193.3,192.3,191.1,175.6,145,143.8 +814,152.2,233.4,230.5,230.1,229.4,222.7,212.7,210.3,209.6,208.6,198.1,146.3,197.4,193.5,192.5,191.2,175.7,145,143.8 +815,152.2,233.5,230.6,230.1,229.5,222.8,212.8,210.4,209.7,208.7,198.2,146.7,197.5,193.6,192.6,191.3,175.9,145,143.8 +816,152.2,233.6,230.7,230.2,229.6,222.9,212.9,210.5,209.8,208.8,198.4,147,197.7,193.7,192.7,191.5,176.1,145,143.8 +817,152.2,233.7,230.8,230.3,229.7,223,213,210.6,209.9,208.9,198.5,149.7,197.8,193.8,192.9,191.6,176.3,145.1,143.8 +818,152.2,233.8,230.9,230.4,229.8,223.1,213.1,210.7,210,209,198.6,149.9,197.9,194,193,191.7,176.5,145.1,143.8 +819,152.2,233.8,230.9,230.5,229.8,223.2,213.2,210.8,210.1,209.2,198.7,150.2,198,194.1,193.1,191.9,176.7,145.1,143.9 +820,152.2,233.9,231,230.5,229.9,223.2,213.3,210.9,210.2,209.3,198.9,150.4,198.1,194.2,193.3,192,176.9,145.1,143.9 +821,152.2,234,231.1,230.6,230,223.3,213.4,211,210.3,209.4,199,150.7,198.2,194.4,193.4,192.1,177.1,145.1,143.9 +822,152.3,234.1,231.2,230.7,230.1,223.4,213.5,211.1,210.4,209.5,199.1,150.9,198.3,194.5,193.5,192.3,177.3,145.2,143.9 +823,152.3,234.2,231.3,230.8,230.2,223.5,213.6,211.2,210.5,209.6,199.2,151.2,198.4,194.6,193.7,192.4,177.5,145.2,143.9 +824,152.3,234.3,231.3,230.9,230.2,223.6,213.7,211.3,210.6,209.7,199.3,151.4,198.5,194.7,193.8,192.5,177.7,145.2,143.9 +825,152.3,234.3,231.4,230.9,230.3,223.6,213.8,211.4,210.7,209.8,199.5,151.7,198.7,194.9,193.9,192.7,177.8,145.2,143.9 +826,152.3,234.4,231.5,231,230.4,223.7,213.9,211.5,210.8,209.9,199.6,151.9,198.8,195,194,192.8,178,145.2,144 +827,152.3,234.5,231.6,231.1,230.5,223.8,214,211.6,210.9,210,199.7,152.2,198.9,195.1,194.2,192.9,178.2,145.2,144 +828,152.3,234.6,231.6,231.2,230.6,223.9,214.1,211.7,211,210.1,199.8,152.4,199,195.2,194.3,193.1,178.4,145.3,144 +829,152.3,234.7,231.7,231.3,230.6,224,214.2,211.8,211.2,210.2,200,152.7,199.1,195.4,194.4,193.2,178.6,145.3,144 +830,152.3,234.8,231.8,231.3,230.7,224.1,214.3,211.9,211.3,210.3,200.1,152.9,199.2,195.5,194.6,193.3,178.8,145.3,144 +831,152.3,234.8,231.9,231.4,230.8,224.1,214.4,212,211.4,210.4,200.2,153.2,199.3,195.6,194.7,193.5,179,145.3,144 +832,152.4,234.9,232,231.5,230.9,224.2,214.5,212.1,211.5,210.5,200.3,153.4,199.4,195.7,194.8,193.6,179.1,145.3,144.1 +833,152.4,235,232,231.6,231,224.3,214.6,212.2,211.6,210.7,200.4,153.7,199.5,195.9,194.9,193.7,179.3,145.3,144.1 +834,152.4,235.1,232.1,231.7,231,224.4,214.7,212.4,211.7,210.8,200.6,153.9,199.6,196,195.1,193.9,179.5,145.4,144.1 +835,152.4,235.2,232.2,231.7,231.1,224.5,214.8,212.5,211.8,210.9,200.7,154.2,199.7,196.1,195.2,194,179.7,145.4,144.1 +836,152.4,235.3,232.3,231.8,231.2,224.5,214.9,212.6,211.9,211,200.8,155,199.9,196.2,195.3,194.1,179.9,145.4,144.1 +837,152.4,235.3,232.4,231.9,231.3,224.6,215,212.7,212,211.1,200.9,155.6,200,196.4,195.4,194.2,180.1,145.4,144.1 +838,152.4,235.4,232.4,232,231.4,224.7,215.1,212.8,212.1,211.2,201,156.3,200.1,196.5,195.6,194.4,180.2,145.4,144.1 +839,152.4,235.5,232.5,232.1,231.4,224.8,215.2,212.9,212.2,211.3,201.2,156.9,200.2,196.6,195.7,194.5,180.4,145.5,144.2 +840,152.4,235.6,232.6,232.1,231.5,224.9,215.3,213,212.3,211.4,201.3,157.4,200.3,196.7,195.8,194.6,180.6,145.5,144.2 +841,152.5,235.7,232.7,232.2,231.6,225,215.4,213.1,212.4,211.5,201.4,158,200.4,196.9,196,194.8,180.8,145.5,144.2 +842,152.5,235.7,232.8,232.3,231.7,225,215.5,213.2,212.5,211.6,201.5,158.5,200.5,197,196.1,194.9,181,145.5,144.2 +843,152.5,235.8,232.8,232.4,231.8,225.1,215.6,213.3,212.6,211.7,201.6,159,200.6,197.1,196.2,195,181.1,145.5,144.2 +844,152.5,235.9,232.9,232.5,231.8,225.2,215.7,213.4,212.7,211.8,201.8,159.5,200.7,197.2,196.3,195.1,181.3,145.5,144.2 +845,152.5,236,233,232.5,231.9,225.3,215.8,213.5,212.8,211.9,201.9,160,200.8,197.4,196.5,195.3,181.5,145.6,144.2 +846,152.5,236.1,233.1,232.6,232,225.4,215.8,213.6,212.9,212,202,160.3,200.9,197.5,196.6,195.4,181.7,145.6,144.3 +847,152.5,236.2,233.2,232.7,232.1,225.5,215.9,213.7,213,212.1,202.1,160.6,201.1,197.6,196.7,195.5,181.8,145.6,144.3 +848,152.5,236.2,233.2,232.8,232.2,225.5,216,213.8,213.1,212.2,202.2,160.9,201.2,197.7,196.8,195.7,182,145.6,144.3 +849,152.5,236.3,233.3,232.8,232.2,225.6,216.1,213.9,213.2,212.3,202.4,161.2,201.3,197.8,197,195.8,182.2,145.6,144.3 +850,152.5,236.4,233.4,232.9,232.3,225.7,216.2,214,213.3,212.4,202.5,161.5,201.4,198,197.1,195.9,182.3,145.6,144.3 +851,152.6,236.5,233.5,233,232.4,225.8,216.3,214.1,213.4,212.5,202.6,161.7,201.5,198.1,197.2,196,182.5,145.7,144.3 +852,152.6,236.6,233.5,233.1,232.5,225.9,216.4,214.2,213.5,212.6,202.7,162,201.6,198.2,197.3,196.2,182.7,145.7,144.4 +853,152.6,236.6,233.6,233.2,232.6,226,216.5,214.3,213.6,212.7,202.8,162.2,201.7,198.3,197.4,196.3,182.9,145.7,144.4 +854,152.6,236.7,233.7,233.2,232.6,226,216.6,214.4,213.7,212.8,203,162.5,201.8,198.4,197.6,196.4,183,145.7,144.4 +855,152.6,236.8,233.8,233.3,232.7,226.1,216.7,214.5,213.8,212.9,203.1,162.7,201.9,198.6,197.7,196.5,183.2,145.7,144.4 +856,152.6,236.9,233.9,233.4,232.8,226.2,216.8,214.6,213.9,213,203.2,162.9,202,198.7,197.8,196.7,183.4,145.7,144.4 +857,152.6,237,233.9,233.5,232.9,226.3,216.9,214.7,214,213.2,203.3,163.1,202.1,198.8,197.9,196.8,183.5,145.8,144.4 +858,152.6,237.1,234,233.6,232.9,226.4,217,214.8,214.1,213.3,203.4,163.4,202.2,198.9,198.1,196.9,183.7,145.8,144.4 +859,152.6,237.1,234.1,233.6,233,226.5,217.1,214.9,214.2,213.4,203.5,163.6,202.3,199.1,198.2,197,183.9,145.8,144.5 +860,152.6,237.2,234.2,233.7,233.1,226.5,217.2,215,214.3,213.5,203.7,163.8,202.5,199.2,198.3,197.2,184,145.8,144.5 +861,152.7,237.3,234.2,233.8,233.2,226.6,217.2,215,214.4,213.6,203.8,164,202.6,199.3,198.4,197.3,184.2,145.8,144.5 +862,152.7,237.4,234.3,233.9,233.3,226.7,217.3,215.1,214.5,213.7,203.9,164.2,202.7,199.4,198.5,197.4,184.4,145.9,144.5 +863,152.7,237.5,234.4,233.9,233.3,226.8,217.4,215.2,214.6,213.8,204,164.4,202.8,199.5,198.7,197.5,184.5,145.9,144.5 +864,152.7,237.5,234.5,234,233.4,226.9,217.5,215.3,214.7,213.9,204.1,164.6,202.9,199.7,198.8,197.7,184.7,145.9,144.5 +865,152.7,237.6,234.6,234.1,233.5,226.9,217.6,215.4,214.8,214,204.2,164.8,203,199.8,198.9,197.8,184.8,145.9,144.5 +866,152.7,237.7,234.6,234.2,233.6,227,217.7,215.5,214.9,214.1,204.4,164.9,203.1,199.9,199,197.9,185,145.9,144.6 +867,152.7,237.8,234.7,234.3,233.7,227.1,217.8,215.6,215,214.2,204.5,165.1,203.2,200,199.2,198,185.2,145.9,144.6 +868,152.7,237.9,234.8,234.3,233.7,227.2,217.9,215.7,215.1,214.3,204.6,165.3,203.3,200.1,199.3,198.2,185.3,146,144.6 +869,152.7,238,234.9,234.4,233.8,227.3,218,215.8,215.2,214.4,204.7,165.5,203.4,200.3,199.4,198.3,185.5,146,144.6 +870,152.7,238,234.9,234.5,233.9,227.4,218.1,215.9,215.3,214.5,204.8,165.7,203.5,200.4,199.5,198.4,185.6,146,144.6 +871,152.8,238.1,235,234.6,234,227.4,218.2,216,215.4,214.6,204.9,165.9,203.6,200.5,199.6,198.5,185.8,146,144.6 +872,152.8,238.2,235.1,234.7,234,227.5,218.2,216.1,215.5,214.7,205.1,166.1,203.7,200.6,199.8,198.6,185.9,146,144.6 +873,152.8,238.3,235.2,234.7,234.1,227.6,218.3,216.2,215.6,214.8,205.2,166.2,203.9,200.7,199.9,198.8,186.1,146,144.7 +874,152.8,238.4,235.3,234.8,234.2,227.7,218.4,216.3,215.7,214.9,205.3,166.4,204,200.8,200,198.9,186.3,146.1,144.7 +875,152.8,238.4,235.3,234.9,234.3,227.8,218.5,216.4,215.8,215,205.4,166.6,204.1,201,200.1,199,186.4,146.1,144.7 +876,152.8,238.5,235.4,235,234.4,227.9,218.6,216.5,215.9,215.1,205.5,166.8,204.2,201.1,200.2,199.1,186.6,146.1,144.7 +877,152.8,238.6,235.5,235,234.4,227.9,218.7,216.6,216,215.1,205.6,167,204.3,201.2,200.4,199.3,186.7,146.1,144.7 +878,152.8,238.7,235.6,235.1,234.5,228,218.8,216.7,216.1,215.2,205.8,167.1,204.4,201.3,200.5,199.4,186.9,146.1,144.7 +879,152.8,238.8,235.6,235.2,234.6,228.1,218.9,216.8,216.2,215.3,205.9,167.3,204.5,201.4,200.6,199.5,187,146.2,144.7 +880,152.8,238.8,235.7,235.3,234.7,228.2,219,216.9,216.3,215.4,206,167.5,204.6,201.6,200.7,199.6,187.2,146.2,144.8 +881,152.9,238.9,235.8,235.4,234.7,228.3,219.1,216.9,216.4,215.5,206.1,167.7,204.7,201.7,200.8,199.7,187.3,146.2,144.8 +882,152.9,239,235.9,235.4,234.8,228.4,219.1,217,216.4,215.6,206.2,167.8,204.8,201.8,201,199.9,187.5,146.2,144.8 +883,152.9,239.1,236,235.5,234.9,228.4,219.2,217.1,216.5,215.7,206.3,168,204.9,201.9,201.1,200,187.6,146.2,144.8 +884,152.9,239.2,236,235.6,235,228.5,219.3,217.2,216.6,215.8,206.4,168.2,205,202,201.2,200.1,187.8,146.2,144.8 +885,152.9,239.3,236.1,235.7,235.1,228.6,219.4,217.3,216.7,215.9,206.6,168.4,205.1,202.1,201.3,200.2,187.9,146.3,144.8 +886,152.9,239.3,236.2,235.7,235.1,228.7,219.5,217.4,216.8,216,206.7,168.6,205.2,202.3,201.4,200.3,188.1,146.3,144.8 +887,152.9,239.4,236.3,235.8,235.2,228.8,219.6,217.5,216.9,216.1,206.8,168.7,205.3,202.4,201.5,200.5,188.2,146.3,144.9 +888,152.9,239.5,236.3,235.9,235.3,228.9,219.7,217.6,217,216.2,206.9,168.9,205.4,202.5,201.7,200.6,188.4,146.3,144.9 +889,152.9,239.6,236.4,236,235.4,228.9,219.8,217.7,217.1,216.3,207,169.1,205.6,202.6,201.8,200.7,188.5,146.3,144.9 +890,152.9,239.7,236.5,236,235.4,229,219.8,217.8,217.2,216.4,207.1,169.3,205.7,202.7,201.9,200.8,188.7,146.3,144.9 +891,153,239.7,236.6,236.1,235.5,229.1,219.9,217.9,217.3,216.5,207.2,169.5,205.8,202.8,202,200.9,188.8,146.4,144.9 +892,153,239.8,236.7,236.2,235.6,229.2,220,218,217.4,216.6,207.4,169.7,205.9,203,202.1,201.1,189,146.4,144.9 +893,153,239.9,236.7,236.3,235.7,229.3,220.1,218,217.5,216.7,207.5,169.8,206,203.1,202.3,201.2,189.1,146.4,144.9 +894,153,240,236.8,236.4,235.8,229.3,220.2,218.1,217.6,216.8,207.6,170,206.1,203.2,202.4,201.3,189.3,146.4,145 +895,153,240.1,236.9,236.4,235.8,229.4,220.3,218.2,217.7,216.9,207.7,170.2,206.2,203.3,202.5,201.4,189.4,146.4,145 +896,153,240.1,237,236.5,235.9,229.5,220.4,218.3,217.8,217,207.8,170.4,206.3,203.4,202.6,201.5,189.5,146.5,145 +897,153,240.2,237,236.6,236,229.6,220.4,218.4,217.8,217.1,207.9,170.6,206.4,203.5,202.7,201.6,189.7,146.5,145 +898,153,240.3,237.1,236.7,236.1,229.7,220.5,218.5,217.9,217.2,208,170.8,206.5,203.6,202.8,201.8,189.8,146.5,145 +899,153,240.4,237.2,236.7,236.1,229.8,220.6,218.6,218,217.2,208.1,171,206.6,203.8,203,201.9,190,146.5,145 +900,153,240.5,237.3,236.8,236.2,229.8,220.7,218.7,218.1,217.3,208.3,171.1,206.7,203.9,203.1,202,190.1,146.5,145 +901,153.1,240.5,237.3,236.9,236.3,229.9,220.8,218.8,218.2,217.4,208.4,171.3,206.8,204,203.2,202.1,190.3,146.5,145.1 +902,153.1,240.6,237.4,237,236.4,230,220.9,218.9,218.3,217.5,208.5,171.5,206.9,204.1,203.3,202.2,190.4,146.6,145.1 +903,153.1,240.7,237.5,237,236.5,230.1,221,218.9,218.4,217.6,208.6,171.7,207,204.2,203.4,202.4,190.5,146.6,145.1 +904,153.1,240.8,237.6,237.1,236.5,230.2,221,219,218.5,217.7,208.7,171.9,207.1,204.3,203.5,202.5,190.7,146.6,145.1 +905,153.1,240.9,237.6,237.2,236.6,230.2,221.1,219.1,218.6,217.8,208.8,172.1,207.2,204.5,203.7,202.6,190.8,146.6,145.1 +906,153.1,240.9,237.7,237.3,236.7,230.3,221.2,219.2,218.7,217.9,208.9,172.3,207.4,204.6,203.8,202.7,191,146.6,145.1 +907,153.1,241,237.8,237.4,236.8,230.4,221.3,219.3,218.7,218,209,172.5,207.5,204.7,203.9,202.8,191.1,146.6,145.1 +908,153.1,241.1,237.9,237.4,236.8,230.5,221.4,219.4,218.8,218.1,209.2,172.7,207.6,204.8,204,202.9,191.3,146.7,145.2 +909,153.1,241.2,238,237.5,236.9,230.6,221.5,219.5,218.9,218.2,209.3,172.9,207.7,204.9,204.1,203.1,191.4,146.7,145.2 +910,153.1,241.3,238,237.6,237,230.7,221.6,219.6,219,218.3,209.4,173.1,207.8,205,204.2,203.2,191.5,146.7,145.2 +911,153.2,241.3,238.1,237.7,237.1,230.7,221.6,219.6,219.1,218.4,209.5,173.2,207.9,205.1,204.3,203.3,191.7,146.7,145.2 +912,153.2,241.4,238.2,237.7,237.1,230.8,221.7,219.7,219.2,218.4,209.6,173.4,208,205.2,204.5,203.4,191.8,146.7,145.2 +913,153.2,241.5,238.3,237.8,237.2,230.9,221.8,219.8,219.3,218.5,209.7,173.6,208.1,205.4,204.6,203.5,191.9,146.8,145.2 +914,153.2,241.6,238.3,237.9,237.3,231,221.9,219.9,219.4,218.6,209.8,173.8,208.2,205.5,204.7,203.6,192.1,146.8,145.2 +915,153.2,241.7,238.4,238,237.4,231.1,222,220,219.4,218.7,209.9,174,208.3,205.6,204.8,203.8,192.2,146.8,145.3 +916,153.2,241.8,238.5,238,237.5,231.1,222.1,220.1,219.5,218.8,210,174.2,208.4,205.7,204.9,203.9,192.4,146.8,145.3 +917,153.2,241.8,238.6,238.1,237.5,231.2,222.1,220.2,219.6,218.9,210.1,174.4,208.5,205.8,205,204,192.5,146.8,145.3 +918,153.2,241.9,238.6,238.2,237.6,231.3,222.2,220.2,219.7,219,210.3,174.6,208.6,205.9,205.2,204.1,192.6,146.8,145.3 +919,153.2,242,238.7,238.3,237.7,231.4,222.3,220.3,219.8,219.1,210.4,174.8,208.7,206,205.3,204.2,192.8,146.9,145.3 +920,153.2,242.1,238.8,238.3,237.8,231.5,222.4,220.4,219.9,219.2,210.5,175,208.8,206.2,205.4,204.3,192.9,146.9,145.3 +921,153.2,242.2,238.9,238.4,237.8,231.5,222.5,220.5,220,219.2,210.6,175.2,208.9,206.3,205.5,204.5,193,146.9,145.3 +922,153.3,242.2,238.9,238.5,237.9,231.6,222.5,220.6,220.1,219.3,210.7,175.4,209,206.4,205.6,204.6,193.2,146.9,145.4 +923,153.3,242.3,239,238.6,238,231.7,222.6,220.7,220.1,219.4,210.8,175.6,209.1,206.5,205.7,204.7,193.3,146.9,145.4 +924,153.3,242.4,239.1,238.7,238.1,231.8,222.7,220.7,220.2,219.5,210.9,175.8,209.2,206.6,205.8,204.8,193.4,146.9,145.4 +925,153.3,242.5,239.2,238.7,238.1,231.9,222.8,220.8,220.3,219.6,211,176,209.3,206.7,205.9,204.9,193.6,147,145.4 +926,153.3,242.6,239.3,238.8,238.2,231.9,222.9,220.9,220.4,219.7,211.1,176.2,209.4,206.8,206.1,205,193.7,147,145.4 +927,153.3,242.6,239.3,238.9,238.3,232,223,221,220.5,219.8,211.2,176.4,209.5,206.9,206.2,205.1,193.8,147,145.4 +928,153.3,242.7,239.4,239,238.4,232.1,223,221.1,220.6,219.9,211.3,176.6,209.6,207.1,206.3,205.3,194,147,145.4 +929,153.3,242.8,239.5,239,238.4,232.2,223.1,221.2,220.7,219.9,211.4,176.8,209.8,207.2,206.4,205.4,194.1,147,145.5 +930,153.3,242.9,239.6,239.1,238.5,232.3,223.2,221.2,220.7,220,211.6,176.9,209.9,207.3,206.5,205.5,194.2,147.1,145.5 +931,153.3,243,239.6,239.2,238.6,232.3,223.3,221.3,220.8,220.1,211.7,177.1,210,207.4,206.6,205.6,194.4,147.1,145.5 +932,153.4,243,239.7,239.3,238.7,232.4,223.4,221.4,220.9,220.2,211.8,177.3,210.1,207.5,206.7,205.7,194.5,147.1,145.5 +933,153.4,243.1,239.8,239.3,238.8,232.5,223.4,221.5,221,220.3,211.9,177.5,210.2,207.6,206.9,205.8,194.6,147.1,145.5 +934,153.4,243.2,239.9,239.4,238.8,232.6,223.5,221.6,221.1,220.4,212,177.7,210.3,207.7,207,205.9,194.8,147.1,145.5 +935,153.4,243.3,239.9,239.5,238.9,232.7,223.6,221.7,221.2,220.5,212.1,177.9,210.4,207.8,207.1,206.1,194.9,147.1,145.5 +936,153.4,243.4,240,239.6,239,232.7,223.7,221.7,221.2,220.5,212.2,178.1,210.5,207.9,207.2,206.2,195,147.2,145.5 +937,153.4,243.4,240.1,239.6,239.1,232.8,223.8,221.8,221.3,220.6,212.3,178.3,210.6,208,207.3,206.3,195.2,147.2,145.6 +938,153.4,243.5,240.2,239.7,239.1,232.9,223.9,221.9,221.4,220.7,212.4,178.5,210.7,208.2,207.4,206.4,195.3,147.2,145.6 +939,153.4,243.6,240.2,239.8,239.2,233,223.9,222,221.5,220.8,212.5,178.7,210.8,208.3,207.5,206.5,195.4,147.2,145.6 +940,153.4,243.7,240.3,239.9,239.3,233.1,224,222.1,221.6,220.9,212.6,178.9,210.9,208.4,207.6,206.6,195.6,147.2,145.6 +941,153.4,243.8,240.4,239.9,239.4,233.1,224.1,222.2,221.7,221,212.7,179.1,211,208.5,207.7,206.7,195.7,147.3,145.6 +942,153.4,243.8,240.5,240,239.4,233.2,224.2,222.2,221.7,221.1,212.8,179.2,211.1,208.6,207.9,206.9,195.8,147.3,145.6 +943,153.5,243.9,240.5,240.1,239.5,233.3,224.3,222.3,221.8,221.1,212.9,179.4,211.2,208.7,208,207,195.9,147.3,145.6 +944,153.5,244,240.6,240.2,239.6,233.4,224.3,222.4,221.9,221.2,213,179.6,211.3,208.8,208.1,207.1,196.1,147.3,145.7 +945,153.5,244.1,240.7,240.3,239.7,233.5,224.4,222.5,222,221.3,213.2,179.8,211.4,208.9,208.2,207.2,196.2,147.3,145.7 +946,153.5,244.1,240.8,240.3,239.7,233.5,224.5,222.6,222.1,221.4,213.3,180,211.5,209,208.3,207.3,196.3,147.3,145.7 +947,153.5,244.2,240.8,240.4,239.8,233.6,224.6,222.6,222.1,221.5,213.4,180.2,211.6,209.1,208.4,207.4,196.5,147.4,145.7 +948,153.5,244.3,240.9,240.5,239.9,233.7,224.7,222.7,222.2,221.6,213.5,180.4,211.7,209.3,208.5,207.5,196.6,147.4,145.7 +949,153.5,244.4,241,240.6,240,233.8,224.7,222.8,222.3,221.6,213.6,180.6,211.8,209.4,208.6,207.6,196.7,147.4,145.7 +950,153.5,244.5,241.1,240.6,240,233.8,224.8,222.9,222.4,221.7,213.7,180.7,211.9,209.5,208.7,207.7,196.8,147.4,145.7 +951,153.5,244.5,241.1,240.7,240.1,233.9,224.9,223,222.5,221.8,213.8,180.9,212,209.6,208.9,207.9,197,147.4,145.8 +952,153.5,244.6,241.2,240.8,240.2,234,225,223,222.6,221.9,213.9,181.1,212.1,209.7,209,208,197.1,147.5,145.8 +953,153.5,244.7,241.3,240.9,240.3,234.1,225.1,223.1,222.6,222,214,181.3,212.2,209.8,209.1,208.1,197.2,147.5,145.8 +954,153.6,244.8,241.4,240.9,240.3,234.2,225.2,223.2,222.7,222.1,214.1,181.5,212.3,209.9,209.2,208.2,197.4,147.5,145.8 +955,153.6,244.9,241.4,241,240.4,234.2,225.2,223.3,222.8,222.1,214.2,181.6,212.4,210,209.3,208.3,197.5,147.5,145.8 +956,153.6,244.9,241.5,241.1,240.5,234.3,225.3,223.4,222.9,222.2,214.3,181.8,212.5,210.1,209.4,208.4,197.6,147.5,145.8 +957,153.6,245,241.6,241.2,240.6,234.4,225.4,223.4,223,222.3,214.4,182,212.6,210.2,209.5,208.5,197.7,147.5,145.8 +958,153.6,245.1,241.7,241.2,240.6,234.5,225.5,223.5,223,222.4,214.5,182.2,212.7,210.3,209.6,208.6,197.9,147.6,145.9 +959,153.6,245.2,241.8,241.3,240.7,234.6,225.6,223.6,223.1,222.5,214.6,182.4,212.8,210.4,209.7,208.7,198,147.6,145.9 +960,153.6,245.3,241.8,241.4,240.8,234.6,225.6,223.7,223.2,222.5,214.7,182.5,212.9,210.5,209.8,208.9,198.1,147.6,145.9 +961,153.6,245.3,241.9,241.5,240.9,234.7,225.7,223.8,223.3,222.6,214.8,182.7,213,210.7,209.9,209,198.2,147.6,145.9 +962,153.6,245.4,242,241.5,241,234.8,225.8,223.8,223.4,222.7,214.9,182.9,213.1,210.8,210,209.1,198.4,147.6,145.9 +963,153.6,245.5,242.1,241.6,241,234.9,225.9,223.9,223.4,222.8,215,183.1,213.2,210.9,210.2,209.2,198.5,147.7,145.9 +964,153.6,245.6,242.1,241.7,241.1,234.9,226,224,223.5,222.9,215.1,183.2,213.3,211,210.3,209.3,198.6,147.7,145.9 +965,153.7,245.7,242.2,241.8,241.2,235,226,224.1,223.6,222.9,215.2,183.4,213.4,211.1,210.4,209.4,198.7,147.7,145.9 +966,153.7,245.7,242.3,241.8,241.3,235.1,226.1,224.2,223.7,223,215.3,183.6,213.5,211.2,210.5,209.5,198.9,147.7,146 +967,153.7,245.8,242.4,241.9,241.3,235.2,226.2,224.2,223.8,223.1,215.4,183.8,213.6,211.3,210.6,209.6,199,147.7,146 +968,153.7,245.9,242.4,242,241.4,235.3,226.3,224.3,223.8,223.2,215.5,183.9,213.7,211.4,210.7,209.7,199.1,147.7,146 +969,153.7,246,242.5,242.1,241.5,235.3,226.4,224.4,223.9,223.3,215.6,184.1,213.8,211.5,210.8,209.8,199.2,147.8,146 +970,153.7,246.1,242.6,242.1,241.6,235.4,226.5,224.5,224,223.4,215.7,184.3,213.9,211.6,210.9,210,199.4,147.8,146 +971,153.7,246.1,242.7,242.2,241.6,235.5,226.5,224.6,224.1,223.4,215.8,184.4,214,211.7,211,210.1,199.5,147.8,146 +972,153.7,246.2,242.7,242.3,241.7,235.6,226.6,224.6,224.2,223.5,215.9,184.6,214.1,211.8,211.1,210.2,199.6,148.2,146 +973,153.7,246.3,242.8,242.4,241.8,235.6,226.7,224.7,224.2,223.6,216,184.8,214.2,211.9,211.2,210.3,199.7,148.6,146.1 +974,153.7,246.4,242.9,242.4,241.9,235.7,226.8,224.8,224.3,223.7,216.1,184.9,214.3,212,211.3,210.4,199.9,150.2,146.1 +975,153.7,246.5,243,242.5,241.9,235.8,226.9,224.9,224.4,223.8,216.2,185.1,214.4,212.1,211.4,210.5,200,152,146.1 +976,153.8,246.5,243,242.6,242,235.9,226.9,225,224.5,223.8,216.3,185.3,214.5,212.2,211.5,210.6,200.1,152.2,146.1 +977,153.8,246.6,243.1,242.7,242.1,236,227,225,224.6,223.9,216.4,185.4,214.6,212.3,211.7,210.7,200.2,152.4,146.1 +978,153.8,246.7,243.2,242.7,242.2,236,227.1,225.1,224.6,224,216.5,185.6,214.7,212.4,211.8,210.8,200.4,152.6,146.1 +979,153.8,246.8,243.3,242.8,242.2,236.1,227.2,225.2,224.7,224.1,216.6,185.8,214.8,212.6,211.9,210.9,200.5,152.8,146.1 +980,153.8,246.9,243.3,242.9,242.3,236.2,227.3,225.3,224.8,224.2,216.7,185.9,214.9,212.7,212,211,200.6,153,146.2 +981,153.8,246.9,243.4,243,242.4,236.3,227.4,225.4,224.9,224.2,216.8,186.1,215,212.8,212.1,211.1,200.7,153.2,146.2 +982,153.8,247,243.5,243,242.5,236.3,227.4,225.4,225,224.3,216.9,186.3,215.1,212.9,212.2,211.2,200.8,153.4,146.2 +983,153.8,247.1,243.6,243.1,242.5,236.4,227.5,225.5,225,224.4,217,186.4,215.2,213,212.3,211.4,201,153.6,146.2 +984,153.8,247.2,243.6,243.2,242.6,236.5,227.6,225.6,225.1,224.5,217.1,186.6,215.3,213.1,212.4,211.5,201.1,153.8,146.2 +985,153.8,247.3,243.7,243.3,242.7,236.6,227.7,225.7,225.2,224.6,217.2,186.7,215.4,213.2,212.5,211.6,201.2,154,146.2 +986,153.8,247.3,243.8,243.3,242.8,236.7,227.8,225.8,225.3,224.6,217.3,186.9,215.5,213.3,212.6,211.7,201.3,154.2,146.2 +987,153.9,247.4,243.9,243.4,242.8,236.7,227.8,225.8,225.4,224.7,217.4,187.1,215.6,213.4,212.7,211.8,201.4,154.4,146.2 +988,153.9,247.5,243.9,243.5,242.9,236.8,227.9,225.9,225.4,224.8,217.5,187.2,215.7,213.5,212.8,211.9,201.6,154.6,146.3 +989,153.9,247.6,244,243.6,243,236.9,228,226,225.5,224.9,217.6,187.4,215.8,213.6,212.9,212,201.7,154.9,146.3 +990,153.9,247.6,244.1,243.6,243.1,237,228.1,226.1,225.6,225,217.7,187.5,215.9,213.7,213,212.1,201.8,155.1,146.3 +991,153.9,247.7,244.2,243.7,243.1,237,228.2,226.2,225.7,225,217.8,187.7,216,213.8,213.1,212.2,201.9,155.3,146.3 +992,153.9,247.8,244.2,243.8,243.2,237.1,228.3,226.2,225.8,225.1,217.9,187.8,216,213.9,213.2,212.3,202.1,155.5,146.3 +993,153.9,247.9,244.3,243.9,243.3,237.2,228.3,226.3,225.8,225.2,218,188,216.1,214,213.3,212.4,202.2,155.7,146.3 +994,153.9,248,244.4,243.9,243.4,237.3,228.4,226.4,225.9,225.3,218.1,188.2,216.2,214.1,213.4,212.5,202.3,155.9,146.3 +995,153.9,248,244.5,244,243.4,237.3,228.5,226.5,226,225.4,218.2,188.3,216.3,214.2,213.5,212.6,202.4,157,146.4 +996,153.9,248.1,244.5,244.1,243.5,237.4,228.6,226.6,226.1,225.4,218.3,188.5,216.4,214.3,213.6,212.7,202.5,157.6,146.4 +997,153.9,248.2,244.6,244.2,243.6,237.5,228.7,226.6,226.2,225.5,218.3,188.6,216.5,214.4,213.7,212.8,202.7,158.2,146.4 +998,154,248.3,244.7,244.2,243.7,237.6,228.8,226.7,226.2,225.6,218.4,188.8,216.6,214.5,213.8,212.9,202.8,158.7,146.4 +999,154,248.4,244.8,244.3,243.7,237.7,228.8,226.8,226.3,225.7,218.5,188.9,216.7,214.6,213.9,213,202.9,159.3,146.4 +1000,154,248.4,244.8,244.4,243.8,237.7,228.9,226.9,226.4,225.8,218.6,189.1,216.8,214.7,214,213.1,203,159.8,146.4 diff --git a/test/Data Tables/100 MHz - Lb(0.05)_P528.csv b/test/Data Tables/100 MHz - Lb(0.05)_P528.csv new file mode 100644 index 0000000..ccdbb5d --- /dev/null +++ b/test/Data Tables/100 MHz - Lb(0.05)_P528.csv @@ -0,0 +1,1005 @@ +100MHz / Lb(0.05) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,72.4,68.3,68.2,68,67.8,0,88.3,88.3,88.3,88.2,87.4,0,94.3,94.3,94.3,94.3,93.9,88.3,0 +1,75.4,70.8,70.8,70.8,70.8,70,88.3,88.3,88.3,88.3,87.9,72.1,94.3,94.3,94.3,94.3,94.1,90.7,72.2 +2,79.4,75.1,74.5,74.5,74.5,74.8,88.3,88.3,88.3,88.3,88,77.9,94.3,94.3,94.3,94.3,94.1,90.8,78.1 +3,82.4,80.1,77.4,77.4,77.4,77.7,88.4,88.4,88.4,88.4,88.1,81.1,94.3,94.3,94.3,94.3,94.1,90.9,81.5 +4,84.7,83.6,79.6,79.6,79.6,79.9,88.6,88.6,88.6,88.6,88.3,83.4,94.3,94.3,94.3,94.3,94.1,91.1,83.9 +5,86.6,85.9,81.4,81.4,81.4,81.6,88.9,88.9,88.9,88.8,88.6,85.1,94.3,94.3,94.3,94.3,94.2,91.3,85.7 +6,88.1,88.8,82.9,82.9,82.9,83.1,89.1,89.1,89.1,89.1,88.9,86.4,94.4,94.4,94.4,94.4,94.2,91.6,87.2 +7,89.4,91.3,84.2,84.2,84.2,84.3,89.5,89.5,89.5,89.5,89.3,87.5,94.5,94.5,94.5,94.5,94.3,91.9,88.4 +8,90.6,93.5,85.3,85.3,85.3,85.4,89.8,89.8,89.8,89.8,89.7,88.5,94.6,94.5,94.5,94.5,94.4,92.3,89.4 +9,91.6,95.5,86.3,86.3,86.3,86.4,90.2,90.2,90.2,90.2,90.1,89.3,94.7,94.7,94.7,94.6,94.5,92.6,90.3 +10,92.5,97.2,87.2,87.2,87.2,87.3,90.6,90.6,90.6,90.6,90.5,90,94.8,94.8,94.8,94.8,94.7,92.9,91.1 +11,93.3,98.8,88,88,88,88.1,91,91,91,91,90.9,90.7,94.9,94.9,94.9,94.9,94.8,93.3,91.8 +12,94.1,100.3,88.7,88.7,88.7,88.8,91.4,91.4,91.4,91.4,91.3,91.2,95.1,95.1,95.1,95,95,93.6,92.4 +13,94.8,101.7,89.4,89.4,89.4,89.5,91.8,91.8,91.8,91.8,91.7,91.8,95.2,95.2,95.2,95.2,95.1,94,93 +14,95.4,103,90,90,90,90.1,92.2,92.2,92.2,92.2,92.1,92.3,95.4,95.4,95.4,95.4,95.3,94.3,93.5 +15,96,104.1,90.6,90.6,90.6,90.7,92.6,92.6,92.6,92.6,92.5,92.8,95.6,95.6,95.5,95.5,95.5,94.6,94 +16,96.5,105.3,91.2,91.2,91.2,91.3,93.1,92.9,92.9,92.9,92.9,93.2,95.7,95.7,95.7,95.7,95.7,94.9,94.5 +17,97.1,106.3,91.7,91.7,91.7,91.8,93.6,93.3,93.3,93.3,93.3,93.6,95.9,95.9,95.9,95.9,95.9,95.2,94.9 +18,97.6,107.3,92.2,92.2,92.2,92.3,94.1,93.7,93.7,93.7,93.7,94,96.1,96.1,96.1,96.1,96.1,95.5,95.3 +19,98,108.2,92.7,92.7,92.7,92.7,94.7,94,94,94,94,94.4,96.3,96.3,96.3,96.3,96.3,95.8,95.7 +20,98.5,109.1,93.2,93.1,93.1,93.2,95.2,94.4,94.4,94.4,94.4,94.7,96.5,96.5,96.5,96.5,96.5,96.1,96 +21,98.9,110,93.7,93.5,93.5,93.6,95.8,94.7,94.7,94.7,94.7,95.1,96.7,96.7,96.7,96.7,96.7,96.3,96.3 +22,99.3,110.8,94.3,93.9,93.9,94,96.4,95,95,95,95,95.4,96.9,96.9,96.9,96.9,96.9,96.6,96.7 +23,99.7,111.6,94.8,94.3,94.3,94.4,96.9,95.3,95.3,95.3,95.3,95.7,97.1,97.1,97.1,97.1,97.1,96.8,97 +24,100.1,112.4,95.4,94.7,94.7,94.7,97.5,95.6,95.6,95.6,95.6,96,97.3,97.3,97.3,97.3,97.3,97.1,97.2 +25,100.4,113.1,96,95,95,95.1,98,95.9,95.9,95.9,95.9,96.3,97.5,97.5,97.5,97.5,97.5,97.3,97.5 +26,100.8,113.8,96.6,95.4,95.4,95.4,98.6,96.2,96.2,96.2,96.2,96.6,97.7,97.7,97.7,97.7,97.7,97.6,97.8 +27,101.1,114.5,97.2,95.7,95.7,95.7,99.1,96.5,96.5,96.5,96.5,96.8,97.9,97.9,97.9,97.9,97.9,97.8,98 +28,101.4,115.1,97.8,96,96,96.1,99.6,96.8,96.8,96.8,96.8,97.1,98.1,98.1,98.1,98.1,98.1,98,98.3 +29,101.7,115.7,98.3,96.3,96.3,96.4,100,97,97,97,97,97.4,98.3,98.3,98.3,98.3,98.3,98.2,98.5 +30,102,116.4,98.9,96.6,96.6,96.7,100.5,97.3,97.3,97.3,97.3,97.6,98.6,98.5,98.5,98.5,98.5,98.5,98.7 +31,102.3,116.9,99.4,96.9,96.9,96.9,100.9,97.5,97.5,97.5,97.5,97.9,98.8,98.7,98.7,98.7,98.7,98.7,99 +32,102.6,117.5,99.9,97.1,97.2,97.2,101.3,97.8,97.8,97.8,97.8,98.1,99.1,98.9,98.9,98.9,98.9,98.9,99.2 +33,102.8,118.1,100.4,97.4,97.4,97.5,101.6,98,98,98,98,98.3,99.4,99.1,99.1,99.1,99.1,99.1,99.4 +34,103.1,118.6,100.9,97.7,97.7,97.7,102,98.3,98.3,98.3,98.3,98.6,99.6,99.3,99.3,99.3,99.2,99.3,99.6 +35,103.3,119.1,101.3,97.9,97.9,98,102.3,98.5,98.5,98.5,98.5,98.8,99.9,99.4,99.4,99.4,99.4,99.5,99.8 +36,103.6,119.6,101.7,98.2,98.2,98.2,102.6,98.7,98.7,98.7,98.7,99,100.2,99.6,99.6,99.6,99.6,99.7,100 +37,103.8,120.1,102.1,98.4,98.4,98.5,102.9,98.9,98.9,98.9,98.9,99.2,100.5,99.8,99.8,99.8,99.8,99.8,100.2 +38,104,120.6,102.4,98.7,98.6,98.7,103.2,99.1,99.1,99.1,99.1,99.4,100.8,100,100,100,100,100,100.3 +39,104.3,121.1,102.8,99,98.9,98.9,103.5,99.3,99.3,99.3,99.3,99.6,101.1,100.1,100.1,100.1,100.1,100.2,100.5 +40,104.5,121.6,103.1,99.3,99.1,99.2,103.7,99.5,99.5,99.5,99.6,99.8,101.4,100.3,100.3,100.3,100.3,100.4,100.7 +41,104.7,122,103.4,99.6,99.3,99.4,104,99.7,99.7,99.7,99.7,100,101.7,100.5,100.5,100.5,100.5,100.6,100.9 +42,104.9,122.5,103.6,99.9,99.5,99.6,104.2,99.9,99.9,99.9,99.9,100.2,102,100.7,100.7,100.7,100.6,100.7,101 +43,105.1,122.9,103.9,100.2,99.7,99.8,104.4,100.1,100.1,100.1,100.1,100.4,102.3,100.8,100.8,100.8,100.8,100.9,101.2 +44,105.3,123.3,104.1,100.5,99.9,100,104.6,100.3,100.3,100.3,100.3,100.5,102.6,101,101,101,101,101.1,101.4 +45,105.5,123.7,104.3,100.8,100.1,100.2,104.9,100.5,100.5,100.5,100.5,100.7,102.9,101.1,101.1,101.1,101.1,101.2,101.5 +46,105.7,124.2,104.5,101.2,100.3,100.4,105.3,100.7,100.7,100.7,100.7,100.9,103.2,101.3,101.3,101.3,101.3,101.4,101.7 +47,105.9,124.5,104.7,101.5,100.5,100.6,105.6,100.8,100.8,100.8,100.9,101.1,103.4,101.5,101.5,101.5,101.4,101.5,101.8 +48,106.1,124.9,104.9,101.8,100.6,100.7,105.9,101,101,101,101,101.2,103.7,101.6,101.6,101.6,101.6,101.7,102 +49,106.3,125.2,105.2,102.2,100.8,100.9,106.3,101.2,101.2,101.2,101.2,101.4,104,101.8,101.8,101.8,101.8,101.8,102.1 +50,106.4,125.6,105.5,102.5,101,101.1,106.6,101.4,101.4,101.4,101.4,101.6,104.3,101.9,101.9,101.9,101.9,102,102.3 +51,106.6,125.9,105.9,102.9,101.2,101.3,106.9,101.5,101.5,101.5,101.5,101.7,104.5,102,102,102,102,102.1,102.4 +52,106.8,126.3,106.2,103.2,101.3,101.4,107.2,101.7,101.7,101.7,101.7,101.9,104.8,102.2,102.2,102.2,102.2,102.3,102.5 +53,106.9,126.6,106.6,103.5,101.5,101.6,107.5,101.8,101.8,101.8,101.8,102,105.1,102.3,102.3,102.3,102.3,102.4,102.7 +54,107.1,126.9,106.9,103.9,101.6,101.8,107.8,102,102,102,102,102.2,105.3,102.5,102.5,102.5,102.5,102.6,102.8 +55,107.3,127.3,107.3,104.2,101.8,101.9,108.1,102.1,102.1,102.1,102.1,102.3,105.5,102.6,102.6,102.6,102.6,102.7,103 +56,107.4,127.6,107.6,104.5,101.9,102.1,108.4,102.3,102.3,102.3,102.3,102.5,105.8,102.7,102.7,102.7,102.7,102.8,103.1 +57,107.6,127.9,107.9,104.8,102.1,102.2,108.7,102.4,102.4,102.4,102.4,102.6,106,102.9,102.9,102.9,102.9,103,103.2 +58,107.7,128.2,108.3,105.1,102.2,102.4,109,102.6,102.6,102.6,102.6,102.8,106.2,103,103,103,103,103.1,103.3 +59,107.9,128.5,108.6,105.4,102.4,102.5,109.3,102.7,102.7,102.7,102.7,102.9,106.5,103.1,103.1,103.1,103.1,103.2,103.5 +60,108,128.8,108.9,105.6,102.5,102.7,109.6,102.9,102.9,102.9,102.9,103,106.7,103.3,103.3,103.3,103.3,103.4,103.6 +61,108.2,129.2,109.2,105.9,102.7,102.8,109.8,103,103,103,103,103.2,106.9,103.4,103.4,103.4,103.4,103.5,103.7 +62,108.3,129.5,109.5,106.1,102.8,103,110.1,103.1,103.1,103.1,103.1,103.3,107.1,103.5,103.5,103.5,103.5,103.6,103.8 +63,108.4,129.8,109.8,106.3,102.9,103.1,110.4,103.3,103.3,103.3,103.3,103.4,107.3,103.7,103.7,103.7,103.7,103.7,104 +64,108.6,130,110.1,106.5,103.1,103.3,110.6,103.4,103.4,103.4,103.4,103.6,107.5,103.8,103.8,103.8,103.8,103.9,104.1 +65,108.7,130.3,110.5,106.7,103.3,103.4,110.9,103.5,103.5,103.5,103.5,103.7,107.6,103.9,103.9,103.9,103.9,104,104.2 +66,108.8,130.6,110.8,106.9,103.4,103.5,111.2,103.7,103.7,103.7,103.7,103.8,107.8,104,104,104,104,104.1,104.3 +67,109,130.9,111.1,107.1,103.6,103.7,111.4,103.8,103.8,103.8,103.8,103.9,108,104.1,104.1,104.1,104.1,104.2,104.4 +68,109.1,131.2,111.4,107.2,103.8,103.8,111.7,103.9,103.9,103.9,103.9,104.1,108.2,104.2,104.2,104.2,104.3,104.3,104.5 +69,109.2,131.5,111.6,107.4,104,103.9,111.9,104,104,104,104,104.2,108.3,104.4,104.4,104.4,104.4,104.4,104.6 +70,109.4,131.7,111.9,107.5,104.2,104,112.1,104.1,104.1,104.2,104.2,104.3,108.5,104.5,104.5,104.5,104.5,104.6,104.8 +71,109.5,132,112.2,107.6,104.4,104.2,112.4,104.3,104.3,104.3,104.3,104.4,108.6,104.6,104.6,104.6,104.6,104.7,104.9 +72,109.6,132.3,112.5,107.7,104.6,104.3,112.6,104.4,104.4,104.4,104.4,104.5,108.8,104.7,104.7,104.7,104.7,104.8,105 +73,109.7,132.6,112.8,107.8,104.8,104.4,112.9,104.5,104.5,104.5,104.5,104.6,108.9,104.8,104.8,104.8,104.8,104.9,105.1 +74,109.8,132.8,113.1,107.9,105,104.5,113.1,104.6,104.6,104.6,104.6,104.8,109.1,104.9,104.9,104.9,104.9,105,105.2 +75,110,133.1,113.4,108,105.3,104.6,113.3,104.7,104.7,104.7,104.7,104.9,109.2,105,105,105,105,105.1,105.3 +76,110.1,133.3,113.7,108.1,105.5,104.8,113.5,104.8,104.8,104.8,104.9,105,109.3,105.1,105.1,105.1,105.1,105.2,105.4 +77,110.2,133.6,113.9,108.2,105.7,104.9,113.8,105,105,105,105,105.1,109.5,105.2,105.2,105.2,105.2,105.3,105.5 +78,110.3,133.8,114.2,108.5,106,105,114,105.1,105.1,105.1,105.1,105.2,109.6,105.3,105.3,105.3,105.3,105.4,105.6 +79,110.4,134.1,114.5,108.8,106.2,105.1,114.2,105.2,105.2,105.2,105.2,105.3,109.7,105.4,105.4,105.4,105.4,105.5,105.7 +80,110.5,134.3,114.8,109,106.5,105.2,114.4,105.3,105.3,105.3,105.3,105.4,109.8,105.5,105.5,105.5,105.5,105.6,105.8 +81,110.6,134.6,115,109.3,106.7,105.3,114.6,105.4,105.4,105.4,105.4,105.5,109.9,105.6,105.6,105.6,105.6,105.7,105.9 +82,110.7,134.8,115.3,109.6,106.9,105.4,114.9,105.5,105.5,105.5,105.5,105.6,110,105.7,105.7,105.7,105.7,105.8,106 +83,110.8,135.1,115.6,109.8,107.2,105.5,115.1,105.6,105.6,105.6,105.6,105.7,110.1,105.8,105.8,105.8,105.8,105.9,106.1 +84,110.9,135.3,115.9,110.1,107.4,105.6,115.3,105.7,105.7,105.7,105.7,105.8,110.2,105.9,105.9,105.9,105.9,106,106.2 +85,111,135.6,116.2,110.4,107.6,105.7,115.5,105.8,105.8,105.8,105.8,105.9,110.4,106,106,106,106,106.1,106.3 +86,111.1,135.8,116.4,110.6,107.8,105.8,115.7,105.9,105.9,105.9,105.9,106,110.6,106.1,106.1,106.1,106.1,106.2,106.4 +87,111.2,136,116.7,110.9,108,105.9,115.9,106,106,106,106,106.1,110.8,106.2,106.2,106.2,106.2,106.3,106.4 +88,111.3,136.3,117,111.2,108.2,106,116.1,106.1,106.1,106.1,106.1,106.2,111,106.3,106.3,106.3,106.3,106.4,106.5 +89,111.4,136.5,117.3,111.4,108.4,106.1,116.3,106.2,106.2,106.2,106.2,106.3,111.2,106.4,106.4,106.4,106.4,106.5,106.6 +90,111.5,136.7,117.5,111.7,108.5,106.2,116.5,106.3,106.3,106.3,106.3,106.4,111.3,106.5,106.5,106.5,106.5,106.6,106.7 +91,111.6,136.9,117.8,112,108.7,106.3,116.7,106.4,106.4,106.4,106.4,106.5,111.5,106.6,106.6,106.6,106.6,106.7,106.8 +92,111.7,137.2,118.1,112.3,108.8,106.4,116.9,106.5,106.5,106.5,106.5,106.6,111.7,106.7,106.7,106.7,106.7,106.8,106.9 +93,111.8,137.4,118.4,112.5,108.9,106.5,117.1,106.6,106.6,106.6,106.6,106.7,111.9,106.8,106.8,106.8,106.8,106.8,107 +94,111.9,137.6,118.7,112.8,109,106.6,117.3,106.6,106.6,106.6,106.7,106.7,112,106.9,106.9,106.9,106.9,106.9,107.1 +95,112,137.8,118.9,113.1,109.1,106.7,117.4,106.7,106.7,106.7,106.7,106.8,112.2,106.9,106.9,106.9,106.9,107,107.1 +96,112.1,138,119.2,113.4,109.2,106.8,117.6,106.8,106.8,106.8,106.9,106.9,112.4,107,107,107,107,107.1,107.2 +97,112.2,138.2,119.5,113.6,109.3,106.9,117.8,106.9,106.9,106.9,106.9,107,112.5,107.1,107.1,107.1,107.1,107.2,107.3 +98,112.3,138.5,119.7,113.9,109.3,106.9,118,107,107,107,107,107.1,112.7,107.2,107.2,107.2,107.2,107.3,107.4 +99,112.4,138.7,120,114.2,109.4,107,118.2,107.1,107.1,107.1,107.1,107.2,112.9,107.3,107.3,107.3,107.3,107.4,107.5 +100,112.5,138.9,120.2,114.5,109.4,107.1,118.4,107.2,107.2,107.2,107.2,107.3,113,107.4,107.4,107.4,107.4,107.4,107.5 +101,112.5,139.1,120.4,114.8,109.5,107.2,118.5,107.3,107.3,107.3,107.3,107.3,113.2,107.4,107.4,107.4,107.5,107.5,107.6 +102,112.6,139.3,120.7,115.1,109.5,107.3,118.7,107.3,107.3,107.3,107.4,107.4,113.4,107.5,107.5,107.5,107.5,107.6,107.7 +103,112.7,139.5,120.9,115.3,109.7,107.4,118.9,107.4,107.4,107.4,107.5,107.5,113.5,107.6,107.6,107.6,107.6,107.7,107.8 +104,112.8,139.7,121.1,115.6,110,107.4,119.1,107.5,107.5,107.5,107.5,107.6,113.7,107.7,107.7,107.7,107.7,107.8,107.9 +105,112.9,139.9,121.3,115.9,110.2,107.5,119.2,107.6,107.6,107.6,107.6,107.7,113.8,107.8,107.8,107.8,107.8,107.8,107.9 +106,113,140.1,121.5,116.2,110.5,107.6,119.4,107.7,107.7,107.7,107.7,107.8,114,107.8,107.8,107.8,107.8,107.9,108 +107,113,140.3,121.8,116.5,110.8,107.7,119.6,107.7,107.7,107.7,107.8,107.8,114.2,107.9,107.9,107.9,107.9,108,108.1 +108,113.1,140.5,122,116.7,111,107.8,119.8,107.8,107.8,107.8,107.9,107.9,114.3,108,108,108,108,108.1,108.2 +109,113.2,140.7,122.2,117,111.3,107.8,119.9,107.9,107.9,107.9,107.9,108,114.5,108.1,108.1,108.1,108.1,108.1,108.2 +110,113.3,140.9,122.4,117.3,111.6,107.9,120.1,108,108,108,108,108.1,114.6,108.2,108.2,108.2,108.2,108.2,108.3 +111,113.4,141.1,122.6,117.5,111.9,108,120.3,108.1,108.1,108.1,108.1,108.1,114.8,108.2,108.2,108.2,108.2,108.3,108.4 +112,113.4,141.2,122.8,117.8,112.2,108.1,120.4,108.1,108.1,108.1,108.2,108.2,114.9,108.3,108.3,108.3,108.3,108.4,108.5 +113,113.5,141.4,123.1,118,112.5,108.1,120.6,108.2,108.2,108.2,108.3,108.3,115.1,108.4,108.4,108.4,108.4,108.4,108.5 +114,113.6,141.6,123.3,118.2,112.7,108.2,120.7,108.3,108.3,108.3,108.3,108.4,115.2,108.4,108.4,108.4,108.5,108.5,108.6 +115,113.7,141.8,123.5,118.5,113,108.3,120.9,108.4,108.4,108.4,108.4,108.4,115.4,108.5,108.5,108.5,108.5,108.6,108.7 +116,113.7,142,123.7,118.7,113.3,108.3,121.1,108.4,108.4,108.4,108.5,108.5,115.5,108.6,108.6,108.6,108.6,108.7,108.7 +117,113.8,142.2,123.9,118.9,113.6,108.4,121.2,108.5,108.5,108.5,108.6,108.6,115.7,108.7,108.7,108.7,108.7,108.7,108.8 +118,113.9,142.3,124.1,119.1,113.8,108.5,121.4,108.6,108.6,108.6,108.6,108.7,115.8,108.7,108.7,108.7,108.7,108.8,108.9 +119,114,142.5,124.3,119.4,114.1,108.5,121.5,108.7,108.7,108.7,108.7,108.7,116,108.8,108.8,108.8,108.8,108.9,109 +120,114,142.7,124.5,119.6,114.4,108.6,121.7,108.7,108.7,108.7,108.8,108.8,116.1,108.9,108.9,108.9,108.9,108.9,109 +121,114.1,142.9,124.7,119.8,114.6,108.7,121.8,108.8,108.8,108.8,108.8,108.9,116.2,108.9,108.9,108.9,109,109,109.1 +122,114.2,143.1,124.9,120,114.9,108.7,122,108.9,108.9,108.9,108.9,108.9,116.4,109,109,109,109,109.1,109.2 +123,114.2,143.2,125.1,120.2,115.1,108.8,122.2,108.9,108.9,108.9,109,109,116.5,109.1,109.1,109.1,109.1,109.1,109.2 +124,114.3,143.4,125.3,120.4,115.3,108.9,122.3,109,109,109,109.1,109.1,116.7,109.1,109.1,109.1,109.2,109.2,109.3 +125,114.4,143.6,125.5,120.6,115.6,108.9,122.5,109.1,109.1,109.1,109.1,109.1,116.8,109.2,109.2,109.2,109.2,109.3,109.4 +126,114.5,143.8,125.7,120.8,115.7,109,122.6,109.1,109.1,109.1,109.2,109.2,116.9,109.3,109.3,109.3,109.3,109.3,109.4 +127,114.5,143.9,125.9,121.1,115.9,109,122.8,109.2,109.2,109.2,109.3,109.3,117,109.3,109.3,109.3,109.4,109.4,109.5 +128,114.6,144.1,126.1,121.3,116.1,109.1,122.9,109.3,109.3,109.3,109.3,109.3,117.2,109.4,109.4,109.4,109.4,109.5,109.6 +129,114.7,144.3,126.3,121.5,116.3,109.2,123,109.3,109.3,109.3,109.4,109.4,117.3,109.5,109.5,109.5,109.5,109.5,109.6 +130,114.7,144.4,126.4,121.7,116.5,109.2,123.2,109.4,109.4,109.4,109.5,109.5,117.3,109.5,109.5,109.5,109.5,109.6,109.7 +131,114.8,144.6,126.6,121.9,116.7,109.3,123.3,109.5,109.5,109.5,109.5,109.5,117.5,109.6,109.6,109.6,109.6,109.7,109.7 +132,114.9,144.8,126.8,122.1,116.9,109.3,123.5,109.5,109.5,109.5,109.6,109.6,117.6,109.7,109.7,109.7,109.7,109.7,109.8 +133,114.9,144.9,127,122.3,117.2,109.4,123.6,109.6,109.6,109.6,109.7,109.7,117.7,109.7,109.7,109.7,109.7,109.8,109.9 +134,115,145.1,127.1,122.5,117.4,109.4,123.7,109.7,109.7,109.7,109.7,109.7,117.8,109.8,109.8,109.8,109.8,109.9,109.9 +135,115.1,145.2,127.3,122.7,117.6,109.5,123.9,109.7,109.7,109.7,109.8,109.8,117.9,109.9,109.9,109.9,109.9,109.9,110 +136,115.1,145.4,127.5,122.9,117.9,109.5,124,109.8,109.8,109.8,109.9,109.9,118,109.9,109.9,109.9,109.9,110,110.1 +137,115.2,145.6,127.7,123.1,118.1,109.6,124.1,109.9,109.9,109.9,109.9,109.9,118,110,110,110,110,110,110.1 +138,115.2,145.7,127.9,123.3,118.3,109.7,124.2,109.9,109.9,109.9,110,110,118.1,110,110,110,110,110.1,110.2 +139,115.3,145.9,128.1,123.5,118.5,109.7,124.3,110,110,110,110,110,118.2,110.1,110.1,110.1,110.1,110.2,110.2 +140,115.4,146.2,128.3,123.7,118.8,109.8,124.4,110,110,110,110.1,110.1,118.3,110.2,110.2,110.2,110.2,110.2,110.3 +141,115.4,146.5,128.4,123.8,119,109.8,124.5,110.1,110.1,110.1,110.2,110.2,118.4,110.2,110.2,110.2,110.2,110.3,110.3 +142,115.5,146.9,128.6,124,119.2,109.9,124.6,110.2,110.2,110.2,110.2,110.2,118.5,110.3,110.3,110.3,110.3,110.3,110.4 +143,115.5,147.2,128.8,124.2,119.5,109.9,124.8,110.2,110.2,110.2,110.3,110.3,118.6,110.3,110.3,110.3,110.3,110.4,110.5 +144,115.6,147.6,129,124.4,119.7,109.9,124.8,110.3,110.3,110.3,110.3,110.3,118.7,110.4,110.4,110.4,110.4,110.4,110.5 +145,115.6,148,129.1,124.6,119.9,110,124.9,110.3,110.3,110.3,110.4,110.4,118.8,110.4,110.4,110.4,110.4,110.5,110.6 +146,115.7,148.3,129.3,124.8,120.1,110,125,110.4,110.4,110.4,110.5,110.4,118.9,110.5,110.5,110.5,110.5,110.6,110.6 +147,115.8,148.7,129.5,125,120.3,110.1,125.2,110.5,110.5,110.5,110.5,110.5,119,110.6,110.6,110.6,110.6,110.6,110.7 +148,115.8,149.1,129.7,125.2,120.5,110.1,125.3,110.5,110.5,110.5,110.6,110.6,119.1,110.6,110.6,110.6,110.6,110.7,110.7 +149,115.9,149.4,129.8,125.4,120.8,110.2,125.4,110.6,110.6,110.6,110.6,110.6,119.1,110.7,110.7,110.7,110.7,110.7,110.8 +150,115.9,149.8,130,125.6,121,110.2,125.5,110.6,110.6,110.6,110.7,110.7,119.2,110.7,110.7,110.7,110.7,110.8,110.9 +151,116,150.2,130.2,125.7,121.2,110.3,125.6,110.7,110.7,110.7,110.7,110.7,119.3,110.8,110.8,110.8,110.8,110.8,110.9 +152,116,150.5,130.6,125.9,121.4,110.3,125.7,110.7,110.7,110.7,110.8,110.8,119.4,110.8,110.8,110.8,110.8,110.9,111 +153,116.1,150.9,130.9,126.1,121.6,110.3,125.8,110.8,110.8,110.8,110.9,110.8,119.5,110.9,110.9,110.9,110.9,110.9,111 +154,116.2,151.3,131.3,126.3,121.8,110.4,125.9,110.9,110.8,110.8,110.9,110.9,119.6,110.9,110.9,110.9,110.9,111,111.1 +155,116.2,151.6,131.7,126.5,122,110.4,126,110.9,110.9,110.9,111,111,119.7,111,111,111,111,111,111.1 +156,116.3,152,132,126.6,122.2,110.4,126.1,111,110.9,111,111,111,119.8,111,111,111,111,111.1,111.2 +157,116.3,152.3,132.4,126.8,122.5,110.5,126.2,111,111,111,111.1,111.1,119.9,111.1,111.1,111.1,111.1,111.1,111.2 +158,116.4,152.7,132.8,127.1,122.7,110.5,126.3,111.1,111.1,111.1,111.1,111.1,119.9,111.1,111.1,111.1,111.1,111.2,111.3 +159,116.4,153.1,133.1,127.4,122.9,110.6,126.4,111.2,111.1,111.1,111.2,111.2,120,111.2,111.2,111.2,111.2,111.3,111.3 +160,116.5,153.4,133.5,127.8,123.1,110.6,126.5,111.2,111.2,111.2,111.2,111.2,120.1,111.2,111.2,111.2,111.3,111.3,111.4 +161,116.5,153.8,133.9,128.2,123.3,110.6,126.6,111.3,111.2,111.2,111.3,111.3,120.2,111.3,111.3,111.3,111.3,111.4,111.4 +162,116.6,154.2,134.2,128.5,123.5,110.7,126.7,111.4,111.3,111.3,111.3,111.3,120.3,111.3,111.3,111.4,111.4,111.4,111.5 +163,116.7,154.5,134.6,128.9,123.7,110.8,126.8,111.4,111.3,111.3,111.4,111.4,120.4,111.4,111.4,111.4,111.4,111.5,111.5 +164,116.7,154.9,135,129.3,123.9,110.8,126.9,111.5,111.4,111.4,111.4,111.4,120.5,111.4,111.5,111.5,111.5,111.5,111.6 +165,116.8,155.2,135.3,129.6,124.1,110.9,127,111.6,111.4,111.4,111.5,111.5,120.6,111.5,111.5,111.5,111.5,111.6,111.6 +166,116.8,155.6,135.7,130,124.3,111,127,111.7,111.5,111.5,111.5,111.5,120.7,111.5,111.5,111.6,111.6,111.6,111.7 +167,116.9,156,136.1,130.4,124.5,111.1,127.1,111.7,111.5,111.5,111.6,111.6,120.7,111.6,111.6,111.6,111.6,111.7,111.7 +168,116.9,156.3,136.4,130.7,124.8,111.1,127.2,111.8,111.6,111.6,111.6,111.6,120.8,111.6,111.6,111.6,111.7,111.7,111.8 +169,117,156.7,136.8,131.1,125.2,111.2,127.3,111.9,111.6,111.6,111.7,111.7,120.9,111.7,111.7,111.7,111.7,111.7,111.8 +170,117,157,137.1,131.5,125.5,111.3,127.4,111.9,111.7,111.7,111.7,111.7,121,111.7,111.7,111.7,111.8,111.8,111.9 +171,117.1,157.4,137.5,131.8,125.9,111.3,127.5,112,111.7,111.7,111.8,111.8,121.1,111.8,111.8,111.8,111.8,111.8,111.9 +172,117.1,157.8,137.9,132.2,126.3,111.4,127.6,112.1,111.8,111.8,111.8,111.8,121.2,111.8,111.8,111.8,111.9,111.9,112 +173,117.2,158.1,138.2,132.6,126.6,111.5,127.7,112.2,111.8,111.8,111.9,112,121.2,111.9,111.9,111.9,111.9,111.9,112 +174,117.2,158.5,138.6,132.9,127,111.6,127.8,112.2,111.9,111.9,111.9,112,121.3,111.9,111.9,111.9,112,112,112.1 +175,117.3,158.8,139,133.3,127.4,111.6,127.9,112.3,111.9,111.9,112,112.1,121.4,112,112,112,112,112,112.1 +176,117.3,159.2,139.3,133.7,127.7,111.7,128,112.4,111.9,112,112,112.1,121.5,112,112,112,112.1,112.1,112.2 +177,117.4,159.5,139.7,134,128.1,111.8,128.1,112.5,112,112,112.1,112.2,121.6,112.1,112.1,112.1,112.1,112.1,112.2 +178,117.4,159.9,140,134.4,128.5,111.9,128.2,112.5,112,112,112.1,112.2,121.7,112.1,112.1,112.1,112.1,112.2,112.3 +179,117.5,160.3,140.4,134.7,128.8,111.9,128.3,112.6,112.1,112.1,112.2,112.3,121.8,112.2,112.2,112.2,112.2,112.2,112.3 +180,117.5,160.6,140.8,135.1,129.2,112,128.4,112.7,112.1,112.1,112.2,112.3,121.8,112.2,112.2,112.2,112.2,112.3,112.4 +181,117.6,161,141.1,135.5,129.6,112.1,128.5,112.8,112.2,112.2,112.3,112.4,121.9,112.3,112.3,112.3,112.3,112.3,112.4 +182,117.6,161.3,141.5,135.8,129.9,112.1,128.6,112.9,112.2,112.2,112.3,112.4,122,112.3,112.3,112.3,112.3,112.3,112.5 +183,117.7,161.7,141.9,136.2,130.3,112.2,128.7,112.9,112.3,112.3,112.3,112.5,122.1,112.3,112.3,112.3,112.4,112.4,112.5 +184,117.7,162.1,142.2,136.6,130.7,112.3,128.8,113,112.3,112.3,112.4,112.5,122.2,112.4,112.4,112.4,112.4,112.4,112.6 +185,117.8,162.4,142.6,136.9,131,112.4,128.9,113.1,112.4,112.4,112.4,112.6,122.3,112.4,112.4,112.4,112.5,112.5,112.6 +186,117.8,162.8,142.9,137.3,131.4,112.4,129,113.2,112.4,112.4,112.5,112.6,122.4,112.5,112.5,112.5,112.5,112.5,112.6 +187,117.9,163.2,143.3,137.6,131.8,112.5,129.1,113.2,112.4,112.4,112.5,112.6,122.4,112.5,112.5,112.5,112.6,112.6,112.7 +188,117.9,163.5,143.7,138,132.1,112.6,129.2,113.3,112.5,112.5,112.5,112.7,122.5,112.6,112.6,112.6,112.6,112.6,112.7 +189,117.9,163.9,144,138.4,132.5,112.6,129.2,113.4,112.5,112.5,112.6,112.7,122.6,112.6,112.6,112.6,112.6,112.7,112.8 +190,118,164.2,144.4,138.7,132.9,112.7,129.3,113.5,112.6,112.6,112.6,112.8,122.7,112.7,112.7,112.7,112.7,112.7,112.8 +191,118,164.6,144.7,139.1,133.2,112.8,129.4,113.6,112.6,112.6,112.7,112.8,122.8,112.7,112.7,112.7,112.7,112.7,112.9 +192,118.1,165,145.1,139.5,133.6,112.8,129.5,113.6,112.6,112.7,112.7,112.9,122.9,112.7,112.7,112.7,112.8,112.8,112.9 +193,118.1,165.3,145.5,139.8,133.9,112.9,129.6,113.7,112.7,112.7,112.7,112.9,122.9,112.8,112.8,112.8,112.8,112.8,112.9 +194,118.2,165.7,145.8,140.2,134.3,113,129.7,113.8,112.7,112.7,112.8,113,123,112.8,112.8,112.8,112.9,112.9,113 +195,118.2,166,146.2,140.5,134.7,113,129.8,113.9,112.8,112.8,112.8,113,123.1,112.9,112.9,112.9,112.9,112.9,113 +196,118.3,166.4,146.6,140.9,135,113.1,129.9,113.9,112.8,112.8,112.8,113,123.2,112.9,112.9,112.9,112.9,112.9,113.1 +197,118.3,166.8,146.9,141.3,135.4,113.2,130,114,112.8,112.8,112.9,113.1,123.3,113,113,113,113,113,113.1 +198,118.4,167.1,147.3,141.6,135.8,113.2,130.1,114.1,112.9,112.9,112.9,113.1,123.3,113,113,113,113,113,113.2 +199,118.4,167.5,147.6,142,136.1,113.3,130.1,114.2,112.9,112.9,112.9,113.2,123.4,113,113,113,113.1,113.1,113.2 +200,118.4,167.9,148,142.3,136.5,113.4,130.2,114.2,112.9,113,113,113.2,123.5,113.1,113.1,113.1,113.1,113.1,113.2 +201,118.5,168.1,148.4,142.7,136.8,113.4,130.3,114.3,113,113,113,113.3,123.6,113.1,113.1,113.1,113.2,113.1,113.3 +202,118.5,168.1,148.7,143.1,137.2,113.5,130.4,114.4,113,113,113,113.3,123.7,113.2,113.2,113.2,113.2,113.2,113.3 +203,118.6,168.1,149,143.4,137.6,113.6,130.5,114.4,113,113,113.1,113.3,123.8,113.2,113.2,113.2,113.2,113.2,113.4 +204,118.6,168.1,149.1,143.8,137.9,113.6,130.5,114.5,113.1,113.1,113.1,113.4,123.8,113.2,113.2,113.2,113.3,113.3,113.4 +205,118.7,168.1,149.1,144.2,138.3,113.7,130.6,114.6,113.1,113.1,113.1,113.4,123.9,113.3,113.3,113.3,113.3,113.3,113.4 +206,118.7,168,149.2,144.2,138.7,113.8,130.7,114.6,113.1,113.1,113.2,113.5,124,113.3,113.3,113.3,113.4,113.3,113.5 +207,118.7,168,149.2,144.3,139,113.8,130.7,114.7,113.1,113.2,113.2,113.5,124.1,113.4,113.4,113.4,113.4,113.4,113.5 +208,118.8,168,149.3,144.4,139.4,113.9,130.8,114.7,113.2,113.2,113.2,113.5,124.2,113.4,113.4,113.4,113.4,113.4,113.6 +209,118.8,167.9,149.3,144.5,139.7,114,130.9,114.8,113.2,113.2,113.3,113.6,124.2,113.4,113.4,113.4,113.5,113.4,113.6 +210,118.9,167.9,149.3,144.5,139.9,114,130.9,114.8,113.2,113.2,113.3,113.6,124.3,113.5,113.5,113.5,113.5,113.5,113.6 +211,118.9,167.9,149.4,144.6,140,114.1,131,114.8,113.2,113.2,113.3,113.7,124.4,113.5,113.5,113.5,113.6,113.5,113.7 +212,118.9,167.8,149.4,144.7,140.2,114.2,131,114.9,113.2,113.3,113.4,113.7,124.5,113.6,113.6,113.6,113.6,113.6,113.7 +213,119,167.8,149.5,144.7,140.3,114.3,131.1,114.9,113.3,113.3,113.4,113.7,124.6,113.6,113.6,113.6,113.6,113.6,113.8 +214,119,167.8,149.5,144.8,140.4,114.4,131.1,114.9,113.3,113.3,113.4,113.8,124.6,113.6,113.6,113.6,113.7,113.6,113.8 +215,119.1,167.8,149.5,144.9,140.5,114.5,131.2,115,113.3,113.3,113.4,113.8,124.7,113.7,113.7,113.7,113.7,113.7,113.8 +216,119.1,167.7,149.6,144.9,140.6,114.6,131.3,115,113.3,113.3,113.5,113.9,124.8,113.7,113.7,113.7,113.8,113.7,113.9 +217,119.1,167.7,149.6,145,140.7,114.7,131.3,115,113.3,113.3,113.5,113.9,124.9,113.8,113.8,113.8,113.8,113.7,113.9 +218,119.2,167.7,149.5,145.1,140.8,114.8,131.4,115.1,113.3,113.3,113.5,113.9,125,113.8,113.8,113.8,113.8,113.8,114 +219,119.2,167.7,149.5,145.1,140.9,114.9,131.4,115.1,113.3,113.4,113.6,114,125,113.8,113.8,113.8,113.9,113.8,114 +220,119.3,167.6,149.5,145.2,141,115,131.5,115.1,113.3,113.4,113.6,114,125.1,113.9,113.9,113.9,113.9,113.9,114 +221,119.3,167.6,149.5,145.2,141.1,115.1,131.5,115.1,113.3,113.4,113.6,114,125.2,113.9,113.9,113.9,113.9,113.9,114.1 +222,119.3,167.6,149.5,145.3,141.2,115.1,131.6,115.1,113.4,113.4,113.7,114.1,125.3,113.9,113.9,114,114,113.9,114.1 +223,119.4,167.6,149.5,145.3,141.3,115.2,131.6,115.2,113.4,113.4,113.7,114.1,125.4,114,114,114,114,114,114.1 +224,119.4,167.6,149.5,145.3,141.4,115.3,131.7,115.2,113.4,113.4,113.7,114.2,125.4,114,114,114,114.1,114,114.2 +225,119.5,167.6,149.5,145.3,141.5,115.3,131.7,115.2,113.4,113.4,113.8,114.2,125.5,114.1,114.1,114.1,114.1,114,114.2 +226,119.5,167.5,149.5,145.4,141.6,115.3,131.8,115.2,113.4,113.4,113.8,114.2,125.6,114.1,114.1,114.1,114.1,114.1,114.2 +227,119.5,167.5,149.5,145.4,141.7,115.4,131.8,115.2,113.4,113.5,113.8,114.3,125.7,114.1,114.1,114.1,114.2,114.1,114.3 +228,119.6,167.5,149.5,145.4,141.8,115.4,131.9,115.2,113.4,113.5,113.8,114.3,125.8,114.2,114.2,114.2,114.2,114.1,114.3 +229,119.6,167.5,149.5,145.4,141.9,115.5,132,115.2,113.4,113.5,113.9,114.3,125.8,114.2,114.2,114.2,114.2,114.2,114.3 +230,119.7,167.5,149.5,145.4,142,115.5,132,115.3,113.5,113.5,113.9,114.4,125.9,114.2,114.2,114.2,114.3,114.2,114.4 +231,119.7,167.5,149.5,145.4,142,115.5,132.1,115.3,113.5,113.5,113.9,114.4,126,114.3,114.3,114.3,114.3,114.2,114.4 +232,119.7,167.5,149.5,145.4,142.1,115.6,132.1,115.3,113.5,113.5,114,114.4,126.1,114.3,114.3,114.3,114.3,114.3,114.5 +233,119.8,167.5,149.5,145.4,142.2,115.6,132.2,115.3,113.5,113.5,114,114.5,126.1,114.3,114.3,114.4,114.4,114.3,114.5 +234,119.8,167.5,149.5,145.4,142.2,115.6,132.3,115.3,113.5,113.6,114,114.5,126.2,114.4,114.4,114.4,114.4,114.3,114.5 +235,119.8,167.5,149.5,145.4,142.2,115.7,132.3,115.3,113.5,113.6,114,114.6,126.3,114.4,114.4,114.4,114.5,114.4,114.6 +236,119.9,167.5,149.5,145.5,142.2,115.7,132.4,115.3,113.5,113.6,114.1,114.6,126.4,114.5,114.5,114.5,114.5,114.4,114.6 +237,119.9,167.5,149.5,145.5,142.3,115.7,132.5,115.3,113.5,113.6,114.1,114.6,126.4,114.5,114.5,114.5,114.5,114.5,114.6 +238,120,167.5,149.5,145.5,142.3,115.8,132.5,115.3,113.6,113.6,114.1,114.7,126.5,114.5,114.5,114.5,114.6,114.5,114.7 +239,120,167.5,149.5,145.5,142.3,115.8,132.6,115.3,113.6,113.6,114.1,114.7,126.6,114.6,114.6,114.6,114.6,114.5,114.7 +240,120,167.6,149.5,145.5,142.4,115.8,132.7,115.4,113.6,113.6,114.2,114.7,126.7,114.6,114.6,114.6,114.6,114.6,114.7 +241,120.1,167.6,149.5,145.5,142.4,115.9,132.7,115.4,113.6,113.7,114.2,114.8,126.7,114.6,114.6,114.6,114.7,114.6,114.8 +242,120.1,167.6,149.6,145.6,142.4,115.9,132.8,115.4,113.6,113.7,114.2,114.8,126.8,114.7,114.7,114.7,114.7,114.6,114.8 +243,120.1,167.6,149.6,145.6,142.5,115.9,132.9,115.4,113.6,113.7,114.2,114.8,126.9,114.7,114.7,114.7,114.7,114.7,114.8 +244,120.2,167.6,149.6,145.6,142.5,116,132.9,115.4,113.7,113.7,114.3,114.9,127,114.7,114.7,114.7,114.8,114.7,114.9 +245,120.2,167.6,149.6,145.6,142.5,116,133,115.4,113.7,113.7,114.3,114.9,127.1,114.8,114.8,114.8,114.8,114.7,114.9 +246,120.2,167.7,149.6,145.7,142.6,116,133.1,115.4,113.7,113.7,114.3,114.9,127.1,114.8,114.8,114.8,114.8,114.8,114.9 +247,120.3,167.7,149.7,145.7,142.6,116.1,133.1,115.4,113.7,113.7,114.3,115,127.2,114.8,114.8,114.8,114.9,114.9,115 +248,120.3,167.7,149.7,145.7,142.6,116.2,133.2,115.4,113.7,113.8,114.4,115,127.3,114.9,114.9,114.9,114.9,114.9,115 +249,120.3,167.7,149.7,145.8,142.7,116.2,133.3,115.4,113.8,113.8,114.4,115,127.4,114.9,114.9,114.9,114.9,114.9,115 +250,120.4,167.8,149.8,145.8,142.7,116.3,133.3,115.4,113.8,113.8,114.4,115,127.4,114.9,114.9,114.9,115,115,115.1 +251,120.4,167.8,149.8,145.8,142.7,116.4,133.4,115.5,113.8,113.8,114.4,115.1,127.5,115,115,115,115,115,115.1 +252,120.5,167.8,149.8,145.9,142.8,116.7,133.5,115.5,113.9,113.8,114.5,115.1,127.6,115,115,115,115,115,115.1 +253,120.5,167.9,149.9,145.9,142.8,117,133.6,115.5,113.9,113.8,114.5,115.1,127.7,115,115,115,115.1,115.1,115.1 +254,120.5,167.9,149.9,146,142.9,117.3,133.6,115.6,114,113.8,114.5,115.2,127.7,115.1,115.1,115.1,115.1,115.1,115.2 +255,120.6,167.9,149.9,146,142.9,117.6,133.7,115.6,114,113.8,114.5,115.2,127.8,115.1,115.1,115.1,115.1,115.1,115.2 +256,120.6,168,150,146,143,117.9,133.8,115.6,114.1,113.9,114.6,115.2,127.9,115.1,115.1,115.1,115.2,115.2,115.2 +257,120.6,168,150,146.1,143,118.2,133.8,115.7,114.1,113.9,114.6,115.3,128,115.2,115.2,115.2,115.2,115.2,115.3 +258,120.7,168,150.1,146.1,143.1,118.5,133.9,115.7,114.2,113.9,114.6,115.3,128,115.2,115.2,115.2,115.2,115.2,115.3 +259,120.7,168.1,150.1,146.2,143.1,118.8,134,115.8,114.3,114,114.6,115.3,128.1,115.2,115.2,115.2,115.3,115.3,115.3 +260,120.7,168.1,150.2,146.2,143.2,119.1,134.1,115.8,114.3,114,114.7,115.4,128.2,115.3,115.3,115.3,115.3,115.3,115.4 +261,120.8,168.1,150.2,146.3,143.2,119.4,134.1,115.8,114.4,114.1,114.7,115.4,128.3,115.3,115.3,115.3,115.3,115.3,115.4 +262,120.8,168.2,150.2,146.3,143.3,119.7,134.2,115.9,114.5,114.1,114.7,115.4,128.3,115.3,115.3,115.3,115.4,115.4,115.4 +263,120.8,168.2,150.3,146.4,143.3,120,134.3,115.9,114.5,114.1,114.7,115.4,128.4,115.4,115.4,115.4,115.4,115.4,115.5 +264,120.9,168.3,150.3,146.5,143.4,120.3,134.4,115.9,114.6,114.2,114.7,115.5,128.5,115.4,115.4,115.4,115.4,115.4,115.5 +265,120.9,168.3,150.4,146.5,143.4,120.6,134.4,116,114.7,114.2,114.8,115.5,128.6,115.4,115.4,115.4,115.5,115.4,115.5 +266,120.9,168.4,150.5,146.6,143.5,120.9,134.5,116,114.7,114.3,114.8,115.5,128.6,115.5,115.4,115.5,115.5,115.5,115.5 +267,121,168.4,150.5,146.6,143.6,121.2,134.6,116.1,114.8,114.3,114.8,115.6,128.7,115.5,115.5,115.5,115.5,115.5,115.6 +268,121,168.5,150.6,146.7,143.6,121.5,134.6,116.1,114.9,114.4,114.8,115.6,128.8,115.5,115.5,115.5,115.6,115.5,115.6 +269,121,168.5,150.6,146.8,143.7,121.8,134.7,116.1,114.9,114.4,114.8,115.6,128.9,115.6,115.5,115.5,115.6,115.6,115.6 +270,121.1,168.5,150.7,146.8,143.8,122.1,134.8,116.2,115,114.5,114.9,115.7,128.9,115.6,115.6,115.6,115.6,115.6,115.7 +271,121.1,168.6,150.8,146.9,143.8,122.4,134.9,116.2,115.1,114.5,114.9,115.7,129,115.6,115.6,115.6,115.7,115.6,115.7 +272,121.1,168.6,150.8,147,143.9,122.7,134.9,116.2,115.2,114.5,114.9,115.7,129.1,115.7,115.6,115.6,115.7,115.7,115.7 +273,121.1,168.7,150.9,147,144,123,135,116.3,115.2,114.6,114.9,115.7,129.2,115.7,115.7,115.7,115.7,115.7,115.7 +274,121.2,168.7,150.9,147.1,144.1,123.3,135.1,116.3,115.3,114.6,114.9,115.8,129.2,115.7,115.7,115.7,115.7,115.7,115.8 +275,121.2,168.8,151,147.2,144.1,123.6,135.2,116.3,115.4,114.7,115,115.8,129.3,115.8,115.7,115.7,115.8,115.7,115.8 +276,121.2,168.9,151.1,147.3,144.2,123.9,135.2,116.4,115.4,114.7,115,115.8,129.4,115.8,115.8,115.8,115.8,115.8,115.8 +277,121.3,168.9,151.2,147.3,144.3,124.2,135.3,116.4,115.5,114.8,115,115.8,129.4,115.8,115.8,115.8,115.8,115.8,115.9 +278,121.3,169,151.2,147.4,144.4,124.5,135.4,116.4,115.6,114.8,115,115.9,129.5,115.9,115.8,115.8,115.9,115.8,115.9 +279,121.3,169,151.3,147.5,144.5,124.8,135.5,116.5,115.6,114.9,115,115.9,129.6,115.9,115.8,115.8,115.9,115.9,115.9 +280,121.4,169.1,151.4,147.6,144.5,125.1,135.5,116.5,115.7,114.9,115.1,115.9,129.7,116,115.9,115.9,115.9,115.9,115.9 +281,121.4,169.1,151.4,147.7,144.6,125.4,135.6,116.5,115.8,114.9,115.1,116,129.7,116,115.9,115.9,116,115.9,116 +282,121.4,169.2,151.5,147.7,144.7,125.7,135.7,116.6,115.9,115,115.1,116,129.8,116,115.9,115.9,116,115.9,116 +283,121.5,169.2,151.6,147.8,144.8,126,135.8,116.6,115.9,115,115.1,116,129.9,116.1,116,116,116,116,116 +284,121.5,169.3,151.7,147.9,144.9,126.3,135.9,116.6,116,115.1,115.1,116,130,116.1,116,116,116,116,116.1 +285,121.5,169.4,151.8,148,145,126.6,135.9,116.7,116,115.1,115.1,116.1,130,116.1,116,116,116.1,116,116.1 +286,121.6,169.4,151.8,148.1,145.1,126.9,136,116.7,116.1,115.1,115.2,116.1,130.1,116.2,116,116,116.1,116.1,116.1 +287,121.6,169.5,151.9,148.2,145.2,127.2,136.1,116.7,116.2,115.2,115.2,116.1,130.2,116.2,116.1,116.1,116.1,116.1,116.1 +288,121.6,169.6,152,148.3,145.3,127.5,136.2,116.8,116.2,115.2,115.2,116.1,130.2,116.3,116.1,116.1,116.2,116.1,116.2 +289,121.6,169.6,152.1,148.4,145.4,127.8,136.2,116.8,116.3,115.3,115.2,116.2,130.3,116.3,116.1,116.1,116.2,116.1,116.2 +290,121.7,169.7,152.2,148.5,145.5,128.1,136.3,116.8,116.4,115.3,115.2,116.2,130.4,116.3,116.2,116.2,116.2,116.2,116.2 +291,121.7,169.7,152.2,148.5,145.6,128.4,136.4,116.8,116.4,115.4,115.2,116.2,130.5,116.4,116.2,116.2,116.2,116.2,116.2 +292,121.7,169.8,152.3,148.6,145.7,128.7,136.5,116.9,116.5,115.4,115.3,116.2,130.5,116.4,116.2,116.2,116.3,116.2,116.3 +293,121.8,169.9,152.4,148.7,145.8,129,136.6,116.9,116.5,115.4,115.3,116.3,130.6,116.5,116.2,116.2,116.3,116.2,116.3 +294,121.8,169.9,152.5,148.8,145.9,129.3,136.6,116.9,116.6,115.5,115.3,116.3,130.7,116.5,116.3,116.3,116.3,116.3,116.3 +295,121.8,170,152.6,148.9,146,129.6,136.7,117,116.6,115.5,115.3,116.3,130.7,116.5,116.3,116.3,116.4,116.3,116.4 +296,121.8,170.1,152.7,149,146.1,129.9,136.8,117,116.7,115.6,115.3,116.3,130.8,116.6,116.3,116.3,116.4,116.3,116.4 +297,121.9,170.1,152.8,149.1,146.2,130.2,136.9,117.1,116.7,115.6,115.3,116.4,130.9,116.6,116.3,116.4,116.4,116.4,116.4 +298,121.9,170.2,152.9,149.2,146.3,130.6,137,117.1,116.8,115.6,115.4,116.4,131,116.7,116.4,116.4,116.4,116.4,116.4 +299,121.9,170.3,153,149.4,146.4,130.9,137.1,117.2,116.8,115.7,115.4,116.4,131,116.7,116.4,116.4,116.5,116.4,116.5 +300,122,170.4,153.1,149.5,146.5,131.2,137.1,117.2,116.9,115.7,115.4,116.4,131.1,116.8,116.4,116.4,116.5,116.4,116.5 +301,122,170.4,153.2,149.6,146.6,131.6,137.2,117.2,116.9,115.8,115.4,116.5,131.2,116.8,116.5,116.5,116.5,116.5,116.5 +302,122,170.5,153.3,149.7,146.7,131.9,137.3,117.3,117,115.8,115.5,116.5,131.2,116.8,116.5,116.5,116.5,116.5,116.5 +303,122.1,170.6,153.4,149.8,146.8,132.2,137.4,117.3,117,115.9,115.5,116.5,131.3,116.9,116.5,116.5,116.6,116.5,116.6 +304,122.1,170.7,153.4,149.9,146.9,132.5,137.5,117.4,117.1,115.9,115.5,116.5,131.4,116.9,116.5,116.5,116.6,116.5,116.6 +305,122.1,170.7,153.5,150,147.1,132.8,137.6,117.4,117.1,115.9,115.6,116.6,131.5,117,116.6,116.6,116.6,116.6,116.6 +306,122.1,170.8,153.6,150.1,147.2,133.1,137.7,117.5,117.2,116,115.6,116.6,131.5,117,116.6,116.6,116.6,116.6,116.6 +307,122.2,170.9,153.7,150.2,147.3,133.4,137.7,117.6,117.2,116,115.7,116.6,131.6,117,116.6,116.6,116.7,116.6,116.7 +308,122.2,171,153.8,150.3,147.4,133.6,137.8,117.7,117.3,116.1,115.7,116.6,131.7,117.1,116.6,116.6,116.7,116.6,116.7 +309,122.2,171,153.9,150.4,147.5,133.9,137.9,117.7,117.3,116.1,115.7,116.7,131.7,117.1,116.7,116.7,116.7,116.7,116.7 +310,122.2,171.1,154,150.5,147.7,134.1,138,117.8,117.3,116.1,115.8,116.7,131.8,117.2,116.7,116.7,116.7,116.7,116.7 +311,122.3,171.2,154.1,150.7,147.8,134.4,138.1,117.9,117.4,116.2,115.8,116.7,131.9,117.2,116.7,116.7,116.8,116.7,116.8 +312,122.3,171.3,154.3,150.8,147.9,134.6,138.2,118,117.4,116.2,115.8,116.7,131.9,117.3,116.7,116.7,116.8,116.7,116.8 +313,122.3,171.4,154.4,150.9,148,134.9,138.3,118.1,117.4,116.3,115.9,116.8,132,117.3,116.8,116.8,116.8,116.8,116.8 +314,122.4,171.4,154.5,151,148.1,135.1,138.4,118.2,117.5,116.3,115.9,116.8,132.1,117.3,116.8,116.8,116.8,116.8,116.8 +315,122.4,171.5,154.6,151.1,148.3,135.3,138.5,118.3,117.5,116.4,116,116.8,132.1,117.4,116.8,116.8,116.9,116.8,116.9 +316,122.4,171.6,154.7,151.2,148.4,135.5,138.6,118.4,117.5,116.4,116,116.8,132.2,117.4,116.8,116.8,116.9,116.8,116.9 +317,122.4,171.7,154.8,151.3,148.5,135.7,138.7,118.5,117.6,116.5,116,116.8,132.3,117.5,116.8,116.8,116.9,116.9,116.9 +318,122.5,171.8,154.9,151.5,148.6,136,138.7,118.6,117.6,116.5,116.1,116.9,132.3,117.5,116.9,116.9,116.9,116.9,116.9 +319,122.5,171.9,155,151.6,148.7,136.2,138.8,118.6,117.6,116.6,116.1,116.9,132.4,117.5,116.9,116.9,116.9,116.9,117.1 +320,122.5,171.9,155.1,151.7,148.9,136.4,138.9,118.7,117.7,116.6,116.1,116.9,132.5,117.6,116.9,116.9,117,116.9,117.1 +321,122.6,172,155.2,151.8,149,136.6,139,118.8,117.7,116.7,116.2,116.9,132.5,117.6,116.9,116.9,117,117,117.2 +322,122.6,172.1,155.3,151.9,149.1,136.7,139.1,118.9,117.7,116.7,116.2,117,132.6,117.6,116.9,117,117,117,117.2 +323,122.6,172.2,155.4,152,149.3,136.9,139.2,119,117.8,116.8,116.3,117,132.7,117.7,117,117,117,117,117.2 +324,122.6,172.3,155.5,152.2,149.4,137.1,139.3,119.1,117.8,116.9,116.3,117,132.7,117.7,117,117,117,117,117.2 +325,122.7,172.4,155.6,152.3,149.5,137.3,139.4,119.2,117.8,116.9,116.3,117,132.8,117.7,117,117,117,117.1,117.3 +326,122.7,172.5,155.7,152.4,149.6,137.5,139.5,119.3,117.9,117,116.4,117,132.9,117.8,117,117,117,117.1,117.3 +327,122.7,172.5,155.8,152.5,149.8,137.7,139.6,119.4,117.9,117,116.4,117.1,132.9,117.8,117,117,117.1,117.1,117.3 +328,122.7,172.6,155.9,152.6,149.9,137.8,139.8,119.5,117.9,117.1,116.4,117.1,133,117.8,117.1,117.1,117.1,117.1,117.3 +329,122.8,172.7,156,152.7,150,138,139.9,119.6,118,117.2,116.5,117.1,133,117.9,117.1,117.1,117.1,117.1,117.4 +330,122.8,172.8,156.2,152.9,150.1,138.2,140,119.7,118,117.2,116.5,117.1,133.1,117.9,117.1,117.1,117.1,117.2,117.4 +331,122.8,172.9,156.3,153,150.3,138.3,140.1,119.8,118,117.3,116.6,117.1,133.1,117.9,117.1,117.1,117.1,117.2,117.4 +332,122.8,173,156.4,153.1,150.4,138.5,140.2,120,118,117.4,116.6,117.2,133.2,118,117.1,117.1,117.1,117.2,117.4 +333,122.9,173,156.5,153.2,150.5,138.7,140.3,120.1,118.1,117.4,116.6,117.2,133.3,118,117.1,117.1,117.1,117.2,117.5 +334,122.9,173.1,156.6,153.3,150.6,138.8,140.4,120.2,118.1,117.5,116.7,117.2,133.3,118,117.1,117.1,117.1,117.3,117.5 +335,122.9,173.2,156.7,153.4,150.8,138.9,140.5,120.3,118.1,117.6,116.7,117.2,133.4,118,117.1,117.1,117.1,117.3,117.5 +336,122.9,173.3,156.8,153.6,150.9,139,140.7,120.4,118.2,117.6,116.7,117.3,133.4,118.1,117.1,117.1,117.1,117.3,117.5 +337,123,173.4,156.9,153.7,151,139,140.8,120.5,118.2,117.7,116.8,117.3,133.4,118.1,117.1,117.2,117.1,117.3,117.5 +338,123,173.5,157,153.8,151.1,139.1,140.9,120.6,118.2,117.7,116.8,117.3,133.5,118.1,117.1,117.2,117.1,117.3,117.6 +339,123,173.5,157.1,153.9,151.3,139.2,141,120.7,118.2,117.8,116.9,117.3,133.5,118.1,117.1,117.2,117.1,117.4,117.6 +340,123.1,173.6,157.2,154,151.4,139.3,141.1,120.9,118.3,117.9,116.9,117.3,133.6,118.1,117.1,117.2,117.1,117.4,117.6 +341,123.1,173.7,157.3,154.1,151.5,139.4,141.2,121,118.3,117.9,116.9,117.3,133.6,118.1,117.1,117.2,117.1,117.4,117.6 +342,123.1,173.8,157.4,154.3,151.7,139.4,141.3,121.1,118.3,118,117,117.4,133.6,118.1,117.1,117.1,117.1,117.4,117.7 +343,123.1,173.9,157.5,154.4,151.8,139.5,141.4,121.2,118.3,118,117,117.4,133.7,118.1,117.1,117.1,117.1,117.5,117.7 +344,123.2,174,157.6,154.5,151.9,139.6,141.5,121.4,118.4,118.1,117,117.4,133.7,118.1,117.1,117.1,117.2,117.5,117.7 +345,123.2,174,157.7,154.6,152,139.7,141.7,121.5,118.4,118.1,117.1,117.4,133.7,118.1,117.1,117.1,117.2,117.5,117.7 +346,123.2,174.1,157.8,154.7,152.2,139.7,141.8,121.6,118.4,118.2,117.1,117.4,133.7,118.1,117.1,117.1,117.2,117.5,117.7 +347,123.2,174.2,158,154.8,152.3,139.8,141.9,121.8,118.4,118.2,117.1,117.5,133.8,118.1,117.1,117.1,117.2,117.5,117.8 +348,123.3,174.3,158.1,155,152.4,139.9,142,121.9,118.5,118.3,117.2,117.5,133.8,118.1,117.1,117.1,117.2,117.6,117.8 +349,123.3,174.4,158.2,155.1,152.5,140,142.1,122,118.5,118.3,117.2,117.5,133.8,118.1,117,117.1,117.2,117.6,117.8 +350,123.3,174.4,158.3,155.2,152.7,140.1,142.2,122.2,118.5,118.4,117.3,117.5,133.8,118,117,117.1,117.2,117.6,117.8 +351,123.3,174.5,158.4,155.3,152.8,140.1,142.3,122.3,118.5,118.4,117.3,117.5,133.8,118,117,117,117.2,117.6,117.9 +352,123.4,174.6,158.5,155.4,152.9,140.2,142.4,122.4,118.6,118.4,117.3,117.6,133.9,118,117,117,117.2,117.6,117.9 +353,123.4,174.7,158.6,155.5,153,140.3,142.5,122.6,118.6,118.5,117.4,117.6,133.9,118,117,117,117.2,117.7,117.9 +354,123.4,174.8,158.7,155.6,153.2,140.4,142.7,122.7,118.6,118.5,117.4,117.6,133.9,118,117,117,117.2,117.7,117.9 +355,123.4,174.9,158.8,155.8,153.3,140.5,142.8,122.9,118.6,118.6,117.4,117.6,133.9,118,116.9,117,117.2,117.7,117.9 +356,123.4,174.9,158.9,155.9,153.4,140.6,142.9,123,118.7,118.6,117.5,117.6,133.9,117.9,116.9,117,117.2,117.7,118 +357,123.5,175,159,156,153.5,140.6,143,123.2,118.7,118.6,117.5,117.6,133.9,117.9,116.9,116.9,117.2,117.7,118 +358,123.5,175.1,159.1,156.1,153.6,140.7,143.1,123.3,118.7,118.7,117.5,117.7,134,117.9,116.9,116.9,117.2,117.8,118 +359,123.5,175.2,159.2,156.2,153.8,140.8,143.2,123.5,118.8,118.7,117.6,117.7,134,117.9,116.9,116.9,117.2,117.8,118 +360,123.5,175.3,159.3,156.3,153.9,140.9,143.3,123.7,118.8,118.7,117.6,117.7,134,117.9,116.8,116.9,117.2,117.8,118.1 +361,123.6,175.3,159.4,156.4,154,141,143.4,123.8,118.8,118.8,117.6,117.7,134,117.8,116.8,116.9,117.2,117.8,118.1 +362,123.6,175.4,159.5,156.6,154.1,141.1,143.5,124,118.9,118.8,117.7,117.7,134.1,117.8,116.8,116.9,117.3,117.8,118.1 +363,123.6,175.5,159.6,156.7,154.3,141.2,143.6,124.2,118.9,118.8,117.7,117.7,134.1,117.9,116.8,116.9,117.3,117.9,118.1 +364,123.6,175.6,159.7,156.8,154.4,141.3,143.8,124.3,119,118.8,117.7,117.8,134.1,117.9,116.8,116.8,117.3,117.9,118.1 +365,123.7,175.7,159.8,156.9,154.5,141.4,143.9,124.5,119,118.9,117.8,117.8,134.1,117.9,116.9,116.9,117.3,117.9,118.2 +366,123.7,175.7,159.9,157,154.6,141.5,144,124.7,119.1,118.9,117.8,117.8,134.2,118,116.9,116.9,117.3,117.9,118.2 +367,123.7,175.8,160,157.1,154.7,141.6,144.1,124.9,119.1,118.9,117.9,117.8,134.2,118,116.9,116.9,117.3,117.9,118.2 +368,123.7,175.9,160.1,157.2,154.9,141.7,144.2,125,119.2,119,117.9,117.8,134.2,118.1,117,117,117.3,118,118.2 +369,123.8,176,160.2,157.3,155,141.8,144.3,125.2,119.4,119,117.9,117.8,134.3,118.1,117,117,117.3,118,118.2 +370,123.8,176.1,160.3,157.5,155.1,141.9,144.4,125.4,119.5,119,118,117.9,134.3,118.2,117.1,117,117.3,118,118.3 +371,123.8,176.2,160.4,157.6,155.2,142,144.5,125.6,119.7,119,118,117.9,134.3,118.2,117.1,117.1,117.3,118,118.3 +372,123.8,176.2,160.5,157.7,155.3,142.1,144.6,125.8,119.9,119.1,118,117.9,134.4,118.2,117.1,117.1,117.3,118,118.3 +373,123.9,176.3,160.6,157.8,155.5,142.2,144.7,125.9,120.1,119.1,118.1,117.9,134.4,118.3,117.2,117.2,117.3,118.1,118.3 +374,123.9,176.4,160.7,157.9,155.6,142.3,144.8,126.1,120.3,119.1,118.1,117.9,134.4,118.3,117.2,117.2,117.3,118.1,118.3 +375,123.9,176.5,160.8,158,155.7,142.4,144.9,126.3,120.5,119.1,118.1,117.9,134.5,118.4,117.3,117.2,117.3,118.1,118.4 +376,123.9,176.6,160.9,158.1,155.8,142.5,145.1,126.5,120.7,119.2,118.2,118,134.5,118.4,117.3,117.3,117.4,118.1,118.4 +377,123.9,176.6,161,158.2,155.9,142.6,145.2,126.6,120.9,119.2,118.2,118,134.6,118.4,117.3,117.3,117.4,118.1,118.4 +378,124,176.7,161.1,158.3,156.1,142.7,145.3,126.8,121.1,119.2,118.2,118,134.6,118.5,117.4,117.3,117.4,118.2,118.4 +379,124,176.8,161.2,158.5,156.2,142.8,145.4,126.9,121.3,119.2,118.3,118,134.6,118.5,117.4,117.4,117.4,118.2,118.4 +380,124,176.9,161.3,158.6,156.3,142.9,145.5,127,121.5,119.2,118.3,118,134.7,118.5,117.5,117.4,117.4,118.2,118.5 +381,124,177,161.5,158.7,156.4,143,145.6,127.2,121.7,119.3,118.3,118,134.7,118.6,117.5,117.5,117.4,118.2,118.5 +382,124.1,177,161.6,158.8,156.5,143.2,145.7,127.3,121.9,119.3,118.4,118.1,134.8,118.6,117.5,117.5,117.4,118.2,118.5 +383,124.1,177.1,161.7,158.9,156.7,143.3,145.8,127.5,122,119.3,118.4,118.1,134.8,118.6,117.6,117.5,117.4,118.2,118.5 +384,124.1,177.2,161.8,159,156.8,143.4,145.9,127.6,122.2,119.3,118.4,118.1,134.9,118.7,117.6,117.6,117.4,118.3,118.5 +385,124.1,177.3,161.9,159.1,156.9,143.5,146,127.7,122.4,119.4,118.5,118.1,134.9,118.7,117.7,117.6,117.4,118.3,118.6 +386,124.1,177.4,162,159.2,157,143.6,146.1,127.9,122.5,119.4,118.5,118.1,134.9,118.7,117.7,117.6,117.4,118.3,118.6 +387,124.2,177.5,162.1,159.3,157.1,143.7,146.2,128,122.7,119.4,118.5,118.1,135,118.8,117.7,117.7,117.5,118.3,118.6 +388,124.2,177.5,162.2,159.4,157.2,143.9,146.3,128.2,122.8,119.4,118.6,118.1,135,118.8,117.8,117.7,117.5,118.3,118.6 +389,124.2,177.6,162.3,159.6,157.4,144,146.5,128.3,123,119.5,118.6,118.2,135.1,118.8,117.8,117.7,117.5,118.3,118.6 +390,124.2,177.7,162.4,159.7,157.5,144.1,146.6,128.4,123.1,119.5,118.6,118.2,135.1,118.8,117.9,117.8,117.5,118.4,118.7 +391,124.3,177.8,162.5,159.8,157.6,144.2,146.7,128.6,123.2,119.5,118.7,118.2,135.2,118.9,117.9,117.8,117.5,118.4,118.7 +392,124.3,177.9,162.6,159.9,157.7,144.3,146.8,128.7,123.3,119.5,118.7,118.2,135.2,118.9,117.9,117.8,117.6,118.4,118.7 +393,124.3,177.9,162.7,160,157.8,144.5,146.9,128.9,123.5,119.6,118.7,118.2,135.3,118.9,118,117.9,117.6,118.4,118.7 +394,124.3,178,162.8,160.1,157.9,144.6,147,129,123.7,119.6,118.8,118.2,135.3,119,118,117.9,117.6,118.4,118.7 +395,124.3,178.1,162.9,160.2,158.1,144.7,147.1,129.1,123.9,119.7,118.8,118.2,135.4,119,118.1,117.9,117.7,118.4,118.7 +396,124.4,178.2,163,160.3,158.2,144.9,147.2,129.3,124,119.7,118.8,118.2,135.4,119,118.1,118,117.7,118.5,118.8 +397,124.4,178.3,163.1,160.4,158.3,145,147.3,129.4,124.2,119.8,118.9,118.3,135.5,119,118.1,118,117.7,118.5,118.8 +398,124.4,178.3,163.2,160.5,158.4,145.1,147.4,129.5,124.4,119.8,118.9,118.3,135.5,119.1,118.2,118,117.7,118.5,118.8 +399,124.4,178.4,163.3,160.6,158.5,145.3,147.5,129.7,124.5,119.8,118.9,118.3,135.6,119.1,118.2,118.1,117.8,118.5,118.8 +400,124.5,178.5,163.4,160.8,158.6,145.4,147.6,129.8,124.7,119.9,119,118.3,135.6,119.1,118.3,118.1,117.8,118.5,118.8 +401,124.5,178.6,163.5,160.9,158.8,145.5,147.7,130,124.9,119.9,119,118.3,135.7,119.2,118.3,118.1,117.8,118.5,118.9 +402,124.5,178.7,163.6,161,158.9,145.6,147.8,130.1,125,119.9,119,118.3,135.7,119.2,118.3,118.2,117.9,118.6,118.9 +403,124.5,178.8,163.7,161.1,159,145.8,147.9,130.2,125.2,120,119.1,118.3,135.8,119.2,118.4,118.2,117.9,118.6,118.9 +404,124.5,178.8,163.8,161.2,159.1,145.9,148.1,130.4,125.4,120,119.1,118.3,135.8,119.2,118.4,118.2,117.9,118.6,118.9 +405,124.6,178.9,163.9,161.3,159.2,146.1,148.2,130.5,125.5,120.1,119.1,118.4,135.9,119.3,118.5,118.3,118,118.6,118.9 +406,124.6,179,164,161.4,159.3,146.2,148.3,130.6,125.7,120.1,119.1,118.4,135.9,119.3,118.5,118.3,118,118.6,119 +407,124.6,179.1,164.1,161.5,159.4,146.3,148.4,130.8,125.9,120.2,119.2,118.4,136,119.3,118.5,118.3,118,118.6,119 +408,124.6,179.2,164.2,161.6,159.6,146.5,148.5,130.9,126,120.4,119.2,118.4,136,119.3,118.6,118.4,118,118.7,119 +409,124.6,179.2,164.3,161.7,159.7,146.6,148.5,131,126.2,120.6,119.2,118.4,136.1,119.3,118.6,118.4,118.1,118.7,119 +410,124.7,179.3,164.4,161.8,159.8,146.7,148.6,131.1,126.3,120.8,119.3,118.4,136.1,119.4,118.7,118.4,118.1,118.7,119 +411,124.7,179.4,164.5,161.9,159.9,146.9,148.7,131.3,126.5,121.1,119.3,118.4,136.2,119.4,118.7,118.4,118.1,118.7,119 +412,124.7,179.5,164.6,162.1,160,147,148.8,131.4,126.7,121.3,119.3,118.4,136.3,119.4,118.8,118.5,118.2,118.7,119.1 +413,124.7,179.6,164.7,162.2,160.1,147.1,149,131.6,126.8,121.5,119.4,118.5,136.3,119.4,118.8,118.5,118.2,118.7,119.1 +414,124.8,179.6,164.8,162.3,160.2,147.3,149.2,131.7,127,121.7,119.4,118.5,136.4,119.5,118.9,118.5,118.2,118.8,119.1 +415,124.8,179.7,164.9,162.4,160.4,147.4,149.6,131.8,127.2,121.9,119.4,118.5,136.4,119.5,118.9,118.6,118.3,118.8,119.1 +416,124.8,179.8,165,162.5,160.5,147.6,150,132,127.4,122.2,119.5,118.5,136.5,119.5,118.9,118.6,118.3,118.8,119.1 +417,124.8,179.9,165.1,162.6,160.6,147.7,150.4,132.1,127.5,122.4,119.5,118.5,136.5,119.5,119,118.6,118.3,118.8,119.1 +418,124.8,180,165.2,162.7,160.7,147.8,150.8,132.3,127.7,122.6,119.5,118.5,136.6,119.6,119,118.7,118.3,118.8,119.2 +419,124.9,180.1,165.3,162.8,160.8,148,151.2,132.4,127.9,122.8,119.5,118.5,136.6,119.6,119.1,118.7,118.4,118.8,119.2 +420,124.9,180.1,165.4,162.9,160.9,148.1,151.6,132.5,128,123,119.6,118.5,136.7,119.6,119.1,118.7,118.4,118.8,119.2 +421,124.9,180.2,165.5,163,161,148.2,152,132.7,128.2,123.3,119.6,118.5,136.8,119.6,119.1,118.8,118.4,118.9,119.2 +422,124.9,180.3,165.6,163.1,161.1,148.4,152.4,132.8,128.4,123.5,119.6,118.6,136.8,119.6,119.2,118.8,118.5,118.9,119.2 +423,124.9,180.4,165.7,163.2,161.3,148.5,152.7,132.9,128.6,123.7,119.7,118.6,136.9,119.7,119.2,118.8,118.5,118.9,119.2 +424,125,180.5,165.8,163.3,161.4,148.7,153.1,133.1,128.7,123.9,119.7,118.6,136.9,119.7,119.3,118.8,118.5,118.9,119.3 +425,125,180.6,165.9,163.4,161.5,148.8,153.5,133.3,128.9,124.1,119.7,118.6,137,119.7,119.3,118.9,118.5,118.9,119.3 +426,125,180.6,166,163.6,161.6,148.9,153.9,133.7,129.1,124.4,119.7,118.6,137,119.7,119.3,118.9,118.6,118.9,119.3 +427,125,180.7,166.1,163.7,161.7,149.1,154.3,134.1,129.2,124.6,119.8,118.6,137.1,119.8,119.4,118.9,118.6,118.9,119.3 +428,125,180.8,166.2,163.8,161.8,149.2,154.7,134.5,129.4,124.8,119.8,118.7,137.2,119.8,119.4,119,118.6,119,119.3 +429,125.1,180.9,166.3,163.9,161.9,149.4,155.1,134.9,129.6,125,119.8,118.7,137.2,119.8,119.5,119,118.6,119,119.3 +430,125.1,181,166.4,164,162,149.5,155.5,135.2,129.8,125.2,119.9,118.7,137.3,119.8,119.5,119,118.7,119,119.4 +431,125.1,181,166.5,164.1,162.2,149.6,155.9,135.6,129.9,125.5,119.9,118.7,137.3,119.8,119.5,119,118.7,119,119.4 +432,125.1,181.1,166.6,164.2,162.3,149.8,156.3,136,130.2,125.7,119.9,118.7,137.4,119.9,119.6,119.1,118.7,119,119.4 +433,125.1,181.2,166.7,164.3,162.4,149.9,156.6,136.4,130.6,125.9,119.9,118.8,137.5,119.9,119.6,119.1,118.8,119,119.4 +434,125.2,181.3,166.8,164.4,162.5,150,157,136.8,131,126.1,120,118.8,137.5,119.9,119.6,119.1,118.8,119,119.4 +435,125.2,181.4,166.9,164.5,162.6,150.2,157.4,137.2,131.4,126.3,120,118.8,137.6,119.9,119.7,119.2,118.8,119.1,119.4 +436,125.2,181.5,167,164.6,162.7,150.3,157.8,137.6,131.7,126.5,120,118.8,137.7,119.9,119.7,119.2,118.8,119.1,119.5 +437,125.2,181.5,167.1,164.7,162.8,150.5,158.2,138,132.1,126.8,120,118.9,137.7,120,119.7,119.2,118.9,119.1,119.5 +438,125.2,181.6,167.2,164.8,162.9,150.6,158.6,138.4,132.5,127,120.1,118.9,137.8,120,119.8,119.2,118.9,119.1,119.5 +439,125.3,181.7,167.3,164.9,163,150.7,159,138.8,132.9,127.2,120.1,118.9,137.8,120,119.8,119.3,118.9,119.1,119.5 +440,125.3,181.8,167.4,165,163.2,150.9,159.4,139.1,133.3,127.4,120.1,118.9,137.9,120,119.8,119.3,119,119.1,119.5 +441,125.3,181.9,167.5,165.1,163.3,151,159.8,139.5,133.7,127.6,120.1,119,138,120.1,119.9,119.3,119,119.1,119.5 +442,125.3,182,167.6,165.3,163.4,151.1,160.2,139.9,134.1,128,120.2,119,138,120.1,119.9,119.4,119,119.1,119.5 +443,125.3,182,167.7,165.4,163.5,151.3,160.6,140.3,134.5,128.4,120.2,119,138.1,120.1,119.9,119.4,119,119.2,119.6 +444,125.4,182.1,167.8,165.5,163.6,151.4,161,140.7,134.9,128.7,120.2,119,138.2,120.1,120,119.4,119.1,119.2,119.6 +445,125.4,182.2,167.9,165.6,163.7,151.6,161.3,141.1,135.3,129.1,120.2,119.1,138.2,120.1,120,119.4,119.1,119.2,119.6 +446,125.4,182.3,168,165.7,163.8,151.7,161.7,141.5,135.7,129.5,120.3,119.1,138.3,120.2,120,119.5,119.1,119.2,119.6 +447,125.4,182.4,168.1,165.8,163.9,151.8,162.1,141.9,136,129.9,120.3,119.1,138.4,120.2,120,119.5,119.1,119.2,119.6 +448,125.4,182.5,168.2,165.9,164,152,162.5,142.3,136.4,130.3,120.3,119.2,138.4,120.2,120.1,119.5,119.2,119.2,119.6 +449,125.5,182.6,168.3,166,164.2,152.1,162.9,142.7,136.8,130.7,120.3,119.2,138.5,120.2,120.1,119.6,119.2,119.2,119.7 +450,125.5,182.6,168.4,166.1,164.3,152.2,163.3,143.1,137.2,131.1,120.4,119.2,138.6,120.2,120.1,119.6,119.2,119.2,119.7 +451,125.5,182.7,168.5,166.2,164.4,152.4,163.7,143.5,137.6,131.5,120.4,119.2,138.7,120.3,120.2,119.6,119.3,119.3,119.7 +452,125.5,182.8,168.6,166.3,164.5,152.5,164.1,143.9,138,131.9,120.4,119.3,138.7,120.3,120.2,119.6,119.3,119.3,119.7 +453,125.5,182.9,168.7,166.4,164.6,152.6,164.5,144.3,138.4,132.3,120.4,119.3,138.8,120.3,120.2,119.7,119.3,119.3,119.7 +454,125.5,183,168.8,166.5,164.7,152.8,164.9,144.6,138.8,132.7,120.5,119.3,138.9,120.3,120.2,119.7,119.3,119.3,119.7 +455,125.6,183.1,168.9,166.6,164.8,152.9,165.3,145,139.2,133.1,120.5,119.3,138.9,120.3,120.3,119.7,119.4,119.3,119.7 +456,125.6,183.1,169,166.7,164.9,153,165.7,145.4,139.6,133.4,120.5,119.4,139,120.4,120.3,119.7,119.4,119.3,119.8 +457,125.6,183.2,169.1,166.8,165,153.2,166.1,145.8,140,133.8,120.5,119.4,139.1,120.4,120.3,119.8,119.4,119.3,119.8 +458,125.6,183.3,169.2,166.9,165.1,153.3,166.5,146.2,140.4,134.2,120.5,119.4,139.2,120.4,120.3,119.8,119.4,119.3,119.8 +459,125.6,183.4,169.3,167,165.2,153.4,166.9,146.6,140.8,134.6,120.6,119.4,139.2,120.4,120.4,119.8,119.5,119.4,119.8 +460,125.7,183.5,169.4,167.1,165.4,153.6,167.3,147,141.2,135,120.6,119.5,139.3,120.4,120.4,119.9,119.5,119.4,119.8 +461,125.7,183.6,169.5,167.3,165.5,153.7,167.7,147.4,141.5,135.4,120.6,119.5,139.4,120.5,120.4,119.9,119.5,119.4,119.8 +462,125.7,183.7,169.6,167.4,165.6,153.8,168,147.8,141.9,135.8,120.6,119.5,139.5,120.5,120.4,119.9,119.5,119.4,119.8 +463,125.7,183.7,169.7,167.5,165.7,154,168.4,148.2,142.3,136.2,120.7,119.5,139.6,120.5,120.5,119.9,119.6,119.4,119.9 +464,125.7,183.8,169.8,167.6,165.8,154.1,168.8,148.6,142.7,136.6,120.7,119.6,139.6,120.5,120.5,120,119.6,119.4,119.9 +465,125.8,183.9,169.9,167.7,165.9,154.2,169.2,149,143.1,137,120.7,119.6,139.7,120.5,120.5,120,119.6,119.4,119.9 +466,125.8,184,170,167.8,166,154.3,169.6,149.4,143.5,137.4,120.7,119.6,139.8,120.6,120.5,120,119.6,119.4,119.9 +467,125.8,184.1,170.1,167.9,166.1,154.5,170,149.8,143.9,137.8,120.7,119.6,139.9,120.6,120.5,120,119.7,119.4,119.9 +468,125.8,184.2,170.2,168,166.2,154.6,170.1,150.2,144.3,138.2,120.8,119.7,140,120.6,120.6,120.1,119.7,119.5,119.9 +469,125.8,184.3,170.3,168.1,166.3,154.7,170.1,150.3,144.7,138.6,120.8,119.7,140,120.6,120.6,120.1,119.7,119.5,119.9 +470,125.8,184.4,170.4,168.2,166.4,154.9,170.2,150.4,144.8,139,120.8,119.7,140.1,120.7,120.6,120.1,119.7,119.5,119.9 +471,125.9,184.4,170.5,168.3,166.6,155,170.2,150.5,145,139.2,120.8,119.7,140.2,120.7,120.6,120.2,119.8,119.5,120 +472,125.9,184.5,170.6,168.4,166.7,155.1,170.3,150.6,145.1,139.4,120.9,119.8,140.3,120.7,120.6,120.2,119.8,119.5,120 +473,125.9,184.6,170.7,168.5,166.8,155.2,170.3,150.7,145.3,139.6,120.9,119.8,140.4,120.8,120.7,120.2,119.8,119.5,120 +474,125.9,184.7,170.8,168.6,166.9,155.4,170.4,150.8,145.4,139.8,120.9,119.8,140.5,120.8,120.7,120.3,119.9,119.5,120 +475,125.9,184.8,170.9,168.7,167,155.5,170.4,150.9,145.5,140,120.9,119.8,140.6,120.8,120.7,120.3,119.9,119.5,120 +476,126,184.9,171,168.8,167.1,155.6,170.5,151,145.7,140.2,120.9,119.9,140.6,120.9,120.7,120.3,119.9,119.5,120 +477,126,185,171.1,168.9,167.2,155.8,170.5,151,145.8,140.4,121,119.9,140.7,120.9,120.7,120.4,119.9,119.5,120 +478,126,185.1,171.2,169,167.3,155.9,170.6,151.1,145.9,140.6,121,119.9,140.8,120.9,120.8,120.4,120,119.6,120.1 +479,126,185.1,171.3,169.1,167.4,156,170.5,151.2,146,140.8,121,119.9,140.9,121,120.8,120.4,120,119.6,120.1 +480,126,185.2,171.4,169.2,167.5,156.1,170.5,151.3,146.1,141,121,120,141,121,120.8,120.5,120,119.6,120.1 +481,126,185.3,171.5,169.3,167.6,156.3,170.5,151.4,146.3,141.1,121,120,141.1,121,120.8,120.5,120,119.6,120.1 +482,126.1,185.4,171.6,169.4,167.7,156.4,170.4,151.5,146.4,141.3,121.1,120,141.2,121.1,120.8,120.5,120.1,119.6,120.1 +483,126.1,185.5,171.7,169.6,167.8,156.5,170.4,151.5,146.5,141.5,121.1,120,141.3,121.1,120.9,120.6,120.1,119.6,120.1 +484,126.1,185.6,171.8,169.7,168,156.6,170.3,151.6,146.6,141.7,121.1,120.1,141.4,121.1,120.9,120.6,120.1,119.6,120.1 +485,126.1,185.7,171.9,169.8,168.1,156.8,170.3,151.7,146.7,141.8,121.1,120.1,141.5,121.2,120.9,120.6,120.1,119.6,120.1 +486,126.1,185.8,172,169.9,168.2,156.9,170.3,151.8,146.8,142,121.1,120.1,141.6,121.3,120.9,120.7,120.2,119.6,120.2 +487,126.2,185.9,172.1,170,168.3,157,170.2,151.8,146.9,142.2,121.2,120.1,141.7,121.4,120.9,120.7,120.2,119.6,120.2 +488,126.2,185.9,172.2,170.1,168.4,157.1,170.2,151.9,147,142.3,121.2,120.2,141.8,121.5,120.9,120.7,120.2,119.6,120.2 +489,126.2,186,172.3,170.2,168.5,157.3,170.2,152,147.1,142.5,121.2,120.2,141.9,121.6,121,120.8,120.2,119.7,120.2 +490,126.2,186.1,172.4,170.3,168.6,157.4,170.1,152,147.2,142.6,121.2,120.2,142,121.7,121,120.8,120.2,119.7,120.2 +491,126.2,186.2,172.5,170.4,168.7,157.5,170.1,152,147.3,142.8,121.2,120.2,142.1,121.8,121,120.8,120.3,119.7,120.2 +492,126.2,186.3,172.6,170.5,168.8,157.6,170.1,152,147.4,142.9,121.2,120.2,142.3,121.9,121,120.8,120.3,119.7,120.2 +493,126.3,186.4,172.7,170.6,168.9,157.8,170,152,147.5,143.1,121.3,120.3,142.4,122,121,120.9,120.3,119.7,120.2 +494,126.3,186.5,172.8,170.7,169,157.9,170,152,147.6,143.2,121.3,120.3,142.5,122.1,121,120.9,120.3,119.7,120.3 +495,126.3,186.6,172.9,170.8,169.1,158,170,152,147.7,143.3,121.3,120.3,142.6,122.3,121.1,120.9,120.4,119.7,120.3 +496,126.3,186.7,173,170.9,169.2,158.1,170,152,147.8,143.5,121.3,120.3,142.7,122.4,121.1,120.9,120.4,119.7,120.3 +497,126.3,186.8,173.1,171,169.4,158.3,170,152,147.9,143.6,121.4,120.4,142.8,122.5,121.1,121,120.4,119.7,120.3 +498,126.3,186.8,173.2,171.1,169.5,158.4,169.9,152,147.9,143.8,121.4,120.4,142.9,122.6,121.1,121,120.4,119.7,120.3 +499,126.4,186.9,173.3,171.2,169.6,158.5,169.9,152,147.9,143.9,121.4,120.4,143,122.7,121.1,121,120.5,119.7,120.3 +500,126.4,187,173.4,171.3,169.7,158.6,169.9,151.9,147.9,144,121.4,120.4,143.1,122.8,121.1,121,120.5,119.8,120.3 +501,126.4,187.1,173.5,171.4,169.8,158.7,169.9,151.9,147.9,144.2,121.4,120.5,143.2,122.9,121.1,121.1,120.5,119.8,120.3 +502,126.4,187.2,173.6,171.5,169.9,158.9,169.9,151.9,148,144.3,121.5,120.5,143.3,123.1,121.2,121.1,120.5,119.8,120.3 +503,126.4,187.3,173.7,171.6,170,159,169.9,151.9,148,144.4,121.5,120.5,143.4,123.2,121.2,121.1,120.5,119.8,120.4 +504,126.4,187.4,173.8,171.7,170.1,159.1,169.9,151.9,148,144.6,121.5,120.5,143.5,123.3,121.2,121.1,120.6,119.8,120.4 +505,126.5,187.5,173.9,171.8,170.2,159.2,169.9,151.9,148,144.7,121.5,120.6,143.6,123.4,121.2,121.1,120.6,119.8,120.4 +506,126.5,187.6,174,171.9,170.3,159.3,169.9,151.9,148,144.8,121.5,120.6,143.8,123.6,121.2,121.2,120.6,119.9,120.4 +507,126.5,187.7,174.1,172,170.4,159.5,169.9,152,148,144.9,121.5,120.6,143.9,123.7,121.2,121.2,120.6,119.9,120.4 +508,126.5,187.8,174.2,172.1,170.5,159.6,169.9,152,148,144.9,121.5,120.6,144,123.8,121.3,121.2,120.7,119.9,120.4 +509,126.5,187.9,174.3,172.3,170.6,159.7,169.9,152,148.1,144.9,121.6,120.7,144.1,124,121.3,121.2,120.7,119.9,120.4 +510,126.6,187.9,174.4,172.4,170.7,159.8,169.9,152,148.1,145,121.6,120.7,144.2,124.1,121.3,121.2,120.7,119.9,120.4 +511,126.6,188,174.5,172.5,170.8,159.9,169.9,152,148.1,145,121.6,120.7,144.3,124.3,121.3,121.3,120.7,119.9,120.4 +512,126.6,188.1,174.6,172.6,171,160.1,169.9,152,148.1,145,121.6,120.7,144.4,124.4,121.3,121.3,120.7,120,120.5 +513,126.6,188.2,174.7,172.7,171.1,160.2,169.9,152,148.1,145.1,121.6,120.7,144.5,124.5,121.3,121.3,120.8,120,120.5 +514,126.6,188.3,174.8,172.8,171.2,160.3,169.9,152,148.2,145.1,121.6,120.8,144.6,124.7,121.3,121.3,120.8,120,120.5 +515,126.6,188.4,174.9,172.9,171.3,160.4,169.9,152.1,148.2,145.2,121.6,120.8,144.7,124.8,121.4,121.3,120.8,120,120.5 +516,126.7,188.5,175,173,171.4,160.5,169.9,152.1,148.2,145.2,121.7,120.8,144.8,125,121.4,121.3,120.8,120,120.5 +517,126.7,188.6,175.1,173.1,171.5,160.7,169.9,152.1,148.3,145.2,121.7,120.8,144.9,125.2,121.4,121.4,120.8,120.1,120.5 +518,126.7,188.7,175.2,173.2,171.6,160.8,170,152.1,148.3,145.3,121.7,120.9,145,125.3,121.4,121.4,120.9,120.1,120.5 +519,126.7,188.8,175.3,173.3,171.7,160.9,170,152.2,148.3,145.3,121.7,120.9,145.1,125.5,121.4,121.4,120.9,120.1,120.5 +520,126.7,188.9,175.4,173.4,171.8,161,170,152.2,148.4,145.4,121.7,120.9,145.3,125.6,121.4,121.4,120.9,120.1,120.5 +521,126.7,189,175.5,173.5,171.9,161.1,170,152.2,148.4,145.4,121.7,120.9,145.4,125.8,121.4,121.4,120.9,120.2,120.6 +522,126.8,189.1,175.6,173.6,172,161.3,170.1,152.3,148.4,145.5,121.7,120.9,145.5,126,121.5,121.4,120.9,120.2,120.6 +523,126.8,189.2,175.7,173.7,172.1,161.4,170.1,152.3,148.5,145.5,121.7,121,145.6,126.1,121.5,121.4,121,120.2,120.6 +524,126.8,189.3,175.8,173.8,172.2,161.5,170.1,152.3,148.5,145.6,121.8,121,145.7,126.3,121.5,121.5,121,120.2,120.6 +525,126.8,189.4,175.9,173.9,172.3,161.6,170.1,152.4,148.6,145.6,121.8,121,145.8,126.5,121.6,121.5,121,120.2,120.6 +526,126.8,189.5,176,174,172.4,161.7,170.2,152.4,148.6,145.7,121.8,121,145.9,126.7,121.6,121.5,121,120.3,120.6 +527,126.8,189.5,176.1,174.1,172.5,161.8,170.2,152.4,148.7,145.7,121.8,121.1,146,126.8,121.6,121.5,121,120.3,120.6 +528,126.9,189.6,176.2,174.2,172.7,162,170.3,152.5,148.7,145.8,121.8,121.1,146.1,127,121.7,121.5,121.1,120.3,120.6 +529,126.9,189.7,176.3,174.3,172.8,162.1,170.3,152.5,148.8,145.8,121.8,121.1,146.2,127.2,121.7,121.5,121.1,120.3,120.6 +530,126.9,189.8,176.4,174.4,172.9,162.2,170.3,152.6,148.8,145.9,121.9,121.1,146.3,127.4,121.8,121.6,121.1,120.3,120.6 +531,126.9,189.9,176.5,174.5,173,162.3,170.4,152.6,148.9,145.9,121.9,121.2,146.4,127.5,121.8,121.6,121.1,120.4,120.7 +532,126.9,190,176.6,174.6,173.1,162.4,170.4,152.7,148.9,146,122,121.2,146.5,127.7,121.9,121.6,121.1,120.4,120.7 +533,126.9,190.1,176.7,174.7,173.2,162.5,170.5,152.7,149,146.1,122,121.2,146.6,127.9,122.1,121.6,121.2,120.4,120.7 +534,126.9,190.2,176.8,174.8,173.3,162.7,170.5,152.8,149,146.1,122.1,121.2,146.7,128,122.2,121.6,121.2,120.4,120.7 +535,127,190.3,176.9,174.9,173.4,162.8,170.6,152.9,149.1,146.2,122.3,121.2,146.8,128.2,122.4,121.6,121.2,120.4,120.7 +536,127,190.4,177,175,173.5,162.9,170.6,152.9,149.2,146.2,122.6,121.3,146.9,128.3,122.6,121.6,121.2,120.5,120.7 +537,127,190.5,177.1,175.1,173.6,163,170.7,153,149.2,146.3,123,121.3,147.1,128.4,122.8,121.6,121.2,120.5,120.7 +538,127,190.6,177.2,175.2,173.7,163.1,170.7,153,149.3,146.4,123.3,121.3,147.2,128.6,123,121.6,121.3,120.5,120.7 +539,127,190.7,177.3,175.3,173.8,163.2,170.8,153.1,149.4,146.4,123.6,121.3,147.3,128.7,123.2,121.6,121.3,120.5,120.7 +540,127,190.8,177.4,175.4,173.9,163.4,170.8,153.2,149.5,146.5,124,121.4,147.4,128.8,123.3,121.7,121.3,120.5,120.7 +541,127.1,190.9,177.5,175.5,174,163.5,170.9,153.2,149.5,146.6,124.3,121.4,147.5,129,123.5,121.7,121.3,120.6,120.7 +542,127.1,191,177.6,175.6,174.1,163.6,170.9,153.3,149.6,146.7,124.7,121.4,147.6,129.1,123.7,121.7,121.3,120.6,120.8 +543,127.1,191.1,177.7,175.8,174.2,163.7,171,153.4,149.7,146.7,125,121.4,147.7,129.3,123.8,121.7,121.4,120.6,120.8 +544,127.1,191.2,177.8,175.9,174.3,163.8,171,153.4,149.7,146.8,125.3,121.4,147.8,129.4,124,121.7,121.4,120.6,120.8 +545,127.1,191.3,177.9,176,174.4,163.9,171.1,153.5,149.8,146.9,125.5,121.5,147.9,129.5,124.1,121.7,121.4,120.7,120.8 +546,127.1,191.4,178,176.1,174.5,164,171.2,153.6,149.9,147,125.8,121.5,148,129.7,124.2,121.7,121.4,120.7,120.8 +547,127.2,191.5,178,176.2,174.6,164.2,171.2,153.7,150,147.1,126,121.5,148.1,129.8,124.3,121.7,121.4,120.7,120.8 +548,127.2,191.6,178.1,176.3,174.8,164.3,171.3,153.7,150.1,147.2,126.3,121.5,148.2,129.9,124.4,121.7,121.4,120.7,120.8 +549,127.2,191.7,178.2,176.4,174.9,164.4,171.3,153.8,150.2,147.2,126.5,121.5,148.3,130.1,124.6,121.7,121.5,120.7,120.8 +550,127.2,191.8,178.3,176.5,175,164.5,171.4,153.9,150.2,147.3,126.8,121.6,148.4,130.2,124.7,121.8,121.4,120.8,120.8 +551,127.2,191.9,178.4,176.6,175.1,164.6,171.5,154,150.3,147.4,127,121.6,148.5,130.4,124.9,121.8,121.5,120.8,120.8 +552,127.2,191.9,178.5,176.7,175.2,164.7,171.5,154,150.4,147.5,127.2,121.6,148.6,130.5,125.1,121.8,121.5,120.8,120.8 +553,127.2,192,178.6,176.8,175.3,164.8,171.6,154.1,150.5,147.6,127.5,121.6,148.7,130.6,125.2,121.8,121.5,120.8,120.8 +554,127.3,192.1,178.7,176.9,175.4,165,171.7,154.2,150.6,147.7,127.7,121.7,148.8,130.8,125.4,121.8,121.5,120.8,120.9 +555,127.3,192.2,178.8,177,175.5,165.1,171.7,154.3,150.7,147.8,128,121.7,148.9,130.9,125.6,121.8,121.5,120.9,120.9 +556,127.3,192.3,178.9,177.1,175.6,165.2,171.8,154.4,150.8,147.9,128.2,121.7,149,131,125.7,121.8,121.6,120.9,120.9 +557,127.3,192.4,179,177.2,175.7,165.3,171.9,154.5,150.9,148,128.5,121.7,149.1,131.2,125.9,121.9,121.6,120.9,120.9 +558,127.3,192.5,179.1,177.3,175.8,165.4,171.9,154.6,151,148.1,128.7,121.7,149.2,131.3,126.1,121.9,121.6,120.9,120.9 +559,127.3,192.6,179.2,177.4,175.9,165.5,172,154.6,151.1,148.2,129,121.8,149.3,131.4,126.2,121.9,121.6,120.9,120.9 +560,127.4,192.7,179.3,177.5,176,165.6,172.1,154.7,151.2,148.3,129.2,121.8,149.4,131.5,126.4,121.9,121.6,121,120.9 +561,127.4,192.8,179.4,177.6,176.1,165.8,172.2,154.8,151.3,148.4,129.5,121.8,149.5,131.7,126.6,121.9,121.6,121,120.9 +562,127.4,192.9,179.5,177.7,176.2,165.9,172.2,154.9,151.4,148.5,129.7,121.8,149.6,131.8,126.7,122,121.6,121,120.9 +563,127.4,193,179.6,177.8,176.3,166,172.3,155,151.5,148.6,130,121.8,149.6,131.9,126.9,122,121.7,121,120.9 +564,127.4,193.1,179.7,177.9,176.4,166.1,172.4,155.1,151.6,148.7,130.2,121.9,149.7,132,127,122,121.7,121,120.9 +565,127.4,193.2,179.8,178,176.5,166.2,172.4,155.2,151.7,148.8,130.5,121.9,149.8,132.2,127.2,121.9,121.7,121,120.9 +566,127.4,193.3,179.9,178.1,176.6,166.3,172.5,155.3,151.8,148.9,130.7,121.9,149.8,132.2,127.2,122,121.7,121.1,121 +567,127.5,193.4,180,178.2,176.7,166.4,172.6,155.4,151.9,149,131,121.9,149.9,132.3,127.4,122,121.7,121.1,121 +568,127.5,193.5,180.1,178.3,176.8,166.5,172.7,155.5,152,149.1,131.2,121.9,150,132.5,127.6,122.1,121.7,121.1,121 +569,127.5,193.6,180.2,178.4,176.9,166.7,172.7,155.6,152.1,149.2,131.5,122,150.1,132.6,127.8,122.3,121.7,121.1,121 +570,127.5,193.7,180.3,178.5,177,166.8,172.8,155.7,152.2,149.3,131.7,122,150.3,132.8,128,122.5,121.7,121.1,121 +571,127.5,193.8,180.4,178.6,177.1,166.9,172.9,155.8,152.3,149.5,132,122,150.5,132.9,128.2,122.7,121.7,121.2,121 +572,127.5,193.9,180.5,178.7,177.2,167,173,155.9,152.4,149.6,132.2,122,150.9,133.1,128.3,123,121.8,121.2,121 +573,127.6,194,180.6,178.8,177.3,167.1,173.1,156,152.5,149.7,132.5,122,151.3,133.2,128.5,123.2,121.7,121.2,121 +574,127.6,194.1,180.7,178.9,177.4,167.2,173.1,156.1,152.6,149.8,132.7,122.1,151.7,133.4,128.7,123.4,121.8,121.2,121 +575,127.6,194.2,180.8,179,177.5,167.3,173.2,156.2,152.7,149.9,133,122.1,152.1,133.5,128.9,123.7,121.8,121.2,121 +576,127.6,194.3,180.9,179.1,177.6,167.4,173.3,156.3,152.8,150,133.2,122.1,152.5,133.7,129.1,123.9,121.8,121.2,121 +577,127.6,194.4,181,179.2,177.7,167.5,173.4,156.4,152.9,150.2,133.5,122.1,153,133.8,129.3,124.1,121.8,121.3,121.1 +578,127.6,194.5,181.1,179.3,177.8,167.7,173.4,156.5,153.1,150.3,133.8,122.1,153.4,134,129.4,124.4,121.8,121.3,121.1 +579,127.6,194.6,181.2,179.4,177.9,167.8,173.5,156.6,153.2,150.4,134.2,122.1,153.8,134.1,129.6,124.6,121.8,121.3,121.1 +580,127.7,194.7,181.3,179.5,178,167.9,173.6,156.7,153.3,150.5,134.5,122.2,154.2,134.3,129.8,124.8,121.8,121.3,121.1 +581,127.7,194.8,181.4,179.6,178.1,168,173.7,156.8,153.4,150.6,134.8,122.2,154.6,134.4,130,125,121.8,121.3,121.1 +582,127.7,194.9,181.5,179.7,178.2,168.1,173.7,156.9,153.5,150.7,135.1,122.2,155,134.6,130.2,125.3,121.8,121.4,121.1 +583,127.7,195,181.6,179.7,178.3,168.2,173.8,157,153.6,150.9,135.4,122.2,155.4,135,130.3,125.5,121.8,121.4,121.1 +584,127.7,195.1,181.7,179.8,178.4,168.3,173.9,157.1,153.7,151,135.7,122.2,155.8,135.4,130.5,125.7,121.8,121.4,121.2 +585,127.7,195.2,181.8,179.9,178.5,168.4,174,157.2,153.8,151.1,136,122.3,156.2,135.8,130.7,126,121.7,121.4,121.2 +586,127.7,195.3,181.8,180,178.6,168.5,174.1,157.3,154,151.2,136.3,122.3,156.7,136.2,130.9,126.2,121.8,121.4,121.2 +587,127.8,195.4,181.9,180.1,178.7,168.7,174.1,157.4,154.1,151.3,136.6,122.3,157.1,136.6,131.1,126.4,121.8,121.4,121.2 +588,127.8,195.5,182,180.2,178.8,168.8,174.2,157.5,154.2,151.5,136.8,122.3,157.5,137,131.3,126.7,121.8,121.5,121.2 +589,127.8,195.6,182.1,180.3,178.9,168.9,174.3,157.6,154.3,151.6,137.1,122.3,157.9,137.4,131.5,126.9,121.8,121.5,121.2 +590,127.8,195.7,182.2,180.4,179,169,174.4,157.7,154.4,151.7,137.4,122.4,158.3,137.9,131.9,127.1,121.8,121.5,121.2 +591,127.8,195.8,182.3,180.5,179.1,169.1,174.5,157.8,154.5,151.8,137.6,122.4,158.7,138.3,132.3,127.4,121.9,121.5,121.3 +592,127.8,195.9,182.4,180.6,179.2,169.2,174.5,157.9,154.6,152,137.9,122.4,159.1,138.7,132.7,127.6,121.9,121.5,121.3 +593,127.9,196,182.5,180.7,179.3,169.3,174.6,158,154.8,152.1,138.1,122.4,159.5,139.1,133.1,127.8,121.9,121.5,121.3 +594,127.9,196.1,182.6,180.8,179.4,169.4,174.7,158.1,154.9,152.2,138.4,122.4,159.9,139.5,133.5,128.1,121.9,121.6,121.3 +595,127.9,196.2,182.7,180.9,179.5,169.5,174.8,158.2,155,152.3,138.6,122.4,160.3,139.9,133.9,128.3,121.9,121.6,121.3 +596,127.9,196.3,182.8,181,179.6,169.7,174.8,158.3,155.1,152.5,138.8,122.5,160.8,140.3,134.4,128.5,122,121.6,121.4 +597,127.9,196.4,182.9,181.1,179.7,169.8,174.9,158.4,155.2,152.6,139,122.5,161.2,140.7,134.8,128.8,122,121.6,121.4 +598,127.9,196.5,183,181.2,179.8,169.9,175,158.5,155.3,152.7,139.3,122.5,161.6,141.1,135.2,129,122,121.6,121.4 +599,127.9,196.6,183.1,181.3,179.9,170,175.1,158.6,155.5,152.8,139.5,122.5,162,141.6,135.6,129.3,122,121.6,121.4 +600,128,196.7,183.2,181.4,180,170.1,175.2,158.7,155.6,153,139.7,122.5,162.4,142,136,129.7,122,121.7,121.4 +601,128,196.8,183.3,181.5,180.1,170.2,175.2,158.8,155.7,153.1,139.9,122.6,162.8,142.4,136.4,130.1,122.1,121.7,121.4 +602,128,196.9,183.4,181.6,180.2,170.3,175.3,158.9,155.8,153.2,140.1,122.6,163.2,142.8,136.8,130.5,122.1,121.7,121.5 +603,128,197,183.4,181.7,180.3,170.4,175.4,159,155.9,153.3,140.3,122.6,163.6,143.2,137.2,130.9,122.1,121.7,121.5 +604,128,197.1,183.5,181.8,180.4,170.5,175.5,159.1,156,153.5,140.5,122.6,164,143.6,137.6,131.4,122.1,121.7,121.5 +605,128,197.2,183.6,181.9,180.5,170.6,175.5,159.2,156.1,153.6,140.7,122.6,164.4,144,138.1,131.8,122.1,121.8,121.5 +606,128,197.3,183.7,182,180.6,170.7,175.6,159.3,156.3,153.7,140.9,122.6,164.9,144.4,138.5,132.2,122.1,121.8,121.5 +607,128.1,197.4,183.8,182,180.7,170.9,175.7,159.4,156.4,153.8,141.1,122.7,165.3,144.8,138.9,132.6,122.2,121.8,121.6 +608,128.1,197.5,183.9,182.1,180.8,171,175.8,159.5,156.5,154,141.3,122.7,165.7,145.3,139.3,133,122.2,121.8,121.6 +609,128.1,197.6,184,182.2,180.9,171.1,175.9,159.6,156.6,154.1,141.4,122.7,166.1,145.7,139.7,133.4,122.2,121.8,121.6 +610,128.1,197.7,184.1,182.3,181,171.2,175.9,159.8,156.7,154.2,141.5,122.7,166.5,146.1,140.1,133.8,122.2,121.8,121.6 +611,128.1,197.8,184.2,182.4,181.1,171.3,176,159.9,156.8,154.3,141.6,122.7,166.9,146.5,140.5,134.2,122.2,121.9,121.6 +612,128.1,197.9,184.3,182.5,181.2,171.4,176.1,160,157,154.5,141.7,122.7,167.3,146.9,140.9,134.6,122.3,121.9,121.6 +613,128.1,198,184.4,182.6,181.3,171.5,176.2,160.1,157.1,154.6,141.8,122.8,167.7,147.3,141.3,135,122.3,121.9,121.7 +614,128.1,198.1,184.5,182.7,181.4,171.6,176.2,160.2,157.2,154.7,141.9,122.8,168.1,147.7,141.8,135.5,122.3,121.9,121.7 +615,128.2,198.2,184.6,182.8,181.5,171.7,176.3,160.3,157.3,154.8,141.9,122.8,168.6,148.1,142.2,135.8,122.3,121.9,121.7 +616,128.2,198.3,184.6,182.9,181.5,171.8,176.4,160.4,157.4,155,142,122.8,169,148.5,142.6,136.2,122.3,121.9,121.7 +617,128.2,198.4,184.7,183,181.6,172,176.5,160.5,157.5,155.1,142.1,122.8,169.4,149,143,136.5,122.4,121.9,121.7 +618,128.2,198.5,184.8,183.1,181.7,172.1,176.6,160.6,157.6,155.2,142.2,122.9,169.8,149.4,143.4,136.9,122.4,122,121.7 +619,128.2,198.6,184.9,183.2,181.8,172.2,176.6,160.7,157.8,155.3,142.3,122.9,170.2,149.8,143.8,137.2,122.4,122,121.8 +620,128.2,198.7,185,183.2,181.9,172.3,176.7,160.8,157.9,155.5,142.4,122.9,170.6,150.2,144.2,137.5,122.4,122,121.8 +621,128.2,198.8,185.1,183.3,182,172.4,176.8,160.9,158,155.6,142.5,122.9,170.7,150.4,144.5,137.8,122.4,122,121.8 +622,128.3,198.9,185.2,183.4,182.1,172.5,176.9,161,158.1,155.7,142.6,122.9,170.8,150.6,144.6,138.1,122.4,122,121.8 +623,128.3,199,185.3,183.5,182.2,172.6,176.9,161.1,158.2,155.8,142.7,122.9,170.8,150.7,144.8,138.4,122.5,122,121.8 +624,128.3,199.1,185.4,183.6,182.3,172.7,177,161.2,158.3,156,142.8,123,170.9,150.8,145,138.7,122.5,122.1,121.9 +625,128.3,199.2,185.5,183.7,182.4,172.8,177.1,161.3,158.4,156.1,142.9,123,171,150.9,145.2,138.9,122.5,122.1,121.9 +626,128.3,199.3,185.6,183.8,182.5,172.9,177.2,161.4,158.6,156.2,142.9,123,171.1,151,145.3,139.2,122.5,122.1,121.9 +627,128.3,199.4,185.6,183.9,182.6,173,177.3,161.5,158.7,156.3,143,123,171.1,151.2,145.5,139.4,122.5,122.1,121.9 +628,128.3,199.4,185.7,184,182.7,173.1,177.3,161.6,158.8,156.5,143.1,123,171.2,151.3,145.7,139.7,122.6,122.1,121.9 +629,128.4,199.5,185.8,184.1,182.8,173.2,177.4,161.7,158.9,156.6,143.2,123,171.2,151.4,145.8,139.9,122.6,122.1,121.9 +630,128.4,199.6,185.9,184.2,182.9,173.4,177.5,161.8,159,156.7,143.3,123.1,171.3,151.5,146,140.1,122.6,122.1,122 +631,128.4,199.7,186,184.2,182.9,173.5,177.6,161.9,159.1,156.8,143.4,123.1,171.4,151.6,146.1,140.4,122.6,122.1,122 +632,128.4,199.8,186.1,184.3,183,173.6,177.6,162,159.2,156.9,143.5,123.1,171.4,151.7,146.3,140.6,122.6,122.1,122 +633,128.4,199.9,186.2,184.4,183.1,173.7,177.7,162.1,159.3,157.1,143.6,123.1,171.5,151.8,146.4,140.8,122.6,122.2,122 +634,128.4,200,186.3,184.5,183.2,173.8,177.8,162.2,159.5,157.2,143.7,123.1,171.5,151.9,146.5,141,122.7,122.2,122 +635,128.4,200.1,186.4,184.6,183.3,173.9,177.9,162.3,159.6,157.3,143.8,123.1,171.6,152,146.7,141.2,122.7,122.2,122 +636,128.5,200.2,186.4,184.7,183.4,174,177.9,162.4,159.7,157.4,143.9,123.2,171.6,152.1,146.8,141.4,122.7,122.2,122.1 +637,128.5,200.3,186.5,184.8,183.5,174.1,178,162.5,159.8,157.5,144,123.2,171.6,152.2,147,141.6,122.7,122.2,122.1 +638,128.5,200.4,186.6,184.9,183.6,174.2,178.1,162.6,159.9,157.7,144.1,123.2,171.5,152.3,147.1,141.8,122.7,122.2,122.1 +639,128.5,200.5,186.7,185,183.7,174.3,178.2,162.7,160,157.8,144.2,123.2,171.5,152.4,147.2,142,122.7,122.2,122.1 +640,128.5,200.6,186.8,185,183.8,174.4,178.2,162.8,160.1,157.9,144.3,123.2,171.5,152.5,147.4,142.2,122.8,122.2,122.1 +641,128.5,200.7,186.9,185.1,183.9,174.5,178.3,162.9,160.2,158,144.4,123.2,171.4,152.6,147.5,142.4,122.8,122.3,122.1 +642,128.5,200.8,187,185.2,183.9,174.6,178.4,163,160.4,158.1,144.5,123.2,171.4,152.7,147.6,142.6,122.8,122.3,122.2 +643,128.5,200.9,187.1,185.3,184,174.8,178.5,163.1,160.5,158.3,144.6,123.3,171.4,152.8,147.7,142.8,122.8,122.3,122.2 +644,128.6,201,187.1,185.4,184.1,174.9,178.5,163.2,160.6,158.4,144.7,123.3,171.3,152.9,147.9,143,122.8,122.3,122.2 +645,128.6,201.1,187.2,185.5,184.2,175,178.6,163.3,160.7,158.5,144.8,123.3,171.3,152.9,148,143.1,122.9,122.3,122.2 +646,128.6,201.2,187.3,185.6,184.3,175.1,178.7,163.4,160.8,158.6,144.9,123.3,171.3,153,148.1,143.3,122.9,122.3,122.2 +647,128.6,201.3,187.4,185.6,184.4,175.2,178.8,163.5,160.9,158.7,145,123.3,171.2,153.1,148.2,143.5,122.9,122.3,122.2 +648,128.6,201.4,187.5,185.7,184.5,175.3,178.9,163.6,161,158.9,145.1,123.3,171.2,153.1,148.3,143.6,122.9,122.3,122.3 +649,128.6,201.5,187.6,185.8,184.6,175.4,178.9,163.7,161.1,159,145.3,123.3,171.2,153.1,148.4,143.8,122.9,122.4,122.3 +650,128.6,201.6,187.7,185.9,184.7,175.5,179,163.8,161.2,159.1,145.4,123.4,171.2,153.1,148.6,144,122.9,122.4,122.3 +651,128.7,201.7,187.7,186,184.7,175.6,179.1,163.9,161.3,159.2,145.5,123.4,171.1,153.1,148.7,144.1,123,122.4,122.3 +652,128.7,201.8,187.8,186.1,184.8,175.7,179.2,164,161.5,159.3,145.6,123.4,171.1,153.1,148.8,144.3,123,122.4,122.3 +653,128.7,201.9,187.9,186.2,184.9,175.8,179.2,164.1,161.6,159.5,145.7,123.4,171.1,153.1,148.9,144.4,123,122.4,122.4 +654,128.7,202,188,186.2,185,175.9,179.3,164.2,161.7,159.6,145.8,123.4,171.1,153.1,149,144.6,123,122.4,122.4 +655,128.7,202.1,188.1,186.3,185.1,176,179.4,164.3,161.8,159.7,145.9,123.4,171.1,153.1,149,144.7,123,122.4,122.4 +656,128.7,202.2,188.2,186.4,185.2,176.1,179.5,164.4,161.9,159.8,146.1,123.4,171,153.1,149,144.9,123,122.4,122.4 +657,128.7,202.3,188.3,186.5,185.3,176.2,179.5,164.5,162,159.9,146.2,123.4,171,153.1,149,145,123.1,122.4,122.4 +658,128.7,202.4,188.3,186.6,185.3,176.3,179.6,164.6,162.1,160,146.3,123.5,171,153.1,149.1,145.2,123.1,122.4,122.4 +659,128.8,202.5,188.4,186.7,185.4,176.4,179.7,164.7,162.2,160.2,146.4,123.5,171,153.1,149.1,145.3,123.1,122.4,122.5 +660,128.8,202.6,188.5,186.8,185.5,176.5,179.8,164.8,162.3,160.3,146.5,123.5,171,153.1,149.1,145.5,123.1,122.4,122.5 +661,128.8,202.7,188.6,186.8,185.6,176.7,179.8,164.9,162.4,160.4,146.7,123.5,171,153.1,149.1,145.6,123.1,122.4,122.5 +662,128.8,202.8,188.7,186.9,185.7,176.8,179.9,165,162.5,160.5,146.8,123.5,171,153.1,149.1,145.8,123.1,122.4,122.5 +663,128.8,202.9,188.8,187,185.8,176.9,180,165.1,162.7,160.6,146.9,123.5,171,153.1,149.1,145.9,123.2,122.4,122.5 +664,128.8,203,188.9,187.1,185.9,177,180.1,165.2,162.8,160.7,147,123.5,171,153.1,149.2,146,123.2,122.4,122.5 +665,128.8,203.1,188.9,187.2,185.9,177.1,180.1,165.3,162.9,160.9,147.2,123.5,171,153.1,149.2,146,123.2,122.4,122.6 +666,128.9,203.2,189,187.3,186,177.2,180.2,165.4,163,161,147.3,123.6,171,153.1,149.2,146.1,123.2,122.4,122.6 +667,128.9,203.3,189.1,187.3,186.1,177.3,180.3,165.5,163.1,161.1,147.4,123.6,171,153.1,149.2,146.1,123.2,122.4,122.6 +668,128.9,203.4,189.2,187.4,186.2,177.4,180.4,165.6,163.2,161.2,147.5,123.6,171,153.1,149.3,146.2,123.2,122.4,122.6 +669,128.9,203.5,189.3,187.5,186.3,177.5,180.5,165.7,163.3,161.3,147.7,123.6,171,153.2,149.3,146.2,123.3,122.4,122.6 +670,128.9,203.6,189.4,187.6,186.4,177.6,180.5,165.8,163.4,161.4,147.8,123.6,171,153.2,149.3,146.2,123.3,122.4,122.6 +671,128.9,203.7,189.4,187.7,186.5,177.7,180.6,165.9,163.5,161.5,147.9,123.6,171,153.2,149.3,146.3,123.3,122.4,122.7 +672,128.9,203.8,189.5,187.8,186.5,177.8,180.7,166,163.6,161.7,148.1,123.6,171,153.2,149.4,146.3,123.3,122.5,122.7 +673,128.9,203.9,189.6,187.8,186.6,177.9,180.8,166.1,163.7,161.8,148.2,123.6,171.1,153.2,149.4,146.4,123.3,122.5,122.7 +674,129,204,189.7,187.9,186.7,178,180.8,166.2,163.8,161.9,148.3,123.7,171.1,153.3,149.4,146.4,123.3,122.5,122.7 +675,129,204.1,189.8,188,186.8,178.1,180.9,166.3,164,162,148.5,123.7,171.1,153.3,149.5,146.5,123.4,122.5,122.7 +676,129,204.2,189.9,188.1,186.9,178.2,181,166.4,164.1,162.1,148.6,123.7,171.1,153.3,149.5,146.5,123.4,122.5,122.7 +677,129,204.3,189.9,188.2,187,178.3,181.1,166.5,164.2,162.2,148.7,123.7,171.1,153.3,149.6,146.6,123.4,122.5,122.8 +678,129,204.4,190,188.2,187,178.4,181.1,166.6,164.3,162.3,148.9,123.7,171.2,153.4,149.6,146.6,123.4,122.6,122.8 +679,129,204.5,190.1,188.3,187.1,178.5,181.2,166.7,164.4,162.5,149,123.7,171.2,153.4,149.6,146.7,123.4,122.6,122.8 +680,129,204.6,190.2,188.4,187.2,178.6,181.3,166.8,164.5,162.6,149.1,123.7,171.2,153.4,149.7,146.7,123.4,122.6,122.8 +681,129,204.7,190.3,188.5,187.3,178.7,181.4,166.9,164.6,162.7,149.3,123.7,171.2,153.5,149.7,146.8,123.5,122.6,122.8 +682,129.1,204.8,190.4,188.6,187.4,178.8,181.4,167,164.7,162.8,149.4,123.7,171.3,153.5,149.8,146.8,123.5,122.6,122.8 +683,129.1,204.9,190.5,188.7,187.4,178.9,181.5,167.1,164.8,162.9,149.5,123.8,171.3,153.6,149.8,146.9,123.5,122.6,122.8 +684,129.1,205,190.5,188.7,187.5,179,181.6,167.2,164.9,163,149.7,123.8,171.3,153.6,149.9,146.9,123.5,122.7,122.9 +685,129.1,205.1,190.6,188.8,187.6,179.1,181.7,167.3,165,163.1,149.8,123.8,171.4,153.7,149.9,147,123.5,122.7,122.9 +686,129.1,205.2,190.7,188.9,187.7,179.2,181.7,167.4,165.1,163.2,150,123.8,171.4,153.7,150,147.1,123.5,122.7,122.9 +687,129.1,205.3,190.8,189,187.8,179.3,181.8,167.5,165.2,163.4,150.1,123.8,171.4,153.7,150,147.1,123.6,122.7,122.9 +688,129.1,205.4,190.9,189.1,187.9,179.4,181.9,167.6,165.3,163.5,150.2,123.8,171.5,153.8,150.1,147.2,123.6,122.7,122.9 +689,129.1,205.5,191,189.1,187.9,179.5,182,167.7,165.5,163.6,150.4,123.8,171.5,153.8,150.1,147.2,123.7,122.7,122.9 +690,129.2,205.6,191,189.2,188,179.6,182.1,167.8,165.6,163.7,150.5,123.8,171.6,153.9,150.2,147.3,123.8,122.8,123 +691,129.2,205.7,191.1,189.3,188.1,179.7,182.1,167.9,165.7,163.8,150.6,123.8,171.6,154,150.3,147.4,123.9,122.8,123 +692,129.2,205.8,191.2,189.4,188.2,179.8,182.2,168,165.8,163.9,150.8,123.9,171.7,154,150.3,147.4,123.9,122.8,123 +693,129.2,205.9,191.3,189.5,188.3,179.9,182.3,168.1,165.9,164,150.9,123.9,171.7,154.1,150.4,147.5,124.1,122.8,123 +694,129.2,206,191.4,189.6,188.3,180,182.4,168.2,166,164.1,151.1,123.9,171.7,154.1,150.5,147.6,124.5,122.8,123 +695,129.2,206.1,191.5,189.6,188.4,180.1,182.4,168.3,166.1,164.3,151.2,123.9,171.8,154.2,150.5,147.6,124.9,122.9,123 +696,129.2,206.2,191.5,189.7,188.5,180.2,182.5,168.4,166.2,164.4,151.3,123.9,171.8,154.3,150.6,147.7,125.2,122.9,123 +697,129.2,206.3,191.6,189.8,188.6,180.3,182.6,168.5,166.3,164.5,151.5,123.9,171.9,154.3,150.7,147.8,125.6,122.9,123.1 +698,129.3,206.4,191.7,189.9,188.7,180.4,182.7,168.6,166.4,164.6,151.6,123.9,172,154.4,150.7,147.9,126,122.9,123.1 +699,129.3,206.5,191.8,190,188.7,180.5,182.7,168.7,166.5,164.7,151.8,123.9,172,154.5,150.8,147.9,126.3,122.9,123.1 +700,129.3,206.6,191.9,190,188.8,180.6,182.8,168.8,166.6,164.8,151.9,123.9,172.1,154.5,150.9,148,126.7,122.9,123.1 +701,129.3,206.7,192,190.1,188.9,180.7,182.9,168.9,166.7,164.9,152,123.9,172.1,154.6,151,148.1,126.9,123,123.1 +702,129.3,206.8,192,190.2,189,180.8,183,169,166.8,165,152.2,124,172.2,154.7,151,148.2,127.2,123,123.1 +703,129.3,206.9,192.1,190.3,189.1,180.9,183.1,169.1,166.9,165.1,152.3,124,172.2,154.7,151.1,148.3,127.4,123,123.1 +704,129.3,207,192.2,190.4,189.1,181,183.1,169.2,167,165.3,152.4,124,172.3,154.8,151.2,148.3,127.6,123,123.2 +705,129.3,207.1,192.3,190.4,189.2,181.1,183.2,169.3,167.1,165.4,152.6,124,172.4,154.9,151.3,148.4,127.9,123,123.2 +706,129.4,207.2,192.4,190.5,189.3,181.2,183.3,169.4,167.2,165.5,152.7,124,172.4,155,151.4,148.5,128.1,123,123.2 +707,129.4,207.3,192.5,190.6,189.4,181.3,183.4,169.5,167.4,165.6,152.9,124,172.5,155,151.5,148.6,128.3,123.1,123.2 +708,129.4,207.4,192.5,190.7,189.5,181.4,183.4,169.6,167.5,165.7,153,124,172.5,155.1,151.5,148.7,128.6,123.1,123.2 +709,129.4,207.5,192.6,190.8,189.5,181.5,183.5,169.7,167.6,165.8,153.1,124,172.6,155.2,151.6,148.8,128.8,123.1,123.2 +710,129.4,207.6,192.7,190.8,189.6,181.6,183.6,169.8,167.7,165.9,153.3,124,172.7,155.3,151.7,148.9,129,123.1,123.2 +711,129.4,207.7,192.8,190.9,189.7,181.7,183.7,169.9,167.8,166,153.4,124,172.7,155.4,151.8,149,129.3,123.1,123.3 +712,129.4,207.8,192.9,191,189.8,181.8,183.8,170,167.9,166.1,153.6,124,172.8,155.4,151.9,149.1,129.5,123.1,123.3 +713,129.4,207.9,193,191.1,189.9,181.9,183.8,170.1,168,166.2,153.7,124,172.9,155.5,152,149.2,129.7,123.2,123.3 +714,129.5,208,193.1,191.2,189.9,182,183.9,170.2,168.1,166.4,153.8,124,172.9,155.6,152.1,149.3,130,123.2,123.3 +715,129.5,208.1,193.1,191.3,190,182.1,184,170.3,168.2,166.5,154,124,173,155.7,152.2,149.4,130.2,123.2,123.3 +716,129.5,208.2,193.2,191.3,190.1,182.2,184.1,170.3,168.3,166.6,154.1,124,173.1,155.8,152.3,149.5,130.4,123.2,123.3 +717,129.5,208.3,193.3,191.4,190.2,182.3,184.1,170.4,168.4,166.7,154.2,124,173.1,155.9,152.4,149.6,130.7,123.2,123.3 +718,129.5,208.4,193.4,191.5,190.3,182.4,184.2,170.5,168.5,166.8,154.4,124.1,173.2,156,152.5,149.7,130.9,123.2,123.4 +719,129.5,208.5,193.5,191.6,190.4,182.5,184.3,170.6,168.6,166.9,154.5,124.1,173.3,156.1,152.6,149.8,131.1,123.3,123.4 +720,129.5,208.6,193.6,191.7,190.4,182.6,184.4,170.7,168.7,167,154.6,124.1,173.4,156.2,152.7,149.9,131.4,123.3,123.4 +721,129.5,208.7,193.6,191.7,190.5,182.7,184.5,170.8,168.8,167.1,154.8,124.1,173.4,156.2,152.8,150,131.6,123.3,123.4 +722,129.5,208.8,193.7,191.8,190.6,182.8,184.5,170.9,168.9,167.2,154.9,124.1,173.5,156.3,152.9,150.1,131.8,123.3,123.4 +723,129.6,208.9,193.8,191.9,190.7,182.9,184.6,171,169,167.3,155,124.1,173.6,156.4,153,150.2,132.1,123.3,123.4 +724,129.6,209,193.9,192,190.8,183,184.7,171.1,169.1,167.4,155.2,124.1,173.6,156.5,153.1,150.3,132.3,123.3,123.4 +725,129.6,209.1,194,192.1,190.8,183.1,184.8,171.2,169.2,167.6,155.3,124.1,173.7,156.6,153.2,150.4,132.5,123.4,123.4 +726,129.6,209.2,194.1,192.2,190.9,183.1,184.9,171.3,169.3,167.7,155.5,124.1,173.8,156.7,153.3,150.5,132.8,123.4,123.5 +727,129.6,209.3,194.2,192.2,191,183.2,184.9,171.4,169.4,167.8,155.6,124.1,173.9,156.8,153.4,150.6,133,123.4,123.5 +728,129.6,209.4,194.2,192.3,191.1,183.3,185,171.5,169.5,167.9,155.7,124.1,173.9,156.9,153.5,150.8,133.2,123.4,123.5 +729,129.6,209.5,194.3,192.4,191.2,183.4,185.1,171.6,169.6,168,155.9,124.1,174,157,153.6,150.9,133.5,123.4,123.5 +730,129.6,209.6,194.4,192.5,191.2,183.5,185.2,171.7,169.7,168.1,156,124.1,174.1,157.1,153.7,151,133.7,123.4,123.5 +731,129.7,209.7,194.5,192.6,191.3,183.6,185.3,171.8,169.9,168.2,156.1,124.1,174.2,157.2,153.9,151.1,133.9,123.4,123.5 +732,129.7,209.8,194.6,192.6,191.4,183.7,185.3,171.9,170,168.3,156.2,124.1,174.2,157.3,154,151.2,134.1,123.5,123.5 +733,129.7,209.9,194.7,192.7,191.5,183.8,185.4,172,170.1,168.4,156.4,124.1,174.3,157.4,154.1,151.3,134.4,123.5,123.6 +734,129.7,210,194.8,192.8,191.6,183.9,185.5,172.1,170.2,168.5,156.5,124.1,174.4,157.5,154.2,151.5,134.6,123.5,123.6 +735,129.7,210.1,194.8,192.9,191.6,184,185.6,172.2,170.3,168.6,156.6,124.1,174.5,157.6,154.3,151.6,134.8,123.5,123.6 +736,129.7,210.2,194.9,193,191.7,184.1,185.7,172.3,170.4,168.7,156.8,124.1,174.5,157.7,154.4,151.7,135.1,123.5,123.6 +737,129.7,210.3,195,193.1,191.8,184.2,185.7,172.4,170.5,168.8,156.9,124.1,174.6,157.8,154.5,151.8,135.3,123.5,123.6 +738,129.7,210.4,195.1,193.1,191.9,184.3,185.8,172.5,170.6,169,157,124,174.7,157.9,154.6,151.9,135.5,123.6,123.6 +739,129.7,210.5,195.2,193.2,192,184.3,185.9,172.6,170.7,169.1,157.2,124,174.8,158,154.7,152.1,136,123.6,123.6 +740,129.8,210.6,195.3,193.3,192,184.4,186,172.7,170.8,169.2,157.3,124,174.9,158.1,154.9,152.2,136.3,123.6,123.6 +741,129.8,210.7,195.4,193.4,192.1,184.5,186.1,172.8,170.9,169.3,157.4,124.1,174.9,158.2,155,152.3,136.6,123.6,123.7 +742,129.8,210.8,195.4,193.5,192.2,184.6,186.1,172.9,171,169.4,157.6,124.1,175,158.3,155.1,152.4,136.9,123.6,123.7 +743,129.8,210.9,195.5,193.6,192.3,184.7,186.2,173,171.1,169.5,157.7,124.1,175.1,158.4,155.2,152.5,137.2,123.6,123.7 +744,129.8,211,195.6,193.6,192.4,184.8,186.3,173.1,171.2,169.6,157.8,124.1,175.2,158.5,155.3,152.7,137.5,123.7,123.7 +745,129.8,211.1,195.7,193.7,192.5,184.9,186.4,173.2,171.3,169.7,157.9,124.1,175.2,158.6,155.4,152.8,137.8,123.7,123.7 +746,129.8,211.2,195.8,193.8,192.5,185,186.5,173.3,171.4,169.8,158.1,124.1,175.3,158.7,155.5,152.9,138,123.7,123.7 +747,129.8,211.3,195.9,193.9,192.6,185.1,186.5,173.4,171.5,169.9,158.2,124.1,175.4,158.8,155.7,153,138.3,123.7,123.7 +748,129.9,211.4,196,194,192.7,185.2,186.6,173.5,171.6,170,158.3,124.2,175.5,158.9,155.8,153.2,138.6,123.7,123.7 +749,129.9,211.5,196,194,192.8,185.2,186.7,173.6,171.7,170.1,158.5,124.2,175.5,159,155.9,153.3,138.8,123.7,123.8 +750,129.9,211.6,196.1,194.1,192.9,185.3,186.8,173.7,171.8,170.2,158.6,124.2,175.6,159.1,156,153.4,139.1,123.8,123.8 +751,129.9,211.7,196.2,194.2,192.9,185.4,186.9,173.8,171.9,170.3,158.7,124.2,175.7,159.2,156.1,153.5,139.3,123.8,123.8 +752,129.9,211.7,196.3,194.3,193,185.5,187,173.9,172,170.5,158.8,124.2,175.8,159.4,156.2,153.7,139.6,123.8,123.8 +753,129.9,211.8,196.4,194.4,193.1,185.6,187,174,172.1,170.6,159,124.2,175.9,159.5,156.4,153.8,139.8,123.8,123.8 +754,129.9,211.9,196.5,194.5,193.2,185.7,187.1,174.1,172.2,170.7,159.1,124.2,175.9,159.6,156.5,153.9,140.1,123.8,123.8 +755,129.9,212,196.5,194.5,193.3,185.8,187.2,174.2,172.3,170.8,159.2,124.3,176,159.7,156.6,154,140.3,123.8,123.8 +756,129.9,212.1,196.6,194.6,193.3,185.9,187.3,174.3,172.4,170.9,159.3,124.3,176.1,159.8,156.7,154.2,140.5,123.8,123.8 +757,130,212.2,196.7,194.7,193.4,186,187.4,174.4,172.5,171,159.5,124.3,176.2,159.9,156.8,154.3,140.8,123.9,123.8 +758,130,212.3,196.8,194.8,193.5,186,187.4,174.5,172.6,171.1,159.6,124.3,176.2,160,156.9,154.4,141,123.9,123.8 +759,130,212.4,196.9,194.9,193.6,186.1,187.5,174.6,172.7,171.2,159.7,124.3,176.3,160.1,157.1,154.5,141.2,123.9,123.8 +760,130,212.5,197,195,193.7,186.2,187.6,174.7,172.8,171.3,159.8,124.3,176.4,160.2,157.2,154.7,141.4,123.9,123.8 +761,130,212.6,197.1,195,193.8,186.3,187.7,174.8,172.9,171.4,160,124.3,176.5,160.3,157.3,154.8,141.6,123.9,123.9 +762,130,212.7,197.1,195.1,193.8,186.4,187.8,174.9,173.1,171.5,160.1,124.4,176.5,160.4,157.4,154.9,141.9,123.9,123.9 +763,130,212.8,197.2,195.2,193.9,186.5,187.9,175,173.2,171.6,160.2,124.4,176.6,160.5,157.5,155,142.1,124,123.9 +764,130,212.9,197.3,195.3,194,186.6,187.9,175.1,173.3,171.7,160.3,124.4,176.7,160.6,157.6,155.2,142.3,124,123.9 +765,130,213,197.4,195.4,194.1,186.6,188,175.2,173.4,171.8,160.5,124.4,176.8,160.7,157.8,155.3,142.5,124,123.9 +766,130.1,213.1,197.5,195.5,194.2,186.7,188.1,175.3,173.5,171.9,160.6,124.4,176.9,160.8,157.9,155.4,142.6,124,123.9 +767,130.1,213.2,197.6,195.5,194.2,186.8,188.2,175.4,173.6,172,160.7,124.4,176.9,160.9,158,155.6,142.7,124,123.9 +768,130.1,213.3,197.7,195.6,194.3,186.9,188.3,175.5,173.7,172.2,160.8,124.5,177,161,158.1,155.7,142.8,124,123.9 +769,130.1,213.4,197.7,195.7,194.4,187,188.4,175.6,173.8,172.3,160.9,124.5,177.1,161.1,158.2,155.8,142.9,124,123.9 +770,130.1,213.5,197.8,195.8,194.5,187.1,188.5,175.7,173.9,172.4,161.1,124.5,177.2,161.2,158.3,155.9,143,124.1,123.9 +771,130.1,213.6,197.9,195.9,194.6,187.2,188.5,175.8,174,172.5,161.2,124.5,177.2,161.3,158.5,156.1,143.1,124.1,123.9 +772,130.1,213.7,198,195.9,194.7,187.2,188.6,175.8,174.1,172.6,161.3,124.5,177.3,161.4,158.6,156.2,143.1,124.1,124 +773,130.1,213.8,198.1,196,194.7,187.3,188.7,175.9,174.2,172.7,161.4,124.5,177.4,161.5,158.7,156.3,143.2,124.1,124 +774,130.1,213.9,198.2,196.1,194.8,187.4,188.8,176,174.3,172.8,161.6,124.5,177.5,161.6,158.8,156.4,143.3,124.1,124 +775,130.2,214,198.2,196.2,194.9,187.5,188.9,176.1,174.4,172.9,161.7,124.6,177.5,161.7,158.9,156.6,143.4,124.1,124 +776,130.2,214,198.3,196.3,195,187.6,189,176.2,174.5,173,161.8,124.6,177.6,161.8,159,156.7,143.5,124.1,124 +777,130.2,214.1,198.4,196.4,195.1,187.7,189,176.3,174.6,173.1,161.9,124.6,177.7,162,159.1,156.8,143.6,124.2,124 +778,130.2,214.2,198.5,196.4,195.1,187.7,189.1,176.4,174.7,173.2,162,124.6,177.8,162.1,159.3,156.9,143.7,124.2,124 +779,130.2,214.3,198.6,196.5,195.2,187.8,189.2,176.5,174.8,173.3,162.2,124.6,177.8,162.2,159.4,157.1,143.8,124.2,124 +780,130.2,214.4,198.7,196.6,195.3,187.9,189.3,176.6,174.9,173.4,162.3,124.6,177.9,162.3,159.5,157.2,143.9,124.2,124 +781,130.2,214.5,198.8,196.7,195.4,188,189.4,176.7,175,173.5,162.4,124.6,178,162.4,159.6,157.3,144,124.2,124 +782,130.2,214.6,198.8,196.8,195.5,188.1,189.5,176.8,175.1,173.6,162.5,124.7,178.1,162.5,159.7,157.4,144.1,124.2,124 +783,130.2,214.7,198.9,196.8,195.6,188.2,189.6,176.9,175.2,173.7,162.6,124.7,178.2,162.6,159.8,157.6,144.2,124.3,124 +784,130.3,214.8,199,196.9,195.6,188.2,189.6,177,175.3,173.8,162.8,124.7,178.2,162.7,160,157.7,144.3,124.3,124 +785,130.3,214.9,199.1,197,195.7,188.3,189.7,177.1,175.4,173.9,162.9,124.7,178.3,162.8,160.1,157.8,144.4,124.3,124 +786,130.3,215,199.2,197.1,195.8,188.4,189.8,177.2,175.5,174,163,124.7,178.4,162.9,160.2,157.9,144.5,124.3,124 +787,130.3,215.1,199.3,197.2,195.9,188.5,189.9,177.3,175.6,174.2,163.1,124.7,178.5,163,160.3,158.1,144.6,124.3,124 +788,130.3,215.2,199.3,197.3,196,188.6,190,177.4,175.7,174.3,163.2,124.7,178.5,163.1,160.4,158.2,144.6,124.3,124 +789,130.3,215.3,199.4,197.3,196,188.7,190.1,177.5,175.8,174.4,163.4,124.7,178.6,163.2,160.5,158.3,144.7,124.3,124 +790,130.3,215.4,199.5,197.4,196.1,188.7,190.2,177.6,175.9,174.5,163.5,124.8,178.7,163.3,160.6,158.4,144.8,124.4,124 +791,130.3,215.5,199.6,197.5,196.2,188.8,190.3,177.7,176,174.6,163.6,124.8,178.8,163.4,160.7,158.5,144.9,124.4,124 +792,130.3,215.6,199.7,197.6,196.3,188.9,190.3,177.8,176.1,174.7,163.7,124.8,178.8,163.5,160.9,158.7,145,124.4,124 +793,130.4,215.6,199.8,197.7,196.4,189,190.4,177.9,176.2,174.8,163.8,124.8,178.9,163.6,161,158.8,145.1,124.4,124 +794,130.4,215.7,199.8,197.7,196.4,189.1,190.5,178,176.3,174.9,163.9,124.8,179,163.7,161.1,158.9,145.2,124.4,124 +795,130.4,215.8,199.9,197.8,196.5,189.1,190.6,178.1,176.4,175,164.1,124.8,179.1,163.8,161.2,159,145.3,124.4,124 +796,130.4,215.9,200,197.9,196.6,189.2,190.7,178.2,176.5,175.1,164.2,124.8,179.1,163.9,161.3,159.2,145.4,124.4,124 +797,130.4,216,200.1,198,196.7,189.3,190.8,178.3,176.6,175.2,164.3,124.9,179.2,164,161.4,159.3,145.5,124.5,124 +798,130.4,216.1,200.2,198.1,196.8,189.4,190.9,178.4,176.7,175.3,164.4,124.9,179.3,164.1,161.5,159.4,145.7,124.5,124 +799,130.4,216.2,200.3,198.1,196.8,189.5,191,178.5,176.8,175.4,164.5,124.9,179.4,164.2,161.6,159.5,145.8,124.5,124 +800,130.4,216.3,200.3,198.2,196.9,189.5,191,178.6,176.9,175.5,164.6,124.9,179.4,164.3,161.8,159.6,145.9,124.5,124 +801,130.4,216.4,200.4,198.3,197,189.6,191.1,178.7,177,175.6,164.8,124.9,179.5,164.4,161.9,159.8,146,124.5,124 +802,130.5,216.5,200.5,198.4,197.1,189.7,191.2,178.8,177.1,175.7,164.9,124.9,179.6,164.5,162,159.9,146.1,124.5,124.1 +803,130.5,216.6,200.6,198.5,197.2,189.8,191.3,178.9,177.2,175.8,165,124.9,179.7,164.6,162.1,160,146.2,124.5,124.1 +804,130.5,216.7,200.7,198.6,197.2,189.9,191.4,179,177.3,175.9,165.1,125,179.7,164.7,162.2,160.1,146.3,124.6,124.1 +805,130.5,216.8,200.8,198.6,197.3,189.9,191.5,179.1,177.4,176,165.2,125,179.8,164.8,162.3,160.2,146.4,124.6,124.1 +806,130.5,216.9,200.8,198.7,197.4,190,191.6,179.2,177.5,176.1,165.3,125,179.9,164.9,162.4,160.4,146.5,124.6,124.1 +807,130.5,217,200.9,198.8,197.5,190.1,191.7,179.3,177.6,176.2,165.5,125,180,165,162.5,160.5,146.6,124.6,124.1 +808,130.5,217,201,198.9,197.6,190.2,191.7,179.4,177.7,176.3,165.6,125.1,180,165.1,162.7,160.6,146.7,124.6,124.1 +809,130.5,217.1,201.1,199,197.6,190.3,191.8,179.5,177.8,176.4,165.7,125.2,180.1,165.2,162.8,160.7,146.9,124.6,124.2 +810,130.5,217.2,201.2,199,197.7,190.4,191.9,179.6,177.9,176.5,165.8,125.3,180.2,165.3,162.9,160.8,147,124.6,124.2 +811,130.6,217.3,201.3,199.1,197.8,190.4,192,179.7,178,176.7,165.9,125.4,180.3,165.4,163,161,147.1,124.7,124.2 +812,130.6,217.4,201.3,199.2,197.9,190.5,192.1,179.8,178.1,176.8,166,125.8,180.3,165.5,163.1,161.1,147.2,124.7,124.2 +813,130.6,217.5,201.4,199.3,198,190.6,192.2,179.9,178.2,176.9,166.2,126.4,180.4,165.6,163.2,161.2,147.3,124.7,124.2 +814,130.6,217.6,201.5,199.4,198,190.7,192.3,180,178.3,177,166.3,126.9,180.5,165.7,163.3,161.3,147.5,124.7,124.2 +815,130.6,217.7,201.6,199.4,198.1,190.8,192.4,180.1,178.4,177.1,166.4,127.4,180.6,165.8,163.4,161.4,147.6,124.7,124.2 +816,130.6,217.8,201.7,199.5,198.2,190.8,192.5,180.2,178.6,177.2,166.5,128,180.6,165.9,163.5,161.5,147.7,124.7,124.3 +817,130.6,217.9,201.7,199.6,198.3,190.9,192.6,180.3,178.7,177.3,166.6,128.5,180.7,166,163.6,161.7,147.8,124.7,124.3 +818,130.6,218,201.8,199.7,198.4,191,192.6,180.4,178.8,177.4,166.7,128.7,180.8,166.1,163.8,161.8,147.9,124.8,124.3 +819,130.6,218.1,201.9,199.8,198.4,191.1,192.7,180.5,178.9,177.5,166.8,128.9,180.9,166.2,163.9,161.9,148.1,124.8,124.3 +820,130.7,218.2,202,199.8,198.5,191.2,192.8,180.6,179,177.6,167,129.1,180.9,166.3,164,162,148.2,124.8,124.3 +821,130.7,218.2,202.1,199.9,198.6,191.2,192.9,180.7,179.1,177.7,167.1,129.3,181,166.4,164.1,162.1,148.3,124.8,124.3 +822,130.7,218.3,202.2,200,198.7,191.3,193,180.7,179.2,177.8,167.2,129.5,181.1,166.5,164.2,162.2,148.4,124.8,124.3 +823,130.7,218.4,202.2,200.1,198.8,191.4,193.1,180.8,179.3,177.9,167.3,129.7,181.2,166.6,164.3,162.4,148.6,124.8,124.4 +824,130.7,218.5,202.3,200.2,198.8,191.5,193.2,180.9,179.4,178,167.4,129.9,181.2,166.7,164.4,162.5,148.7,124.8,124.4 +825,130.7,218.6,202.4,200.2,198.9,191.6,193.3,181,179.5,178.1,167.5,130.1,181.3,166.8,164.5,162.6,148.8,124.9,124.4 +826,130.7,218.7,202.5,200.3,199,191.6,193.4,181.1,179.5,178.2,167.6,130.3,181.4,166.9,164.6,162.7,149,124.9,124.4 +827,130.7,218.8,202.6,200.4,199.1,191.7,193.5,181.2,179.6,178.3,167.7,130.5,181.5,167,164.7,162.8,149.1,124.9,124.4 +828,130.7,218.9,202.7,200.5,199.2,191.8,193.5,181.3,179.7,178.4,167.9,130.7,181.5,167.1,164.8,162.9,149.2,124.9,124.4 +829,130.7,219,202.7,200.6,199.2,191.9,193.6,181.4,179.8,178.5,168,130.9,181.6,167.2,164.9,163,149.4,124.9,124.5 +830,130.8,219.1,202.8,200.6,199.3,192,193.7,181.5,179.9,178.6,168.1,131.1,181.7,167.3,165.1,163.2,149.5,124.9,124.5 +831,130.8,219.2,202.9,200.7,199.4,192,193.8,181.6,180,178.7,168.2,131.3,181.8,167.4,165.2,163.3,149.6,124.9,124.5 +832,130.8,219.3,203,200.8,199.5,192.1,193.9,181.7,180.1,178.8,168.3,131.5,181.8,167.5,165.3,163.4,149.8,125,124.5 +833,130.8,219.3,203.1,200.9,199.5,192.2,194,181.8,180.2,178.9,168.4,131.7,181.9,167.6,165.4,163.5,149.9,125,124.5 +834,130.8,219.4,203.1,201,199.6,192.3,194.1,181.9,180.3,179,168.5,131.9,182,167.7,165.5,163.6,150,125,124.5 +835,130.8,219.5,203.2,201,199.7,192.4,194.2,182,180.4,179.1,168.6,132.1,182.1,167.8,165.6,163.7,150.2,125,124.5 +836,130.8,219.6,203.3,201.1,199.8,192.4,194.3,182.1,180.5,179.2,168.8,132.3,182.1,167.9,165.7,163.9,150.3,125,124.6 +837,130.8,219.7,203.4,201.2,199.9,192.5,194.4,182.2,180.6,179.3,168.9,132.5,182.2,168,165.8,164,150.4,125,124.6 +838,130.8,219.8,203.5,201.3,199.9,192.6,194.5,182.3,180.7,179.4,169,132.7,182.3,168.1,165.9,164.1,150.6,125,124.6 +839,130.8,219.9,203.6,201.3,200,192.7,194.5,182.4,180.8,179.5,169.1,132.9,182.4,168.2,166,164.2,150.7,125,124.6 +840,130.9,220,203.6,201.4,200.1,192.8,194.6,182.5,180.9,179.6,169.2,133,182.4,168.3,166.1,164.3,150.8,125.1,124.6 +841,130.9,220.1,203.7,201.5,200.2,192.8,194.7,182.6,181,179.7,169.3,133.2,182.5,168.4,166.2,164.4,151,125.1,124.6 +842,130.9,220.2,203.8,201.6,200.3,192.9,194.8,182.7,181.1,179.8,169.4,133.4,182.6,168.5,166.3,164.5,151.1,125.1,124.6 +843,130.9,220.3,203.9,201.7,200.3,193,194.9,182.8,181.2,179.9,169.5,133.6,182.7,168.6,166.5,164.6,151.3,125.1,124.6 +844,130.9,220.3,204,201.7,200.4,193.1,195,182.9,181.3,180,169.6,133.8,182.7,168.7,166.6,164.8,151.4,125.1,124.7 +845,130.9,220.4,204,201.8,200.5,193.2,195.1,183,181.4,180.1,169.8,134,182.8,168.8,166.7,164.9,151.5,125.1,124.7 +846,130.9,220.5,204.1,201.9,200.6,193.2,195.2,183.1,181.5,180.2,169.9,134.2,182.9,168.9,166.8,165,151.7,125.1,124.7 +847,130.9,220.6,204.2,202,200.6,193.3,195.3,183.1,181.6,180.3,170,134.4,183,169,166.9,165.1,151.8,125.2,124.7 +848,130.9,220.7,204.3,202.1,200.7,193.4,195.4,183.2,181.7,180.4,170.1,134.6,183,169.1,167,165.2,151.9,125.2,124.7 +849,131,220.8,204.4,202.1,200.8,193.5,195.5,183.3,181.8,180.5,170.2,134.8,183.1,169.2,167.1,165.3,152.1,125.2,124.7 +850,131,220.9,204.5,202.2,200.9,193.6,195.5,183.4,181.9,180.6,170.3,135,183.2,169.3,167.2,165.4,152.2,125.2,124.7 +851,131,221,204.5,202.3,201,193.7,195.6,183.5,182,180.7,170.4,135.2,183.3,169.4,167.3,165.5,152.4,125.2,124.8 +852,131,221.1,204.6,202.4,201,193.7,195.7,183.6,182.1,180.8,170.5,135.4,183.3,169.5,167.4,165.7,152.5,125.2,124.8 +853,131,221.2,204.7,202.5,201.1,193.8,195.8,183.7,182.2,180.9,170.6,135.6,183.4,169.6,167.5,165.8,152.6,125.2,124.8 +854,131,221.3,204.8,202.5,201.2,193.9,195.9,183.8,182.3,181,170.8,135.8,183.5,169.7,167.6,165.9,152.8,125.3,124.8 +855,131,221.3,204.9,202.6,201.3,194,196,183.9,182.4,181.1,170.9,136,183.6,169.8,167.7,166,152.9,125.3,124.8 +856,131,221.4,204.9,202.7,201.3,194.1,196.1,184,182.5,181.2,171,136.2,183.6,169.9,167.8,166.1,153.1,125.3,124.8 +857,131,221.5,205,202.8,201.4,194.1,196.2,184.1,182.6,181.3,171.1,136.4,183.7,170,167.9,166.2,153.2,125.3,124.8 +858,131,221.6,205.1,202.8,201.5,194.2,196.3,184.2,182.7,181.4,171.2,136.8,183.8,170.1,168,166.3,153.3,125.3,124.9 +859,131.1,221.7,205.2,202.9,201.6,194.3,196.4,184.3,182.8,181.5,171.3,137.1,183.9,170.2,168.2,166.4,153.5,125.3,124.9 +860,131.1,221.8,205.3,203,201.7,194.4,196.5,184.4,182.9,181.6,171.4,137.4,183.9,170.3,168.3,166.5,153.6,125.3,124.9 +861,131.1,221.9,205.3,203.1,201.7,194.5,196.6,184.5,183,181.7,171.5,137.7,184,170.4,168.4,166.7,153.8,125.3,124.9 +862,131.1,222,205.4,203.2,201.8,194.5,196.6,184.6,183.1,181.8,171.6,138,184.1,170.5,168.5,166.8,153.9,125.4,124.9 +863,131.1,222.1,205.5,203.2,201.9,194.6,196.7,184.6,183.2,181.9,171.7,138.3,184.2,170.6,168.6,166.9,154,125.4,124.9 +864,131.1,222.2,205.6,203.3,202,194.7,196.8,184.7,183.2,182,171.9,138.6,184.2,170.7,168.7,167,154.2,125.4,124.9 +865,131.1,222.2,205.7,203.4,202,194.8,196.9,184.8,183.3,182.1,172,138.8,184.3,170.8,168.8,167.1,154.3,125.4,125 +866,131.1,222.3,205.7,203.5,202.1,194.9,197,184.9,183.4,182.2,172.1,139.1,184.4,170.9,168.9,167.2,154.5,125.4,125 +867,131.1,222.4,205.8,203.6,202.2,195,197.1,185,183.5,182.3,172.2,139.4,184.5,171,169,167.3,154.6,125.4,125 +868,131.1,222.5,205.9,203.6,202.3,195,197.2,185.1,183.6,182.4,172.3,139.6,184.5,171.1,169.1,167.4,154.7,125.4,125 +869,131.2,222.6,206,203.7,202.3,195.1,197.3,185.2,183.7,182.5,172.4,139.9,184.6,171.2,169.2,167.5,154.9,125.4,125 +870,131.2,222.7,206.1,203.8,202.4,195.2,197.4,185.3,183.8,182.6,172.5,140.1,184.7,171.3,169.3,167.6,155,125.5,125 +871,131.2,222.8,206.2,203.9,202.5,195.3,197.5,185.4,183.9,182.7,172.6,140.4,184.8,171.4,169.4,167.8,155.1,125.5,125 +872,131.2,222.9,206.2,203.9,202.6,195.4,197.6,185.5,184,182.8,172.7,140.6,184.9,171.5,169.5,167.9,155.3,125.5,125 +873,131.2,223,206.3,204,202.7,195.4,197.7,185.6,184.1,182.9,172.8,140.9,184.9,171.6,169.6,168,155.4,125.5,125.1 +874,131.2,223.1,206.4,204.1,202.7,195.5,197.8,185.7,184.2,183,172.9,141.1,185,171.7,169.7,168.1,155.6,125.5,125.1 +875,131.2,223.1,206.5,204.2,202.8,195.6,197.8,185.7,184.3,183.1,173.1,141.3,185.1,171.8,169.8,168.2,155.7,125.5,125.1 +876,131.2,223.2,206.6,204.3,202.9,195.7,197.9,185.8,184.4,183.1,173.2,141.6,185.2,171.9,169.9,168.3,155.8,125.5,125.1 +877,131.2,223.3,206.6,204.3,203,195.8,198,185.9,184.5,183.2,173.3,141.8,185.2,171.9,170,168.4,156,125.5,125.1 +878,131.2,223.4,206.7,204.4,203,195.8,198.1,186,184.6,183.3,173.4,142,185.3,172,170.1,168.5,156.1,125.6,125.1 +879,131.3,223.5,206.8,204.5,203.1,195.9,198.2,186.1,184.7,183.4,173.5,142.2,185.4,172.1,170.2,168.6,156.2,125.6,125.1 +880,131.3,223.6,206.9,204.6,203.2,196,198.3,186.2,184.7,183.5,173.6,142.4,185.5,172.2,170.3,168.7,156.4,125.6,125.2 +881,131.3,223.7,207,204.6,203.3,196.1,198.4,186.3,184.8,183.6,173.7,142.6,185.5,172.3,170.5,168.8,156.5,125.6,125.2 +882,131.3,223.8,207,204.7,203.3,196.2,198.5,186.4,184.9,183.7,173.8,142.8,185.6,172.4,170.6,168.9,156.6,125.6,125.2 +883,131.3,223.9,207.1,204.8,203.4,196.3,198.6,186.5,185,183.8,173.9,142.9,185.7,172.5,170.7,169.1,156.8,125.6,125.2 +884,131.3,223.9,207.2,204.9,203.5,196.3,198.7,186.6,185.1,183.9,174,143,185.8,172.6,170.8,169.2,156.9,125.6,125.2 +885,131.3,224,207.3,205,203.6,196.4,198.8,186.7,185.2,184,174.1,143.1,185.9,172.7,170.9,169.3,157,125.7,125.2 +886,131.3,224.1,207.4,205,203.7,196.5,198.9,186.7,185.3,184.1,174.2,143.2,185.9,172.8,171,169.4,157.2,125.7,125.2 +887,131.3,224.2,207.4,205.1,203.7,196.6,199,186.8,185.4,184.2,174.4,143.3,186,172.9,171.1,169.5,157.3,125.7,125.2 +888,131.3,224.3,207.5,205.2,203.8,196.7,199.1,186.9,185.5,184.3,174.5,143.4,186.1,173,171.2,169.6,157.4,125.7,125.3 +889,131.4,224.4,207.6,205.3,203.9,196.7,199.1,187,185.6,184.4,174.6,143.5,186.2,173.1,171.3,169.7,157.6,125.7,125.3 +890,131.4,224.5,207.7,205.3,204,196.8,199.2,187.1,185.7,184.5,174.7,143.6,186.3,173.2,171.4,169.8,157.7,125.7,125.3 +891,131.4,224.6,207.8,205.4,204,196.9,199.3,187.2,185.7,184.6,174.8,143.7,186.3,173.3,171.5,169.9,157.8,125.7,125.3 +892,131.4,224.7,207.8,205.5,204.1,197,199.4,187.3,185.8,184.7,174.9,143.8,186.4,173.4,171.6,170,158,125.7,125.3 +893,131.4,224.7,207.9,205.6,204.2,197.1,199.5,187.4,185.9,184.7,175,143.9,186.5,173.5,171.7,170.1,158.1,125.8,125.3 +894,131.4,224.8,208,205.7,204.3,197.1,199.6,187.4,186,184.8,175.1,144,186.6,173.6,171.8,170.2,158.2,125.8,125.3 +895,131.4,224.9,208.1,205.7,204.3,197.2,199.7,187.5,186.1,184.9,175.2,144.1,186.6,173.7,171.9,170.3,158.4,125.8,125.4 +896,131.4,225,208.2,205.8,204.4,197.3,199.8,187.6,186.2,185,175.3,144.2,186.7,173.8,172,170.5,158.5,125.8,125.4 +897,131.4,225.1,208.2,205.9,204.5,197.4,199.9,187.7,186.3,185.1,175.4,144.3,186.8,173.9,172.1,170.6,158.6,125.8,125.4 +898,131.4,225.2,208.3,206,204.6,197.5,200,187.8,186.4,185.2,175.5,144.4,186.9,174,172.2,170.7,158.8,125.8,125.4 +899,131.5,225.3,208.4,206,204.6,197.5,200.1,187.9,186.5,185.3,175.6,144.5,187,174.1,172.3,170.8,158.9,125.8,125.4 +900,131.5,225.4,208.5,206.1,204.7,197.6,200.2,188,186.5,185.4,175.8,144.6,187,174.2,172.4,170.9,159,125.8,125.4 +901,131.5,225.4,208.6,206.2,204.8,197.7,200.3,188.1,186.6,185.5,175.9,144.7,187.1,174.3,172.5,171,159.1,125.9,125.4 +902,131.5,225.5,208.6,206.3,204.9,197.8,200.4,188.1,186.7,185.6,176,144.8,187.2,174.4,172.6,171.1,159.3,125.9,125.4 +903,131.5,225.6,208.7,206.4,205,197.9,200.4,188.2,186.8,185.7,176.1,144.9,187.3,174.5,172.7,171.2,159.4,125.9,125.5 +904,131.5,225.7,208.8,206.4,205,197.9,200.5,188.3,186.9,185.7,176.2,145,187.4,174.6,172.8,171.3,159.5,125.9,125.5 +905,131.5,225.8,208.9,206.5,205.1,198,200.6,188.4,187,185.8,176.3,145.1,187.4,174.7,172.9,171.4,159.7,125.9,125.5 +906,131.5,225.9,209,206.6,205.2,198.1,200.7,188.5,187.1,185.9,176.4,145.2,187.5,174.8,173,171.5,159.8,125.9,125.5 +907,131.5,226,209,206.7,205.3,198.2,200.8,188.6,187.2,186,176.5,145.3,187.6,174.9,173.1,171.6,159.9,125.9,125.5 +908,131.5,226.1,209.1,206.7,205.3,198.3,200.9,188.7,187.2,186.1,176.6,145.4,187.7,175,173.2,171.7,160,125.9,125.5 +909,131.5,226.2,209.2,206.8,205.4,198.3,201,188.7,187.3,186.2,176.7,145.5,187.8,175.1,173.3,171.8,160.2,125.9,125.5 +910,131.6,226.2,209.3,206.9,205.5,198.4,201.1,188.8,187.4,186.3,176.8,145.6,187.8,175.2,173.5,171.9,160.3,126,125.5 +911,131.6,226.3,209.4,207,205.6,198.5,201.2,188.9,187.5,186.4,176.9,145.7,187.9,175.3,173.6,172.1,160.4,126,125.6 +912,131.6,226.4,209.4,207,205.6,198.6,201.3,189,187.6,186.5,177,145.8,188,175.4,173.7,172.2,160.5,126,125.6 +913,131.6,226.5,209.5,207.1,205.7,198.6,201.4,189.1,187.7,186.6,177.1,145.9,188.1,175.5,173.8,172.3,160.7,126,125.6 +914,131.6,226.6,209.6,207.2,205.8,198.7,201.5,189.2,187.8,186.6,177.2,146,188.2,175.6,173.9,172.4,160.8,126,125.6 +915,131.6,226.7,209.7,207.3,205.9,198.8,201.6,189.3,187.9,186.7,177.4,146.1,188.2,175.7,174,172.5,160.9,126,125.6 +916,131.6,226.8,209.8,207.4,205.9,198.9,201.7,189.3,187.9,186.8,177.5,146.2,188.3,175.8,174.1,172.6,161.1,126,125.6 +917,131.6,226.9,209.8,207.4,206,199,201.7,189.4,188,186.9,177.6,146.3,188.4,175.9,174.2,172.7,161.2,126,125.6 +918,131.6,226.9,209.9,207.5,206.1,199,201.8,189.5,188.1,187,177.7,146.5,188.5,176,174.3,172.8,161.3,126.1,125.7 +919,131.6,227,210,207.6,206.2,199.1,201.9,189.6,188.2,187.1,177.8,146.6,188.6,176.1,174.4,172.9,161.4,126.1,125.7 +920,131.7,227.1,210.1,207.7,206.2,199.2,202,189.7,188.3,187.2,177.9,146.7,188.7,176.2,174.5,173,161.6,126.1,125.7 +921,131.7,227.2,210.2,207.7,206.3,199.3,202.1,189.8,188.4,187.3,178,146.8,188.7,176.3,174.6,173.1,161.7,126.1,125.7 +922,131.7,227.3,210.2,207.8,206.4,199.4,202.2,189.8,188.4,187.3,178.1,146.9,188.8,176.4,174.7,173.2,161.8,126.1,125.7 +923,131.7,227.4,210.3,207.9,206.5,199.4,202.3,189.9,188.5,187.4,178.2,147,188.9,176.5,174.8,173.3,161.9,126.1,125.7 +924,131.7,227.5,210.4,208,206.5,199.5,202.4,190,188.6,187.5,178.3,147.1,189,176.6,174.9,173.4,162,126.1,125.7 +925,131.7,227.6,210.5,208.1,206.6,199.6,202.5,190.1,188.7,187.6,178.4,147.2,189.1,176.7,175,173.5,162.2,126.1,125.7 +926,131.7,227.6,210.6,208.1,206.7,199.7,202.6,190.2,188.8,187.7,178.5,147.4,189.1,176.8,175.1,173.6,162.3,126.2,125.8 +927,131.7,227.7,210.6,208.2,206.8,199.7,202.7,190.3,188.9,187.8,178.6,147.5,189.2,176.9,175.2,173.7,162.4,126.2,125.8 +928,131.7,227.8,210.7,208.3,206.9,199.8,202.8,190.3,188.9,187.9,178.7,147.6,189.3,177,175.3,173.9,162.5,126.2,125.8 +929,131.7,227.9,210.8,208.4,206.9,199.9,202.9,190.4,189,187.9,178.8,147.7,189.4,177.1,175.4,174,162.7,126.2,125.8 +930,131.7,228,210.9,208.4,207,200,203,190.5,189.1,188,178.9,147.8,189.5,177.2,175.5,174.1,162.8,126.2,125.8 +931,131.8,228.1,211,208.5,207.1,200.1,203.1,190.6,189.2,188.1,179,148,189.6,177.2,175.6,174.2,162.9,126.2,125.8 +932,131.8,228.2,211,208.6,207.2,200.1,203.2,190.7,189.3,188.2,179.1,148.1,189.6,177.3,175.7,174.3,163,126.2,125.8 +933,131.8,228.3,211.1,208.7,207.2,200.2,203.3,190.8,189.4,188.3,179.2,148.2,189.7,177.4,175.8,174.4,163.1,126.2,125.8 +934,131.8,228.3,211.2,208.7,207.3,200.3,203.3,190.8,189.4,188.4,179.3,148.3,189.8,177.5,175.9,174.5,163.3,126.2,125.9 +935,131.8,228.4,211.3,208.8,207.4,200.4,203.4,190.9,189.5,188.4,179.4,148.5,189.9,177.6,176,174.6,163.4,126.3,125.9 +936,131.8,228.5,211.4,208.9,207.5,200.5,203.5,191,189.6,188.5,179.5,148.6,190,177.7,176.1,174.7,163.5,126.3,125.9 +937,131.8,228.6,211.4,209,207.5,200.5,203.6,191.1,189.7,188.6,179.7,148.7,190.1,177.8,176.2,174.8,163.6,126.3,125.9 +938,131.8,228.7,211.5,209,207.6,200.6,203.7,191.2,189.8,188.7,179.8,148.8,190.1,177.9,176.3,174.9,163.7,126.3,125.9 +939,131.8,228.8,211.6,209.1,207.7,200.7,203.8,191.3,189.8,188.8,179.9,149,190.2,178,176.4,175,163.9,126.3,125.9 +940,131.8,228.9,211.7,209.2,207.8,200.8,203.9,191.3,189.9,188.9,180,149.1,190.3,178.1,176.5,175.1,164,126.3,125.9 +941,131.9,228.9,211.8,209.3,207.8,200.8,204,191.4,190,188.9,180.1,149.2,190.4,178.2,176.6,175.2,164.1,126.3,125.9 +942,131.9,229,211.8,209.4,207.9,200.9,204.1,191.5,190.1,189,180.2,149.4,190.5,178.3,176.7,175.3,164.2,126.3,126 +943,131.9,229.1,211.9,209.4,208,201,204.2,191.6,190.2,189.1,180.3,149.5,190.6,178.4,176.8,175.4,164.3,126.4,126 +944,131.9,229.2,212,209.5,208.1,201.1,204.3,191.7,190.3,189.2,180.4,149.6,190.6,178.5,176.9,175.5,164.5,126.4,126 +945,131.9,229.3,212.1,209.6,208.1,201.1,204.4,191.7,190.3,189.3,180.5,149.8,190.7,178.6,177,175.6,164.6,126.4,126 +946,131.9,229.4,212.2,209.7,208.2,201.2,204.5,191.8,190.4,189.4,180.6,149.9,190.8,178.7,177.1,175.7,164.7,126.4,126 +947,131.9,229.5,212.2,209.7,208.3,201.3,204.6,191.9,190.5,189.4,180.7,150,190.9,178.8,177.2,175.8,164.8,126.4,126 +948,131.9,229.6,212.3,209.8,208.4,201.4,204.7,192,190.6,189.5,180.8,150.2,191,178.9,177.3,175.9,164.9,126.4,126 +949,131.9,229.6,212.4,209.9,208.4,201.5,204.8,192.1,190.7,189.6,180.9,150.3,191.1,179,177.4,176.1,165.1,126.4,126 +950,131.9,229.7,212.5,210,208.5,201.5,204.9,192.1,190.7,189.7,181,150.4,191.2,179.1,177.5,176.2,165.2,126.4,126.1 +951,131.9,229.8,212.6,210,208.6,201.6,205,192.2,190.8,189.8,181.1,150.6,191.2,179.2,177.6,176.3,165.3,126.4,126.1 +952,132,229.9,212.6,210.1,208.7,201.7,205.1,192.3,190.9,189.8,181.2,150.7,191.3,179.3,177.7,176.4,165.4,126.5,126.1 +953,132,230,212.7,210.2,208.7,201.8,205.2,192.4,191,189.9,181.3,150.8,191.4,179.4,177.8,176.5,165.5,126.5,126.1 +954,132,230.1,212.8,210.3,208.8,201.8,205.2,192.5,191.1,190,181.4,151,191.5,179.5,177.9,176.6,165.6,126.5,126.1 +955,132,230.2,212.9,210.4,208.9,201.9,205.3,192.5,191.1,190.1,181.5,151.1,191.6,179.6,178,176.7,165.8,126.5,126.1 +956,132,230.3,212.9,210.4,209,202,205.4,192.6,191.2,190.2,181.6,151.3,191.7,179.7,178.1,176.8,165.9,126.5,126.1 +957,132,230.3,213,210.5,209,202.1,205.5,192.7,191.3,190.2,181.7,151.4,191.7,179.8,178.2,176.9,166,126.5,126.1 +958,132,230.4,213.1,210.6,209.1,202.2,205.6,192.8,191.4,190.3,181.8,151.5,191.8,179.9,178.4,177,166.1,126.5,126.1 +959,132,230.5,213.2,210.7,209.2,202.2,205.7,192.9,191.5,190.4,181.9,151.7,191.9,180,178.5,177.1,166.2,126.5,126.2 +960,132,230.6,213.3,210.7,209.3,202.3,205.8,193,191.5,190.5,182,151.8,192,180.1,178.6,177.2,166.3,126.5,126.2 +961,132,230.7,213.3,210.8,209.3,202.4,205.9,193,191.6,190.6,182.1,152,192.1,180.2,178.7,177.3,166.5,126.6,126.2 +962,132,230.8,213.4,210.9,209.4,202.5,206,193.1,191.7,190.6,182.2,152.1,192.2,180.3,178.8,177.4,166.6,126.6,126.2 +963,132.1,230.9,213.5,211,209.5,202.5,206.1,193.2,191.8,190.7,182.3,152.2,192.3,180.4,178.9,177.5,166.7,126.6,126.2 +964,132.1,230.9,213.6,211,209.6,202.6,206.2,193.3,191.8,190.8,182.4,152.4,192.4,180.5,179,177.6,166.8,126.6,126.2 +965,132.1,231,213.7,211.1,209.6,202.7,206.3,193.4,191.9,190.9,182.5,152.5,192.4,180.6,179.1,177.7,166.9,126.6,126.2 +966,132.1,231.1,213.7,211.2,209.7,202.8,206.4,193.4,192,191,182.6,152.7,192.5,180.7,179.2,177.8,167,126.7,126.2 +967,132.1,231.2,213.8,211.3,209.8,202.8,206.5,193.5,192.1,191,182.7,152.8,192.6,180.8,179.3,177.9,167.1,126.8,126.3 +968,132.1,231.3,213.9,211.3,209.9,202.9,206.6,193.6,192.2,191.1,182.8,152.9,192.7,180.9,179.4,178,167.3,126.9,126.3 +969,132.1,231.4,214,211.4,209.9,203,206.7,193.7,192.2,191.2,182.9,153.1,192.8,181,179.5,178.1,167.4,127.3,126.3 +970,132.1,231.5,214.1,211.5,210,203.1,206.8,193.8,192.3,191.3,183,153.2,192.9,181.1,179.6,178.2,167.5,127.9,126.3 +971,132.1,231.5,214.1,211.6,210.1,203.1,206.9,193.8,192.4,191.4,183.1,153.4,193,181.2,179.7,178.3,167.6,128.6,126.3 +972,132.1,231.6,214.2,211.7,210.2,203.2,207,193.9,192.5,191.4,183.2,153.5,193,181.3,179.8,178.4,167.7,129.2,126.3 +973,132.1,231.7,214.3,211.7,210.2,203.3,207.1,194,192.6,191.5,183.3,153.7,193.1,181.4,179.9,178.5,167.8,129.8,126.3 +974,132.2,231.8,214.4,211.8,210.3,203.4,207.2,194.1,192.6,191.6,183.4,153.8,193.2,181.5,180,178.6,167.9,130.4,126.3 +975,132.2,231.9,214.5,211.9,210.4,203.4,207.3,194.2,192.7,191.7,183.5,153.9,193.3,181.5,180.1,178.7,168.1,130.7,126.4 +976,132.2,232,214.5,212,210.5,203.5,207.4,194.2,192.8,191.8,183.6,154.1,193.4,181.6,180.2,178.8,168.2,130.8,126.4 +977,132.2,232.1,214.6,212,210.5,203.6,207.5,194.3,192.9,191.8,183.7,154.2,193.5,181.7,180.3,178.9,168.3,131,126.4 +978,132.2,232.1,214.7,212.1,210.6,203.7,207.6,194.4,193,191.9,183.8,154.4,193.6,181.8,180.4,179,168.4,131.2,126.4 +979,132.2,232.2,214.8,212.2,210.7,203.8,207.7,194.5,193,192,183.9,154.5,193.7,181.9,180.5,179.1,168.5,131.3,126.4 +980,132.2,232.3,214.8,212.3,210.8,203.8,207.7,194.6,193.1,192.1,184,154.6,193.7,182,180.6,179.2,168.6,131.5,126.4 +981,132.2,232.4,214.9,212.3,210.8,203.9,207.8,194.6,193.2,192.2,184.1,154.8,193.8,182.1,180.7,179.3,168.7,131.7,126.4 +982,132.2,232.5,215,212.4,210.9,204,207.9,194.7,193.3,192.2,184.2,154.9,193.9,182.2,180.8,179.4,168.9,131.9,126.4 +983,132.2,232.6,215.1,212.5,211,204.1,208,194.8,193.3,192.3,184.3,155.1,194,182.3,180.9,179.6,169,132,126.4 +984,132.2,232.7,215.2,212.6,211.1,204.1,208.1,194.9,193.4,192.4,184.4,155.2,194.1,182.4,181,179.7,169.1,132.2,126.5 +985,132.3,232.8,215.2,212.6,211.1,204.2,208.2,195,193.5,192.5,184.4,155.3,194.2,182.5,181,179.8,169.2,132.4,126.5 +986,132.3,232.8,215.3,212.7,211.2,204.3,208.3,195.1,193.6,192.5,184.5,155.5,194.3,182.6,181.1,179.9,169.3,132.6,126.5 +987,132.3,232.9,215.4,212.8,211.3,204.4,208.4,195.1,193.7,192.6,184.6,155.6,194.4,182.7,181.2,180,169.4,132.7,126.5 +988,132.3,233,215.5,212.9,211.4,204.4,208.5,195.2,193.7,192.7,184.7,155.8,194.4,182.8,181.3,180.1,169.5,132.9,126.5 +989,132.3,233.1,215.6,213,211.4,204.5,208.6,195.3,193.8,192.8,184.8,155.9,194.5,182.9,181.4,180.2,169.6,133.1,126.5 +990,132.3,233.2,215.6,213,211.5,204.6,208.7,195.4,193.9,192.9,184.9,156,194.6,183,181.5,180.3,169.8,133.3,126.5 +991,132.3,233.3,215.7,213.1,211.6,204.7,208.8,195.5,194,192.9,185,156.2,194.7,183.1,181.6,180.4,169.9,133.4,126.5 +992,132.3,233.4,215.8,213.2,211.7,204.7,208.9,195.5,194.1,193,185.1,156.3,194.8,183.2,181.7,180.5,170,133.6,126.5 +993,132.3,233.4,215.9,213.3,211.7,204.8,209,195.6,194.1,193.1,185.2,156.4,194.9,183.3,181.8,180.6,170.1,133.8,126.6 +994,132.3,233.5,216,213.3,211.8,204.9,209.1,195.7,194.2,193.2,185.3,156.6,195,183.4,181.9,180.7,170.2,134,126.6 +995,132.3,233.6,216,213.4,211.9,205,209.2,195.8,194.3,193.2,185.4,156.7,195.1,183.5,182,180.8,170.3,134.1,126.6 +996,132.3,233.7,216.1,213.5,212,205,209.3,195.9,194.4,193.3,185.5,156.9,195.1,183.6,182.1,180.9,170.4,134.3,126.6 +997,132.4,233.8,216.2,213.6,212,205.1,209.4,196,194.5,193.4,185.6,157,195.2,183.7,182.2,181,170.5,134.5,126.6 +998,132.4,233.9,216.3,213.6,212.1,205.2,209.5,196,194.5,193.5,185.7,157.1,195.3,183.8,182.3,181.1,170.6,134.7,126.6 +999,132.4,234,216.4,213.7,212.2,205.3,209.6,196.1,194.6,193.6,185.8,157.3,195.4,183.8,182.4,181.2,170.8,134.8,126.6 +1000,132.4,234,216.4,213.8,212.3,205.3,209.7,196.2,194.7,193.6,185.9,157.4,195.5,183.9,182.5,181.3,170.9,135,126.6 diff --git a/test/Data Tables/125 MHz - Lb(0.10)_P528.csv b/test/Data Tables/125 MHz - Lb(0.10)_P528.csv new file mode 100644 index 0000000..a3fdf6a --- /dev/null +++ b/test/Data Tables/125 MHz - Lb(0.10)_P528.csv @@ -0,0 +1,1005 @@ +125MHz / Lb(0.10) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,74.4,71,70.9,70.7,70.5,0,91,91,91,90.9,90.1,0,97,97,97,97,96.6,91,0 +1,77.3,73.6,73.6,73.6,73.5,72.5,91,91,91,91,90.5,74.1,97,97,97,97,96.8,93,74.2 +2,81.3,77.3,77.3,77.3,77.3,77.4,91,91,91,91,90.6,79.9,97,97,97,97,96.8,93.1,80.1 +3,84.4,81.3,80.2,80.2,80.2,80.4,91.2,91.1,91.1,91.1,90.7,83.3,97,97,97,97,96.8,93.2,83.6 +4,86.7,85,82.4,82.4,82.4,82.6,91.3,91.3,91.3,91.3,91,85.6,97,97,97,97,96.8,93.4,86 +5,88.5,87.6,84.2,84.3,84.3,84.4,91.6,91.6,91.6,91.6,91.3,87.3,97,97,97,97,96.8,93.7,87.8 +6,90.1,89.3,85.8,85.8,85.8,85.9,91.9,91.9,91.9,91.9,91.6,88.7,97.1,97.1,97.1,97.1,96.9,94,89.3 +7,91.4,91.6,87,87,87,87.2,92.2,92.2,92.2,92.2,92,89.8,97.2,97.2,97.2,97.2,97,94.3,90.5 +8,92.5,93.8,88.2,88.2,88.2,88.3,92.6,92.6,92.6,92.6,92.4,90.8,97.3,97.3,97.3,97.3,97.1,94.6,91.6 +9,93.5,95.7,89.2,89.2,89.2,89.3,93,93,93,93,92.8,91.7,97.4,97.4,97.4,97.4,97.2,95,92.5 +10,94.4,97.5,90.1,90.1,90.1,90.1,93.4,93.4,93.4,93.4,93.2,92.4,97.5,97.5,97.5,97.5,97.4,95.3,93.3 +11,95.3,99.1,90.9,90.9,90.9,90.9,93.8,93.8,93.8,93.8,93.7,93.1,97.6,97.6,97.6,97.6,97.5,95.7,94 +12,96,100.6,91.6,91.6,91.6,91.7,94.2,94.2,94.2,94.2,94.1,93.7,97.8,97.8,97.8,97.8,97.7,96.1,94.7 +13,96.7,101.9,92.3,92.3,92.3,92.4,94.6,94.6,94.6,94.6,94.5,94.3,98,98,98,97.9,97.8,96.4,95.3 +14,97.3,103.2,92.9,92.9,92.9,93,95,95,95,95,94.9,94.8,98.1,98.1,98.1,98.1,98,96.7,95.8 +15,97.9,104.4,93.5,93.5,93.5,93.6,95.4,95.4,95.4,95.4,95.3,95.3,98.3,98.3,98.3,98.3,98.2,97.1,96.4 +16,98.5,105.5,94.1,94.1,94.1,94.1,95.8,95.8,95.8,95.8,95.7,95.8,98.5,98.5,98.5,98.5,98.4,97.4,96.8 +17,99,106.6,94.6,94.6,94.6,94.7,96.1,96.1,96.1,96.1,96.1,96.2,98.7,98.7,98.7,98.7,98.6,97.7,97.3 +18,99.5,107.5,95.1,95.1,95.1,95.1,96.5,96.5,96.5,96.5,96.5,96.6,98.9,98.9,98.9,98.9,98.8,98,97.7 +19,100,108.5,95.6,95.6,95.6,95.6,96.9,96.8,96.8,96.8,96.8,97,99.1,99.1,99.1,99.1,99,98.3,98.1 +20,100.4,109.4,96,96,96,96.1,97.2,97.2,97.2,97.2,97.2,97.4,99.3,99.3,99.3,99.3,99.2,98.6,98.4 +21,100.8,110.2,96.4,96.4,96.4,96.5,97.6,97.5,97.5,97.5,97.5,97.7,99.5,99.5,99.5,99.5,99.4,98.9,98.8 +22,101.2,111.1,96.8,96.8,96.8,96.9,98.1,97.8,97.8,97.8,97.8,98,99.7,99.7,99.7,99.7,99.6,99.2,99.1 +23,101.6,111.8,97.2,97.2,97.2,97.3,98.5,98.2,98.2,98.2,98.1,98.4,99.9,99.9,99.9,99.9,99.8,99.4,99.4 +24,102,112.6,97.6,97.6,97.6,97.6,99,98.5,98.5,98.5,98.4,98.7,100.1,100.1,100.1,100.1,100.1,99.7,99.7 +25,102.4,113.3,98,97.9,97.9,98,99.4,98.8,98.8,98.8,98.7,99,100.3,100.3,100.3,100.3,100.3,100,100 +26,102.7,114,98.4,98.3,98.3,98.3,99.9,99.1,99.1,99.1,99,99.3,100.5,100.5,100.5,100.5,100.5,100.2,100.3 +27,103,114.7,98.9,98.6,98.6,98.6,100.3,99.3,99.3,99.3,99.3,99.6,100.7,100.7,100.7,100.7,100.7,100.4,100.6 +28,103.3,115.4,99.3,98.9,98.9,99,100.8,99.6,99.6,99.6,99.6,99.8,100.9,100.9,100.9,100.9,100.9,100.7,100.8 +29,103.6,116,99.7,99.2,99.2,99.3,101.2,99.9,99.9,99.9,99.9,100.1,101.1,101.1,101.1,101.1,101.1,100.9,101.1 +30,103.9,116.6,100.2,99.5,99.5,99.5,101.6,100.1,100.1,100.1,100.1,100.4,101.3,101.3,101.3,101.3,101.3,101.1,101.3 +31,104.2,117.2,100.6,99.8,99.8,99.8,102.1,100.4,100.4,100.4,100.4,100.6,101.5,101.5,101.5,101.5,101.5,101.4,101.5 +32,104.5,117.7,101.1,100,100.1,100.1,102.5,100.6,100.6,100.6,100.6,100.9,101.7,101.7,101.7,101.7,101.7,101.6,101.8 +33,104.8,118.3,101.6,100.3,100.3,100.4,102.9,100.9,100.9,100.9,100.9,101.1,101.9,101.9,101.9,101.9,101.9,101.8,102 +34,105,118.8,102,100.6,100.6,100.6,103.3,101.1,101.1,101.1,101.1,101.3,102.1,102.1,102.1,102.1,102.1,102,102.2 +35,105.3,119.4,102.4,100.8,100.8,100.9,103.6,101.3,101.3,101.3,101.3,101.5,102.3,102.3,102.3,102.3,102.2,102.2,102.4 +36,105.5,119.9,102.9,101.1,101.1,101.1,104,101.6,101.6,101.6,101.6,101.8,102.4,102.4,102.4,102.4,102.4,102.4,102.6 +37,105.8,120.4,103.3,101.3,101.3,101.4,104.4,101.8,101.8,101.8,101.8,102,102.6,102.6,102.6,102.6,102.6,102.6,102.8 +38,106,120.9,103.7,101.5,101.5,101.6,104.7,102,102,102,102,102.2,102.8,102.8,102.8,102.8,102.8,102.8,103 +39,106.2,121.3,104.1,101.7,101.8,101.8,105,102.2,102.2,102.2,102.2,102.4,103,103,103,103,103,102.9,103.2 +40,106.4,121.8,104.5,102,102,102,105.3,102.4,102.4,102.4,102.4,102.6,103.3,103.2,103.1,103.1,103.1,103.1,103.3 +41,106.6,122.3,104.8,102.2,102.2,102.3,105.6,102.6,102.6,102.6,102.6,102.8,103.5,103.3,103.3,103.3,103.3,103.3,103.5 +42,106.9,122.7,105.1,102.4,102.4,102.5,105.9,102.8,102.8,102.8,102.8,103,103.7,103.5,103.5,103.5,103.5,103.5,103.7 +43,107.1,123.2,105.5,102.6,102.6,102.7,106.2,103,103,103,103,103.2,103.9,103.7,103.7,103.7,103.6,103.6,103.9 +44,107.3,123.6,105.8,102.8,102.8,102.9,106.4,103.2,103.2,103.2,103.2,103.4,104.2,103.8,103.8,103.8,103.8,103.8,104 +45,107.5,124,106.1,103,103,103.1,106.7,103.4,103.4,103.4,103.4,103.5,104.4,104,104,104,104,104,104.2 +46,107.6,124.4,106.3,103.2,103.2,103.3,106.9,103.5,103.5,103.5,103.5,103.7,104.6,104.1,104.1,104.1,104.1,104.1,104.4 +47,107.8,124.8,106.6,103.5,103.4,103.4,107.1,103.7,103.7,103.7,103.7,103.9,104.8,104.3,104.3,104.3,104.3,104.3,104.5 +48,108,125.2,106.8,103.7,103.5,103.6,107.3,103.9,103.9,103.9,103.9,104,105.1,104.4,104.4,104.4,104.4,104.5,104.7 +49,108.2,125.6,107,103.9,103.7,103.8,107.5,104.1,104.1,104.1,104.1,104.2,105.3,104.6,104.6,104.6,104.6,104.6,104.8 +50,108.4,126,107.3,104.2,103.9,104,107.7,104.2,104.2,104.2,104.2,104.4,105.6,104.7,104.7,104.7,104.7,104.8,105 +51,108.5,126.4,107.5,104.4,104.1,104.2,107.9,104.4,104.4,104.4,104.4,104.5,105.8,104.9,104.9,104.9,104.9,104.9,105.1 +52,108.7,126.7,107.6,104.7,104.2,104.3,108.1,104.6,104.6,104.6,104.6,104.7,106,105,105,105,105,105.1,105.3 +53,108.9,127.1,107.8,105,104.4,104.5,108.3,104.7,104.7,104.7,104.7,104.8,106.3,105.2,105.2,105.2,105.2,105.2,105.4 +54,109,127.5,108,105.2,104.5,104.7,108.5,104.9,104.9,104.9,104.9,105,106.5,105.3,105.3,105.3,105.3,105.4,105.5 +55,109.2,127.8,108.1,105.5,104.7,104.8,108.6,105,105,105,105,105.2,106.7,105.5,105.5,105.5,105.5,105.5,105.7 +56,109.4,128.2,108.3,105.8,104.9,105,108.8,105.2,105.2,105.2,105.2,105.3,107,105.6,105.6,105.6,105.6,105.6,105.8 +57,109.5,128.5,108.4,106,105,105.1,109.1,105.3,105.3,105.3,105.3,105.4,107.2,105.7,105.7,105.7,105.7,105.8,106 +58,109.7,128.8,108.7,106.3,105.2,105.3,109.4,105.5,105.5,105.5,105.5,105.6,107.4,105.9,105.9,105.9,105.9,105.9,106.1 +59,109.8,129.2,109,106.6,105.3,105.4,109.6,105.6,105.6,105.6,105.6,105.7,107.6,106,106,106,106,106,106.2 +60,110,129.5,109.3,106.9,105.4,105.6,109.9,105.7,105.7,105.7,105.8,105.9,107.9,106.1,106.1,106.1,106.1,106.2,106.3 +61,110.1,129.8,109.6,107.1,105.6,105.7,110.2,105.9,105.9,105.9,105.9,106,108.1,106.3,106.3,106.3,106.3,106.3,106.5 +62,110.2,130.1,109.9,107.4,105.7,105.9,110.5,106,106,106,106,106.1,108.3,106.4,106.4,106.4,106.4,106.4,106.6 +63,110.4,130.4,110.3,107.7,105.8,106,110.7,106.2,106.2,106.2,106.2,106.3,108.5,106.5,106.5,106.5,106.5,106.5,106.7 +64,110.5,130.7,110.6,107.9,106,106.1,111,106.3,106.3,106.3,106.3,106.4,108.7,106.6,106.6,106.6,106.6,106.7,106.8 +65,110.6,131,110.9,108.2,106.1,106.3,111.2,106.4,106.4,106.4,106.4,106.5,108.9,106.8,106.8,106.8,106.8,106.8,107 +66,110.8,131.3,111.2,108.4,106.2,106.4,111.5,106.5,106.5,106.5,106.6,106.7,109.1,106.9,106.9,106.9,106.9,106.9,107.1 +67,110.9,131.6,111.5,108.6,106.4,106.5,111.7,106.7,106.7,106.7,106.7,106.8,109.3,107,107,107,107,107,107.2 +68,111,131.9,111.8,108.9,106.5,106.7,112,106.8,106.8,106.8,106.8,106.9,109.5,107.1,107.1,107.1,107.1,107.2,107.3 +69,111.2,132.2,112.1,109.1,106.6,106.8,112.2,106.9,106.9,106.9,106.9,107,109.7,107.2,107.2,107.2,107.2,107.3,107.4 +70,111.3,132.4,112.4,109.3,106.7,106.9,112.5,107,107,107,107,107.1,109.9,107.3,107.3,107.3,107.3,107.4,107.5 +71,111.4,132.7,112.7,109.5,106.8,107,112.7,107.2,107.2,107.2,107.2,107.3,110.1,107.5,107.5,107.5,107.5,107.5,107.6 +72,111.5,133,112.9,109.6,107,107.2,112.9,107.3,107.3,107.3,107.3,107.4,110.2,107.6,107.6,107.6,107.6,107.6,107.8 +73,111.7,133.3,113.2,109.8,107.1,107.3,113.2,107.4,107.4,107.4,107.4,107.5,110.4,107.7,107.7,107.7,107.7,107.7,107.9 +74,111.8,133.6,113.5,109.9,107.2,107.4,113.4,107.5,107.5,107.5,107.5,107.6,110.6,107.8,107.8,107.8,107.8,107.8,108 +75,111.9,133.8,113.8,110.1,107.4,107.5,113.6,107.6,107.6,107.6,107.6,107.7,110.7,107.9,107.9,107.9,107.9,107.9,108.1 +76,112,134.1,114.1,110.2,107.5,107.6,113.9,107.7,107.7,107.7,107.7,107.8,110.9,108,108,108,108,108,108.2 +77,112.1,134.4,114.4,110.3,107.7,107.8,114.1,107.8,107.8,107.8,107.9,107.9,111.1,108.1,108.1,108.1,108.1,108.1,108.3 +78,112.2,134.6,114.7,110.4,107.8,107.9,114.3,108,108,108,108,108.1,111.2,108.2,108.2,108.2,108.2,108.3,108.4 +79,112.3,134.9,115,110.5,108,108,114.5,108.1,108.1,108.1,108.1,108.2,111.4,108.3,108.3,108.3,108.3,108.4,108.5 +80,112.5,135.2,115.2,110.6,108.2,108.1,114.7,108.2,108.2,108.2,108.2,108.3,111.5,108.4,108.4,108.4,108.4,108.5,108.6 +81,112.6,135.4,115.5,110.7,108.3,108.2,114.9,108.3,108.3,108.3,108.3,108.4,111.6,108.5,108.5,108.5,108.5,108.6,108.7 +82,112.7,135.7,115.8,110.8,108.5,108.3,115.2,108.4,108.4,108.4,108.4,108.5,111.8,108.6,108.6,108.6,108.6,108.7,108.8 +83,112.8,135.9,116.1,110.9,108.7,108.4,115.4,108.5,108.5,108.5,108.5,108.6,111.9,108.7,108.7,108.7,108.7,108.8,108.9 +84,112.9,136.2,116.4,110.9,108.9,108.5,115.6,108.6,108.6,108.6,108.6,108.7,112.1,108.8,108.8,108.8,108.8,108.9,109 +85,113,136.4,116.7,111,109.1,108.6,115.8,108.7,108.7,108.7,108.7,108.8,112.2,108.9,108.9,108.9,108.9,109,109.1 +86,113.1,136.7,117,111.2,109.3,108.7,116,108.8,108.8,108.8,108.8,108.9,112.3,109,109,109,109,109,109.2 +87,113.2,136.9,117.2,111.5,109.5,108.8,116.2,108.9,108.9,108.9,108.9,109,112.4,109.1,109.1,109.1,109.1,109.1,109.3 +88,113.3,137.2,117.5,111.8,109.7,108.9,116.4,109,109,109,109,109.1,112.6,109.2,109.2,109.2,109.2,109.2,109.3 +89,113.4,137.4,117.8,112.1,109.9,109,116.6,109.1,109.1,109.1,109.1,109.2,112.7,109.3,109.3,109.3,109.3,109.3,109.4 +90,113.5,137.6,118.1,112.3,110.1,109.1,116.8,109.2,109.2,109.2,109.2,109.3,112.8,109.4,109.4,109.4,109.4,109.4,109.5 +91,113.6,137.9,118.4,112.6,110.3,109.2,117,109.3,109.3,109.3,109.3,109.3,112.9,109.5,109.5,109.5,109.5,109.5,109.6 +92,113.7,138.1,118.7,112.9,110.5,109.3,117.2,109.4,109.4,109.4,109.4,109.4,113,109.6,109.6,109.6,109.6,109.6,109.7 +93,113.8,138.3,119,113.2,110.7,109.4,117.4,109.5,109.5,109.5,109.5,109.5,113.1,109.6,109.6,109.6,109.6,109.7,109.8 +94,113.9,138.6,119.3,113.4,110.9,109.5,117.5,109.5,109.5,109.5,109.5,109.6,113.2,109.7,109.7,109.7,109.7,109.8,109.9 +95,113.9,138.8,119.6,113.7,111,109.6,117.7,109.6,109.6,109.6,109.6,109.7,113.3,109.8,109.8,109.8,109.8,109.9,110 +96,114,139,119.9,114,111.2,109.7,117.9,109.7,109.7,109.7,109.7,109.8,113.4,109.9,109.9,109.9,109.9,110,110 +97,114.1,139.3,120.1,114.3,111.3,109.7,118.1,109.8,109.8,109.8,109.8,109.9,113.5,110,110,110,110,110,110.1 +98,114.2,139.5,120.4,114.6,111.5,109.8,118.3,109.9,109.9,109.9,109.9,110,113.6,110.1,110.1,110.1,110.1,110.1,110.2 +99,114.3,139.7,120.7,114.9,111.6,109.9,118.5,110,110,110,110,110.1,113.7,110.2,110.2,110.2,110.2,110.2,110.3 +100,114.4,139.9,121,115.2,111.7,110,118.6,110.1,110.1,110.1,110.1,110.1,113.8,110.2,110.2,110.2,110.2,110.3,110.4 +101,114.5,140.2,121.3,115.5,111.8,110.1,118.8,110.2,110.2,110.2,110.2,110.2,113.9,110.3,110.3,110.3,110.3,110.4,110.5 +102,114.6,140.4,121.6,115.8,111.9,110.2,119,110.2,110.2,110.2,110.3,110.3,114,110.4,110.4,110.4,110.4,110.5,110.5 +103,114.6,140.6,121.9,116.1,111.9,110.3,119.2,110.3,110.3,110.3,110.4,110.4,114.1,110.5,110.5,110.5,110.5,110.5,110.6 +104,114.7,140.8,122.2,116.4,112,110.3,119.3,110.4,110.4,110.4,110.4,110.5,114.2,110.6,110.6,110.6,110.6,110.6,110.7 +105,114.8,141,122.5,116.7,112.1,110.4,119.5,110.5,110.5,110.5,110.5,110.6,114.2,110.6,110.6,110.6,110.7,110.7,110.8 +106,114.9,141.2,122.7,117,112.1,110.5,119.7,110.6,110.6,110.6,110.6,110.6,114.4,110.7,110.7,110.7,110.7,110.8,110.8 +107,115,141.5,122.9,117.3,112.1,110.6,119.9,110.6,110.7,110.7,110.7,110.7,114.5,110.8,110.8,110.8,110.8,110.8,110.9 +108,115.1,141.7,123.2,117.6,112.2,110.7,120,110.7,110.7,110.7,110.8,110.8,114.7,110.9,110.9,110.9,110.9,110.9,111 +109,115.1,141.9,123.4,117.9,112.2,110.7,120.2,110.8,110.8,110.8,110.8,110.9,114.8,111,111,111,111,111,111.1 +110,115.2,142.1,123.7,118.2,112.5,110.8,120.4,110.9,110.9,110.9,110.9,110.9,115,111,111,111,111,111.1,111.1 +111,115.3,142.3,123.9,118.5,112.8,110.9,120.5,111,111,111,111,111,115.1,111.1,111.1,111.1,111.1,111.2,111.2 +112,115.4,142.5,124.1,118.8,113.1,111,120.7,111,111,111,111.1,111.1,115.3,111.2,111.2,111.2,111.2,111.2,111.3 +113,115.5,142.7,124.4,119.1,113.4,111,120.9,111.1,111.1,111.1,111.2,111.2,115.4,111.3,111.3,111.3,111.3,111.3,111.4 +114,115.5,142.9,124.6,119.4,113.7,111.1,121,111.2,111.2,111.2,111.2,111.2,115.6,111.3,111.3,111.3,111.3,111.4,111.4 +115,115.6,143.1,124.8,119.7,114,111.2,121.2,111.3,111.3,111.3,111.3,111.3,115.7,111.4,111.4,111.4,111.4,111.4,111.5 +116,115.7,143.3,125,119.9,114.3,111.2,121.3,111.3,111.3,111.3,111.4,111.4,115.9,111.5,111.5,111.5,111.5,111.5,111.6 +117,115.8,143.5,125.3,120.2,114.6,111.3,121.5,111.4,111.4,111.4,111.5,111.5,116,111.6,111.6,111.6,111.6,111.6,111.7 +118,115.8,143.7,125.5,120.4,114.9,111.4,121.6,111.5,111.5,111.5,111.5,111.5,116.1,111.6,111.6,111.6,111.6,111.7,111.7 +119,115.9,143.9,125.7,120.7,115.2,111.5,121.8,111.6,111.6,111.6,111.6,111.6,116.2,111.7,111.7,111.7,111.7,111.7,111.8 +120,116,144.1,125.9,120.9,115.5,111.5,122,111.6,111.6,111.6,111.7,111.7,116.3,111.8,111.8,111.8,111.8,111.8,111.9 +121,116,144.3,126.2,121.1,115.8,111.6,122.1,111.7,111.7,111.7,111.7,111.8,116.5,111.8,111.8,111.8,111.8,111.9,111.9 +122,116.1,144.5,126.4,121.4,116.1,111.6,122.3,111.8,111.8,111.8,111.8,111.8,116.6,111.9,111.9,111.9,111.9,111.9,112 +123,116.2,144.7,126.6,121.6,116.4,111.7,122.4,111.8,111.8,111.8,111.9,111.9,116.7,112,112,112,112,112,112.1 +124,116.3,144.9,126.8,121.9,116.7,111.8,122.5,111.9,111.9,111.9,112,112,116.8,112,112,112,112,112.1,112.1 +125,116.3,145.1,127,122.1,117,111.8,122.7,112,112,112,112,112,116.9,112.1,112.1,112.1,112.1,112.1,112.2 +126,116.4,145.2,127.3,122.3,117.2,111.9,122.8,112,112.1,112.1,112.1,112.1,117,112.2,112.2,112.2,112.2,112.2,112.3 +127,116.5,145.4,127.5,122.6,117.5,112,122.9,112.1,112.1,112.1,112.2,112.2,117.1,112.2,112.2,112.2,112.2,112.3,112.3 +128,116.5,145.6,127.7,122.8,117.7,112,123,112.2,112.2,112.2,112.2,112.2,117.2,112.3,112.3,112.3,112.3,112.3,112.4 +129,116.6,145.8,127.9,123.1,117.9,112.1,123.2,112.2,112.3,112.3,112.3,112.3,117.3,112.4,112.4,112.4,112.4,112.4,112.5 +130,116.7,146,128.1,123.3,118.1,112.1,123.3,112.3,112.3,112.3,112.4,112.4,117.4,112.4,112.4,112.4,112.4,112.5,112.5 +131,116.7,146.2,128.3,123.5,118.3,112.2,123.4,112.4,112.4,112.4,112.4,112.4,117.5,112.5,112.5,112.5,112.5,112.5,112.6 +132,116.8,146.4,128.5,123.8,118.4,112.3,123.5,112.4,112.4,112.4,112.5,112.5,117.6,112.5,112.5,112.5,112.6,112.6,112.7 +133,116.9,146.6,128.7,124,118.6,112.3,123.6,112.5,112.5,112.5,112.6,112.6,117.7,112.6,112.6,112.6,112.6,112.6,112.7 +134,116.9,146.7,128.9,124.2,118.8,112.4,123.8,112.6,112.6,112.6,112.6,112.6,117.8,112.7,112.7,112.7,112.7,112.7,112.8 +135,117,146.9,129.1,124.4,119.1,112.4,123.9,112.6,112.6,112.6,112.7,112.7,117.9,112.7,112.7,112.7,112.7,112.8,112.8 +136,117.1,147.1,129.3,124.6,119.4,112.5,124,112.7,112.7,112.7,112.7,112.7,118,112.8,112.8,112.8,112.8,112.8,112.9 +137,117.1,147.2,129.5,124.9,119.6,112.5,124.1,112.8,112.8,112.8,112.8,112.8,118.1,112.9,112.9,112.9,112.9,112.9,113 +138,117.2,147.4,129.7,125.1,119.9,112.6,124.2,112.8,112.8,112.8,112.9,112.9,118.2,112.9,112.9,112.9,112.9,113,113 +139,117.2,147.6,129.9,125.3,120.1,112.7,124.3,112.9,112.9,112.9,112.9,112.9,118.3,113,113,113,113,113,113.1 +140,117.3,147.9,130.2,125.5,120.4,112.7,124.4,112.9,112.9,112.9,113,113,118.4,113,113,113,113,113.1,113.1 +141,117.4,148.3,130.4,125.8,120.6,112.8,124.5,113,113,113,113,113,118.5,113.1,113.1,113.1,113.1,113.1,113.2 +142,117.4,148.7,130.6,126,120.9,112.8,124.7,113.1,113.1,113.1,113.1,113.1,118.6,113.2,113.2,113.2,113.2,113.2,113.3 +143,117.5,149.1,130.8,126.2,121.2,112.9,124.8,113.1,113.1,113.1,113.2,113.2,118.7,113.2,113.2,113.2,113.2,113.2,113.3 +144,117.5,149.6,131,126.4,121.4,112.9,124.9,113.2,113.2,113.2,113.2,113.2,118.8,113.3,113.3,113.3,113.3,113.3,113.4 +145,117.6,150,131.1,126.6,121.7,113,125,113.2,113.2,113.2,113.3,113.3,118.9,113.3,113.3,113.3,113.3,113.4,113.4 +146,117.6,150.4,131.3,126.9,121.9,113,125.1,113.3,113.3,113.3,113.3,113.3,119,113.4,113.4,113.4,113.4,113.4,113.5 +147,117.7,150.8,131.5,127.1,122.2,113.1,125.2,113.4,113.4,113.4,113.4,113.4,119.1,113.4,113.4,113.4,113.4,113.5,113.5 +148,117.8,151.2,131.7,127.3,122.4,113.1,125.3,113.4,113.4,113.4,113.5,113.5,119.2,113.5,113.5,113.5,113.5,113.5,113.6 +149,117.8,151.6,131.9,127.5,122.7,113.1,125.4,113.5,113.5,113.5,113.5,113.5,119.3,113.5,113.5,113.5,113.5,113.6,113.7 +150,117.9,152.1,132.1,127.7,122.9,113.2,125.5,113.5,113.5,113.5,113.6,113.6,119.4,113.6,113.6,113.6,113.6,113.6,113.7 +151,117.9,152.5,132.4,127.9,123.2,113.2,125.6,113.6,113.6,113.6,113.6,113.6,119.5,113.7,113.7,113.7,113.7,113.7,113.8 +152,118,152.9,132.8,128.2,123.4,113.3,125.7,113.6,113.6,113.6,113.7,113.7,119.6,113.7,113.7,113.7,113.7,113.7,113.8 +153,118,153.3,133.2,128.4,123.7,113.3,125.9,113.7,113.7,113.7,113.7,113.7,119.7,113.8,113.8,113.8,113.8,113.8,113.9 +154,118.1,153.7,133.6,128.6,123.9,113.4,126,113.7,113.7,113.7,113.8,113.8,119.8,113.8,113.8,113.8,113.8,113.9,113.9 +155,118.2,154.1,134,128.8,124.2,113.4,126.1,113.8,113.8,113.8,113.9,113.8,119.9,113.9,113.9,113.9,113.9,113.9,114 +156,118.2,154.5,134.4,129,124.4,113.4,126.2,113.8,113.8,113.9,113.9,113.9,120,113.9,113.9,113.9,113.9,114,114 +157,118.3,155,134.8,129.2,124.7,113.5,126.3,113.9,113.9,113.9,114,114,120.1,114,114,114,114,114,114.1 +158,118.3,155.4,135.3,129.5,124.9,113.5,126.4,114,114,114,114,114,120.2,114,114,114,114,114.1,114.1 +159,118.4,155.8,135.7,129.9,125.1,113.6,126.5,114,114,114,114.1,114.1,120.3,114.1,114.1,114.1,114.1,114.1,114.2 +160,118.4,156.2,136.1,130.3,125.4,113.6,126.6,114.1,114.1,114.1,114.1,114.1,120.4,114.1,114.1,114.1,114.1,114.2,114.3 +161,118.5,156.6,136.5,130.7,125.6,113.7,126.7,114.1,114.1,114.1,114.2,114.2,120.4,114.2,114.2,114.2,114.2,114.2,114.3 +162,118.5,157,136.9,131.1,125.9,113.7,126.8,114.2,114.2,114.2,114.2,114.2,120.5,114.2,114.2,114.2,114.2,114.3,114.4 +163,118.6,157.4,137.3,131.6,126.1,113.8,126.9,114.2,114.2,114.2,114.3,114.3,120.6,114.3,114.3,114.3,114.3,114.3,114.4 +164,118.6,157.8,137.8,132,126.4,113.9,127,114.3,114.3,114.3,114.3,114.3,120.7,114.3,114.3,114.3,114.3,114.4,114.5 +165,118.7,158.2,138.2,132.4,126.6,114,127.1,114.3,114.3,114.3,114.4,114.4,120.8,114.4,114.4,114.4,114.4,114.4,114.5 +166,118.8,158.7,138.6,132.8,126.8,114,127.2,114.4,114.4,114.4,114.4,114.4,120.9,114.4,114.4,114.4,114.4,114.5,114.6 +167,118.8,159.1,139,133.2,127.1,114.1,127.3,114.4,114.4,114.4,114.5,114.5,121,114.5,114.5,114.5,114.5,114.5,114.6 +168,118.9,159.5,139.4,133.6,127.4,114.2,127.4,114.5,114.5,114.5,114.5,114.5,121.1,114.5,114.5,114.5,114.5,114.6,114.7 +169,118.9,159.9,139.8,134.1,127.8,114.3,127.5,114.5,114.5,114.5,114.6,114.6,121.2,114.6,114.6,114.6,114.6,114.6,114.7 +170,119,160.3,140.2,134.5,128.2,114.3,127.6,114.6,114.6,114.6,114.6,114.6,121.3,114.6,114.6,114.6,114.7,114.7,114.8 +171,119,160.7,140.6,134.9,128.7,114.4,127.7,114.6,114.6,114.6,114.7,114.7,121.4,114.7,114.7,114.7,114.7,114.7,114.8 +172,119.1,161.1,141.1,135.3,129.1,114.5,127.8,114.7,114.7,114.7,114.7,114.7,121.5,114.7,114.7,114.7,114.8,114.8,114.9 +173,119.1,161.5,141.5,135.7,129.5,114.6,127.9,114.7,114.7,114.7,114.8,114.9,121.6,114.8,114.8,114.8,114.8,114.8,114.9 +174,119.2,161.9,141.9,136.1,129.9,114.6,128.1,114.8,114.8,114.8,114.8,114.9,121.7,114.8,114.8,114.8,114.8,114.9,115 +175,119.2,162.3,142.3,136.5,130.3,114.7,128.2,114.8,114.8,114.8,114.9,115,121.7,114.9,114.9,114.9,114.9,114.9,115 +176,119.3,162.7,142.7,137,130.7,114.8,128.3,114.9,114.9,114.9,114.9,115,121.8,114.9,114.9,114.9,114.9,114.9,115 +177,119.3,163.2,143.1,137.4,131.2,114.8,128.4,114.9,114.9,114.9,115,115.1,121.9,115,115,115,115,115,115.1 +178,119.4,163.6,143.5,137.8,131.6,114.9,128.5,115,115,115,115,115.1,122,115,115,115,115,115,115.1 +179,119.4,164,143.9,138.2,132,115,128.6,115,115,115,115.1,115.2,122.1,115.1,115.1,115.1,115.1,115.1,115.2 +180,119.5,164.4,144.3,138.6,132.4,115,128.7,115.1,115,115,115.1,115.2,122.2,115.1,115.1,115.1,115.1,115.1,115.2 +181,119.5,164.8,144.8,139,132.8,115.1,128.8,115.1,115.1,115.1,115.1,115.3,122.3,115.2,115.2,115.2,115.2,115.2,115.3 +182,119.6,165.2,145.2,139.4,133.2,115.2,128.9,115.1,115.1,115.1,115.2,115.3,122.4,115.2,115.2,115.2,115.2,115.2,115.3 +183,119.6,165.6,145.6,139.8,133.6,115.3,129,115.2,115.2,115.2,115.2,115.3,122.4,115.2,115.2,115.2,115.3,115.3,115.4 +184,119.7,166,146,140.2,134.1,115.3,129.1,115.3,115.2,115.2,115.3,115.4,122.5,115.3,115.3,115.3,115.3,115.3,115.4 +185,119.7,166.4,146.4,140.7,134.5,115.4,129.2,115.3,115.3,115.3,115.3,115.4,122.6,115.3,115.3,115.3,115.4,115.4,115.5 +186,119.7,166.8,146.8,141.1,134.9,115.5,129.3,115.4,115.3,115.3,115.4,115.5,122.7,115.4,115.4,115.4,115.4,115.4,115.5 +187,119.8,167.2,147.2,141.5,135.3,115.5,129.4,115.4,115.4,115.4,115.4,115.5,122.8,115.4,115.4,115.4,115.4,115.4,115.6 +188,119.8,167.7,147.6,141.9,135.7,115.6,129.5,115.5,115.4,115.4,115.4,115.6,122.9,115.5,115.5,115.5,115.5,115.5,115.6 +189,119.9,168.1,148,142.3,136.1,115.7,129.6,115.5,115.4,115.4,115.5,115.6,123,115.5,115.5,115.5,115.5,115.5,115.6 +190,119.9,168.5,148.4,142.7,136.5,115.7,129.7,115.6,115.5,115.5,115.5,115.7,123.1,115.6,115.6,115.6,115.6,115.6,115.7 +191,120,168.9,148.8,143.1,137,115.8,129.8,115.6,115.5,115.5,115.6,115.7,123.2,115.6,115.6,115.6,115.6,115.6,115.7 +192,120,169.3,149.3,143.5,137.4,115.9,129.9,115.7,115.6,115.6,115.6,115.8,123.2,115.6,115.6,115.6,115.7,115.7,115.8 +193,120.1,169.7,149.7,143.9,137.8,115.9,129.9,115.7,115.6,115.6,115.6,115.8,123.3,115.7,115.7,115.7,115.7,115.7,115.8 +194,120.1,170.1,150.1,144.4,138.2,116,130,115.8,115.6,115.7,115.7,115.8,123.4,115.7,115.7,115.7,115.8,115.7,115.9 +195,120.2,170.5,150.5,144.8,138.6,116,130.1,115.9,115.7,115.7,115.7,115.9,123.5,115.8,115.8,115.8,115.8,115.8,115.9 +196,120.2,170.9,150.9,145.2,139,116.1,130.2,115.9,115.7,115.7,115.7,115.9,123.6,115.8,115.8,115.8,115.8,115.8,115.9 +197,120.2,171.3,151.3,145.6,139.4,116.2,130.3,116,115.8,115.8,115.8,116,123.7,115.9,115.9,115.9,115.9,115.9,116 +198,120.3,171.3,151.7,146,139.8,116.2,130.4,116,115.8,115.8,115.8,116,123.8,115.9,115.9,115.9,115.9,115.9,116 +199,120.3,171.4,152.1,146.4,140.2,116.3,130.5,116.1,115.8,115.8,115.9,116.1,123.9,115.9,115.9,115.9,116,115.9,116.1 +200,120.4,171.4,152.4,146.8,140.7,116.4,130.6,116.1,115.9,115.9,115.9,116.1,123.9,116,116,116,116,116,116.1 +201,120.4,171.4,152.4,147.2,141.1,116.4,130.7,116.2,115.9,115.9,115.9,116.1,124,116,116,116,116.1,116,116.2 +202,120.5,171.4,152.5,147.6,141.5,116.5,130.8,116.2,115.9,115.9,116,116.2,124.1,116.1,116.1,116.1,116.1,116.1,116.2 +203,120.5,171.3,152.6,147.7,141.9,116.5,130.9,116.3,116,116,116,116.2,124.2,116.1,116.1,116.1,116.1,116.1,116.2 +204,120.6,171.3,152.6,147.8,142.3,116.6,131,116.3,116,116,116,116.3,124.3,116.2,116.2,116.2,116.2,116.1,116.3 +205,120.6,171.3,152.7,147.9,142.7,116.7,131,116.4,116,116,116.1,116.3,124.4,116.2,116.2,116.2,116.2,116.2,116.3 +206,120.6,171.3,152.8,148,143.1,116.7,131.1,116.4,116.1,116.1,116.1,116.3,124.4,116.2,116.2,116.2,116.3,116.2,116.4 +207,120.7,171.3,152.8,148.1,143.4,116.8,131.2,116.5,116.1,116.1,116.1,116.4,124.5,116.3,116.3,116.3,116.3,116.3,116.4 +208,120.7,171.3,152.9,148.2,143.6,116.8,131.3,116.5,116.1,116.1,116.2,116.4,124.6,116.3,116.3,116.3,116.3,116.3,116.4 +209,120.8,171.3,153,148.3,143.7,116.9,131.3,116.6,116.1,116.1,116.2,116.5,124.7,116.4,116.4,116.4,116.4,116.3,116.5 +210,120.8,171.3,153,148.4,143.9,117,131.4,116.6,116.2,116.2,116.2,116.5,124.8,116.4,116.4,116.4,116.4,116.4,116.5 +211,120.8,171.3,153.1,148.5,144,117,131.5,116.7,116.2,116.2,116.3,116.5,124.9,116.4,116.4,116.4,116.5,116.4,116.5 +212,120.9,171.3,153.1,148.6,144.2,117.1,131.6,116.7,116.2,116.2,116.3,116.6,124.9,116.5,116.5,116.5,116.5,116.5,116.6 +213,120.9,171.3,153.1,148.7,144.3,117.1,131.6,116.8,116.2,116.2,116.3,116.6,125,116.5,116.5,116.5,116.5,116.5,116.6 +214,121,171.3,153.1,148.8,144.5,117.2,131.7,116.8,116.2,116.3,116.4,116.7,125.1,116.6,116.6,116.6,116.6,116.5,116.7 +215,121,171.3,153.2,148.8,144.6,117.2,131.8,116.8,116.3,116.3,116.4,116.7,125.2,116.6,116.6,116.6,116.6,116.6,116.7 +216,121,171.3,153.2,148.9,144.8,117.3,131.8,116.9,116.3,116.3,116.4,116.7,125.3,116.6,116.6,116.6,116.7,116.6,116.7 +217,121.1,171.3,153.2,149,144.9,117.4,131.9,116.9,116.3,116.3,116.5,116.8,125.4,116.7,116.7,116.7,116.7,116.6,116.8 +218,121.1,171.3,153.2,149.1,145,117.5,131.9,117,116.3,116.3,116.5,116.8,125.4,116.7,116.7,116.7,116.7,116.7,116.8 +219,121.2,171.3,153.2,149.1,145.1,117.5,132,117,116.3,116.3,116.5,116.9,125.5,116.7,116.7,116.7,116.8,116.7,116.9 +220,121.2,171.3,153.3,149.2,145.3,117.6,132.1,117,116.3,116.4,116.6,116.9,125.6,116.8,116.8,116.8,116.8,116.8,116.9 +221,121.2,171.3,153.3,149.2,145.4,117.7,132.1,117.1,116.4,116.4,116.6,116.9,125.7,116.8,116.8,116.8,116.8,116.8,116.9 +222,121.3,171.3,153.3,149.3,145.5,117.8,132.2,117.1,116.4,116.4,116.6,117,125.8,116.9,116.9,116.9,116.9,116.8,117 +223,121.3,171.3,153.3,149.3,145.6,117.9,132.3,117.1,116.4,116.4,116.6,117,125.8,116.9,116.9,116.9,116.9,116.9,117 +224,121.4,171.3,153.4,149.3,145.8,117.9,132.3,117.2,116.4,116.4,116.7,117,125.9,116.9,116.9,116.9,117,116.9,117 +225,121.4,171.3,153.4,149.4,145.9,118,132.4,117.2,116.4,116.5,116.7,117.1,126,117,117,117,117,116.9,117.1 +226,121.4,171.3,153.4,149.4,146,118,132.5,117.3,116.4,116.5,116.7,117.1,126.1,117,117,117,117,117,117.1 +227,121.5,171.3,153.4,149.5,146.1,118.1,132.5,117.3,116.5,116.5,116.8,117.2,126.2,117,117,117.1,117.1,117,117.1 +228,121.5,171.3,153.5,149.5,146.2,118.1,132.6,117.3,116.5,116.5,116.8,117.2,126.2,117.1,117.1,117.1,117.1,117,117.2 +229,121.6,171.3,153.5,149.6,146.3,118.2,132.7,117.4,116.5,116.5,116.8,117.2,126.3,117.1,117.1,117.1,117.2,117.1,117.2 +230,121.6,171.3,153.5,149.6,146.3,118.2,132.7,117.4,116.5,116.6,116.9,117.3,126.4,117.2,117.2,117.2,117.2,117.1,117.3 +231,121.6,171.3,153.5,149.6,146.4,118.3,132.8,117.4,116.5,116.6,116.9,117.3,126.5,117.2,117.2,117.2,117.2,117.1,117.3 +232,121.7,171.4,153.6,149.7,146.5,118.3,132.9,117.5,116.5,116.6,116.9,117.3,126.6,117.2,117.2,117.2,117.3,117.2,117.3 +233,121.7,171.4,153.6,149.7,146.5,118.3,133,117.5,116.6,116.6,117,117.4,126.7,117.3,117.3,117.3,117.3,117.2,117.4 +234,121.7,171.4,153.6,149.8,146.6,118.4,133,117.5,116.6,116.6,117,117.4,126.7,117.3,117.3,117.3,117.3,117.3,117.4 +235,121.8,171.4,153.7,149.8,146.7,118.4,133.1,117.6,116.6,116.6,117,117.4,126.8,117.3,117.3,117.3,117.4,117.3,117.4 +236,121.8,171.4,153.7,149.9,146.7,118.5,133.2,117.6,116.6,116.7,117,117.5,126.9,117.4,117.4,117.4,117.4,117.3,117.5 +237,121.9,171.5,153.7,149.9,146.8,118.5,133.3,117.6,116.6,116.7,117.1,117.5,127,117.4,117.4,117.4,117.4,117.4,117.5 +238,121.9,171.5,153.8,150,146.9,118.5,133.3,117.7,116.6,116.7,117.1,117.5,127.1,117.4,117.4,117.4,117.5,117.4,117.5 +239,121.9,171.5,153.8,150,146.9,118.6,133.4,117.7,116.7,116.7,117.1,117.6,127.1,117.5,117.5,117.5,117.5,117.4,117.6 +240,122,171.5,153.9,150.1,147,118.6,133.5,117.7,116.7,116.7,117.2,117.6,127.2,117.5,117.5,117.5,117.5,117.5,117.6 +241,122,171.5,153.9,150.1,147,118.6,133.6,117.8,116.7,116.8,117.2,117.6,127.3,117.6,117.6,117.6,117.6,117.5,117.6 +242,122,171.6,153.9,150.2,147.1,118.7,133.6,117.8,116.7,116.8,117.2,117.7,127.4,117.6,117.6,117.6,117.6,117.5,117.7 +243,122.1,171.6,154,150.2,147.2,118.7,133.7,117.8,116.7,116.8,117.2,117.7,127.4,117.6,117.6,117.6,117.7,117.6,117.7 +244,122.1,171.6,154,150.3,147.2,118.7,133.8,117.8,116.8,116.8,117.3,117.7,127.5,117.7,117.7,117.7,117.7,117.6,117.7 +245,122.1,171.7,154.1,150.3,147.3,118.8,133.9,117.9,116.8,116.8,117.3,117.8,127.6,117.7,117.7,117.7,117.7,117.6,117.8 +246,122.2,171.7,154.1,150.4,147.4,118.8,134,117.9,116.8,116.8,117.3,117.8,127.7,117.7,117.7,117.7,117.8,117.7,117.8 +247,122.2,171.7,154.2,150.4,147.4,118.8,134,117.9,116.8,116.9,117.4,117.8,127.8,117.8,117.8,117.8,117.8,117.8,117.8 +248,122.2,171.7,154.2,150.5,147.5,118.9,134.1,117.9,116.8,116.9,117.4,117.9,127.8,117.8,117.8,117.8,117.8,117.8,117.9 +249,122.3,171.8,154.2,150.6,147.6,118.9,134.2,118,116.8,116.9,117.4,117.9,127.9,117.8,117.8,117.8,117.9,117.8,117.9 +250,122.3,171.8,154.3,150.6,147.7,118.9,134.3,118,116.8,116.9,117.4,117.9,128,117.9,117.9,117.9,117.9,117.9,117.9 +251,122.4,171.8,154.3,150.7,147.7,119.1,134.3,118.1,116.9,116.9,117.5,118,128.1,117.9,117.9,117.9,117.9,117.9,118 +252,122.4,171.9,154.4,150.7,147.8,119.5,134.4,118.1,116.9,117,117.5,118,128.1,117.9,117.9,117.9,118,117.9,118 +253,122.4,171.9,154.5,150.8,147.9,119.8,134.5,118.2,116.9,117,117.5,118,128.2,118,118,118,118,118,118 +254,122.5,172,154.5,150.9,147.9,120.1,134.6,118.2,117,117,117.5,118.1,128.3,118,118,118,118,118,118 +255,122.5,172,154.6,150.9,148,120.5,134.7,118.3,117,117,117.6,118.1,128.4,118,118,118,118.1,118,118.1 +256,122.5,172,154.6,151,148.1,120.8,134.7,118.3,117.1,117,117.6,118.1,128.5,118.1,118.1,118.1,118.1,118.1,118.1 +257,122.6,172.1,154.7,151.1,148.2,121.1,134.8,118.4,117.1,117.1,117.6,118.2,128.5,118.1,118.1,118.1,118.1,118.1,118.1 +258,122.6,172.1,154.7,151.1,148.2,121.5,134.9,118.4,117.2,117.1,117.6,118.2,128.6,118.1,118.1,118.1,118.2,118.1,118.2 +259,122.6,172.2,154.8,151.2,148.3,121.8,135,118.5,117.2,117.2,117.7,118.2,128.7,118.2,118.2,118.2,118.2,118.2,118.2 +260,122.7,172.2,154.9,151.3,148.4,122.1,135.1,118.5,117.3,117.2,117.7,118.3,128.8,118.2,118.2,118.2,118.2,118.2,118.2 +261,122.7,172.2,154.9,151.3,148.5,122.5,135.1,118.6,117.3,117.3,117.7,118.3,128.8,118.2,118.2,118.2,118.3,118.2,118.3 +262,122.7,172.3,155,151.4,148.5,122.8,135.2,118.6,117.4,117.3,117.7,118.3,128.9,118.2,118.3,118.3,118.3,118.3,118.3 +263,122.8,172.3,155.1,151.5,148.6,123.1,135.3,118.7,117.4,117.4,117.8,118.3,129,118.3,118.3,118.3,118.3,118.3,118.3 +264,122.8,172.4,155.1,151.6,148.7,123.5,135.4,118.7,117.5,117.4,117.8,118.4,129.1,118.3,118.3,118.3,118.4,118.3,118.4 +265,122.8,172.4,155.2,151.6,148.8,123.8,135.5,118.8,117.5,117.5,117.8,118.4,129.1,118.3,118.3,118.3,118.4,118.3,118.4 +266,122.9,172.5,155.3,151.7,148.9,124.1,135.5,118.8,117.6,117.5,117.8,118.4,129.2,118.4,118.4,118.4,118.4,118.4,118.4 +267,122.9,172.5,155.3,151.8,149,124.5,135.6,118.8,117.6,117.5,117.9,118.5,129.3,118.4,118.4,118.4,118.4,118.4,118.4 +268,122.9,172.6,155.4,151.9,149,124.8,135.7,118.9,117.7,117.6,117.9,118.5,129.4,118.4,118.4,118.4,118.5,118.4,118.5 +269,123,172.6,155.5,152,149.1,125.2,135.8,118.9,117.7,117.6,117.9,118.5,129.4,118.5,118.5,118.5,118.5,118.5,118.5 +270,123,172.7,155.5,152,149.2,125.5,135.9,119,117.8,117.7,117.9,118.6,129.5,118.5,118.5,118.5,118.5,118.5,118.5 +271,123,172.7,155.6,152.1,149.3,125.9,136,119,117.8,117.7,117.9,118.6,129.6,118.5,118.5,118.5,118.6,118.5,118.6 +272,123.1,172.8,155.7,152.2,149.4,126.2,136,119,117.9,117.8,118,118.6,129.7,118.6,118.6,118.6,118.6,118.6,118.6 +273,123.1,172.8,155.8,152.3,149.5,126.6,136.1,119.1,117.9,117.8,118,118.6,129.7,118.6,118.6,118.6,118.6,118.6,118.6 +274,123.1,172.9,155.8,152.4,149.6,126.9,136.2,119.1,118,117.9,118,118.7,129.8,118.6,118.6,118.6,118.7,118.6,118.7 +275,123.1,173,155.9,152.5,149.7,127.3,136.3,119.2,118,117.9,118,118.7,129.9,118.7,118.7,118.7,118.7,118.6,118.7 +276,123.2,173,156,152.6,149.8,127.6,136.4,119.2,118.1,117.9,118.1,118.7,130,118.7,118.7,118.7,118.7,118.7,118.7 +277,123.2,173.1,156.1,152.6,149.9,128,136.5,119.2,118.1,118,118.1,118.8,130,118.7,118.7,118.7,118.8,118.7,118.7 +278,123.2,173.1,156.2,152.7,150,128.3,136.5,119.3,118.2,118,118.1,118.8,130.1,118.7,118.7,118.7,118.8,118.7,118.8 +279,123.3,173.2,156.2,152.8,150.1,128.7,136.6,119.3,118.3,118.1,118.1,118.8,130.2,118.8,118.8,118.8,118.8,118.8,118.8 +280,123.3,173.3,156.3,152.9,150.2,129,136.7,119.3,118.3,118.1,118.1,118.8,130.3,118.8,118.8,118.8,118.8,118.8,118.8 +281,123.3,173.3,156.4,153,150.2,129.4,136.8,119.4,118.4,118.2,118.2,118.9,130.3,118.8,118.8,118.8,118.9,118.8,118.9 +282,123.4,173.4,156.5,153.1,150.3,129.7,136.9,119.4,118.4,118.2,118.2,118.9,130.4,118.9,118.9,118.9,118.9,118.8,118.9 +283,123.4,173.4,156.6,153.2,150.5,130.1,137,119.5,118.5,118.2,118.2,118.9,130.5,118.9,118.9,118.9,118.9,118.9,118.9 +284,123.4,173.5,156.7,153.3,150.6,130.4,137,119.5,118.5,118.3,118.2,119,130.6,118.9,118.9,118.9,119,118.9,118.9 +285,123.5,173.6,156.8,153.4,150.7,130.8,137.1,119.5,118.6,118.3,118.2,119,130.6,118.9,118.9,118.9,119,118.9,119 +286,123.5,173.6,156.9,153.5,150.8,131.1,137.2,119.6,118.7,118.4,118.3,119,130.7,119,119,119,119,119,119 +287,123.5,173.7,156.9,153.6,150.9,131.5,137.3,119.6,118.7,118.4,118.3,119,130.8,119,119,119,119.1,119,119 +288,123.5,173.8,157,153.7,151,131.8,137.4,119.6,118.8,118.5,118.3,119.1,130.8,119,119,119,119.1,119,119.1 +289,123.6,173.8,157.1,153.8,151.1,132.2,137.5,119.7,118.8,118.5,118.3,119.1,130.9,119.1,119.1,119.1,119.1,119,119.1 +290,123.6,173.9,157.2,153.9,151.2,132.5,137.6,119.7,118.9,118.5,118.3,119.1,131,119.1,119.1,119.1,119.1,119.1,119.1 +291,123.6,174,157.3,154,151.3,132.9,137.7,119.7,119,118.6,118.3,119.1,131.1,119.1,119.1,119.1,119.2,119.1,119.1 +292,123.7,174,157.4,154.1,151.4,133.2,137.7,119.8,119,118.6,118.4,119.2,131.1,119.1,119.1,119.1,119.2,119.1,119.2 +293,123.7,174.1,157.5,154.2,151.5,133.6,137.8,119.8,119.1,118.7,118.4,119.2,131.2,119.2,119.2,119.2,119.2,119.2,119.2 +294,123.7,174.2,157.6,154.3,151.6,133.9,137.9,119.8,119.1,118.7,118.4,119.2,131.3,119.2,119.2,119.2,119.3,119.2,119.2 +295,123.8,174.3,157.7,154.4,151.7,134.3,138,119.9,119.2,118.7,118.4,119.2,131.4,119.2,119.2,119.2,119.3,119.2,119.2 +296,123.8,174.3,157.8,154.5,151.8,134.7,138.1,119.9,119.3,118.8,118.4,119.3,131.4,119.3,119.3,119.3,119.3,119.2,119.3 +297,123.8,174.4,157.9,154.6,152,135.1,138.2,119.9,119.3,118.8,118.5,119.3,131.5,119.3,119.3,119.3,119.3,119.3,119.3 +298,123.8,174.5,158,154.7,152.1,135.5,138.3,120,119.4,118.9,118.5,119.3,131.6,119.3,119.3,119.3,119.4,119.3,119.3 +299,123.9,174.5,158.1,154.8,152.2,135.9,138.4,120,119.4,118.9,118.5,119.3,131.6,119.3,119.3,119.3,119.4,119.3,119.3 +300,123.9,174.6,158.2,154.9,152.3,136.2,138.5,120,119.5,119,118.6,119.4,131.7,119.4,119.4,119.4,119.4,119.3,119.4 +301,123.9,174.7,158.3,155,152.4,136.6,138.6,120,119.6,119,118.6,119.4,131.8,119.4,119.4,119.4,119.4,119.4,119.4 +302,124,174.8,158.4,155.2,152.5,136.9,138.6,120.1,119.6,119,118.6,119.4,131.9,119.4,119.4,119.4,119.5,119.4,119.4 +303,124,174.8,158.5,155.3,152.6,137.2,138.7,120.1,119.7,119.1,118.7,119.5,131.9,119.4,119.4,119.4,119.5,119.4,119.5 +304,124,174.9,158.6,155.4,152.8,137.6,138.8,120.1,119.7,119.1,118.7,119.5,132,119.5,119.5,119.5,119.5,119.5,119.5 +305,124,175,158.7,155.5,152.9,137.9,138.9,120.2,119.8,119.2,118.7,119.5,132.1,119.5,119.5,119.5,119.5,119.5,119.5 +306,124.1,175.1,158.8,155.6,153,138.2,139,120.2,119.8,119.2,118.8,119.5,132.1,119.5,119.5,119.5,119.6,119.5,119.5 +307,124.1,175.1,158.9,155.7,153.1,138.5,139.1,120.2,119.9,119.2,118.8,119.5,132.2,119.6,119.5,119.5,119.6,119.5,119.6 +308,124.1,175.2,159,155.8,153.2,138.7,139.2,120.3,119.9,119.3,118.9,119.6,132.3,119.6,119.6,119.6,119.6,119.6,119.6 +309,124.2,175.3,159.1,155.9,153.3,139,139.3,120.3,120,119.3,118.9,119.6,132.4,119.6,119.6,119.6,119.6,119.6,119.6 +310,124.2,175.4,159.2,156,153.5,139.3,139.4,120.3,120,119.4,118.9,119.6,132.4,119.6,119.6,119.6,119.7,119.6,119.6 +311,124.2,175.5,159.3,156.2,153.6,139.6,139.5,120.4,120.1,119.4,119,119.6,132.5,119.7,119.6,119.6,119.7,119.6,119.7 +312,124.2,175.5,159.4,156.3,153.7,139.8,139.6,120.4,120.1,119.4,119,119.7,132.6,119.7,119.7,119.7,119.7,119.7,119.7 +313,124.3,175.6,159.5,156.4,153.8,140.1,139.7,120.4,120.2,119.5,119.1,119.7,132.6,119.7,119.7,119.7,119.7,119.7,119.7 +314,124.3,175.7,159.6,156.5,153.9,140.3,139.8,120.4,120.2,119.5,119.1,119.7,132.7,119.8,119.7,119.7,119.8,119.7,119.7 +315,124.3,175.8,159.7,156.6,154.1,140.5,139.9,120.5,120.3,119.5,119.1,119.7,132.8,119.8,119.7,119.7,119.8,119.7,119.8 +316,124.4,175.9,159.8,156.7,154.2,140.8,140,120.5,120.3,119.6,119.2,119.8,132.8,119.8,119.8,119.8,119.8,119.8,119.8 +317,124.4,175.9,159.9,156.8,154.3,141,140.1,120.5,120.4,119.6,119.2,119.8,132.9,119.8,119.8,119.8,119.8,119.8,119.8 +318,124.4,176,160,156.9,154.4,141.2,140.2,120.6,120.4,119.7,119.2,119.8,133,119.9,119.8,119.8,119.9,119.8,119.8 +319,124.4,176.1,160.1,157.1,154.6,141.5,140.3,120.6,120.5,119.7,119.3,119.8,133.1,119.9,119.8,119.8,119.9,119.8,120 +320,124.5,176.2,160.2,157.2,154.7,141.7,140.4,120.6,120.5,119.7,119.3,119.9,133.1,119.9,119.9,119.9,119.9,119.9,120 +321,124.5,176.2,160.3,157.3,154.8,141.9,140.5,120.6,120.5,119.8,119.4,119.9,133.2,120,119.9,119.9,119.9,119.9,120 +322,124.5,176.3,160.4,157.4,154.9,142.1,140.6,120.7,120.6,119.8,119.4,119.9,133.3,120,119.9,119.9,119.9,119.9,120.1 +323,124.5,176.4,160.5,157.5,155,142.3,140.7,120.7,120.6,119.9,119.4,119.9,133.3,120,119.9,119.9,119.9,119.9,120.1 +324,124.6,176.5,160.6,157.6,155.2,142.5,140.9,120.7,120.7,119.9,119.5,119.9,133.4,120,119.9,119.9,120,120,120.1 +325,124.6,176.6,160.7,157.7,155.3,142.7,141,120.8,120.7,119.9,119.5,120,133.5,120.1,120,120,120,120,120.1 +326,124.6,176.6,160.8,157.9,155.4,142.9,141.1,120.9,120.7,120,119.5,120,133.5,120.1,120,120,120,120,120.2 +327,124.7,176.7,160.9,158,155.5,143.1,141.2,121,120.8,120,119.6,120,133.6,120.1,120,120,120,120,120.2 +328,124.7,176.8,161,158.1,155.7,143.3,141.3,121.1,120.8,120.1,119.6,120,133.6,120.1,120,120,120,120.1,120.2 +329,124.7,176.9,161.1,158.2,155.8,143.4,141.4,121.2,120.8,120.1,119.7,120.1,133.7,120.2,120,120,120,120.1,120.2 +330,124.7,177,161.2,158.3,155.9,143.6,141.5,121.3,120.9,120.1,119.7,120.1,133.8,120.2,120,120,120.1,120.1,120.3 +331,124.8,177,161.3,158.4,156,143.7,141.6,121.4,120.9,120.2,119.7,120.1,133.8,120.2,120.1,120.1,120.1,120.1,120.3 +332,124.8,177.1,161.4,158.5,156.1,143.8,141.8,121.5,120.9,120.2,119.8,120.1,133.9,120.2,120.1,120.1,120.1,120.1,120.3 +333,124.8,177.2,161.5,158.6,156.3,143.9,141.9,121.6,121,120.3,119.8,120.1,133.9,120.3,120.1,120.1,120.1,120.2,120.3 +334,124.8,177.3,161.6,158.8,156.4,144,142,121.8,121,120.3,119.8,120.2,134,120.3,120.1,120.1,120.1,120.2,120.4 +335,124.9,177.3,161.7,158.9,156.5,144.2,142.1,121.9,121,120.4,119.9,120.2,134.1,120.3,120.1,120.1,120.1,120.2,120.4 +336,124.9,177.4,161.8,159,156.6,144.3,142.3,122,121,120.4,119.9,120.2,134.1,120.3,120.1,120.1,120.1,120.2,120.4 +337,124.9,177.5,161.9,159.1,156.7,144.4,142.4,122.1,121.1,120.5,120,120.2,134.2,120.3,120.1,120.1,120.1,120.3,120.4 +338,124.9,177.6,162.1,159.2,156.9,144.5,142.5,122.2,121.1,120.5,120,120.3,134.2,120.4,120.1,120.1,120.1,120.3,120.4 +339,125,177.7,162.2,159.3,157,144.6,142.6,122.4,121.1,120.6,120,120.3,134.3,120.4,120.1,120.1,120.1,120.3,120.5 +340,125,177.7,162.3,159.4,157.1,144.7,142.8,122.5,121.2,120.6,120.1,120.3,134.3,120.4,120.1,120.1,120.1,120.3,120.5 +341,125,177.8,162.4,159.6,157.2,144.8,142.9,122.6,121.2,120.7,120.1,120.3,134.4,120.4,120.1,120.2,120.1,120.4,120.5 +342,125,177.9,162.5,159.7,157.4,144.9,143,122.8,121.2,120.7,120.1,120.3,134.4,120.4,120.1,120.2,120.2,120.4,120.5 +343,125.1,178,162.6,159.8,157.5,145,143.2,122.9,121.3,120.8,120.2,120.4,134.4,120.4,120.1,120.2,120.2,120.4,120.6 +344,125.1,178,162.7,159.9,157.6,145.1,143.3,123,121.3,120.8,120.2,120.4,134.5,120.4,120.1,120.1,120.2,120.4,120.6 +345,125.1,178.1,162.8,160,157.7,145.2,143.4,123.2,121.3,120.9,120.2,120.4,134.5,120.4,120.1,120.1,120.2,120.4,120.6 +346,125.1,178.2,162.9,160.1,157.8,145.3,143.6,123.3,121.3,120.9,120.3,120.4,134.5,120.4,120.1,120.1,120.2,120.5,120.6 +347,125.2,178.3,163,160.2,158,145.4,143.7,123.4,121.4,121,120.3,120.4,134.6,120.4,120.1,120.1,120.2,120.5,120.7 +348,125.2,178.4,163.1,160.3,158.1,145.6,143.8,123.6,121.4,121,120.3,120.5,134.6,120.4,120.1,120.1,120.2,120.5,120.7 +349,125.2,178.4,163.2,160.4,158.2,145.7,143.9,123.7,121.4,121.1,120.4,120.5,134.6,120.4,120.1,120.1,120.2,120.5,120.7 +350,125.2,178.5,163.3,160.6,158.3,145.8,144.1,123.9,121.4,121.1,120.4,120.5,134.7,120.4,120.1,120.1,120.2,120.6,120.7 +351,125.3,178.6,163.4,160.7,158.4,145.9,144.2,124,121.5,121.2,120.5,120.5,134.7,120.4,120.1,120.1,120.2,120.6,120.7 +352,125.3,178.7,163.5,160.8,158.6,146,144.3,124.2,121.5,121.2,120.5,120.5,134.7,120.4,120.1,120.1,120.2,120.6,120.8 +353,125.3,178.7,163.6,160.9,158.7,146.1,144.5,124.3,121.5,121.3,120.5,120.6,134.8,120.4,120.1,120.1,120.2,120.6,120.8 +354,125.3,178.8,163.7,161,158.8,146.2,144.6,124.5,121.5,121.3,120.6,120.6,134.8,120.4,120.1,120.1,120.3,120.6,120.8 +355,125.4,178.9,163.8,161.1,158.9,146.3,144.7,124.6,121.6,121.4,120.6,120.6,134.8,120.4,120,120.1,120.3,120.7,120.8 +356,125.4,179,163.9,161.2,159,146.4,144.9,124.8,121.6,121.4,120.6,120.6,134.9,120.4,120,120.1,120.3,120.7,120.9 +357,125.4,179.1,164,161.3,159.2,146.5,145,124.9,121.6,121.5,120.7,120.6,134.9,120.4,120,120.1,120.3,120.7,120.9 +358,125.4,179.1,164.1,161.5,159.3,146.6,145.1,125.1,121.6,121.5,120.7,120.7,134.9,120.4,120,120.1,120.3,120.7,120.9 +359,125.5,179.2,164.2,161.6,159.4,146.7,145.2,125.3,121.7,121.5,120.7,120.7,135,120.4,120,120,120.3,120.7,120.9 +360,125.5,179.3,164.3,161.7,159.5,146.8,145.4,125.4,121.7,121.6,120.8,120.7,135,120.4,120,120,120.3,120.8,120.9 +361,125.5,179.4,164.4,161.8,159.6,146.9,145.5,125.6,121.7,121.6,120.8,120.7,135,120.4,120,120,120.3,120.8,121 +362,125.5,179.4,164.5,161.9,159.7,147.1,145.6,125.8,121.8,121.7,120.8,120.7,135.1,120.4,120,120,120.3,120.8,121 +363,125.6,179.5,164.6,162,159.9,147.2,145.7,126,121.8,121.7,120.9,120.8,135.1,120.5,120,120,120.3,120.8,121 +364,125.6,179.6,164.7,162.1,160,147.3,145.9,126.2,121.8,121.7,120.9,120.8,135.1,120.5,120,120,120.4,120.8,121 +365,125.6,179.7,164.8,162.2,160.1,147.4,146,126.3,121.8,121.8,120.9,120.8,135.2,120.6,120.1,120,120.4,120.9,121.1 +366,125.6,179.8,164.9,162.3,160.2,147.5,146.1,126.5,121.9,121.8,121,120.8,135.2,120.7,120.1,120.1,120.4,120.9,121.1 +367,125.6,179.8,165,162.4,160.3,147.6,146.3,126.7,121.9,121.8,121,120.8,135.3,120.7,120.2,120.1,120.4,120.9,121.1 +368,125.7,179.9,165.1,162.6,160.5,147.7,146.4,126.9,121.9,121.9,121,120.8,135.3,120.8,120.2,120.2,120.4,120.9,121.1 +369,125.7,180,165.2,162.7,160.6,147.8,146.5,127.1,121.9,121.9,121.1,120.9,135.4,120.8,120.2,120.2,120.4,121,121.1 +370,125.7,180.1,165.3,162.8,160.7,147.9,146.6,127.3,122,121.9,121.1,120.9,135.4,120.9,120.3,120.3,120.4,121,121.2 +371,125.7,180.1,165.4,162.9,160.8,148.1,146.8,127.5,122,121.9,121.1,120.9,135.4,120.9,120.3,120.3,120.4,121,121.2 +372,125.8,180.2,165.5,163,160.9,148.2,146.9,127.7,122,122,121.2,120.9,135.5,120.9,120.4,120.3,120.4,121,121.2 +373,125.8,180.3,165.6,163.1,161,148.3,147,127.9,122,122,121.2,120.9,135.5,121,120.4,120.4,120.5,121,121.2 +374,125.8,180.4,165.7,163.2,161.2,148.4,147.2,128.1,122.3,122,121.2,120.9,135.6,121,120.5,120.4,120.5,121,121.2 +375,125.8,180.5,165.8,163.3,161.3,148.5,147.3,128.3,122.5,122.1,121.3,121,135.6,121.1,120.5,120.5,120.5,121.1,121.3 +376,125.9,180.5,165.9,163.4,161.4,148.6,147.4,128.5,122.7,122.1,121.3,121,135.7,121.1,120.5,120.5,120.5,121.1,121.3 +377,125.9,180.6,166,163.5,161.5,148.8,147.5,128.7,122.9,122.1,121.3,121,135.7,121.2,120.6,120.5,120.5,121.1,121.3 +378,125.9,180.7,166.1,163.6,161.6,148.9,147.7,128.9,123.1,122.1,121.4,121,135.8,121.2,120.6,120.6,120.5,121.1,121.3 +379,125.9,180.8,166.2,163.8,161.7,149,147.8,129.1,123.3,122.2,121.4,121,135.8,121.3,120.6,120.6,120.5,121.1,121.3 +380,126,180.8,166.3,163.9,161.8,149.1,147.9,129.3,123.5,122.2,121.4,121,135.9,121.3,120.7,120.6,120.5,121.2,121.4 +381,126,180.9,166.4,164,162,149.2,148,129.5,123.8,122.2,121.5,121.1,135.9,121.3,120.7,120.7,120.5,121.2,121.4 +382,126,181,166.5,164.1,162.1,149.4,148.2,129.7,124,122.2,121.5,121.1,136,121.4,120.8,120.7,120.5,121.2,121.4 +383,126,181.1,166.6,164.2,162.2,149.5,148.3,129.9,124.2,122.3,121.5,121.1,136,121.4,120.8,120.7,120.6,121.2,121.4 +384,126,181.2,166.7,164.3,162.3,149.6,148.4,130,124.4,122.3,121.6,121.1,136.1,121.5,120.8,120.8,120.6,121.2,121.4 +385,126.1,181.2,166.8,164.4,162.4,149.7,148.6,130.2,124.7,122.3,121.6,121.1,136.1,121.5,120.9,120.8,120.6,121.3,121.5 +386,126.1,181.3,166.9,164.5,162.5,149.9,148.7,130.4,124.9,122.3,121.6,121.1,136.2,121.5,120.9,120.9,120.6,121.3,121.5 +387,126.1,181.4,167,164.6,162.6,150,148.8,130.5,125.1,122.3,121.7,121.2,136.2,121.6,120.9,120.9,120.6,121.3,121.5 +388,126.1,181.5,167.1,164.7,162.8,150.1,148.9,130.7,125.3,122.4,121.7,121.2,136.3,121.6,121,120.9,120.6,121.3,121.5 +389,126.2,181.6,167.2,164.8,162.9,150.2,149.1,130.9,125.5,122.4,121.7,121.2,136.3,121.6,121,121,120.7,121.3,121.5 +390,126.2,181.6,167.3,164.9,163,150.4,149.2,131,125.6,122.4,121.8,121.2,136.4,121.7,121,121,120.7,121.4,121.6 +391,126.2,181.7,167.4,165,163.1,150.5,149.3,131.2,125.8,122.4,121.8,121.2,136.4,121.7,121.1,121,120.7,121.4,121.6 +392,126.2,181.8,167.5,165.2,163.2,150.6,149.4,131.3,125.9,122.5,121.8,121.2,136.5,121.7,121.1,121.1,120.8,121.4,121.6 +393,126.2,181.9,167.6,165.3,163.3,150.7,149.6,131.5,126.1,122.5,121.9,121.3,136.5,121.8,121.1,121.1,120.8,121.4,121.6 +394,126.3,181.9,167.7,165.4,163.4,150.9,149.7,131.7,126.2,122.5,121.9,121.3,136.6,121.8,121.2,121.1,120.8,121.4,121.6 +395,126.3,182,167.8,165.5,163.6,151,149.8,131.8,126.3,122.5,121.9,121.3,136.6,121.8,121.2,121.2,120.8,121.4,121.7 +396,126.3,182.1,167.9,165.6,163.7,151.1,149.9,132,126.5,122.5,122,121.3,136.7,121.9,121.2,121.2,120.9,121.5,121.7 +397,126.3,182.2,168,165.7,163.8,151.3,150.1,132.2,126.7,122.6,122,121.3,136.8,121.9,121.3,121.2,120.9,121.5,121.7 +398,126.4,182.3,168.1,165.8,163.9,151.4,150.2,132.3,126.9,122.6,122,121.3,136.8,121.9,121.3,121.3,120.9,121.5,121.7 +399,126.4,182.3,168.2,165.9,164,151.5,150.3,132.5,127.1,122.6,122,121.3,136.9,122,121.3,121.3,121,121.5,121.7 +400,126.4,182.4,168.3,166,164.1,151.7,150.4,132.6,127.3,122.6,122.1,121.4,136.9,122,121.4,121.3,121,121.5,121.8 +401,126.4,182.5,168.4,166.1,164.2,151.8,150.6,132.8,127.5,122.7,122.1,121.4,137,122,121.4,121.4,121,121.5,121.8 +402,126.4,182.6,168.5,166.2,164.3,151.9,150.7,133,127.7,122.7,122.1,121.4,137,122,121.4,121.4,121.1,121.6,121.8 +403,126.5,182.6,168.6,166.3,164.5,152,150.8,133.1,127.9,122.9,122.2,121.4,137.1,122.1,121.5,121.4,121.1,121.6,121.8 +404,126.5,182.7,168.7,166.4,164.6,152.2,150.9,133.3,128.1,123,122.2,121.4,137.2,122.1,121.5,121.4,121.1,121.6,121.8 +405,126.5,182.8,168.8,166.5,164.7,152.3,151,133.5,128.3,123.1,122.2,121.4,137.2,122.1,121.5,121.5,121.1,121.6,121.9 +406,126.5,182.9,168.9,166.6,164.8,152.4,151.2,133.6,128.5,123.3,122.2,121.4,137.3,122.2,121.5,121.5,121.2,121.6,121.9 +407,126.5,183,169,166.8,164.9,152.6,151.3,133.8,128.7,123.3,122.3,121.5,137.3,122.2,121.6,121.5,121.2,121.6,121.9 +408,126.6,183,169.1,166.9,165,152.7,151.4,133.9,128.8,123.4,122.3,121.5,137.4,122.2,121.6,121.6,121.2,121.7,121.9 +409,126.6,183.1,169.2,167,165.1,152.8,151.5,134,129.1,123.4,122.3,121.5,137.5,122.2,121.6,121.6,121.3,121.7,121.9 +410,126.6,183.2,169.3,167.1,165.2,153,151.6,134.2,129.3,123.5,122.4,121.5,137.5,122.3,121.7,121.6,121.3,121.7,121.9 +411,126.6,183.3,169.4,167.2,165.4,153.1,151.7,134.4,129.5,123.7,122.4,121.5,137.6,122.3,121.7,121.7,121.3,121.7,122 +412,126.6,183.4,169.5,167.3,165.5,153.2,151.9,134.5,129.7,124,122.4,121.5,137.6,122.3,121.7,121.7,121.4,121.7,122 +413,126.7,183.4,169.6,167.4,165.6,153.4,152,134.7,129.9,124.3,122.4,121.5,137.7,122.3,121.8,121.7,121.4,121.7,122 +414,126.7,183.5,169.7,167.5,165.7,153.5,152.3,134.9,130.1,124.5,122.5,121.6,137.8,122.4,121.8,121.8,121.4,121.8,122 +415,126.7,183.6,169.8,167.6,165.8,153.6,152.7,135,130.3,124.8,122.5,121.6,137.8,122.4,121.8,121.8,121.4,121.8,122 +416,126.7,183.7,169.9,167.7,165.9,153.8,153.2,135.2,130.5,125,122.5,121.6,137.9,122.4,121.9,121.8,121.5,121.8,122.1 +417,126.8,183.8,170,167.8,166,153.9,153.6,135.4,130.7,125.3,122.5,121.6,137.9,122.5,121.9,121.8,121.5,121.8,122.1 +418,126.8,183.8,170.1,167.9,166.1,154,154,135.5,130.9,125.5,122.6,121.6,138,122.5,121.9,121.9,121.5,121.8,122.1 +419,126.8,183.9,170.2,168,166.2,154.2,154.5,135.7,131.1,125.8,122.6,121.6,138.1,122.5,122,121.9,121.6,121.8,122.1 +420,126.8,184,170.3,168.1,166.3,154.3,154.9,135.9,131.3,126.1,122.6,121.6,138.1,122.5,122,121.9,121.6,121.9,122.1 +421,126.8,184.1,170.4,168.2,166.5,154.4,155.3,136,131.5,126.3,122.7,121.6,138.2,122.5,122,122,121.6,121.9,122.1 +422,126.9,184.1,170.5,168.3,166.6,154.6,155.8,136.2,131.7,126.6,122.7,121.7,138.3,122.6,122.1,122,121.6,121.9,122.2 +423,126.9,184.2,170.6,168.4,166.7,154.7,156.2,136.3,131.9,126.8,122.7,121.7,138.3,122.6,122.1,122,121.7,121.9,122.2 +424,126.9,184.3,170.7,168.5,166.8,154.8,156.6,136.5,132.1,127.1,122.7,121.7,138.4,122.6,122.1,122,121.7,121.9,122.2 +425,126.9,184.4,170.8,168.6,166.9,155,157.1,136.8,132.4,127.3,122.8,121.7,138.5,122.6,122.2,122.1,121.7,121.9,122.2 +426,126.9,184.5,170.9,168.8,167,155.1,157.5,137.2,132.6,127.6,122.8,121.7,138.5,122.7,122.2,122.1,121.8,122,122.2 +427,127,184.5,171,168.9,167.1,155.2,157.9,137.6,132.8,127.9,122.8,121.7,138.6,122.7,122.2,122.1,121.8,122,122.2 +428,127,184.6,171.1,169,167.2,155.4,158.4,138,133,128.1,122.8,121.8,138.7,122.7,122.3,122.2,121.8,122,122.3 +429,127,184.7,171.2,169.1,167.3,155.5,158.8,138.5,133.2,128.4,122.9,121.8,138.7,122.7,122.3,122.2,121.8,122,122.3 +430,127,184.8,171.3,169.2,167.4,155.6,159.2,138.9,133.4,128.6,122.9,121.8,138.8,122.8,122.3,122.2,121.9,122,122.3 +431,127,184.9,171.4,169.3,167.6,155.8,159.7,139.3,133.6,128.9,122.9,121.8,138.9,122.8,122.4,122.2,121.9,122,122.3 +432,127.1,184.9,171.5,169.4,167.7,155.9,160.1,139.8,133.9,129.1,122.9,121.9,138.9,122.8,122.4,122.3,121.9,122,122.3 +433,127.1,185,171.6,169.5,167.8,156,160.5,140.2,134.3,129.4,123,121.9,139,122.8,122.4,122.3,121.9,122.1,122.3 +434,127.1,185.1,171.7,169.6,167.9,156.1,161,140.6,134.7,129.7,123,121.9,139.1,122.9,122.5,122.3,122,122.1,122.4 +435,127.1,185.2,171.8,169.7,168,156.3,161.4,141.1,135.2,129.9,123,121.9,139.1,122.9,122.5,122.4,122,122.1,122.4 +436,127.1,185.3,171.8,169.8,168.1,156.4,161.8,141.5,135.6,130.2,123,122,139.2,122.9,122.5,122.4,122,122.1,122.4 +437,127.2,185.4,171.9,169.9,168.2,156.5,162.3,141.9,136,130.4,123.1,122,139.3,122.9,122.6,122.4,122.1,122.1,122.4 +438,127.2,185.4,172,170,168.3,156.7,162.7,142.4,136.5,130.7,123.1,122,139.3,122.9,122.6,122.4,122.1,122.1,122.4 +439,127.2,185.5,172.1,170.1,168.4,156.8,163.1,142.8,136.9,130.9,123.1,122.1,139.4,123,122.6,122.5,122.1,122.1,122.4 +440,127.2,185.6,172.2,170.2,168.5,156.9,163.6,143.2,137.3,131.2,123.1,122.1,139.5,123,122.7,122.5,122.1,122.2,122.5 +441,127.2,185.7,172.3,170.3,168.6,157.1,164,143.7,137.8,131.4,123.2,122.1,139.6,123,122.7,122.5,122.2,122.2,122.5 +442,127.3,185.8,172.4,170.4,168.7,157.2,164.4,144.1,138.2,131.8,123.2,122.1,139.6,123,122.7,122.6,122.2,122.2,122.5 +443,127.3,185.8,172.5,170.5,168.9,157.3,164.9,144.5,138.6,132.2,123.2,122.2,139.7,123,122.8,122.6,122.2,122.2,122.5 +444,127.3,185.9,172.6,170.6,169,157.4,165.3,145,139.1,132.7,123.2,122.2,139.8,123.1,122.8,122.6,122.2,122.2,122.5 +445,127.3,186,172.7,170.7,169.1,157.6,165.7,145.4,139.5,133.1,123.3,122.2,139.9,123.1,122.8,122.6,122.3,122.2,122.5 +446,127.3,186.1,172.8,170.8,169.2,157.7,166.2,145.8,139.9,133.5,123.3,122.2,139.9,123.1,122.9,122.7,122.3,122.2,122.6 +447,127.4,186.2,172.9,170.9,169.3,157.8,166.6,146.3,140.4,134,123.3,122.3,140,123.1,122.9,122.7,122.3,122.3,122.6 +448,127.4,186.2,173,171,169.4,158,167,146.7,140.8,134.4,123.3,122.3,140.1,123.2,122.9,122.7,122.4,122.3,122.6 +449,127.4,186.3,173.1,171.1,169.5,158.1,167.5,147.1,141.2,134.8,123.3,122.3,140.1,123.2,123,122.7,122.4,122.3,122.6 +450,127.4,186.4,173.2,171.2,169.6,158.2,167.9,147.6,141.7,135.3,123.4,122.3,140.2,123.2,123,122.8,122.4,122.3,122.6 +451,127.4,186.5,173.3,171.4,169.7,158.3,168.3,148,142.1,135.7,123.4,122.4,140.3,123.2,123,122.8,122.4,122.3,122.6 +452,127.4,186.6,173.4,171.5,169.8,158.5,168.8,148.4,142.5,136.2,123.4,122.4,140.4,123.2,123.1,122.8,122.5,122.3,122.6 +453,127.5,186.7,173.5,171.6,169.9,158.6,169.2,148.9,143,136.6,123.4,122.4,140.4,123.2,123.1,122.8,122.5,122.3,122.7 +454,127.5,186.7,173.6,171.7,170,158.7,169.7,149.3,143.4,137,123.5,122.4,140.5,123.3,123.1,122.9,122.5,122.3,122.7 +455,127.5,186.8,173.7,171.8,170.1,158.9,170.1,149.8,143.9,137.5,123.5,122.5,140.6,123.3,123.1,122.9,122.5,122.4,122.7 +456,127.5,186.9,173.8,171.9,170.3,159,170.5,150.2,144.3,137.9,123.5,122.5,140.7,123.3,123.2,122.9,122.6,122.4,122.7 +457,127.5,187,173.9,172,170.4,159.1,171,150.6,144.7,138.3,123.5,122.5,140.8,123.3,123.2,122.9,122.6,122.4,122.7 +458,127.6,187.1,174,172.1,170.5,159.2,171.4,151.1,145.2,138.8,123.5,122.5,140.8,123.3,123.2,123,122.6,122.4,122.7 +459,127.6,187.2,174.1,172.2,170.6,159.4,171.8,151.5,145.6,139.2,123.6,122.6,140.9,123.4,123.2,123,122.6,122.4,122.8 +460,127.6,187.2,174.2,172.3,170.7,159.5,172.3,151.9,146,139.6,123.6,122.6,141,123.4,123.3,123,122.7,122.4,122.8 +461,127.6,187.3,174.3,172.4,170.8,159.6,172.7,152.4,146.5,140.1,123.6,122.6,141.1,123.4,123.3,123,122.7,122.4,122.8 +462,127.6,187.4,174.4,172.5,170.9,159.7,173.1,152.8,146.9,140.5,123.6,122.6,141.2,123.4,123.3,123.1,122.7,122.4,122.8 +463,127.7,187.5,174.5,172.6,171,159.9,173.5,153.2,147.3,140.9,123.7,122.7,141.2,123.4,123.3,123.1,122.7,122.5,122.8 +464,127.7,187.6,174.6,172.7,171.1,160,173.6,153.7,147.8,141.4,123.7,122.7,141.3,123.4,123.4,123.1,122.8,122.5,122.8 +465,127.7,187.7,174.7,172.8,171.2,160.1,173.6,153.8,148.1,141.8,123.7,122.7,141.4,123.5,123.4,123.1,122.8,122.5,122.8 +466,127.7,187.7,174.8,172.9,171.3,160.2,173.7,153.9,148.3,142.1,123.7,122.7,141.5,123.5,123.4,123.2,122.8,122.5,122.9 +467,127.7,187.8,174.9,173,171.4,160.4,173.8,154.1,148.5,142.4,123.7,122.8,141.6,123.5,123.4,123.2,122.8,122.5,122.9 +468,127.7,187.9,175,173.1,171.5,160.5,173.8,154.2,148.7,142.7,123.8,122.8,141.7,123.5,123.5,123.2,122.9,122.5,122.9 +469,127.8,188,175.1,173.2,171.6,160.6,173.9,154.3,148.8,142.9,123.8,122.8,141.8,123.5,123.5,123.2,122.9,122.5,122.9 +470,127.8,188.1,175.2,173.3,171.7,160.7,174,154.4,149,143.2,123.8,122.8,141.8,123.5,123.5,123.3,122.9,122.5,122.9 +471,127.8,188.2,175.3,173.4,171.9,160.9,174,154.5,149.2,143.5,123.8,122.9,141.9,123.6,123.5,123.3,122.9,122.6,122.9 +472,127.8,188.3,175.4,173.5,172,161,174.1,154.6,149.3,143.7,123.8,122.9,142,123.6,123.5,123.3,122.9,122.6,122.9 +473,127.8,188.3,175.5,173.6,172.1,161.1,174.1,154.7,149.5,143.9,123.9,122.9,142.1,123.6,123.6,123.3,123,122.6,123 +474,127.9,188.4,175.6,173.7,172.2,161.2,174.2,154.8,149.6,144.2,123.9,122.9,142.2,123.6,123.6,123.3,123,122.6,123 +475,127.9,188.5,175.7,173.8,172.3,161.3,174.2,154.9,149.8,144.4,123.9,123,142.3,123.6,123.6,123.4,123,122.6,123 +476,127.9,188.6,175.8,173.9,172.4,161.5,174.1,155.1,149.9,144.6,123.9,123,142.4,123.7,123.6,123.4,123,122.6,123 +477,127.9,188.7,175.9,174,172.5,161.6,174.1,155.2,150.1,144.8,123.9,123,142.5,123.7,123.6,123.4,123.1,122.6,123 +478,127.9,188.8,176,174.1,172.6,161.7,174.1,155.3,150.2,145,123.9,123,142.6,123.7,123.7,123.4,123.1,122.6,123 +479,127.9,188.9,176.1,174.2,172.7,161.8,174.1,155.4,150.3,145.3,124,123.1,142.7,123.7,123.7,123.5,123.1,122.6,123 +480,128,188.9,176.2,174.3,172.8,162,174.1,155.5,150.5,145.5,124,123.1,142.8,123.7,123.7,123.5,123.1,122.7,123.1 +481,128,189,176.3,174.4,172.9,162.1,174.1,155.6,150.6,145.7,124,123.1,142.9,123.7,123.7,123.5,123.2,122.7,123.1 +482,128,189.1,176.4,174.5,173,162.2,174.1,155.7,150.7,145.9,124,123.1,143,123.8,123.7,123.5,123.2,122.7,123.1 +483,128,189.2,176.5,174.6,173.1,162.3,174,155.7,150.9,146,124,123.2,143.1,123.8,123.7,123.5,123.2,122.7,123.1 +484,128,189.3,176.6,174.8,173.2,162.4,174,155.8,151,146.2,124.1,123.2,143.2,123.8,123.8,123.6,123.2,122.7,123.1 +485,128.1,189.4,176.7,174.9,173.3,162.6,174,155.9,151.1,146.4,124.1,123.2,143.3,123.8,123.8,123.6,123.2,122.7,123.1 +486,128.1,189.5,176.8,175,173.4,162.7,174,156,151.3,146.6,124.1,123.2,143.4,123.8,123.8,123.6,123.3,122.7,123.1 +487,128.1,189.5,176.9,175.1,173.5,162.8,174,156,151.4,146.8,124.1,123.3,143.5,123.8,123.8,123.6,123.3,122.7,123.2 +488,128.1,189.6,177,175.2,173.7,162.9,174,156,151.5,147,124.1,123.3,143.6,123.9,123.8,123.7,123.3,122.7,123.2 +489,128.1,189.7,177.1,175.3,173.8,163,174,156,151.6,147.1,124.1,123.3,143.7,123.9,123.9,123.7,123.3,122.8,123.2 +490,128.1,189.8,177.2,175.4,173.9,163.2,174,156,151.8,147.3,124.2,123.3,143.8,123.9,123.9,123.7,123.4,122.8,123.2 +491,128.2,189.9,177.3,175.5,174,163.3,174,156.1,151.9,147.5,124.2,123.4,143.9,123.9,123.9,123.7,123.4,122.8,123.2 +492,128.2,190,177.4,175.6,174.1,163.4,174,156.1,152,147.7,124.2,123.4,144.1,123.9,123.9,123.8,123.4,122.8,123.2 +493,128.2,190.1,177.5,175.7,174.2,163.5,174,156.1,152,147.8,124.2,123.4,144.2,123.9,123.9,123.8,123.4,122.8,123.2 +494,128.2,190.2,177.6,175.8,174.3,163.6,174,156.1,152.1,148,124.2,123.4,144.3,124,123.9,123.8,123.4,122.8,123.2 +495,128.2,190.3,177.7,175.9,174.4,163.8,174,156.1,152.1,148.1,124.2,123.4,144.4,124.1,123.9,123.8,123.5,122.8,123.3 +496,128.3,190.3,177.8,176,174.5,163.9,174,156.2,152.2,148.3,124.2,123.5,144.5,124.2,124,123.8,123.5,122.8,123.3 +497,128.3,190.4,177.9,176.1,174.6,164,174,156.2,152.2,148.5,124.3,123.5,144.6,124.3,124,123.9,123.5,122.8,123.3 +498,128.3,190.5,178,176.2,174.7,164.1,174,156.2,152.3,148.6,124.3,123.5,144.8,124.4,124,123.9,123.5,122.8,123.3 +499,128.3,190.6,178.1,176.3,174.8,164.2,174,156.2,152.3,148.8,124.3,123.5,144.9,124.5,124,123.9,123.6,122.9,123.3 +500,128.3,190.7,178.2,176.4,174.9,164.3,174,156.3,152.4,148.9,124.3,123.6,145,124.7,124,123.9,123.6,122.9,123.3 +501,128.3,190.8,178.3,176.5,175,164.5,174,156.3,152.4,149.1,124.3,123.6,145.1,124.8,124,123.9,123.6,122.9,123.3 +502,128.4,190.9,178.4,176.6,175.1,164.6,174,156.3,152.4,149.2,124.3,123.6,145.3,124.9,124,124,123.6,122.9,123.3 +503,128.4,191,178.5,176.7,175.2,164.7,174,156.4,152.5,149.3,124.4,123.6,145.4,125,124,124,123.6,122.9,123.4 +504,128.4,191.1,178.6,176.8,175.3,164.8,174,156.4,152.5,149.3,124.4,123.7,145.5,125.2,124.1,124,123.6,122.9,123.4 +505,128.4,191.1,178.6,176.9,175.4,164.9,174.1,156.4,152.6,149.4,124.4,123.7,145.6,125.3,124.1,124,123.7,122.9,123.4 +506,128.4,191.2,178.7,177,175.5,165,174.1,156.5,152.6,149.5,124.4,123.7,145.7,125.4,124.1,124,123.7,123,123.4 +507,128.4,191.3,178.8,177.1,175.7,165.2,174.1,156.5,152.7,149.5,124.4,123.7,145.9,125.6,124.1,124,123.7,123,123.4 +508,128.5,191.4,178.9,177.2,175.8,165.3,174.1,156.5,152.7,149.6,124.4,123.8,146,125.7,124.1,124.1,123.7,123,123.4 +509,128.5,191.5,179,177.3,175.9,165.4,174.1,156.6,152.8,149.7,124.5,123.8,146.1,125.8,124.1,124.1,123.7,123,123.4 +510,128.5,191.6,179.1,177.4,176,165.5,174.1,156.6,152.9,149.8,124.5,123.8,146.2,126,124.1,124.1,123.7,123.1,123.4 +511,128.5,191.7,179.2,177.5,176.1,165.6,174.2,156.6,152.9,149.8,124.5,123.8,146.3,126.1,124.1,124.1,123.8,123.1,123.5 +512,128.5,191.8,179.3,177.6,176.2,165.7,174.2,156.7,153,149.9,124.5,123.8,146.5,126.3,124.2,124.1,123.8,123.1,123.5 +513,128.5,191.9,179.4,177.7,176.3,165.9,174.2,156.7,153,150,124.5,123.9,146.6,126.4,124.2,124.1,123.8,123.1,123.5 +514,128.6,192,179.5,177.8,176.4,166,174.2,156.8,153.1,150.1,124.5,123.9,146.7,126.6,124.2,124.1,123.8,123.1,123.5 +515,128.6,192.1,179.6,177.9,176.5,166.1,174.3,156.8,153.1,150.1,124.5,123.9,146.8,126.7,124.2,124.1,123.8,123.2,123.5 +516,128.6,192.1,179.7,178,176.6,166.2,174.3,156.9,153.2,150.2,124.5,123.9,146.9,126.9,124.2,124.2,123.8,123.2,123.5 +517,128.6,192.2,179.8,178.1,176.7,166.3,174.3,156.9,153.2,150.3,124.5,124,147,127,124.2,124.2,123.9,123.2,123.5 +518,128.6,192.3,179.9,178.2,176.8,166.4,174.4,157,153.3,150.3,124.6,124,147.2,127.2,124.2,124.2,123.9,123.2,123.5 +519,128.6,192.4,180,178.3,176.9,166.5,174.4,157,153.4,150.4,124.6,124,147.3,127.3,124.2,124.2,123.9,123.2,123.6 +520,128.7,192.5,180.1,178.4,177,166.7,174.4,157.1,153.4,150.5,124.6,124,147.4,127.5,124.2,124.2,123.9,123.3,123.6 +521,128.7,192.6,180.2,178.5,177.1,166.8,174.5,157.1,153.5,150.6,124.6,124,147.5,127.7,124.2,124.2,123.9,123.3,123.6 +522,128.7,192.7,180.3,178.6,177.2,166.9,174.5,157.2,153.5,150.6,124.6,124.1,147.6,127.8,124.2,124.2,124,123.3,123.6 +523,128.7,192.8,180.4,178.7,177.3,167,174.5,157.2,153.6,150.7,124.6,124.1,147.7,128,124.2,124.2,124,123.3,123.6 +524,128.7,192.9,180.5,178.8,177.4,167.1,174.6,157.3,153.7,150.8,124.6,124.1,147.8,128.2,124.2,124.2,124,123.3,123.6 +525,128.7,193,180.6,178.9,177.5,167.2,174.6,157.3,153.7,150.9,124.6,124.1,147.9,128.3,124.2,124.2,124,123.4,123.6 +526,128.8,193.1,180.7,179,177.6,167.3,174.6,157.4,153.8,151,124.6,124.2,148.1,128.5,124.2,124.2,124,123.4,123.6 +527,128.8,193.2,180.8,179.1,177.7,167.5,174.7,157.5,153.9,151,124.6,124.2,148.2,128.7,124.2,124.2,124,123.4,123.6 +528,128.8,193.3,180.9,179.3,177.8,167.6,174.7,157.5,154,151.1,124.7,124.2,148.3,128.9,124.3,124.2,124,123.4,123.7 +529,128.8,193.3,181,179.4,177.9,167.7,174.8,157.6,154,151.2,124.7,124.2,148.4,129.1,124.3,124.2,124,123.4,123.7 +530,128.8,193.4,181.1,179.5,178.1,167.8,174.8,157.6,154.1,151.3,124.7,124.2,148.6,129.3,124.3,124.3,124,123.5,123.7 +531,128.8,193.5,181.2,179.6,178.2,167.9,174.9,157.7,154.2,151.4,124.7,124.3,148.7,129.5,124.3,124.3,124,123.5,123.7 +532,128.9,193.6,181.3,179.7,178.3,168,174.9,157.8,154.3,151.4,124.9,124.3,148.8,129.7,124.3,124.3,124.1,123.5,123.7 +533,128.9,193.7,181.4,179.8,178.4,168.1,175,157.8,154.3,151.5,125.2,124.3,149,129.9,124.4,124.3,124.1,123.5,123.7 +534,128.9,193.8,181.5,179.9,178.5,168.3,175,157.9,154.4,151.6,125.6,124.3,149.1,130.1,124.4,124.4,124.1,123.5,123.7 +535,128.9,193.9,181.6,180,178.6,168.4,175.1,158,154.5,151.7,126,124.3,149.2,130.3,124.5,124.4,124.1,123.6,123.7 +536,128.9,194,181.7,180.1,178.7,168.5,175.1,158,154.6,151.8,126.4,124.4,149.4,130.5,124.7,124.4,124.1,123.6,123.7 +537,128.9,194.1,181.8,180.2,178.8,168.6,175.2,158.1,154.7,151.9,126.7,124.4,149.5,130.7,124.9,124.4,124.1,123.6,123.8 +538,129,194.2,181.9,180.3,178.9,168.7,175.2,158.2,154.7,152,127.1,124.4,149.6,130.9,125.1,124.4,124.1,123.6,123.8 +539,129,194.3,182,180.4,179,168.8,175.3,158.3,154.8,152.1,127.5,124.4,149.7,131.1,125.3,124.5,124.1,123.6,123.8 +540,129,194.4,182.1,180.5,179.1,168.9,175.3,158.3,154.9,152.2,127.9,124.4,149.9,131.3,125.6,124.5,124.1,123.7,123.8 +541,129,194.5,182.2,180.6,179.2,169,175.4,158.4,155,152.2,128.3,124.5,150,131.4,125.8,124.5,124.2,123.7,123.8 +542,129,194.6,182.3,180.7,179.3,169.2,175.4,158.5,155.1,152.3,128.6,124.5,150.1,131.6,126,124.5,124.2,123.7,123.8 +543,129,194.7,182.4,180.8,179.4,169.3,175.5,158.6,155.2,152.4,129,124.5,150.3,131.8,126.2,124.5,124.2,123.7,123.8 +544,129,194.8,182.5,180.9,179.5,169.4,175.5,158.6,155.3,152.5,129.3,124.5,150.4,132,126.4,124.6,124.2,123.7,123.8 +545,129.1,194.8,182.6,181,179.6,169.5,175.6,158.7,155.3,152.6,129.6,124.5,150.5,132.1,126.6,124.6,124.2,123.8,123.8 +546,129.1,194.9,182.7,181.1,179.7,169.6,175.7,158.8,155.4,152.7,129.9,124.6,150.6,132.3,126.8,124.6,124.3,123.8,123.8 +547,129.1,195,182.8,181.2,179.8,169.7,175.7,158.9,155.5,152.8,130.2,124.6,150.8,132.5,127,124.6,124.3,123.8,123.9 +548,129.1,195.1,182.9,181.3,179.9,169.8,175.8,159,155.6,152.9,130.4,124.6,150.9,132.6,127.2,124.6,124.3,123.8,123.9 +549,129.1,195.2,183,181.4,180,169.9,175.8,159,155.7,153,130.7,124.6,151,132.8,127.3,124.7,124.3,123.8,123.9 +550,129.1,195.3,183.1,181.5,180.1,170,175.9,159.1,155.8,153.1,131,124.7,151.2,133,127.4,124.7,124.4,123.9,123.9 +551,129.2,195.4,183.2,181.6,180.2,170.2,176,159.2,155.9,153.2,131.3,124.7,151.3,133.1,127.5,124.7,124.4,123.9,123.9 +552,129.2,195.5,183.3,181.7,180.3,170.3,176,159.3,156,153.3,131.6,124.7,151.4,133.3,127.6,124.7,124.4,123.9,123.9 +553,129.2,195.6,183.4,181.8,180.4,170.4,176.1,159.4,156.1,153.4,131.9,124.7,151.5,133.5,127.8,124.7,124.4,123.9,123.9 +554,129.2,195.7,183.5,181.9,180.5,170.5,176.2,159.5,156.2,153.5,132.1,124.7,151.7,133.7,128,124.8,124.4,123.9,123.9 +555,129.2,195.8,183.6,182,180.6,170.6,176.2,159.6,156.3,153.6,132.4,124.8,151.8,133.8,128.3,124.8,124.5,123.9,123.9 +556,129.2,195.9,183.7,182.1,180.7,170.7,176.3,159.6,156.4,153.7,132.7,124.8,151.9,134,128.5,124.8,124.5,124,123.9 +557,129.2,196,183.8,182.2,180.8,170.8,176.4,159.7,156.5,153.8,133,124.8,152.1,134.2,128.7,124.8,124.5,124,123.9 +558,129.3,196.1,183.9,182.3,180.9,170.9,176.4,159.8,156.6,153.9,133.3,124.8,152.2,134.3,128.9,124.8,124.5,124,124 +559,129.3,196.2,184,182.4,181,171,176.5,159.9,156.7,154.1,133.6,124.8,152.3,134.5,129.1,124.9,124.5,124,124 +560,129.3,196.3,184.1,182.5,181.1,171.1,176.6,160,156.8,154.2,133.8,124.8,152.4,134.7,129.3,124.9,124.6,124,124 +561,129.3,196.4,184.1,182.6,181.2,171.3,176.6,160.1,156.9,154.3,134.1,124.9,152.6,134.8,129.5,124.9,124.6,124.1,124 +562,129.3,196.5,184.2,182.7,181.3,171.4,176.7,160.2,157,154.4,134.4,124.9,152.7,135,129.7,124.9,124.6,124.1,124 +563,129.3,196.6,184.3,182.8,181.4,171.5,176.8,160.3,157.1,154.5,134.7,124.9,152.8,135.2,130,124.9,124.6,124.1,124 +564,129.4,196.7,184.4,182.9,181.5,171.6,176.8,160.4,157.2,154.6,135,124.9,152.9,135.3,130.2,125,124.6,124.1,124 +565,129.4,196.8,184.5,183,181.6,171.7,176.9,160.5,157.3,154.7,135.3,124.9,153.1,135.5,130.4,125,124.7,124.1,124 +566,129.4,196.8,184.6,183.1,181.7,171.8,177,160.6,157.4,154.8,135.5,125,153.2,135.6,130.5,125,124.7,124.1,124 +567,129.4,196.9,184.7,183.2,181.8,171.9,177,160.7,157.5,154.9,135.8,125,153.3,135.8,130.8,125,124.7,124.2,124 +568,129.4,197,184.8,183.3,181.9,172,177.1,160.8,157.6,155,136.1,125,153.4,136,131,125.1,124.7,124.2,124 +569,129.4,197.1,184.9,183.4,182,172.1,177.2,160.8,157.7,155.2,136.4,125,153.5,136.1,131.2,125.4,124.7,124.2,124.1 +570,129.4,197.2,185,183.5,182.1,172.2,177.2,160.9,157.8,155.3,136.7,125,153.7,136.3,131.4,125.7,124.8,124.2,124.1 +571,129.5,197.3,185.1,183.5,182.2,172.3,177.3,161,157.9,155.4,137,125.1,153.9,136.5,131.6,125.9,124.8,124.2,124.1 +572,129.5,197.4,185.2,183.6,182.3,172.5,177.4,161.1,158,155.5,137.2,125.1,154.4,136.7,131.8,126.2,124.8,124.2,124.1 +573,129.5,197.5,185.3,183.7,182.4,172.6,177.4,161.2,158.2,155.6,137.5,125.1,154.8,136.8,132,126.5,124.8,124.3,124.1 +574,129.5,197.6,185.4,183.8,182.5,172.7,177.5,161.3,158.3,155.7,137.8,125.1,155.3,137,132.3,126.7,124.8,124.3,124.1 +575,129.5,197.7,185.5,183.9,182.6,172.8,177.6,161.4,158.4,155.8,138.1,125.1,155.7,137.2,132.5,127,124.9,124.3,124.1 +576,129.5,197.8,185.6,184,182.7,172.9,177.7,161.5,158.5,156,138.5,125.2,156.2,137.3,132.7,127.3,124.9,124.3,124.1 +577,129.6,197.9,185.7,184.1,182.8,173,177.7,161.6,158.6,156.1,138.8,125.2,156.6,137.5,132.9,127.5,124.9,124.3,124.1 +578,129.6,198,185.8,184.2,182.9,173.1,177.8,161.7,158.7,156.2,139.2,125.2,157.1,137.7,133.1,127.8,124.9,124.3,124.1 +579,129.6,198.1,185.9,184.3,183,173.2,177.9,161.8,158.8,156.3,139.6,125.2,157.5,137.9,133.3,128.1,124.9,124.4,124.1 +580,129.6,198.2,186,184.4,183.1,173.3,177.9,161.9,158.9,156.4,139.9,125.2,158,138,133.6,128.3,125,124.4,124.2 +581,129.6,198.3,186.1,184.5,183.2,173.4,178,162,159,156.6,140.2,125.3,158.4,138.2,133.8,128.6,125,124.4,124.2 +582,129.6,198.4,186.2,184.6,183.3,173.5,178.1,162.1,159.1,156.7,140.5,125.3,158.9,138.4,134,128.9,125,124.4,124.2 +583,129.6,198.5,186.3,184.7,183.4,173.7,178.2,162.2,159.2,156.8,140.9,125.3,159.3,138.8,134.2,129.1,125,124.4,124.2 +584,129.7,198.6,186.3,184.8,183.5,173.8,178.2,162.3,159.4,156.9,141.2,125.3,159.8,139.3,134.4,129.4,125,124.4,124.2 +585,129.7,198.7,186.4,184.9,183.6,173.9,178.3,162.4,159.5,157,141.5,125.3,160.2,139.7,134.6,129.7,125.1,124.4,124.3 +586,129.7,198.8,186.5,185,183.7,174,178.4,162.5,159.6,157.1,141.8,125.3,160.7,140.2,134.8,129.9,125.1,124.5,124.3 +587,129.7,198.9,186.6,185.1,183.8,174.1,178.4,162.6,159.7,157.3,142.1,125.4,161.1,140.6,135.1,130.2,125.1,124.5,124.3 +588,129.7,199,186.7,185.2,183.9,174.2,178.5,162.7,159.8,157.4,142.3,125.4,161.6,141.1,135.3,130.5,125.1,124.5,124.3 +589,129.7,199.1,186.8,185.3,184,174.3,178.6,162.8,159.9,157.5,142.6,125.4,162,141.5,135.5,130.7,125.1,124.5,124.3 +590,129.7,199.2,186.9,185.4,184.1,174.4,178.7,162.9,160,157.6,142.9,125.4,162.5,142,136,131,125.2,124.5,124.3 +591,129.8,199.3,187,185.5,184.2,174.5,178.7,163,160.1,157.7,143.2,125.4,162.9,142.4,136.4,131.3,125.2,124.5,124.4 +592,129.8,199.4,187.1,185.6,184.3,174.6,178.8,163.1,160.2,157.9,143.4,125.5,163.4,142.9,136.9,131.5,125.2,124.6,124.4 +593,129.8,199.5,187.2,185.7,184.4,174.7,178.9,163.2,160.4,158,143.7,125.5,163.8,143.3,137.3,131.8,125.2,124.6,124.4 +594,129.8,199.6,187.3,185.8,184.5,174.8,179,163.3,160.5,158.1,143.9,125.5,164.3,143.8,137.8,132.1,125.2,124.6,124.4 +595,129.8,199.6,187.4,185.9,184.6,174.9,179,163.4,160.6,158.2,144.2,125.5,164.7,144.2,138.2,132.3,125.2,124.6,124.4 +596,129.8,199.7,187.5,186,184.7,175.1,179.1,163.5,160.7,158.3,144.4,125.5,165.1,144.7,138.7,132.6,125.3,124.6,124.5 +597,129.8,199.8,187.6,186,184.8,175.2,179.2,163.6,160.8,158.5,144.6,125.5,165.6,145.1,139.1,132.9,125.3,124.6,124.5 +598,129.9,199.9,187.7,186.1,184.9,175.3,179.2,163.7,160.9,158.6,144.9,125.6,166,145.6,139.6,133.1,125.3,124.6,124.5 +599,129.9,200,187.7,186.2,185,175.4,179.3,163.8,161,158.7,145.1,125.6,166.5,146,140,133.5,125.3,124.6,124.5 +600,129.9,200.1,187.8,186.3,185.1,175.5,179.4,163.9,161.1,158.8,145.3,125.6,166.9,146.5,140.5,133.9,125.3,124.6,124.5 +601,129.9,200.2,187.9,186.4,185.2,175.6,179.5,164,161.3,159,145.5,125.6,167.4,146.9,140.9,134.3,125.4,124.7,124.5 +602,129.9,200.3,188,186.5,185.3,175.7,179.5,164.1,161.4,159.1,145.8,125.6,167.8,147.4,141.4,134.7,125.4,124.7,124.6 +603,129.9,200.4,188.1,186.6,185.4,175.8,179.6,164.2,161.5,159.2,146,125.6,168.3,147.8,141.8,135.1,125.4,124.7,124.6 +604,129.9,200.5,188.2,186.7,185.5,175.9,179.7,164.3,161.6,159.3,146.1,125.7,168.7,148.3,142.3,135.5,125.4,124.7,124.6 +605,130,200.6,188.3,186.8,185.6,176,179.8,164.4,161.7,159.4,146.3,125.7,169.2,148.7,142.7,135.9,125.4,124.7,124.6 +606,130,200.7,188.4,186.9,185.7,176.1,179.8,164.5,161.8,159.6,146.4,125.7,169.6,149.2,143.2,136.3,125.5,124.7,124.6 +607,130,200.8,188.5,187,185.8,176.2,179.9,164.6,161.9,159.7,146.5,125.7,170.1,149.6,143.6,136.7,125.5,124.7,124.7 +608,130,200.9,188.6,187.1,185.9,176.3,180,164.7,162,159.8,146.7,125.7,170.5,150.1,144.1,137.1,125.5,124.7,124.7 +609,130,201,188.7,187.2,186,176.4,180,164.8,162.1,159.9,146.8,125.7,171,150.5,144.5,137.5,125.5,124.7,124.7 +610,130,201.1,188.8,187.3,186.1,176.6,180.1,164.9,162.3,160,146.9,125.7,171.4,151,145,137.9,125.5,124.7,124.7 +611,130,201.2,188.8,187.4,186.2,176.7,180.2,165,162.4,160.2,147,125.8,171.9,151.4,145.4,138.3,125.5,124.7,124.7 +612,130.1,201.3,188.9,187.4,186.2,176.8,180.3,165.1,162.5,160.3,147.2,125.8,172.3,151.8,145.9,138.7,125.6,124.7,124.7 +613,130.1,201.4,189,187.5,186.3,176.9,180.3,165.2,162.6,160.4,147.3,125.8,172.8,152.3,146.3,139.2,125.6,124.7,124.8 +614,130.1,201.5,189.1,187.6,186.4,177,180.4,165.3,162.7,160.5,147.4,125.8,173.2,152.7,146.8,139.6,125.6,124.7,124.8 +615,130.1,201.6,189.2,187.7,186.5,177.1,180.5,165.4,162.8,160.6,147.5,125.8,173.7,153.2,147.2,140,125.6,124.8,124.8 +616,130.1,201.7,189.3,187.8,186.6,177.2,180.6,165.5,162.9,160.8,147.6,125.8,174.1,153.6,147.6,140.4,125.6,124.8,124.8 +617,130.1,201.8,189.4,187.9,186.7,177.3,180.6,165.6,163,160.9,147.7,125.9,174.2,153.9,147.9,140.8,125.7,124.8,124.8 +618,130.1,201.9,189.5,188,186.8,177.4,180.7,165.7,163.1,161,147.9,125.9,174.3,154.1,148.1,141.1,125.7,124.8,124.9 +619,130.2,202,189.6,188.1,186.9,177.5,180.8,165.8,163.3,161.1,148,125.9,174.4,154.2,148.3,141.5,125.7,124.8,124.9 +620,130.2,202.1,189.7,188.2,187,177.6,180.8,165.9,163.4,161.2,148.1,125.9,174.5,154.4,148.5,141.8,125.7,124.9,124.9 +621,130.2,202.2,189.7,188.3,187.1,177.7,180.9,166,163.5,161.4,148.2,125.9,174.6,154.5,148.7,142.2,125.7,124.9,124.9 +622,130.2,202.3,189.8,188.4,187.2,177.8,181,166.1,163.6,161.5,148.3,125.9,174.7,154.7,148.9,142.5,125.7,124.9,124.9 +623,130.2,202.4,189.9,188.4,187.3,177.9,181.1,166.2,163.7,161.6,148.4,125.9,174.7,154.8,149.1,142.8,125.8,124.9,124.9 +624,130.2,202.5,190,188.5,187.4,178,181.1,166.3,163.8,161.7,148.6,126,174.8,154.9,149.3,143.1,125.8,124.9,125 +625,130.2,202.6,190.1,188.6,187.5,178.2,181.2,166.4,163.9,161.8,148.7,126,174.9,155.1,149.5,143.4,125.8,124.9,125 +626,130.3,202.7,190.2,188.7,187.5,178.3,181.3,166.5,164,161.9,148.8,126,175,155.2,149.7,143.6,125.8,125,125 +627,130.3,202.8,190.3,188.8,187.6,178.4,181.4,166.6,164.1,162.1,148.9,126,175,155.3,149.8,143.9,125.8,125,125 +628,130.3,202.9,190.4,188.9,187.7,178.5,181.4,166.7,164.3,162.2,149,126,175.1,155.5,150,144.2,125.8,125,125 +629,130.3,202.9,190.4,189,187.8,178.6,181.5,166.8,164.4,162.3,149.1,126,175.2,155.6,150.2,144.4,125.9,125,125.1 +630,130.3,203,190.5,189.1,187.9,178.7,181.6,166.9,164.5,162.4,149.2,126,175.2,155.7,150.4,144.7,125.9,125,125.1 +631,130.3,203.1,190.6,189.2,188,178.8,181.6,167,164.6,162.5,149.4,126,175.3,155.8,150.5,144.9,125.9,125.1,125.1 +632,130.3,203.2,190.7,189.2,188.1,178.9,181.7,167.1,164.7,162.7,149.5,126.1,175.3,155.9,150.7,145.2,125.9,125.1,125.1 +633,130.4,203.3,190.8,189.3,188.2,179,181.8,167.2,164.8,162.8,149.6,126.1,175.3,156.1,150.8,145.4,125.9,125.1,125.1 +634,130.4,203.4,190.9,189.4,188.3,179.1,181.9,167.3,164.9,162.9,149.7,126.1,175.3,156.2,151,145.7,126,125.1,125.1 +635,130.4,203.5,191,189.5,188.4,179.2,181.9,167.4,165,163,149.8,126.1,175.2,156.3,151.2,145.9,126,125.1,125.2 +636,130.4,203.6,191.1,189.6,188.5,179.3,182,167.5,165.1,163.1,149.9,126.1,175.2,156.4,151.3,146.1,126,125.2,125.2 +637,130.4,203.7,191.1,189.7,188.5,179.4,182.1,167.6,165.2,163.2,150,126.1,175.2,156.5,151.5,146.3,126,125.2,125.2 +638,130.4,203.8,191.2,189.8,188.6,179.5,182.2,167.7,165.3,163.4,150.2,126.1,175.2,156.6,151.6,146.5,126,125.2,125.2 +639,130.4,203.9,191.3,189.9,188.7,179.6,182.2,167.8,165.5,163.5,150.3,126.2,175.2,156.7,151.8,146.8,126,125.2,125.2 +640,130.4,204,191.4,189.9,188.8,179.7,182.3,167.9,165.6,163.6,150.4,126.2,175.2,156.8,151.9,147,126.1,125.2,125.2 +641,130.5,204.1,191.5,190,188.9,179.8,182.4,168,165.7,163.7,150.5,126.2,175.2,156.9,152,147.2,126.1,125.2,125.3 +642,130.5,204.2,191.6,190.1,189,179.9,182.4,168.1,165.8,163.8,150.6,126.2,175.2,157,152.2,147.4,126.1,125.3,125.3 +643,130.5,204.3,191.7,190.2,189.1,180,182.5,168.2,165.9,163.9,150.7,126.2,175.2,157.1,152.3,147.6,126.1,125.3,125.3 +644,130.5,204.4,191.7,190.3,189.2,180.2,182.6,168.3,166,164.1,150.9,126.2,175.2,157.1,152.5,147.8,126.1,125.3,125.3 +645,130.5,204.5,191.8,190.4,189.3,180.3,182.7,168.4,166.1,164.2,151,126.2,175.2,157.1,152.6,148,126.1,125.3,125.3 +646,130.5,204.6,191.9,190.5,189.3,180.4,182.7,168.5,166.2,164.3,151.1,126.3,175.2,157.2,152.7,148.1,126.2,125.3,125.3 +647,130.5,204.7,192,190.5,189.4,180.5,182.8,168.6,166.3,164.4,151.2,126.3,175.2,157.2,152.9,148.3,126.2,125.4,125.4 +648,130.6,204.8,192.1,190.6,189.5,180.6,182.9,168.7,166.4,164.5,151.3,126.3,175.1,157.2,153,148.5,126.2,125.4,125.4 +649,130.6,204.9,192.2,190.7,189.6,180.7,183,168.8,166.5,164.6,151.5,126.3,175.1,157.2,153.1,148.7,126.2,125.4,125.4 +650,130.6,205,192.3,190.8,189.7,180.8,183,168.9,166.6,164.7,151.6,126.3,175.1,157.3,153.2,148.9,126.2,125.4,125.4 +651,130.6,205.1,192.3,190.9,189.8,180.9,183.1,169,166.8,164.9,151.7,126.3,175.1,157.3,153.2,149,126.2,125.4,125.4 +652,130.6,205.2,192.4,191,189.9,181,183.2,169.1,166.9,165,151.8,126.3,175.1,157.3,153.3,149.2,126.3,125.4,125.4 +653,130.6,205.3,192.5,191.1,189.9,181.1,183.2,169.2,167,165.1,152,126.4,175.1,157.3,153.3,149.4,126.3,125.5,125.5 +654,130.6,205.4,192.6,191.1,190,181.2,183.3,169.3,167.1,165.2,152.1,126.4,175.2,157.4,153.4,149.6,126.3,125.5,125.5 +655,130.6,205.5,192.7,191.2,190.1,181.3,183.4,169.4,167.2,165.3,152.2,126.4,175.2,157.4,153.4,149.7,126.3,125.5,125.5 +656,130.7,205.6,192.8,191.3,190.2,181.4,183.5,169.5,167.3,165.4,152.3,126.4,175.2,157.4,153.5,149.9,126.3,125.5,125.5 +657,130.7,205.7,192.8,191.4,190.3,181.5,183.5,169.6,167.4,165.5,152.4,126.4,175.2,157.4,153.5,150.1,126.3,125.5,125.5 +658,130.7,205.8,192.9,191.5,190.4,181.6,183.6,169.7,167.5,165.7,152.6,126.4,175.2,157.5,153.6,150.2,126.4,125.6,125.5 +659,130.7,205.9,193,191.6,190.5,181.7,183.7,169.8,167.6,165.8,152.7,126.4,175.2,157.5,153.6,150.4,126.4,125.6,125.5 +660,130.7,206,193.1,191.6,190.5,181.8,183.8,169.9,167.7,165.9,152.8,126.4,175.2,157.5,153.7,150.4,126.4,125.6,125.6 +661,130.7,206.1,193.2,191.7,190.6,181.9,183.8,170,167.8,166,153,126.4,175.2,157.6,153.7,150.5,126.4,125.6,125.6 +662,130.7,206.2,193.3,191.8,190.7,182,183.9,170.1,167.9,166.1,153.1,126.4,175.2,157.6,153.8,150.6,126.4,125.6,125.6 +663,130.7,206.3,193.3,191.9,190.8,182.1,184,170.2,168,166.2,153.2,126.4,175.2,157.6,153.8,150.7,126.4,125.6,125.6 +664,130.8,206.4,193.4,192,190.9,182.2,184,170.3,168.1,166.3,153.3,126.5,175.2,157.7,153.9,150.8,126.5,125.7,125.6 +665,130.8,206.5,193.5,192.1,191,182.3,184.1,170.4,168.2,166.4,153.5,126.5,175.3,157.7,154,150.8,126.5,125.7,125.6 +666,130.8,206.6,193.6,192.1,191.1,182.4,184.2,170.5,168.4,166.6,153.6,126.5,175.3,157.8,154,150.9,126.5,125.7,125.6 +667,130.8,206.7,193.7,192.2,191.1,182.5,184.3,170.6,168.5,166.7,153.7,126.5,175.3,157.8,154.1,151,126.5,125.7,125.7 +668,130.8,206.7,193.8,192.3,191.2,182.6,184.3,170.7,168.6,166.8,153.8,126.5,175.3,157.8,154.1,151.1,126.5,125.7,125.7 +669,130.8,206.8,193.8,192.4,191.3,182.7,184.4,170.8,168.7,166.9,154,126.5,175.3,157.9,154.2,151.1,126.5,125.8,125.7 +670,130.8,206.9,193.9,192.5,191.4,182.8,184.5,170.9,168.8,167,154.1,126.5,175.4,157.9,154.2,151.2,126.6,125.8,125.7 +671,130.9,207,194,192.5,191.5,182.9,184.6,171,168.9,167.1,154.2,126.5,175.4,158,154.3,151.3,126.6,125.8,125.7 +672,130.9,207.1,194.1,192.6,191.6,183,184.6,171.1,169,167.2,154.4,126.5,175.4,158,154.3,151.4,126.6,125.8,125.7 +673,130.9,207.2,194.2,192.7,191.6,183.1,184.7,171.2,169.1,167.3,154.5,126.5,175.4,158.1,154.4,151.4,126.6,125.8,125.8 +674,130.9,207.3,194.3,192.8,191.7,183.2,184.8,171.3,169.2,167.4,154.6,126.5,175.5,158.1,154.5,151.5,126.6,125.8,125.8 +675,130.9,207.4,194.3,192.9,191.8,183.3,184.9,171.4,169.3,167.6,154.8,126.6,175.5,158.2,154.5,151.6,126.6,125.9,125.8 +676,130.9,207.5,194.4,193,191.9,183.4,184.9,171.5,169.4,167.7,154.9,126.6,175.5,158.2,154.6,151.7,126.6,125.9,125.8 +677,130.9,207.6,194.5,193,192,183.5,185,171.6,169.5,167.8,155,126.6,175.6,158.3,154.7,151.8,126.7,125.9,125.8 +678,130.9,207.7,194.6,193.1,192.1,183.6,185.1,171.7,169.6,167.9,155.2,126.6,175.6,158.3,154.7,151.8,126.7,125.9,125.8 +679,131,207.8,194.7,193.2,192.1,183.8,185.1,171.7,169.7,168,155.3,126.6,175.6,158.4,154.8,151.9,126.7,125.9,125.8 +680,131,207.9,194.7,193.3,192.2,183.9,185.2,171.8,169.8,168.1,155.4,126.6,175.7,158.4,154.9,152,126.7,125.9,125.9 +681,131,208,194.8,193.4,192.3,184,185.3,171.9,169.9,168.2,155.6,126.6,175.7,158.5,154.9,152.1,126.7,126,125.9 +682,131,208.1,194.9,193.4,192.4,184.1,185.4,172,170,168.3,155.7,126.6,175.7,158.5,155,152.2,126.7,126,125.9 +683,131,208.2,195,193.5,192.5,184.2,185.4,172.1,170.1,168.4,155.8,126.6,175.8,158.6,155.1,152.2,126.8,126,125.9 +684,131,208.3,195.1,193.6,192.5,184.3,185.5,172.2,170.3,168.6,156,126.6,175.8,158.6,155.1,152.3,126.8,126,125.9 +685,131,208.4,195.2,193.7,192.6,184.4,185.6,172.3,170.4,168.7,156.1,126.6,175.9,158.7,155.2,152.4,126.8,126,125.9 +686,131,208.5,195.2,193.8,192.7,184.5,185.7,172.4,170.5,168.8,156.2,126.6,175.9,158.8,155.3,152.5,126.8,126,125.9 +687,131.1,208.6,195.3,193.8,192.8,184.6,185.7,172.5,170.6,168.9,156.3,126.6,175.9,158.8,155.4,152.6,126.8,126.1,126 +688,131.1,208.7,195.4,193.9,192.9,184.7,185.8,172.6,170.7,169,156.5,126.6,176,158.9,155.4,152.7,126.8,126.1,126 +689,131.1,208.8,195.5,194,192.9,184.8,185.9,172.7,170.8,169.1,156.6,126.6,176,159,155.5,152.7,126.9,126.1,126 +690,131.1,208.9,195.6,194.1,193,184.8,186,172.8,170.9,169.2,156.7,126.6,176.1,159,155.6,152.8,127.2,126.1,126 +691,131.1,209,195.6,194.2,193.1,184.9,186,172.9,171,169.3,156.9,126.6,176.1,159.1,155.7,152.9,127.6,126.1,126 +692,131.1,209.1,195.7,194.2,193.2,185,186.1,173,171.1,169.4,157,126.6,176.2,159.2,155.7,153,128,126.1,126 +693,131.1,209.2,195.8,194.3,193.3,185.1,186.2,173.1,171.2,169.5,157.1,126.6,176.2,159.2,155.8,153.1,128.4,126.2,126 +694,131.1,209.3,195.9,194.4,193.3,185.2,186.3,173.2,171.3,169.6,157.3,126.6,176.3,159.3,155.9,153.2,128.8,126.2,126.1 +695,131.2,209.4,196,194.5,193.4,185.3,186.3,173.3,171.4,169.8,157.4,126.6,176.3,159.4,156,153.3,129.2,126.2,126.1 +696,131.2,209.5,196.1,194.6,193.5,185.4,186.4,173.4,171.5,169.9,157.5,126.7,176.4,159.4,156.1,153.4,129.6,126.2,126.1 +697,131.2,209.6,196.1,194.6,193.6,185.5,186.5,173.5,171.6,170,157.7,126.7,176.4,159.5,156.2,153.5,130,126.2,126.1 +698,131.2,209.7,196.2,194.7,193.7,185.6,186.6,173.6,171.7,170.1,157.8,126.7,176.5,159.6,156.2,153.6,130.4,126.3,126.1 +699,131.2,209.8,196.3,194.8,193.7,185.7,186.6,173.7,171.8,170.2,157.9,126.7,176.5,159.7,156.3,153.6,130.8,126.3,126.1 +700,131.2,209.9,196.4,194.9,193.8,185.8,186.7,173.8,171.9,170.3,158.1,126.7,176.6,159.8,156.4,153.7,131.2,126.3,126.1 +701,131.2,210,196.5,195,193.9,185.9,186.8,173.9,172,170.4,158.2,126.7,176.6,159.8,156.5,153.8,131.5,126.3,126.1 +702,131.2,210.1,196.6,195,194,186,186.9,174,172.1,170.5,158.3,126.7,176.7,159.9,156.6,153.9,131.8,126.3,126.2 +703,131.3,210.2,196.6,195.1,194.1,186.1,186.9,174.1,172.2,170.6,158.5,126.8,176.8,160,156.7,154,132,126.3,126.2 +704,131.3,210.3,196.7,195.2,194.1,186.2,187,174.2,172.3,170.7,158.6,126.8,176.8,160.1,156.8,154.1,132.3,126.4,126.2 +705,131.3,210.4,196.8,195.3,194.2,186.3,187.1,174.3,172.4,170.8,158.7,126.8,176.9,160.2,156.9,154.2,132.5,126.4,126.2 +706,131.3,210.5,196.9,195.4,194.3,186.4,187.2,174.4,172.5,170.9,158.9,126.8,176.9,160.2,157,154.3,132.8,126.4,126.2 +707,131.3,210.6,197,195.4,194.4,186.5,187.2,174.5,172.6,171.1,159,126.8,177,160.3,157.1,154.4,133.1,126.4,126.2 +708,131.3,210.7,197,195.5,194.5,186.6,187.3,174.6,172.7,171.2,159.1,126.8,177.1,160.4,157.2,154.5,133.3,126.4,126.2 +709,131.3,210.8,197.1,195.6,194.5,186.7,187.4,174.7,172.8,171.3,159.3,126.9,177.1,160.5,157.3,154.6,133.6,126.4,126.2 +710,131.3,210.9,197.2,195.7,194.6,186.8,187.5,174.8,172.9,171.4,159.4,126.9,177.2,160.6,157.4,154.7,133.8,126.4,126.2 +711,131.4,211,197.3,195.8,194.7,186.9,187.5,174.9,173.1,171.5,159.5,126.9,177.2,160.7,157.5,154.8,134.1,126.5,126.2 +712,131.4,211.1,197.4,195.8,194.8,187,187.6,175,173.2,171.6,159.7,126.9,177.3,160.7,157.6,155,134.3,126.5,126.3 +713,131.4,211.2,197.5,195.9,194.9,187.1,187.7,175.1,173.3,171.7,159.8,126.9,177.4,160.8,157.6,155.1,134.6,126.5,126.3 +714,131.4,211.3,197.5,196,194.9,187.2,187.8,175.2,173.4,171.8,159.9,126.9,177.4,160.9,157.7,155.2,134.8,126.5,126.3 +715,131.4,211.4,197.6,196.1,195,187.3,187.8,175.2,173.5,171.9,160,127,177.5,161,157.9,155.3,135.1,126.5,126.3 +716,131.4,211.5,197.7,196.2,195.1,187.4,187.9,175.3,173.6,172,160.2,127,177.6,161.1,158,155.4,135.4,126.5,126.3 +717,131.4,211.6,197.8,196.2,195.2,187.5,188,175.4,173.7,172.1,160.3,127,177.6,161.2,158.1,155.5,135.6,126.6,126.3 +718,131.4,211.7,197.9,196.3,195.3,187.6,188.1,175.5,173.8,172.2,160.4,127,177.7,161.3,158.2,155.6,135.9,126.6,126.3 +719,131.4,211.8,198,196.4,195.3,187.7,188.1,175.6,173.9,172.3,160.6,127,177.8,161.4,158.3,155.7,136.1,126.6,126.3 +720,131.5,211.9,198,196.5,195.4,187.7,188.2,175.7,174,172.4,160.7,127,177.8,161.5,158.4,155.8,136.4,126.6,126.4 +721,131.5,212,198.1,196.6,195.5,187.8,188.3,175.8,174.1,172.5,160.8,127,177.9,161.6,158.5,155.9,136.6,126.6,126.4 +722,131.5,212.1,198.2,196.7,195.6,187.9,188.4,175.9,174.2,172.7,160.9,127.1,178,161.7,158.6,156,136.9,126.6,126.4 +723,131.5,212.2,198.3,196.7,195.7,188,188.5,176,174.3,172.8,161.1,127.1,178,161.8,158.7,156.2,137.2,126.7,126.4 +724,131.5,212.3,198.4,196.8,195.7,188.1,188.5,176.1,174.4,172.9,161.2,127.1,178.1,161.8,158.8,156.3,137.4,126.7,126.4 +725,131.5,212.4,198.5,196.9,195.8,188.2,188.6,176.2,174.5,173,161.3,127.1,178.2,161.9,158.9,156.4,137.7,126.7,126.4 +726,131.5,212.5,198.5,197,195.9,188.3,188.7,176.3,174.6,173.1,161.5,127.1,178.2,162,159,156.5,137.9,126.7,126.4 +727,131.5,212.6,198.6,197.1,196,188.4,188.8,176.4,174.7,173.2,161.6,127.1,178.3,162.1,159.1,156.6,138.2,126.7,126.4 +728,131.6,212.7,198.7,197.1,196.1,188.5,188.8,176.5,174.8,173.3,161.7,127.1,178.4,162.2,159.2,156.7,138.4,126.7,126.4 +729,131.6,212.8,198.8,197.2,196.1,188.6,188.9,176.6,174.9,173.4,161.8,127.2,178.4,162.3,159.3,156.8,138.7,126.8,126.4 +730,131.6,212.8,198.9,197.3,196.2,188.7,189,176.7,175,173.5,162,127.2,178.5,162.4,159.4,157,139,126.8,126.4 +731,131.6,212.9,199,197.4,196.3,188.8,189.1,176.8,175.1,173.6,162.1,127.2,178.6,162.5,159.5,157.1,139.2,126.8,126.4 +732,131.6,213,199,197.5,196.4,188.9,189.2,176.9,175.2,173.7,162.2,127.2,178.6,162.6,159.6,157.2,139.5,126.8,126.4 +733,131.6,213.1,199.1,197.5,196.5,189,189.2,177,175.3,173.8,162.3,127.2,178.7,162.7,159.8,157.3,139.7,126.8,126.4 +734,131.6,213.2,199.2,197.6,196.5,189,189.3,177.1,175.4,173.9,162.5,127.2,178.8,162.8,159.9,157.4,140,126.8,126.5 +735,131.6,213.3,199.3,197.7,196.6,189.1,189.4,177.2,175.5,174,162.6,127.3,178.8,162.9,160,157.5,140.2,126.9,126.5 +736,131.7,213.4,199.4,197.8,196.7,189.2,189.5,177.3,175.6,174.1,162.7,127.3,178.9,163,160.1,157.7,140.5,126.9,126.5 +737,131.7,213.5,199.5,197.9,196.8,189.3,189.5,177.4,175.7,174.2,162.8,127.3,179,163.1,160.2,157.8,140.9,126.9,126.5 +738,131.7,213.6,199.6,198,196.9,189.4,189.6,177.5,175.8,174.3,163,127.3,179.1,163.2,160.3,157.9,141.3,126.9,126.5 +739,131.7,213.7,199.6,198,196.9,189.5,189.7,177.6,175.9,174.4,163.1,127.3,179.1,163.3,160.4,158,141.6,126.9,126.5 +740,131.7,213.8,199.7,198.1,197,189.6,189.8,177.7,176,174.6,163.2,127.3,179.2,163.4,160.5,158.1,141.9,126.9,126.5 +741,131.7,213.9,199.8,198.2,197.1,189.7,189.9,177.8,176.1,174.7,163.3,127.3,179.3,163.5,160.6,158.3,142.3,126.9,126.4 +742,131.7,214,199.9,198.3,197.2,189.8,189.9,177.9,176.2,174.8,163.5,127.4,179.3,163.6,160.8,158.4,142.6,127,126.5 +743,131.7,214.1,200,198.4,197.3,189.9,190,178,176.3,174.9,163.6,127.4,179.4,163.7,160.9,158.5,142.9,127,126.5 +744,131.7,214.2,200.1,198.4,197.4,189.9,190.1,178.1,176.4,175,163.7,127.4,179.5,163.8,161,158.6,143.2,127,126.5 +745,131.8,214.3,200.1,198.5,197.4,190,190.2,178.2,176.5,175.1,163.8,127.4,179.6,163.9,161.1,158.7,143.5,127,126.5 +746,131.8,214.4,200.2,198.6,197.5,190.1,190.3,178.3,176.6,175.2,164,127.4,179.6,164,161.2,158.9,143.7,127,126.5 +747,131.8,214.5,200.3,198.7,197.6,190.2,190.3,178.4,176.7,175.3,164.1,127.4,179.7,164.1,161.3,159,144,127,126.5 +748,131.8,214.6,200.4,198.8,197.7,190.3,190.4,178.5,176.8,175.4,164.2,127.4,179.8,164.2,161.4,159.1,144.3,127.1,126.5 +749,131.8,214.7,200.5,198.9,197.8,190.4,190.5,178.5,176.9,175.5,164.3,127.5,179.8,164.3,161.5,159.2,144.6,127.1,126.6 +750,131.8,214.8,200.6,198.9,197.8,190.5,190.6,178.6,177,175.6,164.4,127.5,179.9,164.4,161.7,159.3,144.8,127.1,126.6 +751,131.8,214.9,200.6,199,197.9,190.6,190.7,178.7,177.1,175.7,164.6,127.5,180,164.5,161.8,159.5,145.1,127.1,126.6 +752,131.8,215,200.7,199.1,198,190.7,190.7,178.8,177.2,175.8,164.7,127.5,180.1,164.6,161.9,159.6,145.3,127.1,126.6 +753,131.8,215.1,200.8,199.2,198.1,190.7,190.8,178.9,177.3,175.9,164.8,127.5,180.1,164.7,162,159.7,145.6,127.1,126.6 +754,131.9,215.2,200.9,199.3,198.2,190.8,190.9,179,177.4,176,164.9,127.5,180.2,164.8,162.1,159.8,145.8,127.1,126.6 +755,131.9,215.3,201,199.3,198.2,190.9,191,179.1,177.5,176.1,165.1,127.5,180.3,164.9,162.2,160,146.1,127.2,126.7 +756,131.9,215.4,201.1,199.4,198.3,191,191.1,179.2,177.6,176.2,165.2,127.6,180.3,165,162.3,160.1,146.3,127.2,126.7 +757,131.9,215.5,201.2,199.5,198.4,191.1,191.1,179.3,177.7,176.3,165.3,127.6,180.4,165.1,162.4,160.2,146.5,127.2,126.7 +758,131.9,215.6,201.2,199.6,198.5,191.2,191.2,179.4,177.8,176.4,165.4,127.6,180.5,165.2,162.6,160.3,146.8,127.2,126.7 +759,131.9,215.7,201.3,199.7,198.6,191.3,191.3,179.5,177.9,176.5,165.5,127.6,180.6,165.3,162.7,160.4,147,127.2,126.7 +760,131.9,215.7,201.4,199.8,198.7,191.3,191.4,179.6,178,176.6,165.7,127.6,180.6,165.4,162.8,160.6,147.2,127.2,126.7 +761,131.9,215.8,201.5,199.8,198.7,191.4,191.5,179.7,178.1,176.7,165.8,127.6,180.7,165.5,162.9,160.7,147.4,127.3,126.8 +762,132,215.9,201.6,199.9,198.8,191.5,191.6,179.8,178.2,176.8,165.9,127.6,180.8,165.6,163,160.8,147.5,127.3,126.8 +763,132,216,201.7,200,198.9,191.6,191.6,179.9,178.3,177,166,127.7,180.8,165.7,163.1,160.9,147.6,127.3,126.8 +764,132,216.1,201.7,200.1,199,191.7,191.7,180,178.4,177.1,166.1,127.7,180.9,165.8,163.2,161.1,147.8,127.3,126.8 +765,132,216.2,201.8,200.2,199.1,191.8,191.8,180.1,178.5,177.2,166.3,127.7,181,165.9,163.3,161.2,147.9,127.3,126.8 +766,132,216.3,201.9,200.2,199.1,191.9,191.9,180.2,178.6,177.3,166.4,127.7,181.1,166,163.5,161.3,148,127.3,126.8 +767,132,216.4,202,200.3,199.2,191.9,192,180.3,178.7,177.4,166.5,127.7,181.1,166.1,163.6,161.4,148.2,127.3,126.8 +768,132,216.5,202.1,200.4,199.3,192,192,180.4,178.9,177.5,166.6,127.7,181.2,166.2,163.7,161.5,148.3,127.4,126.9 +769,132,216.6,202.2,200.5,199.4,192.1,192.1,180.5,179,177.6,166.7,127.7,181.3,166.3,163.8,161.7,148.4,127.4,126.9 +770,132,216.7,202.2,200.6,199.5,192.2,192.2,180.6,179.1,177.7,166.8,127.8,181.3,166.4,163.9,161.8,148.5,127.4,126.9 +771,132.1,216.8,202.3,200.7,199.5,192.3,192.3,180.7,179.2,177.8,167,127.8,181.4,166.5,164,161.9,148.7,127.4,126.9 +772,132.1,216.9,202.4,200.7,199.6,192.4,192.4,180.8,179.3,177.9,167.1,127.8,181.5,166.6,164.1,162,148.8,127.4,126.9 +773,132.1,217,202.5,200.8,199.7,192.4,192.5,180.9,179.4,178,167.2,127.8,181.6,166.7,164.2,162.1,148.9,127.4,126.9 +774,132.1,217.1,202.6,200.9,199.8,192.5,192.5,181,179.5,178.1,167.3,127.8,181.6,166.8,164.4,162.3,149,127.4,127 +775,132.1,217.2,202.7,201,199.9,192.6,192.6,181.1,179.6,178.2,167.4,127.8,181.7,166.9,164.5,162.4,149.1,127.5,127 +776,132.1,217.3,202.7,201.1,200,192.7,192.7,181.2,179.7,178.3,167.6,127.8,181.8,167,164.6,162.5,149.2,127.5,127 +777,132.1,217.4,202.8,201.1,200,192.8,192.8,181.3,179.8,178.4,167.7,127.9,181.8,167.1,164.7,162.6,149.4,127.5,127 +778,132.1,217.5,202.9,201.2,200.1,192.9,192.9,181.4,179.9,178.5,167.8,127.9,181.9,167.2,164.8,162.7,149.5,127.5,127 +779,132.1,217.5,203,201.3,200.2,192.9,193,181.5,180,178.6,167.9,127.9,182,167.3,164.9,162.9,149.6,127.5,127 +780,132.2,217.6,203.1,201.4,200.3,193,193,181.6,180.1,178.7,168,127.9,182.1,167.4,165,163,149.7,127.5,127 +781,132.2,217.7,203.2,201.5,200.4,193.1,193.1,181.7,180.2,178.8,168.1,127.9,182.1,167.5,165.1,163.1,149.8,127.5,127.1 +782,132.2,217.8,203.2,201.6,200.4,193.2,193.2,181.8,180.3,178.9,168.3,127.9,182.2,167.6,165.2,163.2,149.9,127.6,127.1 +783,132.2,217.9,203.3,201.6,200.5,193.3,193.3,181.9,180.4,179,168.4,127.9,182.3,167.7,165.4,163.3,150.1,127.6,127.1 +784,132.2,218,203.4,201.7,200.6,193.4,193.4,182,180.5,179.1,168.5,128,182.3,167.8,165.5,163.5,150.2,127.6,127.1 +785,132.2,218.1,203.5,201.8,200.7,193.4,193.5,182.1,180.6,179.2,168.6,128,182.4,167.9,165.6,163.6,150.3,127.6,127.1 +786,132.2,218.2,203.6,201.9,200.8,193.5,193.6,182.1,180.7,179.3,168.7,128,182.5,168,165.7,163.7,150.4,127.6,127.1 +787,132.2,218.3,203.7,202,200.8,193.6,193.6,182.2,180.8,179.4,168.8,128,182.6,168.1,165.8,163.8,150.5,127.6,127.1 +788,132.2,218.4,203.7,202,200.9,193.7,193.7,182.3,180.9,179.5,168.9,128,182.6,168.2,165.9,163.9,150.6,127.6,127.2 +789,132.3,218.5,203.8,202.1,201,193.8,193.8,182.4,181,179.6,169.1,128,182.7,168.3,166,164,150.8,127.7,127.2 +790,132.3,218.6,203.9,202.2,201.1,193.8,193.9,182.5,181.1,179.7,169.2,128,182.8,168.4,166.1,164.2,150.9,127.7,127.2 +791,132.3,218.7,204,202.3,201.2,193.9,194,182.6,181.2,179.8,169.3,128,182.8,168.5,166.2,164.3,151,127.7,127.2 +792,132.3,218.8,204.1,202.4,201.3,194,194.1,182.7,181.3,179.9,169.4,128.1,182.9,168.6,166.4,164.4,151.1,127.7,127.2 +793,132.3,218.9,204.2,202.4,201.3,194.1,194.2,182.8,181.4,180.1,169.5,128.1,183,168.7,166.5,164.5,151.2,127.7,127.2 +794,132.3,219,204.2,202.5,201.4,194.2,194.2,182.9,181.5,180.2,169.6,128.1,183.1,168.8,166.6,164.6,151.3,127.7,127.3 +795,132.3,219,204.3,202.6,201.5,194.2,194.3,183,181.6,180.3,169.7,128.1,183.1,168.9,166.7,164.8,151.5,127.7,127.3 +796,132.3,219.1,204.4,202.7,201.6,194.3,194.4,183.1,181.7,180.4,169.9,128.1,183.2,169,166.8,164.9,151.6,127.8,127.3 +797,132.3,219.2,204.5,202.8,201.7,194.4,194.5,183.2,181.8,180.5,170,128.1,183.3,169.1,166.9,165,151.7,127.8,127.3 +798,132.4,219.3,204.6,202.8,201.7,194.5,194.6,183.3,181.9,180.6,170.1,128.1,183.3,169.2,167,165.1,151.8,127.8,127.3 +799,132.4,219.4,204.6,202.9,201.8,194.6,194.7,183.4,182,180.7,170.2,128.2,183.4,169.3,167.1,165.2,151.9,127.8,127.3 +800,132.4,219.5,204.7,203,201.9,194.6,194.8,183.5,182.1,180.8,170.3,128.2,183.5,169.4,167.2,165.3,152,127.8,127.3 +801,132.4,219.6,204.8,203.1,202,194.7,194.8,183.6,182.2,180.9,170.4,128.2,183.6,169.5,167.3,165.5,152.2,127.8,127.4 +802,132.4,219.7,204.9,203.2,202.1,194.8,194.9,183.7,182.3,181,170.5,128.2,183.6,169.6,167.4,165.6,152.3,127.8,127.4 +803,132.4,219.8,205,203.2,202.1,194.9,195,183.8,182.4,181.1,170.6,128.2,183.7,169.7,167.6,165.7,152.4,127.9,127.4 +804,132.4,219.9,205.1,203.3,202.2,195,195.1,183.9,182.5,181.2,170.8,128.2,183.8,169.8,167.7,165.8,152.5,127.9,127.4 +805,132.4,220,205.1,203.4,202.3,195,195.2,184,182.6,181.3,170.9,128.2,183.8,169.9,167.8,165.9,152.6,127.9,127.4 +806,132.4,220.1,205.2,203.5,202.4,195.1,195.3,184.1,182.7,181.4,171,128.2,183.9,170,167.9,166,152.8,127.9,127.4 +807,132.4,220.2,205.3,203.6,202.5,195.2,195.4,184.2,182.8,181.5,171.1,128.3,184,170.1,168,166.1,152.9,127.9,127.4 +808,132.5,220.3,205.4,203.6,202.5,195.3,195.4,184.3,182.9,181.6,171.2,128.3,184.1,170.2,168.1,166.3,153,127.9,127.5 +809,132.5,220.3,205.5,203.7,202.6,195.4,195.5,184.4,183,181.7,171.3,128.5,184.1,170.3,168.2,166.4,153.1,127.9,127.5 +810,132.5,220.4,205.5,203.8,202.7,195.4,195.6,184.5,183.1,181.8,171.4,129.2,184.2,170.4,168.3,166.5,153.3,128,127.5 +811,132.5,220.5,205.6,203.9,202.8,195.5,195.7,184.6,183.2,181.9,171.5,129.8,184.3,170.5,168.4,166.6,153.4,128,127.5 +812,132.5,220.6,205.7,204,202.9,195.6,195.8,184.7,183.3,182,171.7,130.4,184.4,170.6,168.5,166.7,153.5,128,127.5 +813,132.5,220.7,205.8,204,202.9,195.7,195.9,184.8,183.4,182.1,171.8,131,184.4,170.7,168.6,166.8,153.6,128,127.5 +814,132.5,220.8,205.9,204.1,203,195.8,196,184.9,183.5,182.2,171.9,131.7,184.5,170.8,168.7,167,153.8,128,127.5 +815,132.5,220.9,206,204.2,203.1,195.8,196.1,185,183.6,182.3,172,132.3,184.6,170.9,168.9,167.1,153.9,128,127.6 +816,132.5,221,206,204.3,203.2,195.9,196.1,185.1,183.7,182.4,172.1,132.9,184.6,171,169,167.2,154,128,127.6 +817,132.6,221.1,206.1,204.4,203.2,196,196.2,185.2,183.8,182.5,172.2,133.5,184.7,171.1,169.1,167.3,154.1,128.1,127.6 +818,132.6,221.2,206.2,204.4,203.3,196.1,196.3,185.2,183.9,182.6,172.3,133.7,184.8,171.2,169.2,167.4,154.3,128.1,127.6 +819,132.6,221.3,206.3,204.5,203.4,196.2,196.4,185.3,184,182.7,172.4,133.9,184.9,171.3,169.3,167.5,154.4,128.1,127.6 +820,132.6,221.4,206.4,204.6,203.5,196.2,196.5,185.4,184.1,182.8,172.5,134.2,184.9,171.4,169.4,167.6,154.5,128.1,127.6 +821,132.6,221.5,206.4,204.7,203.6,196.3,196.6,185.5,184.2,182.9,172.7,134.4,185,171.5,169.5,167.7,154.7,128.1,127.6 +822,132.6,221.5,206.5,204.8,203.6,196.4,196.7,185.6,184.3,183,172.8,134.6,185.1,171.6,169.6,167.9,154.8,128.1,127.7 +823,132.6,221.6,206.6,204.8,203.7,196.5,196.8,185.7,184.4,183.1,172.9,134.8,185.1,171.7,169.7,168,154.9,128.1,127.7 +824,132.6,221.7,206.7,204.9,203.8,196.6,196.9,185.8,184.5,183.2,173,135,185.2,171.8,169.8,168.1,155,128.2,127.7 +825,132.6,221.8,206.8,205,203.9,196.6,196.9,185.9,184.6,183.3,173.1,135.2,185.3,171.9,169.9,168.2,155.2,128.2,127.7 +826,132.7,221.9,206.9,205.1,204,196.7,197,186,184.6,183.4,173.2,135.4,185.4,172,170,168.3,155.3,128.2,127.7 +827,132.7,222,206.9,205.2,204,196.8,197.1,186.1,184.7,183.5,173.3,135.6,185.4,172.1,170.1,168.4,155.4,128.2,127.7 +828,132.7,222.1,207,205.2,204.1,196.9,197.2,186.2,184.8,183.6,173.4,135.8,185.5,172.2,170.2,168.5,155.6,128.2,127.7 +829,132.7,222.2,207.1,205.3,204.2,197,197.3,186.3,184.9,183.7,173.5,136.1,185.6,172.3,170.3,168.6,155.7,128.2,127.8 +830,132.7,222.3,207.2,205.4,204.3,197,197.4,186.4,185,183.8,173.6,136.3,185.6,172.4,170.5,168.8,155.8,128.2,127.8 +831,132.7,222.4,207.3,205.5,204.4,197.1,197.5,186.5,185.1,183.9,173.7,136.5,185.7,172.5,170.6,168.9,156,128.2,127.8 +832,132.7,222.5,207.3,205.6,204.4,197.2,197.6,186.6,185.2,184,173.9,136.7,185.8,172.6,170.7,169,156.1,128.3,127.8 +833,132.7,222.5,207.4,205.6,204.5,197.3,197.7,186.7,185.3,184.1,174,136.9,185.9,172.7,170.8,169.1,156.2,128.3,127.8 +834,132.7,222.6,207.5,205.7,204.6,197.4,197.7,186.8,185.4,184.2,174.1,137.1,185.9,172.8,170.9,169.2,156.4,128.3,127.8 +835,132.7,222.7,207.6,205.8,204.7,197.4,197.8,186.9,185.5,184.3,174.2,137.3,186,172.9,171,169.3,156.5,128.3,127.8 +836,132.8,222.8,207.7,205.9,204.7,197.5,197.9,187,185.6,184.4,174.3,137.5,186.1,173,171.1,169.4,156.6,128.3,127.9 +837,132.8,222.9,207.7,206,204.8,197.6,198,187.1,185.7,184.5,174.4,137.7,186.2,173.1,171.2,169.5,156.8,128.3,127.9 +838,132.8,223,207.8,206,204.9,197.7,198.1,187.2,185.8,184.6,174.5,138,186.2,173.2,171.3,169.6,156.9,128.3,127.9 +839,132.8,223.1,207.9,206.1,205,197.8,198.2,187.3,185.9,184.7,174.6,138.2,186.3,173.3,171.4,169.8,157,128.4,127.9 +840,132.8,223.2,208,206.2,205.1,197.8,198.3,187.3,186,184.8,174.7,138.4,186.4,173.4,171.5,169.9,157.2,128.4,127.9 +841,132.8,223.3,208.1,206.3,205.1,197.9,198.4,187.4,186.1,184.9,174.8,138.6,186.4,173.5,171.6,170,157.3,128.4,127.9 +842,132.8,223.4,208.1,206.3,205.2,198,198.5,187.5,186.2,185,174.9,138.8,186.5,173.6,171.7,170.1,157.4,128.4,127.9 +843,132.8,223.5,208.2,206.4,205.3,198.1,198.5,187.6,186.3,185.1,175.1,139,186.6,173.7,171.8,170.2,157.6,128.4,128 +844,132.8,223.5,208.3,206.5,205.4,198.2,198.6,187.7,186.4,185.2,175.2,139.2,186.7,173.8,171.9,170.3,157.7,128.4,128 +845,132.8,223.6,208.4,206.6,205.4,198.3,198.7,187.8,186.5,185.3,175.3,139.4,186.7,173.9,172,170.4,157.8,128.4,128 +846,132.9,223.7,208.5,206.7,205.5,198.3,198.8,187.9,186.6,185.4,175.4,139.6,186.8,174,172.1,170.5,158,128.4,128 +847,132.9,223.8,208.5,206.7,205.6,198.4,198.9,188,186.7,185.5,175.5,139.9,186.9,174.1,172.2,170.6,158.1,128.5,128 +848,132.9,223.9,208.6,206.8,205.7,198.5,199,188.1,186.8,185.6,175.6,140.1,187,174.2,172.3,170.7,158.2,128.5,128 +849,132.9,224,208.7,206.9,205.8,198.6,199.1,188.2,186.9,185.7,175.7,140.3,187,174.3,172.4,170.9,158.4,128.5,128 +850,132.9,224.1,208.8,207,205.8,198.7,199.2,188.3,187,185.8,175.8,140.5,187.1,174.4,172.6,171,158.5,128.5,128 +851,132.9,224.2,208.9,207,205.9,198.7,199.3,188.4,187.1,185.9,175.9,140.7,187.2,174.5,172.7,171.1,158.6,128.5,128.1 +852,132.9,224.3,209,207.1,206,198.8,199.4,188.5,187.2,186,176,140.9,187.2,174.6,172.8,171.2,158.8,128.5,128.1 +853,132.9,224.4,209,207.2,206.1,198.9,199.4,188.6,187.3,186.1,176.1,141.1,187.3,174.7,172.9,171.3,158.9,128.5,128.1 +854,132.9,224.5,209.1,207.3,206.1,199,199.5,188.7,187.4,186.2,176.2,141.3,187.4,174.8,173,171.4,159,128.5,128.1 +855,133,224.5,209.2,207.4,206.2,199.1,199.6,188.7,187.5,186.3,176.3,141.5,187.5,174.9,173.1,171.5,159.2,128.6,128.1 +856,133,224.6,209.3,207.4,206.3,199.1,199.7,188.8,187.5,186.4,176.5,141.9,187.5,175,173.2,171.6,159.3,128.6,128.1 +857,133,224.7,209.4,207.5,206.4,199.2,199.8,188.9,187.6,186.5,176.6,142.2,187.6,175.1,173.3,171.7,159.4,128.6,128.1 +858,133,224.8,209.4,207.6,206.5,199.3,199.9,189,187.7,186.6,176.7,142.6,187.7,175.2,173.4,171.8,159.6,128.6,128.2 +859,133,224.9,209.5,207.7,206.5,199.4,200,189.1,187.8,186.7,176.8,142.9,187.8,175.2,173.5,171.9,159.7,128.6,128.2 +860,133,225,209.6,207.8,206.6,199.5,200.1,189.2,187.9,186.8,176.9,143.2,187.8,175.3,173.6,172,159.8,128.6,128.2 +861,133,225.1,209.7,207.8,206.7,199.5,200.2,189.3,188,186.9,177,143.5,187.9,175.4,173.7,172.2,159.9,128.6,128.2 +862,133,225.2,209.8,207.9,206.8,199.6,200.3,189.4,188.1,187,177.1,143.8,188,175.5,173.8,172.3,160.1,128.7,128.2 +863,133,225.3,209.8,208,206.8,199.7,200.3,189.5,188.2,187.1,177.2,144.1,188.1,175.6,173.9,172.4,160.2,128.7,128.2 +864,133,225.3,209.9,208.1,206.9,199.8,200.4,189.6,188.3,187.2,177.3,144.4,188.1,175.7,174,172.5,160.3,128.7,128.2 +865,133.1,225.4,210,208.1,207,199.9,200.5,189.7,188.4,187.2,177.4,144.7,188.2,175.8,174.1,172.6,160.5,128.7,128.3 +866,133.1,225.5,210.1,208.2,207.1,200,200.6,189.8,188.5,187.3,177.5,144.9,188.3,175.9,174.2,172.7,160.6,128.7,128.3 +867,133.1,225.6,210.2,208.3,207.2,200,200.7,189.8,188.6,187.4,177.6,145.2,188.4,176,174.3,172.8,160.7,128.7,128.3 +868,133.1,225.7,210.2,208.4,207.2,200.1,200.8,189.9,188.7,187.5,177.7,145.5,188.4,176.1,174.4,172.9,160.9,128.7,128.3 +869,133.1,225.8,210.3,208.5,207.3,200.2,200.9,190,188.8,187.6,177.8,145.7,188.5,176.2,174.5,173,161,128.7,128.3 +870,133.1,225.9,210.4,208.5,207.4,200.3,201,190.1,188.9,187.7,178,146,188.6,176.3,174.6,173.1,161.1,128.8,128.3 +871,133.1,226,210.5,208.6,207.5,200.4,201.1,190.2,189,187.8,178.1,146.2,188.6,176.4,174.7,173.2,161.3,128.8,128.3 +872,133.1,226.1,210.6,208.7,207.5,200.4,201.2,190.3,189,187.9,178.2,146.5,188.7,176.5,174.8,173.3,161.4,128.8,128.3 +873,133.1,226.2,210.6,208.8,207.6,200.5,201.3,190.4,189.1,188,178.3,146.7,188.8,176.6,174.9,173.4,161.5,128.8,128.4 +874,133.1,226.2,210.7,208.8,207.7,200.6,201.3,190.5,189.2,188.1,178.4,147,188.9,176.7,175,173.5,161.7,128.8,128.4 +875,133.2,226.3,210.8,208.9,207.8,200.7,201.4,190.6,189.3,188.2,178.5,147.2,188.9,176.8,175.1,173.6,161.8,128.8,128.4 +876,133.2,226.4,210.9,209,207.8,200.8,201.5,190.7,189.4,188.3,178.6,147.4,189,176.9,175.2,173.8,161.9,128.8,128.4 +877,133.2,226.5,211,209.1,207.9,200.8,201.6,190.8,189.5,188.4,178.7,147.7,189.1,177,175.3,173.9,162,128.8,128.4 +878,133.2,226.6,211,209.2,208,200.9,201.7,190.8,189.6,188.5,178.8,147.8,189.2,177.1,175.4,174,162.2,128.9,128.4 +879,133.2,226.7,211.1,209.2,208.1,201,201.8,190.9,189.7,188.6,178.9,148,189.3,177.2,175.5,174.1,162.3,128.9,128.4 +880,133.2,226.8,211.2,209.3,208.2,201.1,201.9,191,189.8,188.7,179,148.1,189.3,177.3,175.6,174.2,162.4,128.9,128.5 +881,133.2,226.9,211.3,209.4,208.2,201.2,202,191.1,189.9,188.8,179.1,148.2,189.4,177.4,175.7,174.3,162.6,128.9,128.5 +882,133.2,227,211.3,209.5,208.3,201.2,202.1,191.2,190,188.9,179.2,148.4,189.5,177.5,175.8,174.4,162.7,128.9,128.5 +883,133.2,227,211.4,209.5,208.4,201.3,202.2,191.3,190.1,188.9,179.3,148.5,189.6,177.6,176,174.5,162.8,128.9,128.5 +884,133.2,227.1,211.5,209.6,208.5,201.4,202.2,191.4,190.1,189,179.4,148.6,189.6,177.7,176.1,174.6,162.9,128.9,128.5 +885,133.3,227.2,211.6,209.7,208.5,201.5,202.3,191.5,190.2,189.1,179.5,148.7,189.7,177.8,176.2,174.7,163.1,128.9,128.5 +886,133.3,227.3,211.7,209.8,208.6,201.6,202.4,191.6,190.3,189.2,179.6,148.9,189.8,177.9,176.3,174.8,163.2,129,128.5 +887,133.3,227.4,211.7,209.8,208.7,201.7,202.5,191.6,190.4,189.3,179.8,149,189.9,178,176.4,174.9,163.3,129,128.5 +888,133.3,227.5,211.8,209.9,208.8,201.7,202.6,191.7,190.5,189.4,179.9,149.1,189.9,178.1,176.5,175,163.4,129,128.6 +889,133.3,227.6,211.9,210,208.8,201.8,202.7,191.8,190.6,189.5,180,149.2,190,178.2,176.6,175.1,163.6,129,128.6 +890,133.3,227.7,212,210.1,208.9,201.9,202.8,191.9,190.7,189.6,180.1,149.4,190.1,178.3,176.7,175.2,163.7,129,128.6 +891,133.3,227.8,212.1,210.2,209,202,202.9,192,190.8,189.7,180.2,149.5,190.2,178.4,176.8,175.3,163.8,129,128.6 +892,133.3,227.8,212.1,210.2,209.1,202.1,203,192.1,190.9,189.8,180.3,149.6,190.2,178.5,176.9,175.4,163.9,129,128.6 +893,133.3,227.9,212.2,210.3,209.2,202.1,203.1,192.2,190.9,189.9,180.4,149.7,190.3,178.5,177,175.5,164.1,129,128.6 +894,133.3,228,212.3,210.4,209.2,202.2,203.2,192.3,191,190,180.5,149.9,190.4,178.6,177.1,175.7,164.2,129,128.6 +895,133.4,228.1,212.4,210.5,209.3,202.3,203.2,192.3,191.1,190.1,180.6,150,190.5,178.7,177.2,175.8,164.3,129.1,128.6 +896,133.4,228.2,212.5,210.5,209.4,202.4,203.3,192.4,191.2,190.1,180.7,150.1,190.5,178.8,177.3,175.9,164.4,129.1,128.7 +897,133.4,228.3,212.5,210.6,209.5,202.5,203.4,192.5,191.3,190.2,180.8,150.2,190.6,178.9,177.4,176,164.6,129.1,128.7 +898,133.4,228.4,212.6,210.7,209.5,202.5,203.5,192.6,191.4,190.3,180.9,150.3,190.7,179,177.5,176.1,164.7,129.1,128.7 +899,133.4,228.5,212.7,210.8,209.6,202.6,203.6,192.7,191.5,190.4,181,150.4,190.8,179.1,177.6,176.2,164.8,129.1,128.7 +900,133.4,228.5,212.8,210.8,209.7,202.7,203.7,192.8,191.6,190.5,181.1,150.6,190.9,179.2,177.7,176.3,164.9,129.1,128.7 +901,133.4,228.6,212.9,210.9,209.8,202.8,203.8,192.9,191.7,190.6,181.2,150.7,190.9,179.3,177.8,176.4,165.1,129.1,128.7 +902,133.4,228.7,212.9,211,209.8,202.9,203.9,192.9,191.7,190.7,181.3,150.8,191,179.4,177.9,176.5,165.2,129.1,128.7 +903,133.4,228.8,213,211.1,209.9,202.9,204,193,191.8,190.8,181.4,150.9,191.1,179.5,178,176.6,165.3,129.2,128.7 +904,133.4,228.9,213.1,211.2,210,203,204.1,193.1,191.9,190.9,181.5,151,191.2,179.6,178.1,176.7,165.4,129.2,128.8 +905,133.4,229,213.2,211.2,210.1,203.1,204.2,193.2,192,191,181.6,151.2,191.3,179.7,178.2,176.8,165.6,129.2,128.8 +906,133.5,229.1,213.3,211.3,210.1,203.2,204.2,193.3,192.1,191,181.7,151.3,191.3,179.8,178.3,176.9,165.7,129.2,128.8 +907,133.5,229.2,213.3,211.4,210.2,203.3,204.3,193.4,192.2,191.1,181.9,151.4,191.4,179.9,178.4,177,165.8,129.2,128.8 +908,133.5,229.3,213.4,211.5,210.3,203.3,204.4,193.4,192.3,191.2,182,151.5,191.5,180,178.5,177.1,165.9,129.2,128.8 +909,133.5,229.3,213.5,211.5,210.4,203.4,204.5,193.5,192.3,191.3,182.1,151.6,191.6,180.1,178.6,177.2,166,129.2,128.8 +910,133.5,229.4,213.6,211.6,210.4,203.5,204.6,193.6,192.4,191.4,182.2,151.7,191.6,180.2,178.7,177.3,166.2,129.2,128.8 +911,133.5,229.5,213.6,211.7,210.5,203.6,204.7,193.7,192.5,191.5,182.3,151.9,191.7,180.3,178.8,177.4,166.3,129.3,128.8 +912,133.5,229.6,213.7,211.8,210.6,203.6,204.8,193.8,192.6,191.6,182.4,152,191.8,180.4,178.9,177.5,166.4,129.3,128.9 +913,133.5,229.7,213.8,211.8,210.7,203.7,204.9,193.9,192.7,191.7,182.5,152.1,191.9,180.5,179,177.6,166.5,129.3,128.9 +914,133.5,229.8,213.9,211.9,210.7,203.8,205,194,192.8,191.7,182.6,152.2,192,180.6,179.1,177.7,166.7,129.3,128.9 +915,133.5,229.9,214,212,210.8,203.9,205.1,194,192.9,191.8,182.7,152.3,192,180.7,179.2,177.8,166.8,129.3,128.9 +916,133.6,230,214,212.1,210.9,204,205.2,194.1,192.9,191.9,182.8,152.5,192.1,180.8,179.3,177.9,166.9,129.3,128.9 +917,133.6,230,214.1,212.2,211,204,205.2,194.2,193,192,182.9,152.6,192.2,180.9,179.4,178,167,129.3,128.9 +918,133.6,230.1,214.2,212.2,211.1,204.1,205.3,194.3,193.1,192.1,183,152.7,192.3,181,179.5,178.2,167.1,129.3,128.9 +919,133.6,230.2,214.3,212.3,211.1,204.2,205.4,194.4,193.2,192.2,183.1,152.8,192.4,181.1,179.6,178.3,167.3,129.3,128.9 +920,133.6,230.3,214.4,212.4,211.2,204.3,205.5,194.5,193.3,192.3,183.2,153,192.4,181.2,179.7,178.4,167.4,129.4,129 +921,133.6,230.4,214.4,212.5,211.3,204.4,205.6,194.5,193.4,192.4,183.3,153.1,192.5,181.3,179.8,178.5,167.5,129.4,129 +922,133.6,230.5,214.5,212.5,211.4,204.4,205.7,194.6,193.4,192.4,183.4,153.2,192.6,181.4,179.9,178.6,167.6,129.4,129 +923,133.6,230.6,214.6,212.6,211.4,204.5,205.8,194.7,193.5,192.5,183.5,153.3,192.7,181.5,180,178.7,167.7,129.4,129 +924,133.6,230.7,214.7,212.7,211.5,204.6,205.9,194.8,193.6,192.6,183.6,153.4,192.8,181.6,180.1,178.8,167.8,129.4,129 +925,133.6,230.7,214.8,212.8,211.6,204.7,206,194.9,193.7,192.7,183.7,153.6,192.8,181.7,180.2,178.9,168,129.4,129 +926,133.6,230.8,214.8,212.8,211.7,204.7,206.1,194.9,193.8,192.8,183.8,153.7,192.9,181.8,180.3,179,168.1,129.4,129 +927,133.7,230.9,214.9,212.9,211.7,204.8,206.2,195,193.9,192.9,183.9,153.8,193,181.8,180.4,179.1,168.2,129.4,129 +928,133.7,231,215,213,211.8,204.9,206.3,195.1,193.9,192.9,184,153.9,193.1,181.9,180.5,179.2,168.3,129.5,129.1 +929,133.7,231.1,215.1,213.1,211.9,205,206.4,195.2,194,193,184.1,154.1,193.2,182,180.6,179.3,168.4,129.5,129.1 +930,133.7,231.2,215.1,213.1,212,205.1,206.4,195.3,194.1,193.1,184.2,154.2,193.3,182.1,180.7,179.4,168.6,129.5,129.1 +931,133.7,231.3,215.2,213.2,212,205.1,206.5,195.4,194.2,193.2,184.3,154.3,193.3,182.2,180.8,179.5,168.7,129.5,129.1 +932,133.7,231.4,215.3,213.3,212.1,205.2,206.6,195.4,194.3,193.3,184.4,154.5,193.4,182.3,180.9,179.6,168.8,129.5,129.1 +933,133.7,231.4,215.4,213.4,212.2,205.3,206.7,195.5,194.3,193.4,184.5,154.6,193.5,182.4,181,179.7,168.9,129.5,129.1 +934,133.7,231.5,215.5,213.5,212.3,205.4,206.8,195.6,194.4,193.4,184.6,154.7,193.6,182.5,181.1,179.8,169,129.5,129.1 +935,133.7,231.6,215.5,213.5,212.3,205.5,206.9,195.7,194.5,193.5,184.7,154.8,193.7,182.6,181.2,179.9,169.1,129.5,129.1 +936,133.7,231.7,215.6,213.6,212.4,205.5,207,195.8,194.6,193.6,184.8,155,193.7,182.7,181.3,180,169.3,129.5,129.2 +937,133.8,231.8,215.7,213.7,212.5,205.6,207.1,195.8,194.7,193.7,184.9,155.1,193.8,182.8,181.4,180.1,169.4,129.6,129.2 +938,133.8,231.9,215.8,213.8,212.6,205.7,207.2,195.9,194.8,193.8,185,155.2,193.9,182.9,181.5,180.2,169.5,129.6,129.2 +939,133.8,232,215.9,213.8,212.6,205.8,207.3,196,194.8,193.9,185.1,155.4,194,183,181.6,180.3,169.6,129.6,129.2 +940,133.8,232,215.9,213.9,212.7,205.8,207.4,196.1,194.9,193.9,185.2,155.5,194.1,183.1,181.7,180.4,169.7,129.6,129.2 +941,133.8,232.1,216,214,212.8,205.9,207.5,196.2,195,194,185.4,155.6,194.2,183.2,181.8,180.5,169.8,129.6,129.2 +942,133.8,232.2,216.1,214.1,212.9,206,207.6,196.2,195.1,194.1,185.5,155.8,194.2,183.3,181.9,180.6,170,129.6,129.2 +943,133.8,232.3,216.2,214.1,212.9,206.1,207.6,196.3,195.2,194.2,185.6,155.9,194.3,183.4,182,180.7,170.1,129.6,129.2 +944,133.8,232.4,216.2,214.2,213,206.1,207.7,196.4,195.2,194.3,185.7,156,194.4,183.5,182.1,180.8,170.2,129.6,129.3 +945,133.8,232.5,216.3,214.3,213.1,206.2,207.8,196.5,195.3,194.4,185.8,156.2,194.5,183.6,182.2,180.9,170.3,129.6,129.3 +946,133.8,232.6,216.4,214.4,213.2,206.3,207.9,196.6,195.4,194.4,185.9,156.3,194.6,183.7,182.3,181,170.4,129.7,129.3 +947,133.8,232.7,216.5,214.4,213.2,206.4,208,196.6,195.5,194.5,186,156.4,194.7,183.8,182.4,181.1,170.5,129.7,129.3 +948,133.9,232.7,216.6,214.5,213.3,206.5,208.1,196.7,195.6,194.6,186.1,156.6,194.7,183.9,182.5,181.2,170.6,129.7,129.3 +949,133.9,232.8,216.6,214.6,213.4,206.5,208.2,196.8,195.6,194.7,186.2,156.7,194.8,184,182.6,181.3,170.8,129.7,129.3 +950,133.9,232.9,216.7,214.7,213.5,206.6,208.3,196.9,195.7,194.8,186.3,156.8,194.9,184.1,182.7,181.4,170.9,129.7,129.3 +951,133.9,233,216.8,214.8,213.5,206.7,208.4,197,195.8,194.8,186.4,157,195,184.2,182.8,181.5,171,129.7,129.3 +952,133.9,233.1,216.9,214.8,213.6,206.8,208.5,197,195.9,194.9,186.5,157.1,195.1,184.3,182.9,181.6,171.1,129.7,129.4 +953,133.9,233.2,217,214.9,213.7,206.8,208.6,197.1,195.9,195,186.6,157.2,195.2,184.4,183,181.8,171.2,129.7,129.4 +954,133.9,233.3,217,215,213.8,206.9,208.7,197.2,196,195.1,186.7,157.4,195.2,184.5,183.1,181.9,171.3,129.7,129.4 +955,133.9,233.3,217.1,215.1,213.8,207,208.8,197.3,196.1,195.2,186.8,157.5,195.3,184.6,183.2,182,171.4,129.8,129.4 +956,133.9,233.4,217.2,215.1,213.9,207.1,208.9,197.4,196.2,195.2,186.9,157.6,195.4,184.7,183.3,182.1,171.5,129.8,129.4 +957,133.9,233.5,217.3,215.2,214,207.2,209,197.4,196.3,195.3,187,157.8,195.5,184.8,183.4,182.2,171.7,129.8,129.4 +958,133.9,233.6,217.3,215.3,214.1,207.2,209,197.5,196.3,195.4,187.1,157.9,195.6,184.9,183.5,182.3,171.8,129.8,129.4 +959,134,233.7,217.4,215.4,214.1,207.3,209.1,197.6,196.4,195.5,187.1,158,195.7,185,183.6,182.4,171.9,129.8,129.4 +960,134,233.8,217.5,215.4,214.2,207.4,209.2,197.7,196.5,195.6,187.2,158.2,195.7,185,183.7,182.5,172,129.8,129.4 +961,134,233.9,217.6,215.5,214.3,207.5,209.3,197.7,196.6,195.6,187.3,158.3,195.8,185.1,183.8,182.6,172.1,129.8,129.5 +962,134,234,217.7,215.6,214.4,207.5,209.4,197.8,196.7,195.7,187.4,158.4,195.9,185.2,183.9,182.7,172.2,129.8,129.5 +963,134,234,217.7,215.7,214.4,207.6,209.5,197.9,196.7,195.8,187.5,158.6,196,185.3,184,182.8,172.3,129.8,129.5 +964,134,234.1,217.8,215.7,214.5,207.7,209.6,198,196.8,195.9,187.6,158.7,196.1,185.4,184.1,182.9,172.4,129.9,129.5 +965,134,234.2,217.9,215.8,214.6,207.8,209.7,198.1,196.9,196,187.7,158.8,196.2,185.5,184.2,183,172.6,129.9,129.5 +966,134,234.3,218,215.9,214.7,207.8,209.8,198.1,197,196,187.8,159,196.3,185.6,184.3,183.1,172.7,129.9,129.5 +967,134,234.4,218,216,214.7,207.9,209.9,198.2,197,196.1,187.9,159.1,196.3,185.7,184.4,183.2,172.8,130.5,129.5 +968,134,234.5,218.1,216,214.8,208,210,198.3,197.1,196.2,188,159.2,196.4,185.8,184.5,183.3,172.9,131.2,129.5 +969,134,234.6,218.2,216.1,214.9,208.1,210.1,198.4,197.2,196.3,188.1,159.4,196.5,185.9,184.6,183.4,173,131.9,129.6 +970,134.1,234.6,218.3,216.2,215,208.1,210.2,198.5,197.3,196.3,188.2,159.5,196.6,186,184.7,183.5,173.1,132.6,129.6 +971,134.1,234.7,218.4,216.3,215,208.2,210.3,198.5,197.4,196.4,188.3,159.6,196.7,186.1,184.8,183.6,173.2,133.3,129.6 +972,134.1,234.8,218.4,216.3,215.1,208.3,210.4,198.6,197.4,196.5,188.4,159.8,196.8,186.2,184.9,183.7,173.3,134,129.6 +973,134.1,234.9,218.5,216.4,215.2,208.4,210.5,198.7,197.5,196.6,188.5,159.9,196.9,186.3,185,183.8,173.4,134.8,129.6 +974,134.1,235,218.6,216.5,215.3,208.5,210.6,198.8,197.6,196.7,188.6,160,196.9,186.4,185.1,183.9,173.6,135.5,129.6 +975,134.1,235.1,218.7,216.6,215.3,208.5,210.7,198.9,197.7,196.7,188.7,160.2,197,186.5,185.2,184,173.7,135.7,129.6 +976,134.1,235.2,218.8,216.7,215.4,208.6,210.8,198.9,197.7,196.8,188.8,160.3,197.1,186.6,185.3,184.1,173.8,135.9,129.6 +977,134.1,235.2,218.8,216.7,215.5,208.7,210.8,199,197.8,196.9,188.9,160.5,197.2,186.7,185.4,184.2,173.9,136.1,129.6 +978,134.1,235.3,218.9,216.8,215.6,208.8,210.9,199.1,197.9,197,189,160.6,197.3,186.8,185.5,184.3,174,136.3,129.7 +979,134.1,235.4,219,216.9,215.6,208.8,211,199.2,198,197.1,189.1,160.7,197.4,186.9,185.6,184.4,174.1,136.5,129.7 +980,134.1,235.5,219.1,217,215.7,208.9,211.1,199.3,198.1,197.1,189.2,160.9,197.5,187,185.7,184.5,174.2,136.6,129.7 +981,134.2,235.6,219.1,217,215.8,209,211.2,199.3,198.1,197.2,189.3,161,197.5,187.1,185.8,184.6,174.3,136.8,129.7 +982,134.2,235.7,219.2,217.1,215.9,209.1,211.3,199.4,198.2,197.3,189.4,161.1,197.6,187.2,185.9,184.7,174.4,137,129.7 +983,134.2,235.8,219.3,217.2,215.9,209.1,211.4,199.5,198.3,197.4,189.5,161.3,197.7,187.3,186,184.8,174.5,137.2,129.7 +984,134.2,235.8,219.4,217.3,216,209.2,211.5,199.6,198.4,197.4,189.6,161.4,197.8,187.3,186.1,184.9,174.7,137.4,129.7 +985,134.2,235.9,219.5,217.3,216.1,209.3,211.6,199.7,198.5,197.5,189.7,161.5,197.9,187.4,186.2,185,174.8,137.6,129.7 +986,134.2,236,219.5,217.4,216.2,209.4,211.7,199.7,198.5,197.6,189.8,161.6,198,187.5,186.3,185.1,174.9,137.7,129.7 +987,134.2,236.1,219.6,217.5,216.2,209.4,211.8,199.8,198.6,197.7,189.9,161.8,198.1,187.6,186.4,185.2,175,137.9,129.8 +988,134.2,236.2,219.7,217.6,216.3,209.5,211.9,199.9,198.7,197.8,189.9,161.9,198.1,187.7,186.5,185.3,175.1,138.1,129.8 +989,134.2,236.3,219.8,217.6,216.4,209.6,212,200,198.8,197.8,190,162,198.2,187.8,186.6,185.4,175.2,138.3,129.8 +990,134.2,236.4,219.9,217.7,216.5,209.7,212.1,200.1,198.8,197.9,190.1,162.2,198.3,187.9,186.7,185.5,175.3,138.5,129.8 +991,134.2,236.4,219.9,217.8,216.5,209.7,212.2,200.1,198.9,198,190.2,162.3,198.4,188,186.8,185.6,175.4,138.7,129.8 +992,134.3,236.5,220,217.9,216.6,209.8,212.3,200.2,199,198.1,190.3,162.4,198.5,188.1,186.9,185.7,175.5,138.8,129.8 +993,134.3,236.6,220.1,217.9,216.7,209.9,212.4,200.3,199.1,198.1,190.4,162.6,198.6,188.2,187,185.8,175.6,139,129.8 +994,134.3,236.7,220.2,218,216.8,210,212.5,200.4,199.2,198.2,190.5,162.7,198.7,188.3,187.1,185.9,175.7,139.2,129.8 +995,134.3,236.8,220.2,218.1,216.8,210,212.6,200.5,199.2,198.3,190.6,162.8,198.8,188.4,187.1,186,175.9,139.4,129.8 +996,134.3,236.9,220.3,218.2,216.9,210.1,212.7,200.5,199.3,198.4,190.7,163,198.8,188.5,187.2,186.1,176,139.6,129.9 +997,134.3,237,220.4,218.2,217,210.2,212.8,200.6,199.4,198.5,190.8,163.1,198.9,188.6,187.3,186.2,176.1,139.7,129.9 +998,134.3,237,220.5,218.3,217.1,210.3,212.8,200.7,199.5,198.5,190.9,163.2,199,188.7,187.4,186.3,176.2,139.9,129.9 +999,134.3,237.1,220.6,218.4,217.1,210.4,212.9,200.8,199.6,198.6,191,163.3,199.1,188.8,187.5,186.4,176.3,140.1,129.9 +1000,134.3,237.2,220.6,218.5,217.2,210.4,213,200.9,199.6,198.7,191.1,163.5,199.2,188.9,187.6,186.5,176.4,140.3,129.9 diff --git a/test/Data Tables/15,500 MHz - Lb(0.95)_P528.csv b/test/Data Tables/15,500 MHz - Lb(0.95)_P528.csv new file mode 100644 index 0000000..0acd4a1 --- /dev/null +++ b/test/Data Tables/15,500 MHz - Lb(0.95)_P528.csv @@ -0,0 +1,1005 @@ +15500MHz / Lb(0.95) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,116.2,123.9,123.8,123.6,123.4,0,144,143.9,143.9,143.9,143,0,150,150,150,150,149.5,143.9,0 +1,119.2,127.9,127.8,127.6,127.2,119.7,144,143.9,143.9,143.8,141.6,116.7,150,149.9,149.9,149.9,148.7,138.5,116.6 +2,123.2,132.9,132.8,132.7,132.5,128.7,144.1,144.1,144,143.9,141.7,122.9,150,149.9,149.9,149.9,148.8,138.6,122.7 +3,126.2,136.2,136.2,136.1,136.1,134,144.3,144.3,144.3,144.2,142.1,126.8,150,150,150,149.9,148.8,138.9,126.4 +4,128.5,138.7,138.7,138.7,138.6,137.3,144.7,144.6,144.6,144.6,142.5,129.6,150.1,150,150,150,148.9,139.2,129 +5,130.4,140.7,140.7,140.6,140.6,139.8,145.1,145.1,145.1,145,143.1,131.9,150.2,150.1,150.1,150.1,149,139.6,131.1 +6,131.9,142.3,142.3,142.3,142.3,141.7,145.6,145.6,145.6,145.5,143.8,133.8,150.3,150.3,150.3,150.2,149.1,140.1,132.8 +7,133.2,143.7,143.7,143.7,143.6,143.1,146.1,146.1,146.1,146.1,144.5,135.5,150.4,150.4,150.4,150.4,149.3,140.6,134.3 +8,134.4,144.9,144.9,144.9,144.9,144.5,146.7,146.7,146.7,146.6,145.2,137.1,150.6,150.6,150.6,150.6,149.5,141.1,135.7 +9,135.4,146,145.9,145.9,145.9,145.6,147.3,147.3,147.2,147.2,145.9,138.4,150.8,150.8,150.8,150.8,149.8,141.7,136.8 +10,136.3,146.9,146.9,146.9,146.9,146.5,147.9,147.9,147.8,147.8,146.6,139.7,151.1,151,151,151,150,142.3,137.9 +11,137.1,147.8,147.8,147.8,147.7,147.4,148.5,148.4,148.4,148.4,147.3,140.9,151.3,151.3,151.3,151.2,150.3,142.9,138.9 +12,137.9,148.6,148.6,148.6,148.5,148.2,149,149,149,149,148,142,151.5,151.5,151.5,151.5,150.6,143.6,139.9 +13,138.6,149.3,149.3,149.3,149.3,148.9,149.6,149.6,149.6,149.5,148.6,143,151.8,151.8,151.8,151.8,150.9,144.2,140.8 +14,139.2,150,150,150,150,149.6,150.1,150.1,150.1,150.1,149.3,144,152.1,152.1,152.1,152,151.2,144.8,141.6 +15,139.8,150.6,150.6,150.6,150.6,150.3,150.6,150.6,150.6,150.6,149.8,144.9,152.4,152.4,152.3,152.3,151.6,145.4,142.4 +16,140.4,151.2,151.2,151.2,151.2,150.9,151.1,151.1,151.1,151.1,150.4,145.8,152.7,152.6,152.6,152.6,151.9,146,143.1 +17,140.9,151.8,151.8,151.7,151.7,151.4,151.6,151.6,151.6,151.6,150.9,146.6,153,152.9,152.9,152.9,152.2,146.6,143.8 +18,141.4,152.3,152.3,152.3,152.3,152,152.1,152.1,152.1,152.1,151.5,147.4,153.3,153.3,153.2,153.2,152.6,147.2,144.5 +19,141.8,152.8,152.8,152.8,152.8,152.4,152.6,152.5,152.5,152.5,152,148.1,153.6,153.6,153.6,153.6,152.9,147.7,145.2 +20,142.3,153.3,153.3,153.3,153.2,152.9,153,153,153,152.9,152.4,148.8,153.9,153.9,153.9,153.9,153.3,148.3,145.8 +21,142.7,153.7,153.7,153.7,153.7,153.4,153.4,153.4,153.4,153.3,152.9,149.5,154.2,154.2,154.2,154.2,153.6,148.9,146.4 +22,143.1,154.2,154.1,154.1,154.1,153.8,153.7,153.7,153.7,153.7,153.3,150.1,154.6,154.6,154.6,154.5,154,149.4,147 +23,143.5,154.6,154.6,154.6,154.5,154.2,154.1,154.1,154.1,154.1,153.7,150.7,154.9,154.9,154.9,154.9,154.3,149.9,147.5 +24,143.9,155,155,155,154.9,154.6,154.5,154.5,154.5,154.5,154.1,151.3,155.2,155.2,155.2,155.2,154.7,150.5,148.1 +25,144.2,155.4,155.3,155.3,155.3,155,154.9,154.8,154.8,154.8,154.5,151.8,155.6,155.5,155.5,155.5,155,151.1,148.6 +26,144.6,155.7,155.7,155.7,155.7,155.3,155.2,155.2,155.2,155.2,154.9,152.3,155.9,155.9,155.9,155.8,155.4,151.6,149.1 +27,144.9,156.1,156.1,156.1,156,155.7,155.5,155.5,155.5,155.5,155.2,152.8,156.2,156.2,156.2,156.2,155.7,152.2,149.6 +28,145.2,156.4,156.4,156.4,156.4,156,155.9,155.9,155.9,155.9,155.6,153.3,156.5,156.5,156.5,156.5,156.1,152.7,150.1 +29,145.5,156.8,156.8,156.8,156.7,156.3,156.2,156.2,156.2,156.2,155.9,153.7,156.8,156.8,156.7,156.7,156.4,153.2,150.6 +30,145.8,157.1,157.1,157.1,157.1,156.7,156.5,156.5,156.5,156.5,156.3,154.1,157,157,157,157,156.7,153.7,151.1 +31,146.1,157.4,157.4,157.4,157.4,157,156.8,156.8,156.8,156.8,156.6,154.5,157.3,157.3,157.3,157.3,157,154.2,151.5 +32,146.4,157.7,157.7,157.7,157.7,157.2,157.1,157.1,157.1,157.1,156.9,154.9,157.5,157.5,157.5,157.5,157.3,154.7,151.9 +33,146.6,158,158,158,158,157.6,157.4,157.4,157.4,157.4,157.2,155.2,157.8,157.8,157.8,157.8,157.5,155.1,152.4 +34,146.9,158.3,158.3,158.3,158.3,157.8,157.7,157.7,157.7,157.7,157.5,155.6,158,158,158,158,157.8,155.5,152.8 +35,147.1,158.6,158.6,158.6,158.6,158.1,158,158,158,158,157.8,155.9,158.3,158.3,158.3,158.3,158,155.9,153.2 +36,147.4,158.9,158.9,158.9,158.9,158.4,158.3,158.3,158.3,158.3,158,156.2,158.5,158.5,158.5,158.5,158.3,156.3,153.6 +37,147.6,159.2,159.2,159.1,159.1,158.6,158.5,158.5,158.5,158.5,158.3,156.6,158.8,158.8,158.8,158.7,158.5,156.6,154.1 +38,147.9,159.4,159.4,159.4,159.4,158.9,158.8,158.8,158.8,158.8,158.6,156.9,159,159,159,159,158.8,157,154.4 +39,148.1,159.7,159.7,159.7,159.7,159.2,159,159,159,159,158.8,157.2,159.2,159.2,159.2,159.2,159,157.3,154.9 +40,148.3,159.9,159.9,159.9,159.9,159.4,159.3,159.3,159.3,159.3,159.1,157.5,159.4,159.4,159.4,159.4,159.2,157.7,155.3 +41,148.5,160.2,160.2,160.2,160.2,159.6,159.5,159.5,159.5,159.5,159.3,157.8,159.7,159.7,159.7,159.6,159.4,158,155.6 +42,148.7,160.4,160.4,160.4,160.4,159.9,159.8,159.8,159.8,159.8,159.6,158.1,159.9,159.9,159.9,159.9,159.7,158.3,156 +43,148.9,160.7,160.6,160.6,160.6,160.2,160,160,160,160,159.8,158.4,160.1,160.1,160.1,160.1,159.9,158.6,156.4 +44,149.1,160.9,160.9,160.9,160.9,160.4,160.2,160.2,160.2,160.2,160,158.6,160.3,160.3,160.3,160.3,160.1,158.9,156.7 +45,149.3,161.1,161.1,161.1,161.1,160.6,160.4,160.4,160.4,160.4,160.3,158.9,160.5,160.5,160.5,160.5,160.3,159.1,157.1 +46,149.5,161.3,161.3,161.3,161.3,160.8,160.7,160.7,160.7,160.6,160.5,159.2,160.7,160.7,160.7,160.7,160.5,159.4,157.4 +47,149.7,161.5,161.5,161.5,161.5,161,160.9,160.9,160.9,160.9,160.7,159.4,160.9,160.9,160.9,160.9,160.7,159.6,157.7 +48,149.9,161.8,161.8,161.8,161.7,161.2,161.1,161.1,161.1,161,160.9,159.6,161.1,161.1,161.1,161.1,160.9,159.9,158.1 +49,150.1,162,162,162,161.9,161.4,161.3,161.2,161.2,161.2,161.1,159.9,161.3,161.3,161.3,161.3,161.1,160.1,158.3 +50,150.2,162.2,162.2,162.2,162.1,161.7,161.4,161.4,161.4,161.4,161.3,160.1,161.5,161.5,161.5,161.5,161.3,160.3,158.6 +51,150.4,162.4,162.4,162.4,162.3,161.8,161.6,161.6,161.6,161.6,161.5,160.3,161.7,161.7,161.7,161.6,161.5,160.5,158.9 +52,150.6,162.6,162.6,162.6,162.5,162,161.8,161.8,161.8,161.8,161.6,160.5,161.8,161.8,161.8,161.8,161.7,160.7,159.1 +53,150.7,162.8,162.8,162.8,162.7,162.2,162,162,162,162,161.8,160.7,162,162,162,162,161.8,160.9,159.5 +54,150.9,163,163,163,162.9,162.4,162.2,162.2,162.2,162.2,162,160.9,162.2,162.2,162.2,162.2,162,161.1,159.7 +55,151.1,163.2,163.1,163.1,163.1,162.6,162.3,162.3,162.3,162.3,162.2,161.1,162.4,162.4,162.3,162.3,162.2,161.3,159.9 +56,151.2,163.3,163.3,163.3,163.3,162.8,162.5,162.5,162.5,162.5,162.4,161.3,162.5,162.5,162.5,162.5,162.4,161.5,160.2 +57,151.4,163.5,163.5,163.5,163.5,162.9,162.7,162.7,162.7,162.7,162.5,161.5,162.7,162.7,162.7,162.7,162.5,161.7,160.4 +58,151.5,163.7,163.7,163.7,163.7,163.1,162.8,162.8,162.8,162.8,162.7,161.6,162.8,162.8,162.8,162.8,162.7,161.9,160.6 +59,151.7,163.9,163.9,163.9,163.8,163.3,163,163,163,163,162.8,161.8,163,163,163,163,162.8,162.1,160.8 +60,151.8,164.1,164.1,164,164,163.5,163.2,163.2,163.2,163.2,163,162,163.1,163.1,163.1,163.1,163,162.3,161.1 +61,152,164.2,164.2,164.2,164.2,163.6,163.3,163.3,163.3,163.3,163.2,162.2,163.3,163.3,163.3,163.3,163.1,162.4,161.3 +62,152.1,164.4,164.4,164.4,164.4,163.8,163.5,163.5,163.5,163.5,163.3,162.3,163.4,163.4,163.4,163.4,163.3,162.6,161.5 +63,152.2,164.6,164.6,164.6,164.5,163.9,163.6,163.6,163.6,163.6,163.5,162.5,163.6,163.6,163.6,163.6,163.4,162.8,161.7 +64,152.4,164.7,164.7,164.7,164.7,164.1,163.8,163.8,163.8,163.8,163.6,162.6,163.7,163.7,163.7,163.7,163.6,163,161.9 +65,152.5,164.9,164.9,164.9,164.9,164.2,163.9,163.9,163.9,163.9,163.8,162.8,163.9,163.9,163.9,163.8,163.7,163.1,162.1 +66,152.6,165.1,165.1,165.1,165,164.4,164.1,164.1,164.1,164.1,163.9,163,164,164,164,164,163.9,163.3,162.3 +67,152.8,165.2,165.2,165.2,165.2,164.5,164.2,164.2,164.2,164.2,164.1,163.1,164.1,164.1,164.1,164.1,164,163.5,162.4 +68,152.9,165.4,165.4,165.4,165.3,164.7,164.4,164.4,164.4,164.4,164.2,163.3,164.3,164.3,164.3,164.3,164.2,163.6,162.6 +69,153,165.6,165.5,165.5,165.5,164.9,164.5,164.5,164.5,164.5,164.4,163.4,164.4,164.4,164.4,164.4,164.3,163.8,162.8 +70,153.2,165.7,165.7,165.7,165.7,165,164.7,164.7,164.7,164.7,164.5,163.6,164.6,164.6,164.6,164.6,164.4,163.9,162.9 +71,153.3,165.9,165.9,165.8,165.8,165.2,164.8,164.8,164.8,164.8,164.6,163.7,164.7,164.7,164.7,164.7,164.6,164,163.1 +72,153.4,166,166,166,166,165.3,165,165,165,164.9,164.8,163.9,164.8,164.8,164.8,164.8,164.7,164.2,163.2 +73,153.5,166.2,166.2,166.1,166.1,165.4,165.1,165.1,165.1,165.1,164.9,164,165,165,165,165,164.8,164.3,163.4 +74,153.6,166.3,166.3,166.3,166.3,165.6,165.2,165.2,165.2,165.2,165.1,164.1,165.1,165.1,165.1,165.1,165,164.5,163.5 +75,153.8,166.5,166.5,166.4,166.4,165.7,165.4,165.4,165.4,165.4,165.2,164.3,165.2,165.2,165.2,165.2,165.1,164.6,163.7 +76,153.9,166.6,166.6,166.6,166.5,165.8,165.5,165.5,165.5,165.5,165.3,164.4,165.4,165.4,165.4,165.4,165.2,164.7,163.8 +77,154,166.9,166.8,166.7,166.7,166,165.6,165.6,165.6,165.6,165.5,164.5,165.5,165.5,165.5,165.5,165.4,164.9,164 +78,154.1,167.1,166.9,166.9,166.8,166.1,165.8,165.8,165.8,165.8,165.6,164.7,165.6,165.6,165.6,165.6,165.5,165,164.1 +79,154.2,167.3,167.1,167,167,166.3,165.9,165.9,165.9,165.9,165.7,164.8,165.8,165.8,165.8,165.8,165.6,165.1,164.2 +80,154.3,167.6,167.2,167.2,167.1,166.4,166,166,166,166,165.9,164.9,165.9,165.9,165.9,165.9,165.8,165.3,164.4 +81,154.4,167.8,167.3,167.3,167.3,166.5,166.2,166.2,166.2,166.2,166,165.1,166,166,166,166,165.9,165.4,164.5 +82,154.5,168,167.5,167.5,167.4,166.6,166.3,166.3,166.3,166.3,166.1,165.2,166.2,166.2,166.2,166.2,166,165.6,164.6 +83,154.6,168.3,167.7,167.6,167.5,166.8,166.4,166.4,166.4,166.4,166.2,165.3,166.3,166.3,166.3,166.3,166.2,165.7,164.8 +84,154.7,168.5,168,167.7,167.7,166.9,166.6,166.6,166.6,166.6,166.4,165.4,166.4,166.4,166.4,166.4,166.3,165.9,164.9 +85,154.8,168.7,168.2,167.9,167.8,167,166.7,166.7,166.7,166.7,166.5,165.5,166.5,166.5,166.5,166.5,166.4,166,165 +86,154.9,169,168.4,168.1,168,167.2,166.8,166.8,166.8,166.8,166.6,165.6,166.6,166.6,166.6,166.6,166.5,166.1,165.2 +87,155,169.2,168.6,168.3,168.1,167.3,166.9,166.9,166.9,166.9,166.7,165.7,166.8,166.8,166.8,166.8,166.7,166.2,165.3 +88,155.1,169.4,168.8,168.5,168.2,167.4,167.1,167.1,167,167,166.9,165.8,166.9,166.9,166.9,166.9,166.8,166.4,165.4 +89,155.2,169.7,169.1,168.7,168.4,167.5,167.2,167.2,167.2,167.2,167,166,167.1,167.1,167.1,167,166.9,166.5,165.5 +90,155.3,169.9,169.3,168.9,168.5,167.6,167.3,167.3,167.3,167.3,167.1,166.1,167.2,167.2,167.2,167.2,167.1,166.7,165.6 +91,155.4,170.1,169.5,169.2,168.7,167.7,167.4,167.4,167.4,167.4,167.2,166.2,167.3,167.3,167.3,167.3,167.2,166.8,165.8 +92,155.5,170.4,169.7,169.4,168.9,167.9,167.6,167.5,167.5,167.5,167.4,166.3,167.5,167.5,167.5,167.5,167.3,166.9,165.9 +93,155.6,170.6,170,169.6,169.2,168,167.7,167.7,167.7,167.7,167.5,166.4,167.6,167.6,167.6,167.6,167.4,167,166 +94,155.7,170.9,170.2,169.8,169.4,168.1,167.8,167.8,167.8,167.8,167.6,166.5,167.7,167.7,167.7,167.7,167.5,167.1,166.1 +95,155.8,171.1,170.4,170,169.6,168.2,168,167.9,167.9,167.9,167.7,166.6,167.8,167.8,167.8,167.7,167.6,167.2,166.2 +96,155.9,171.3,170.6,170.3,169.8,168.4,168.1,168.1,168.1,168.1,167.9,166.7,167.9,167.8,167.8,167.8,167.7,167.3,166.3 +97,156,171.6,170.8,170.5,170,168.5,168.2,168.2,168.2,168.2,168,166.8,167.9,167.9,167.9,167.9,167.8,167.4,166.5 +98,156.1,171.8,171.1,170.7,170.2,168.6,168.3,168.3,168.3,168.3,168.1,166.9,168,168,168,168,167.9,167.5,166.6 +99,156.2,172,171.3,170.9,170.4,168.7,168.4,168.4,168.4,168.4,168.2,167,168.1,168.1,168.1,168.1,168,167.6,166.7 +100,156.3,172.3,171.5,171.1,170.6,168.8,168.5,168.5,168.5,168.5,168.3,167.1,168.2,168.2,168.2,168.2,168.1,167.7,166.8 +101,156.3,172.5,171.8,171.4,170.9,168.9,168.6,168.6,168.6,168.6,168.4,167.2,168.3,168.3,168.3,168.3,168.2,167.7,166.9 +102,156.4,172.8,172,171.6,171.1,169.1,168.7,168.7,168.7,168.7,168.5,167.2,168.4,168.4,168.4,168.4,168.2,167.8,167 +103,156.5,173.1,172.3,171.8,171.3,169.2,168.8,168.8,168.8,168.8,168.6,167.3,168.5,168.5,168.5,168.5,168.3,167.9,167.1 +104,156.6,173.3,172.5,172.1,171.6,169.3,168.9,168.9,168.9,168.9,168.7,167.4,168.6,168.6,168.6,168.6,168.4,168,167.2 +105,156.7,173.6,172.8,172.3,171.8,169.4,169,169,169,169,168.8,167.5,168.7,168.7,168.6,168.6,168.5,168.1,167.3 +106,156.8,173.9,173,172.6,172,169.5,169.1,169.1,169.1,169.1,168.9,167.6,168.7,168.7,168.7,168.7,168.6,168.2,167.4 +107,156.8,174.1,173.2,172.8,172.2,169.6,169.2,169.2,169.2,169.2,168.9,167.7,168.8,168.8,168.8,168.8,168.7,168.3,167.5 +108,156.9,174.3,173.5,173,172.4,169.8,169.3,169.3,169.3,169.3,169,167.8,168.9,168.9,168.9,168.9,168.8,168.3,167.5 +109,157,174.6,173.7,173.2,172.6,169.9,169.4,169.4,169.4,169.3,169.1,167.9,169,169,169,169,168.8,168.4,167.6 +110,157.1,174.8,173.9,173.4,172.8,170,169.5,169.4,169.4,169.4,169.2,168,169.1,169.1,169.1,169.1,168.9,168.5,167.7 +111,157.2,175,174.1,173.6,173,170.1,169.5,169.5,169.5,169.5,169.3,168.1,169.2,169.2,169.2,169.1,169,168.6,167.8 +112,157.2,175.3,174.3,173.8,173.2,170.3,169.6,169.6,169.6,169.6,169.4,168.2,169.2,169.2,169.2,169.2,169.1,168.6,167.9 +113,157.3,175.5,174.5,174,173.4,170.4,169.7,169.7,169.7,169.7,169.5,168.2,169.3,169.3,169.3,169.3,169.2,168.7,168 +114,157.4,175.7,174.8,174.3,173.6,170.5,169.8,169.8,169.8,169.8,169.5,168.3,169.4,169.4,169.4,169.4,169.2,168.8,168.1 +115,157.5,175.9,175,174.5,173.8,170.6,169.9,169.9,169.9,169.9,169.6,168.4,169.5,169.5,169.5,169.5,169.3,168.9,168.2 +116,157.5,176.2,175.2,174.7,174,170.7,170,170,170,169.9,169.7,168.5,169.6,169.6,169.6,169.5,169.4,169,168.3 +117,157.6,176.4,175.4,174.9,174.2,170.9,170.1,170,170,170,169.8,168.6,169.6,169.6,169.6,169.6,169.5,169,168.3 +118,157.7,176.6,175.6,175.1,174.4,171,170.1,170.1,170.1,170.1,169.9,168.7,169.7,169.7,169.7,169.7,169.5,169.1,168.4 +119,157.8,176.9,175.8,175.3,174.6,171.2,170.2,170.2,170.2,170.2,170,168.8,169.8,169.8,169.8,169.8,169.6,169.2,168.5 +120,157.8,177.1,176.1,175.5,174.8,171.3,170.3,170.3,170.3,170.3,170,168.8,169.9,169.9,169.9,169.9,169.7,169.2,168.6 +121,157.9,177.3,176.3,175.7,175,171.4,170.4,170.4,170.4,170.4,170.1,168.9,169.9,169.9,169.9,169.9,169.8,169.3,168.7 +122,158,177.5,176.5,175.9,175.2,171.5,170.5,170.5,170.5,170.4,170.2,169,170,170,170,170,169.8,169.4,168.8 +123,158.1,177.8,176.7,176.1,175.4,171.6,170.5,170.5,170.5,170.5,170.3,169.1,170.1,170.1,170.1,170.1,169.9,169.5,168.8 +124,158.1,178,176.9,176.3,175.6,171.7,170.6,170.6,170.6,170.6,170.3,169.2,170.2,170.2,170.2,170.2,170,169.5,168.9 +125,158.2,178.2,177.1,176.6,175.8,171.8,170.7,170.7,170.7,170.7,170.4,169.3,170.2,170.2,170.2,170.2,170.1,169.6,169 +126,158.3,178.5,177.4,176.8,176,171.9,170.8,170.8,170.8,170.8,170.5,169.3,170.3,170.3,170.3,170.3,170.1,169.7,169.1 +127,158.3,178.7,177.6,177,176.2,171.9,170.9,170.9,170.8,170.8,170.6,169.4,170.4,170.4,170.4,170.4,170.2,169.7,169.2 +128,158.4,178.9,177.8,177.2,176.4,172,170.9,170.9,170.9,170.9,170.6,169.5,170.5,170.5,170.5,170.4,170.3,169.8,169.3 +129,158.5,179.1,178,177.4,176.6,172.1,171,171,171,171,170.7,169.6,170.5,170.5,170.5,170.5,170.4,169.9,169.3 +130,158.5,180,178.2,177.6,176.8,172.2,171.1,171.1,171.1,171.1,170.8,169.7,170.6,170.6,170.6,170.6,170.4,169.9,169.4 +131,158.6,181.1,178.4,177.8,177.1,172.3,171.2,171.2,171.2,171.1,170.9,169.7,170.7,170.7,170.7,170.7,170.5,170,169.5 +132,158.7,182,178.7,178,177.3,172.4,171.2,171.2,171.2,171.2,170.9,169.8,170.7,170.7,170.7,170.7,170.6,170.1,169.6 +133,158.7,183.1,178.9,178.4,177.5,172.5,171.3,171.3,171.3,171.3,171,169.9,170.8,170.8,170.8,170.8,170.6,170.1,169.7 +134,158.8,184.3,179.3,178.6,177.7,172.6,171.4,171.4,171.4,171.4,171.1,170,170.9,170.9,170.9,170.9,170.7,170.2,169.8 +135,158.9,185.7,179.4,178.7,177.9,172.7,171.5,171.5,171.5,171.4,171.2,170.1,171,170.9,170.9,170.9,170.8,170.3,169.9 +136,158.9,187,179.6,179,178,172.8,171.5,171.5,171.5,171.5,171.2,170.1,171,171,171,171,170.8,170.3,169.9 +137,159,188.2,179.9,179.1,178.2,172.8,171.6,171.6,171.6,171.6,171.3,170.2,171.1,171.1,171.1,171.1,170.9,170.4,170 +138,159.1,189.5,180,179.3,178.5,172.9,171.7,171.7,171.7,171.7,171.4,170.3,171.2,171.2,171.1,171.1,171,170.5,170.1 +139,159.1,190.7,180.2,179.5,178.6,173,171.8,171.8,171.7,171.7,171.4,170.4,171.2,171.2,171.2,171.2,171,170.5,170.2 +140,159.2,192.7,180.4,179.8,178.8,173.1,171.8,171.8,171.8,171.8,171.5,170.4,171.3,171.3,171.3,171.3,171.1,170.6,170.2 +141,159.2,195,180.7,179.9,179,173.3,171.9,171.9,171.9,171.9,171.6,170.5,171.4,171.4,171.3,171.3,171.2,170.7,170.3 +142,159.3,197.4,180.8,180.1,179.2,173.4,172,172,172,172,171.7,170.6,171.4,171.4,171.4,171.4,171.2,170.7,170.4 +143,159.3,199.8,181,180.3,179.4,173.5,172,172,172,172,171.7,170.7,171.5,171.5,171.5,171.5,171.3,170.8,170.5 +144,159.4,202.2,181.3,180.6,179.6,173.7,172.1,172.1,172.1,172.1,171.8,170.8,171.6,171.5,171.5,171.5,171.4,170.8,170.6 +145,159.5,204.6,181.5,180.7,179.8,173.8,172.2,172.2,172.2,172.2,171.9,170.9,171.6,171.6,171.6,171.6,171.4,170.9,170.6 +146,159.5,206.9,181.7,181,180,173.9,172.3,172.2,172.2,172.2,171.9,171,171.7,171.7,171.7,171.7,171.5,171,170.7 +147,159.6,209.3,181.9,181.2,180.2,174.1,172.3,172.3,172.3,172.3,172,171.1,171.7,171.7,171.7,171.7,171.5,171,170.8 +148,159.6,211.7,182.6,181.4,180.4,174.2,172.4,172.4,172.4,172.4,172.1,171.1,171.8,171.8,171.8,171.8,171.6,171.1,170.9 +149,159.7,214.1,184.6,181.6,180.6,174.3,172.5,172.5,172.4,172.4,172.1,171.2,171.9,171.9,171.9,171.9,171.7,171.1,171 +150,159.7,215.3,186.7,181.8,180.8,174.4,172.5,172.5,172.5,172.5,172.2,171.2,171.9,171.9,171.9,171.9,171.7,171.2,171.1 +151,159.8,216.1,188.8,181.9,181,174.6,172.6,172.6,172.6,172.6,172.3,171.3,172,172,172,172,171.8,171.3,171.2 +152,159.9,216.9,191.2,182.2,181.2,174.7,172.7,172.7,172.7,172.6,172.3,171.3,172.1,172.1,172.1,172,171.9,171.3,171.2 +153,159.9,217.6,193.5,182.4,181.4,174.8,172.7,172.7,172.7,172.7,172.4,171.4,172.1,172.1,172.1,172.1,171.9,171.4,171.3 +154,160,218.3,195.9,182.6,181.6,175,172.8,172.8,172.8,172.8,172.4,171.5,172.2,172.2,172.2,172.2,172,171.4,171.3 +155,160,218.9,198.3,182.8,181.8,175.1,172.9,172.9,172.9,172.8,172.5,171.5,172.2,172.2,172.2,172.2,172,171.5,171.4 +156,160.1,219.6,200.7,184.6,182,175.2,172.9,172.9,172.9,172.9,172.6,171.6,172.3,172.3,172.3,172.3,172.1,171.5,171.4 +157,160.1,220.2,202.7,186.7,182.2,175.4,173,173,173,173,172.6,171.6,172.4,172.4,172.4,172.4,172.1,171.6,171.5 +158,160.2,220.8,204.5,189,182.4,175.5,173.1,173.1,173,173,172.7,171.7,172.4,172.4,172.4,172.4,172.2,171.6,171.5 +159,160.2,221.3,206.1,191.2,182.6,175.6,173.1,173.1,173.1,173.1,172.8,171.7,172.5,172.5,172.5,172.5,172.3,171.7,171.6 +160,160.3,221.9,207.6,193.5,182.8,175.8,173.2,173.2,173.2,173.2,172.8,171.8,172.5,172.5,172.5,172.5,172.3,171.8,171.7 +161,160.4,222.4,208.9,195.8,183,175.9,173.3,173.2,173.2,173.2,172.9,171.9,172.6,172.6,172.6,172.6,172.4,171.8,171.7 +162,160.4,222.9,210.1,198,183.2,176,173.3,173.3,173.3,173.3,172.9,171.9,172.7,172.7,172.7,172.6,172.4,171.9,171.8 +163,160.5,223.4,211.2,200.3,183.3,176.2,173.4,173.4,173.4,173.4,173,172,172.7,172.7,172.7,172.7,172.5,171.9,171.8 +164,160.5,223.9,212.3,202.5,183.5,176.3,173.4,173.4,173.4,173.4,173.1,172,172.8,172.8,172.8,172.8,172.6,172,171.9 +165,160.6,224.4,213.2,204.4,183.8,176.4,173.5,173.5,173.5,173.5,173.1,172.1,172.8,172.8,172.8,172.8,172.6,172,171.9 +166,160.6,224.8,214.2,206.1,185.2,176.6,173.6,173.6,173.6,173.5,173.2,172.1,172.9,172.9,172.9,172.9,172.7,172.1,172 +167,160.7,225.3,215,207.5,187.6,176.7,173.6,173.6,173.6,173.6,173.2,172.2,173,172.9,172.9,172.9,172.7,172.1,172 +168,160.7,225.7,215.9,208.9,189.9,176.8,173.7,173.7,173.7,173.7,173.3,172.2,173,173,173,173,172.8,172.2,172.1 +169,160.8,226.1,216.6,210.1,192.1,177,173.8,173.7,173.7,173.7,173.4,172.3,173.1,173.1,173.1,173.1,172.8,172.2,172.1 +170,160.8,226.5,217.4,211.3,194.3,177.1,173.8,173.8,173.8,173.8,173.4,172.3,173.1,173.1,173.1,173.1,172.9,172.3,172.2 +171,160.9,226.9,218.1,212.3,196.5,177.2,173.9,173.9,173.9,173.9,173.5,172.4,173.2,173.2,173.2,173.2,172.9,172.3,172.2 +172,160.9,227.3,218.8,213.3,198.7,177.4,173.9,173.9,173.9,173.9,173.5,172.4,173.2,173.2,173.2,173.2,173,172.4,172.3 +173,161,227.7,219.5,214.3,200.9,177.5,174,174,174,174,173.6,172.5,173.3,173.3,173.3,173.3,173.1,172.4,172.3 +174,161,228.1,220.1,215.2,203.2,177.6,174.1,174.1,174,174,173.7,172.5,173.3,173.3,173.3,173.3,173.1,172.5,172.4 +175,161.1,228.5,220.7,216,205,177.8,174.1,174.1,174.1,174.1,173.7,172.6,173.4,173.4,173.4,173.4,173.2,172.5,172.4 +176,161.1,228.8,221.3,216.8,206.7,177.9,174.2,174.2,174.2,174.2,173.8,172.6,173.5,173.5,173.4,173.4,173.2,172.6,172.5 +177,161.2,229.2,221.9,217.6,208.2,178,174.2,174.2,174.2,174.2,173.8,172.7,173.5,173.5,173.5,173.5,173.3,172.6,172.5 +178,161.2,229.5,222.4,218.3,209.5,178.2,174.3,174.3,174.3,174.3,173.9,172.7,173.6,173.6,173.6,173.5,173.3,172.7,172.6 +179,161.3,229.9,222.9,219,210.7,178.3,174.4,174.3,174.3,174.3,173.9,172.8,173.6,173.6,173.6,173.6,173.4,172.7,172.6 +180,161.3,230.2,223.5,219.7,211.9,178.5,174.4,174.4,174.4,174.4,174,172.8,173.7,173.7,173.7,173.7,173.4,172.8,172.7 +181,161.4,230.5,224,220.3,212.9,178.6,174.5,174.5,174.5,174.4,174,172.9,173.7,173.7,173.7,173.7,173.5,172.8,172.7 +182,161.4,230.9,224.5,220.9,213.9,178.7,174.5,174.5,174.5,174.5,174.1,172.9,173.8,173.8,173.8,173.8,173.5,172.9,172.8 +183,161.5,231.2,224.9,221.5,214.9,178.9,174.6,174.6,174.6,174.6,174.2,173,173.8,173.8,173.8,173.8,173.6,172.9,172.8 +184,161.5,231.5,225.4,222.1,215.8,179,174.6,174.6,174.6,174.6,174.2,173,173.9,173.9,173.9,173.9,173.6,173,172.9 +185,161.6,231.8,225.8,222.6,216.6,179.1,174.7,174.7,174.7,174.7,174.3,173.1,173.9,173.9,173.9,173.9,173.7,173,172.9 +186,161.6,232.1,226.3,223.2,217.4,179.3,174.8,174.8,174.7,174.7,174.3,173.1,174,174,174,174,173.7,173.1,173 +187,161.7,232.4,226.7,223.7,218.1,179.4,174.8,174.8,174.8,174.8,174.4,173.2,174,174,174,174,173.8,173.1,173 +188,161.7,232.7,227.1,224.2,218.9,179.5,174.9,174.9,174.9,174.8,174.4,173.2,174.1,174.1,174.1,174.1,173.8,173.2,173.1 +189,161.8,232.9,227.5,224.7,219.6,179.7,174.9,174.9,174.9,174.9,174.5,173.3,174.1,174.1,174.1,174.1,173.9,173.2,173.1 +190,161.8,233.2,227.9,225.2,220.2,179.8,175,175,175,175,174.5,173.3,174.2,174.2,174.2,174.2,173.9,173.3,173.1 +191,161.8,233.5,228.3,225.6,220.9,180,175,175,175,175,174.6,173.4,174.2,174.2,174.2,174.2,174,173.3,173.2 +192,161.9,233.8,228.7,226.1,221.5,180.1,175.1,175.1,175.1,175.1,174.6,173.4,174.3,174.3,174.3,174.3,174,173.3,173.2 +193,161.9,234,229.1,226.5,222.1,180.2,175.1,175.1,175.1,175.1,174.7,173.5,174.4,174.3,174.3,174.3,174.1,173.4,173.3 +194,162,234.3,229.4,227,222.6,180.4,175.2,175.2,175.2,175.2,174.7,173.5,174.4,174.4,174.4,174.4,174.1,173.4,173.3 +195,162,234.5,229.8,227.4,223.2,180.5,175.3,175.2,175.2,175.2,174.8,173.5,174.5,174.4,174.4,174.4,174.2,173.5,173.4 +196,162.1,234.8,230.1,227.8,223.7,180.6,175.3,175.3,175.3,175.3,174.8,173.6,174.5,174.5,174.5,174.5,174.2,173.5,173.4 +197,162.1,235,230.5,228.2,224.3,180.8,175.4,175.4,175.3,175.3,174.9,173.6,174.6,174.5,174.5,174.5,174.3,173.6,173.5 +198,162.2,235.3,230.8,228.6,224.8,180.9,175.4,175.4,175.4,175.4,174.9,173.7,174.6,174.6,174.6,174.6,174.3,173.6,173.5 +199,162.2,235.5,231.1,229,225.3,181,175.5,175.5,175.5,175.4,175,173.7,174.7,174.6,174.6,174.6,174.4,173.7,173.5 +200,162.2,235.7,231.4,229.3,225.7,181.2,175.5,175.5,175.5,175.5,175,173.8,174.7,174.7,174.7,174.7,174.4,173.7,173.6 +201,162.3,236,231.8,229.7,226.2,181.3,175.6,175.6,175.6,175.5,175.1,173.8,174.7,174.7,174.7,174.7,174.5,173.7,173.6 +202,162.3,236.2,232.1,230.1,226.6,181.5,175.6,175.6,175.6,175.6,175.1,173.9,174.8,174.8,174.8,174.8,174.5,173.8,173.7 +203,162.4,236.4,232.4,230.4,227.1,181.6,175.7,175.7,175.7,175.6,175.2,173.9,174.8,174.8,174.8,174.8,174.6,173.8,173.7 +204,162.4,236.7,232.7,230.7,227.5,181.8,175.7,175.7,175.7,175.7,175.2,173.9,174.9,174.9,174.9,174.9,174.6,173.9,173.8 +205,162.5,236.9,233,231.1,227.9,181.9,175.8,175.8,175.8,175.7,175.3,174,174.9,174.9,174.9,174.9,174.7,173.9,173.8 +206,162.5,237.1,233.2,231.4,228.3,182,175.8,175.8,175.8,175.8,175.3,174,175,175,175,175,174.7,174,173.8 +207,162.5,237.3,233.5,231.7,228.7,182.2,175.9,175.9,175.9,175.8,175.4,174.1,175,175,175,175,174.7,174,173.9 +208,162.6,237.5,233.8,232,229.1,182.3,175.9,175.9,175.9,175.9,175.4,174.1,175.1,175.1,175.1,175.1,174.8,174,173.9 +209,162.6,237.7,234.1,232.4,229.5,182.4,176,176,176,175.9,175.5,174.2,175.1,175.1,175.1,175.1,174.8,174.1,174 +210,162.7,237.9,234.3,232.7,229.9,182.6,176,176,176,176,175.5,174.2,175.2,175.2,175.2,175.2,174.9,174.1,174 +211,162.7,238.1,234.6,233,230.2,182.7,176.1,176.1,176.1,176,175.6,174.2,175.2,175.2,175.2,175.2,174.9,174.2,174.1 +212,162.8,238.3,234.9,233.2,230.6,182.9,176.1,176.1,176.1,176.1,175.6,174.3,175.3,175.3,175.3,175.3,175,174.2,174.1 +213,162.8,238.5,235.1,233.5,230.9,183,176.2,176.2,176.2,176.1,175.7,174.3,175.3,175.3,175.3,175.3,175,174.2,174.1 +214,162.8,238.7,235.4,233.8,231.3,183.1,176.2,176.2,176.2,176.2,175.7,174.4,175.4,175.4,175.4,175.3,175.1,174.3,174.2 +215,162.9,238.9,235.6,234.1,231.6,183.3,176.3,176.3,176.3,176.2,175.8,174.4,175.4,175.4,175.4,175.4,175.1,174.3,174.2 +216,162.9,239.1,235.9,234.4,231.9,183.4,176.3,176.3,176.3,176.3,175.8,174.5,175.5,175.5,175.5,175.4,175.2,174.4,174.3 +217,163,239.3,236.1,234.6,232.3,183.6,176.4,176.4,176.4,176.3,175.9,174.5,175.5,175.5,175.5,175.5,175.2,174.4,174.3 +218,163,239.5,236.3,234.9,232.6,183.7,176.4,176.4,176.4,176.4,175.9,174.5,175.6,175.6,175.5,175.5,175.2,174.4,174.3 +219,163,239.6,236.6,235.2,232.9,183.9,176.5,176.5,176.5,176.4,176,174.6,175.6,175.6,175.6,175.6,175.3,174.5,174.4 +220,163.1,239.8,236.8,235.4,233.2,184,176.5,176.5,176.5,176.5,176,174.6,175.6,175.6,175.6,175.6,175.3,174.5,174.4 +221,163.1,240,237,235.7,233.5,184.1,176.6,176.6,176.6,176.5,176,174.7,175.7,175.7,175.7,175.7,175.4,174.6,174.5 +222,163.2,240.2,237.2,235.9,233.8,184.3,176.6,176.6,176.6,176.6,176.1,174.7,175.7,175.7,175.7,175.7,175.4,174.6,174.5 +223,163.2,240.3,237.5,236.2,234.1,184.4,176.7,176.7,176.7,176.6,176.1,174.7,175.8,175.8,175.8,175.8,175.5,174.6,174.5 +224,163.2,240.5,237.7,236.4,234.3,184.5,176.7,176.7,176.7,176.7,176.2,174.8,175.8,175.8,175.8,175.8,175.5,174.7,174.6 +225,163.3,240.7,237.9,236.6,234.6,184.7,176.8,176.8,176.8,176.7,176.2,174.8,175.9,175.9,175.9,175.9,175.6,174.7,174.6 +226,163.3,240.9,238.1,236.9,234.9,184.8,176.8,176.8,176.8,176.8,176.3,174.9,175.9,175.9,175.9,175.9,175.6,174.8,174.6 +227,163.3,241,238.3,237.1,235.2,185,176.9,176.9,176.9,176.8,176.3,174.9,176,176,176,175.9,175.6,174.8,174.7 +228,163.4,241.2,238.5,237.3,235.4,185.1,176.9,176.9,176.9,176.9,176.4,174.9,176,176,176,176,175.7,174.8,174.7 +229,163.4,241.4,238.7,237.5,235.7,185.3,177,177,177,176.9,176.4,175,176.1,176,176,176,175.7,174.9,174.8 +230,163.5,241.5,238.9,237.7,235.9,185.4,177,177,177,177,176.5,175,176.1,176.1,176.1,176.1,175.8,174.9,174.8 +231,163.5,241.7,239.1,238,236.2,185.5,177.1,177.1,177.1,177,176.5,175,176.1,176.1,176.1,176.1,175.8,175,174.8 +232,163.5,241.8,239.3,238.2,236.4,185.7,177.1,177.1,177.1,177.1,176.6,175.1,176.2,176.2,176.2,176.2,175.8,175,174.9 +233,163.6,242,239.5,238.4,236.7,185.8,177.2,177.2,177.2,177.1,176.6,175.1,176.2,176.2,176.2,176.2,175.9,175,174.9 +234,163.6,242.2,239.7,238.6,236.9,186,177.3,177.2,177.2,177.2,176.7,175.2,176.3,176.3,176.3,176.2,175.9,175.1,174.9 +235,163.6,242.3,239.9,238.8,237.1,186.1,177.4,177.3,177.3,177.2,176.7,175.2,176.3,176.3,176.3,176.3,176,175.1,175 +236,163.7,242.5,240,239,237.4,186.3,177.5,177.3,177.3,177.3,176.7,175.2,176.4,176.4,176.3,176.3,176,175.1,175 +237,163.7,242.6,240.2,239.2,237.6,186.4,177.6,177.4,177.4,177.3,176.8,175.3,176.4,176.4,176.4,176.4,176.1,175.2,175.1 +238,163.8,242.8,240.4,239.4,237.8,186.5,177.7,177.5,177.4,177.4,176.8,175.3,176.4,176.4,176.4,176.4,176.1,175.2,175.1 +239,163.8,242.9,240.6,239.6,238,186.7,177.8,177.6,177.5,177.4,176.9,175.3,176.5,176.5,176.5,176.5,176.1,175.2,175.1 +240,163.8,243.1,240.8,239.8,238.3,186.8,177.9,177.7,177.6,177.5,176.9,175.4,176.5,176.5,176.5,176.5,176.2,175.3,175.2 +241,163.9,243.2,240.9,240,238.5,187,178,177.8,177.7,177.6,177,175.4,176.6,176.6,176.6,176.5,176.2,175.3,175.2 +242,163.9,243.4,241.1,240.2,238.7,187.1,178.1,177.9,177.8,177.6,177,175.5,176.6,176.6,176.6,176.6,176.3,175.4,175.2 +243,163.9,243.5,241.3,240.3,238.9,187.3,178.2,178,177.9,177.7,177.1,175.5,176.7,176.6,176.6,176.6,176.3,175.4,175.3 +244,164,243.7,241.4,240.5,239.1,187.4,178.3,178.1,178,177.8,177.1,175.5,176.7,176.7,176.7,176.7,176.3,175.4,175.3 +245,164,243.8,241.6,240.7,239.3,187.5,178.4,178.2,178.1,177.9,177.2,175.6,176.7,176.7,176.7,176.7,176.4,175.5,175.3 +246,164,243.9,241.8,240.9,239.5,187.7,178.5,178.3,178.2,178,177.2,175.6,176.8,176.8,176.8,176.8,176.4,175.5,175.4 +247,164.1,244.1,241.9,241.1,239.7,187.8,178.6,178.4,178.2,178.1,177.2,175.6,176.8,176.8,176.8,176.8,176.5,175.5,175.4 +248,164.1,244.2,242.1,241.2,239.9,188,178.7,178.5,178.3,178.2,177.3,175.7,176.9,176.9,176.9,176.8,176.5,175.6,175.4 +249,164.2,244.4,242.3,241.4,240.1,188.1,178.8,178.5,178.4,178.3,177.3,175.7,176.9,176.9,176.9,176.9,176.5,175.6,175.5 +250,164.2,244.5,242.4,241.6,240.3,188.2,178.8,178.6,178.5,178.3,177.4,175.7,176.9,176.9,176.9,176.9,176.6,175.6,175.5 +251,164.2,244.7,242.6,241.7,240.5,188.4,178.9,178.7,178.6,178.4,177.4,175.8,177,177,177,177,176.6,175.7,175.5 +252,164.3,244.8,242.8,241.9,240.6,188.5,179,178.8,178.7,178.5,177.5,175.8,177,177,177,177,176.7,175.7,175.6 +253,164.3,244.9,242.9,242.1,240.8,188.7,179.1,178.9,178.8,178.6,177.5,175.9,177.1,177.1,177.1,177,176.7,175.7,175.6 +254,164.3,245.1,243.1,242.2,241,188.8,179.2,179,178.9,178.7,177.6,175.9,177.1,177.1,177.1,177.1,176.7,175.8,175.7 +255,164.4,245.2,243.2,242.4,241.2,189,179.3,179.1,179,178.8,177.6,175.9,177.2,177.1,177.1,177.1,176.8,175.8,175.7 +256,164.4,245.4,243.4,242.6,241.4,189.1,179.4,179.2,179,178.9,177.6,176,177.2,177.2,177.2,177.2,176.8,175.8,175.7 +257,164.4,245.5,243.5,242.7,241.5,189.2,179.5,179.3,179.1,178.9,177.7,176,177.2,177.2,177.2,177.2,176.9,175.9,175.8 +258,164.5,245.6,243.7,242.9,241.7,189.4,179.6,179.4,179.2,179,177.7,176,177.3,177.3,177.3,177.2,176.9,175.9,175.8 +259,164.5,245.8,243.8,243.1,241.9,189.5,179.7,179.4,179.3,179.1,177.8,176.1,177.3,177.3,177.3,177.3,176.9,176,175.8 +260,164.5,245.9,244,243.2,242.1,189.7,179.8,179.5,179.4,179.2,177.8,176.1,177.4,177.3,177.3,177.3,177,176,175.9 +261,164.6,246.1,244.1,243.4,242.2,189.8,179.9,179.6,179.5,179.3,177.9,176.1,177.4,177.4,177.4,177.4,177,176,175.9 +262,164.6,246.2,244.3,243.5,242.4,190,179.9,179.7,179.6,179.4,177.9,176.2,177.4,177.4,177.4,177.4,177,176.1,175.9 +263,164.6,246.3,244.4,243.7,242.6,190.1,180,179.8,179.6,179.4,177.9,176.2,177.5,177.5,177.5,177.4,177.1,176.1,176 +264,164.7,246.5,244.6,243.8,242.7,190.2,180.1,179.9,179.7,179.5,178,176.2,177.5,177.5,177.5,177.5,177.1,176.1,176 +265,164.7,246.6,244.7,244,242.9,190.4,180.2,180,179.8,179.6,178,176.3,177.6,177.5,177.5,177.5,177.2,176.2,176 +266,164.7,246.7,244.9,244.1,243.1,190.5,180.3,180.1,179.9,179.7,178.1,176.3,177.6,177.6,177.6,177.6,177.2,176.2,176 +267,164.8,246.9,245,244.3,243.2,190.7,180.4,180.1,180,179.8,178.1,176.3,177.6,177.6,177.6,177.6,177.2,176.2,176.1 +268,164.8,247,245.2,244.4,243.4,193.4,180.5,180.2,180.1,179.9,178.2,176.4,177.7,177.7,177.7,177.6,177.3,176.2,176.1 +269,164.8,247.1,245.3,244.6,243.5,198.7,180.6,180.3,180.2,180,178.2,176.4,177.7,177.7,177.7,177.7,177.3,176.3,176.1 +270,164.9,247.3,245.5,244.7,243.7,200,180.7,180.4,180.3,180,178.2,176.4,177.7,177.7,177.7,177.7,177.3,176.3,176.2 +271,164.9,247.4,245.6,244.9,243.9,201.2,180.8,180.5,180.3,180.1,178.3,176.5,177.8,177.8,177.8,177.8,177.4,176.3,176.2 +272,164.9,247.5,245.8,245,244,202.5,180.8,180.6,180.4,180.2,178.3,176.5,177.8,177.8,177.8,177.8,177.4,176.4,176.2 +273,165,247.7,245.9,245.2,244.2,203.8,180.9,180.7,180.5,180.3,178.4,176.5,177.9,177.9,177.9,177.8,177.5,176.4,176.3 +274,165,247.8,246,245.3,244.3,205.1,181,180.8,180.6,180.4,178.4,176.6,177.9,177.9,177.9,177.9,177.5,176.4,176.3 +275,165,247.9,246.2,245.5,244.5,206.3,181.1,180.8,180.7,180.5,178.5,176.6,177.9,177.9,177.9,177.9,177.5,176.5,176.3 +276,165,248.1,246.3,245.6,244.6,208.4,181.2,180.9,180.8,180.5,178.5,176.6,178,178,178,178,177.6,176.5,176.4 +277,165.1,248.2,246.5,245.8,244.8,210.2,181.3,181,180.9,180.6,178.5,176.7,178,178,178,178,177.6,176.5,176.4 +278,165.1,248.3,246.6,245.9,244.9,211.8,181.4,181.1,180.9,180.7,178.6,176.7,178.1,178.1,178,178,177.6,176.6,176.4 +279,165.1,248.5,246.8,246.1,245.1,213.2,181.5,181.2,181,180.8,178.6,176.7,178.1,178.1,178.1,178.1,177.7,176.6,176.5 +280,165.2,248.6,246.9,246.2,245.2,214.5,181.6,181.3,181.1,180.9,178.7,176.8,178.1,178.1,178.1,178.1,177.7,176.6,176.5 +281,165.2,248.7,247,246.3,245.4,215.7,181.6,181.4,181.2,181,178.7,176.8,178.2,178.2,178.2,178.1,177.7,176.7,176.5 +282,165.2,248.9,247.2,246.5,245.5,216.8,181.7,181.5,181.3,181,178.8,176.8,178.2,178.2,178.2,178.2,177.8,176.7,176.6 +283,165.3,249,247.3,246.6,245.7,217.9,181.8,181.5,181.4,181.1,178.9,176.9,178.2,178.2,178.2,178.2,177.8,176.7,176.6 +284,165.3,249.1,247.5,246.8,245.8,218.8,181.9,181.6,181.5,181.2,178.9,176.9,178.3,178.3,178.3,178.3,177.9,176.8,176.6 +285,165.3,249.3,247.6,246.9,246,219.8,182,181.7,181.5,181.3,179,176.9,178.3,178.3,178.3,178.3,177.9,176.8,176.6 +286,165.4,249.4,247.7,247.1,246.1,220.6,182.1,181.8,181.6,181.4,179.1,177,178.4,178.4,178.3,178.3,177.9,176.8,176.7 +287,165.4,249.5,247.9,247.2,246.3,221.4,182.2,181.9,181.7,181.5,179.1,177,178.4,178.4,178.4,178.4,178,176.8,176.7 +288,165.4,249.7,248,247.3,246.4,222.2,182.3,182,181.8,181.6,179.2,177,178.4,178.4,178.4,178.4,178,176.9,176.7 +289,165.4,249.8,248.2,247.5,246.5,223,182.4,182.1,181.9,181.6,179.3,177,178.5,178.5,178.5,178.4,178,176.9,176.8 +290,165.5,249.9,248.3,247.6,246.7,223.7,182.5,182.2,182,181.7,179.3,177.1,178.5,178.5,178.5,178.5,178.1,176.9,176.8 +291,165.5,250.1,248.4,247.8,246.8,224.3,182.5,182.2,182.1,181.8,179.4,177.1,178.5,178.5,178.5,178.5,178.1,177,176.8 +292,165.5,250.2,248.6,247.9,247,225,182.6,182.3,182.1,181.9,179.5,177.1,178.6,178.6,178.6,178.6,178.1,177,176.9 +293,165.6,250.3,248.7,248,247.1,225.6,182.7,182.4,182.2,182,179.5,177.2,178.6,178.6,178.6,178.6,178.2,177,176.9 +294,165.6,250.4,248.8,248.2,247.3,226.2,182.8,182.5,182.3,182.1,179.6,177.2,178.7,178.6,178.6,178.6,178.2,177.1,176.9 +295,165.6,250.6,249,248.3,247.4,226.8,182.9,182.6,182.4,182.1,179.7,177.2,178.7,178.7,178.7,178.7,178.2,177.1,176.9 +296,165.7,250.7,249.1,248.5,247.5,227.4,183,182.7,182.5,182.2,179.7,177.3,178.7,178.7,178.7,178.7,178.3,177.1,177 +297,165.7,250.8,249.3,248.6,247.7,227.9,183.1,182.8,182.6,182.3,179.8,177.3,178.8,178.8,178.8,178.7,178.3,177.1,177 +298,165.7,251,249.4,248.7,247.8,228.4,183.2,182.9,182.7,182.4,179.9,177.3,178.8,178.8,178.8,178.8,178.3,177.2,177 +299,165.7,251.1,249.5,248.9,248,228.9,183.3,182.9,182.8,182.5,179.9,177.4,178.8,178.8,178.8,178.8,178.4,177.2,177.1 +300,165.8,251.2,249.7,249,248.1,229.4,183.4,183,182.8,182.6,180,177.4,178.9,178.9,178.9,178.8,178.4,177.2,177.1 +301,165.8,251.4,249.8,249.1,248.2,229.9,183.4,183.1,182.9,182.7,180.1,177.4,178.9,178.9,178.9,178.9,178.4,177.3,177.1 +302,165.8,251.5,249.9,249.3,248.4,230.4,183.5,183.2,183,182.7,180.1,177.4,178.9,178.9,178.9,178.9,178.5,177.3,177.1 +303,165.9,251.6,250.1,249.4,248.5,230.8,183.6,183.3,183.1,182.8,180.2,177.5,179,179,179,179,178.5,177.3,177.2 +304,165.9,251.7,250.2,249.6,248.7,231.3,183.7,183.4,183.2,182.9,180.3,177.5,179,179,179,179,178.5,177.4,177.2 +305,165.9,251.9,250.3,249.7,248.8,231.7,183.8,183.5,183.3,183,180.3,177.5,179.1,179,179,179,178.6,177.4,177.2 +306,165.9,252,250.5,249.8,248.9,232.1,183.9,183.6,183.4,183.1,180.4,177.6,179.1,179.1,179.1,179.1,178.6,177.4,177.3 +307,166,252.1,250.6,250,249.1,232.5,184,183.7,183.5,183.2,180.5,177.6,179.1,179.1,179.1,179.1,178.6,177.4,177.3 +308,166,252.3,250.7,250.1,249.2,232.9,184.1,183.7,183.5,183.3,180.5,177.6,179.2,179.2,179.1,179.1,178.7,177.5,177.3 +309,166,252.4,250.9,250.2,249.3,233.3,184.2,183.8,183.6,183.3,180.6,177.6,179.2,179.2,179.2,179.2,178.7,177.5,177.3 +310,166.1,252.5,251,250.4,249.5,233.7,184.3,183.9,183.7,183.4,180.7,177.7,179.2,179.2,179.2,179.2,178.7,177.5,177.4 +311,166.1,252.7,251.1,250.5,249.6,234.1,184.4,184,183.8,183.5,180.7,177.7,179.3,179.3,179.2,179.2,178.8,177.6,177.4 +312,166.1,252.8,251.3,250.6,249.8,234.4,184.4,184.1,183.9,183.6,180.8,177.7,179.3,179.3,179.3,179.3,178.8,177.6,177.4 +313,166.1,252.9,251.4,250.8,249.9,234.8,184.5,184.2,184,183.7,180.9,177.8,179.3,179.3,179.3,179.3,178.8,177.6,177.4 +314,166.2,253,251.5,250.9,250,235.1,184.6,184.3,184.1,183.8,180.9,177.8,179.4,179.4,179.4,179.3,178.9,177.6,177.5 +315,166.2,253.2,251.7,251.1,250.2,235.5,184.7,184.4,184.2,183.9,181,177.8,179.4,179.4,179.4,179.4,178.9,177.7,177.5 +316,166.2,253.3,251.8,251.2,250.3,235.8,184.8,184.5,184.2,183.9,181.1,177.8,179.4,179.4,179.4,179.4,178.9,177.7,177.5 +317,166.2,253.4,251.9,251.3,250.4,236.1,184.9,184.5,184.3,184,181.1,177.9,179.5,179.5,179.5,179.4,179,177.7,177.6 +318,166.3,253.5,252.1,251.5,250.6,236.5,185,184.6,184.4,184.1,181.2,177.9,179.5,179.5,179.5,179.5,179,177.7,177.6 +319,166.3,253.7,252.2,251.6,250.7,236.8,185.1,184.7,184.5,184.2,181.3,177.9,179.5,179.5,179.5,179.5,179,177.8,177.6 +320,166.3,253.8,252.3,251.7,250.8,237.1,185.2,184.8,184.6,184.3,181.3,178,179.6,179.6,179.6,179.5,179.1,177.8,177.6 +321,166.4,253.9,252.5,251.9,251,237.4,185.3,184.9,184.7,184.4,181.4,178,179.6,179.6,179.6,179.6,179.1,177.8,177.7 +322,166.4,254,252.6,252,251.1,237.7,185.4,185,184.8,184.5,181.5,178,179.6,179.6,179.6,179.6,179.1,177.9,177.7 +323,166.4,254.2,252.7,252.1,251.3,238,185.4,185.1,184.9,184.6,181.6,178,179.7,179.7,179.7,179.6,179.1,177.9,177.7 +324,166.4,254.3,252.9,252.3,251.4,238.3,185.5,185.2,184.9,184.6,181.6,178.1,179.7,179.7,179.7,179.7,179.2,177.9,177.7 +325,166.5,254.4,253,252.4,251.5,238.5,185.6,185.3,185,184.7,181.7,178.1,179.7,179.7,179.7,179.7,179.2,177.9,177.8 +326,166.5,254.6,253.1,252.5,251.7,238.8,185.7,185.3,185.1,184.8,181.8,178.1,179.8,179.8,179.8,179.7,179.2,178,177.8 +327,166.5,254.7,253.3,252.7,251.8,239.1,185.8,185.4,185.2,184.9,181.8,178.2,179.8,179.8,179.8,179.8,179.3,178,177.8 +328,166.5,254.8,253.4,252.8,251.9,239.4,185.9,185.5,185.3,185,181.9,178.2,179.8,179.8,179.8,179.8,179.3,178,177.9 +329,166.6,254.9,253.5,252.9,252.1,239.6,186,185.6,185.4,185.1,182,178.2,179.9,179.9,179.9,179.8,179.3,178,177.9 +330,166.6,255.1,253.7,253,252.2,239.9,186.1,185.7,185.5,185.2,182,178.2,179.9,179.9,179.9,179.9,179.4,178.1,177.9 +331,166.6,255.2,253.8,253.2,252.3,240.1,186.2,185.8,185.6,185.2,182.1,178.3,179.9,179.9,179.9,179.9,179.4,178.1,177.9 +332,166.7,255.3,253.9,253.3,252.5,240.4,186.3,185.9,185.7,185.3,182.2,178.3,180,180,179.9,179.9,179.4,178.1,178 +333,166.7,255.4,254,253.4,252.6,240.6,186.4,186,185.7,185.4,182.2,178.3,180,180,180,180,179.4,178.2,178 +334,166.7,255.5,254.2,253.6,252.7,240.9,186.5,186.1,185.8,185.5,182.3,178.4,180,180,180,180,179.5,178.2,178 +335,166.7,255.7,254.3,253.7,252.9,241.1,186.6,186.2,185.9,185.6,182.4,178.4,180.1,180.1,180,180,179.5,178.2,178 +336,166.8,255.8,254.4,253.8,253,241.3,186.6,186.3,186,185.7,182.4,178.4,180.1,180.1,180.1,180.1,179.5,178.2,178.1 +337,166.8,255.9,254.6,254,253.1,241.6,186.7,186.3,186.1,185.8,182.5,178.4,180.1,180.1,180.1,180.1,179.6,178.3,178.1 +338,166.8,256,254.7,254.1,253.3,241.8,186.8,186.4,186.2,185.9,182.6,178.5,180.2,180.1,180.1,180.1,179.6,178.3,178.1 +339,166.8,256.2,254.8,254.2,253.4,242,186.9,186.5,186.3,186,182.7,178.5,180.2,180.2,180.2,180.2,179.6,178.3,178.1 +340,166.9,256.3,254.9,254.4,253.5,242.2,187,186.6,186.4,186,182.7,178.5,180.2,180.2,180.2,180.2,179.7,178.3,178.2 +341,166.9,256.4,255.1,254.5,253.6,242.4,187.1,186.7,186.5,186.1,182.8,178.5,180.2,180.2,180.2,180.2,179.7,178.4,178.2 +342,166.9,256.5,255.2,254.6,253.8,242.6,187.2,186.8,186.6,186.2,182.9,178.6,180.3,180.3,180.3,180.2,179.7,178.4,178.2 +343,166.9,256.6,255.3,254.7,253.9,242.9,187.3,186.9,186.6,186.3,182.9,178.6,180.3,180.3,180.3,180.3,179.7,178.4,178.2 +344,167,256.8,255.5,254.9,254,243.1,187.4,187,186.7,186.4,183,178.6,180.3,180.3,180.3,180.3,179.8,178.4,178.3 +345,167,256.9,255.6,255,254.2,243.3,187.5,187.1,186.8,186.5,183.1,178.7,180.4,180.4,180.4,180.3,179.8,178.5,178.3 +346,167,257,255.7,255.1,254.3,243.5,187.6,187.2,186.9,186.6,183.1,178.7,180.4,180.4,180.4,180.4,179.8,178.5,178.3 +347,167,257.1,255.8,255.3,254.4,243.7,187.7,187.3,187,186.7,183.2,178.7,180.4,180.4,180.4,180.4,179.9,178.5,178.3 +348,167.1,257.3,256,255.4,254.6,243.9,187.8,187.3,187.1,186.7,183.3,178.7,180.5,180.5,180.5,180.4,179.9,178.5,178.4 +349,167.1,257.4,256.1,255.5,254.7,244.1,187.9,187.4,187.2,186.8,183.4,178.8,180.5,180.5,180.5,180.5,179.9,178.6,178.4 +350,167.1,257.5,256.2,255.6,254.8,244.2,187.9,187.5,187.3,186.9,183.4,178.8,180.5,180.5,180.5,180.5,180,178.6,178.4 +351,167.1,257.6,256.3,255.8,255,244.4,188,187.6,187.4,187,183.5,178.8,180.6,180.6,180.6,180.5,180,178.6,178.4 +352,167.2,257.7,256.5,255.9,255.1,244.6,188.1,187.7,187.5,187.1,183.6,178.8,180.6,180.6,180.6,180.6,180,178.6,178.5 +353,167.2,257.9,256.6,256,255.2,244.8,188.2,187.8,187.6,187.2,183.6,178.9,180.6,180.6,180.6,180.6,180.1,178.7,178.5 +354,167.2,258,256.7,256.1,255.3,245,188.3,187.9,187.6,187.3,183.7,178.9,180.7,180.7,180.7,180.6,180.1,178.7,178.5 +355,167.2,258.1,256.8,256.3,255.5,245.2,188.4,188,187.7,187.4,183.8,178.9,180.7,180.7,180.7,180.7,180.1,178.7,178.5 +356,167.3,258.2,257,256.4,255.6,245.3,188.5,188.1,187.8,187.5,183.8,178.9,180.8,180.7,180.7,180.7,180.2,178.7,178.6 +357,167.3,258.3,257.1,256.5,255.7,245.5,188.6,188.2,187.9,187.6,183.9,179,180.9,180.8,180.8,180.7,180.2,178.8,178.6 +358,167.3,258.4,257.2,256.6,255.8,245.7,188.7,188.3,188,187.6,184,179,181,180.9,180.8,180.8,180.2,178.8,178.6 +359,167.3,258.6,257.3,256.8,256,245.9,188.8,188.4,188.1,187.7,184.1,179,181.1,181,180.9,180.8,180.2,178.8,178.6 +360,167.4,258.7,257.5,256.9,256.1,246,188.9,188.5,188.2,187.8,184.1,179,181.3,181.1,181.1,180.9,180.3,178.8,178.6 +361,167.4,258.8,257.6,257,256.2,246.2,189,188.5,188.3,187.9,184.2,179.1,181.4,181.2,181.2,181,180.3,178.9,178.7 +362,167.4,258.9,257.7,257.1,256.4,246.4,189.1,188.6,188.4,188,184.3,179.1,181.5,181.3,181.3,181.1,180.3,178.9,178.7 +363,167.4,259,257.8,257.3,256.5,246.5,189.2,188.7,188.5,188.1,184.3,179.1,181.6,181.4,181.3,181.2,180.4,178.9,178.7 +364,167.4,259.2,257.9,257.4,256.6,246.7,189.3,188.8,188.6,188.2,184.4,179.1,181.7,181.5,181.4,181.3,180.4,178.9,178.7 +365,167.5,259.3,258.1,257.5,256.7,246.9,189.4,188.9,188.7,188.3,184.5,179.2,181.8,181.6,181.5,181.4,180.4,179,178.8 +366,167.5,259.4,258.2,257.6,256.9,247,189.4,189,188.7,188.4,184.6,179.2,181.9,181.7,181.6,181.5,180.5,179,178.8 +367,167.5,259.5,258.3,257.8,257,247.2,189.5,189.1,188.8,188.5,184.6,179.2,182,181.8,181.7,181.6,180.5,179,178.8 +368,167.5,259.6,258.4,257.9,257.1,247.3,189.6,189.2,188.9,188.6,184.7,179.2,182.1,181.9,181.8,181.7,180.5,179,178.8 +369,167.6,259.7,258.5,258,257.2,247.5,189.7,189.3,189,188.6,184.8,179.3,182.1,182,181.9,181.8,180.6,179.1,178.9 +370,167.6,259.9,258.7,258.1,257.4,247.7,189.8,189.4,189.1,188.7,184.9,179.3,182.2,182.1,182,181.9,180.6,179.1,178.9 +371,167.6,260,258.8,258.2,257.5,247.8,189.9,189.5,189.2,188.8,184.9,179.3,182.3,182.2,182.1,181.9,180.6,179.1,178.9 +372,167.6,260.1,258.9,258.4,257.6,248,190,189.6,189.3,188.9,185,179.3,182.4,182.2,182.2,182,180.6,179.1,178.9 +373,167.7,260.2,259,258.5,257.7,248.1,190.1,189.7,189.4,189,185.1,179.4,182.5,182.3,182.2,182.1,180.7,179.2,179 +374,167.7,260.3,259.1,258.6,257.9,248.3,190.2,189.8,189.5,189.1,185.1,179.4,182.6,182.4,182.3,182.2,180.7,179.2,179 +375,167.7,260.4,259.3,258.7,258,248.4,190.3,189.9,189.6,189.2,185.2,179.4,182.7,182.5,182.4,182.3,180.8,179.2,179 +376,167.7,260.5,259.4,258.9,258.1,248.6,190.4,189.9,189.7,189.3,185.3,179.4,182.8,182.6,182.5,182.3,180.8,179.2,179 +377,167.8,260.7,259.5,259,258.2,248.7,190.5,190,189.8,189.4,185.4,179.5,182.8,182.7,182.6,182.4,180.9,179.3,179 +378,167.8,260.8,259.6,259.1,258.3,248.9,190.6,190.1,189.9,189.5,185.4,179.5,182.9,182.7,182.6,182.5,180.9,179.3,179.1 +379,167.8,260.9,259.7,259.2,258.5,249,190.7,190.2,190,189.6,185.5,179.5,183,182.8,182.7,182.6,181,179.3,179.1 +380,167.8,261,259.9,259.3,258.6,249.2,190.8,190.3,190,189.7,185.6,179.5,183.1,182.9,182.8,182.6,181,179.3,179.1 +381,167.8,261.1,260,259.5,258.7,249.3,190.9,190.4,190.1,189.7,185.6,179.6,183.2,183,182.9,182.7,181.1,179.3,179.1 +382,167.9,261.2,260.1,259.6,258.8,249.5,191,190.5,190.2,189.8,185.7,179.6,183.2,183.1,182.9,182.8,181.1,179.4,179.2 +383,167.9,261.3,260.2,259.7,259,249.6,191.1,190.6,190.3,189.9,185.8,179.6,183.3,183.1,183,182.9,181.2,179.4,179.2 +384,167.9,261.5,260.3,259.8,259.1,249.8,191.2,190.7,190.4,190,185.9,179.6,183.4,183.2,183.1,182.9,181.3,179.4,179.2 +385,167.9,261.6,260.5,259.9,259.2,249.9,191.3,190.8,190.5,190.1,185.9,179.7,183.5,183.3,183.2,183,181.3,179.4,179.2 +386,168,261.7,260.6,260.1,259.3,250,191.3,190.9,190.6,190.2,186.1,179.7,183.6,183.4,183.2,183.1,181.4,179.5,179.2 +387,168,261.8,260.7,260.2,259.4,250.2,191.4,191,190.7,190.3,186.2,179.7,183.6,183.4,183.3,183.2,181.4,179.5,179.3 +388,168,261.9,260.8,260.3,259.6,250.3,191.5,191.1,190.8,190.4,186.2,179.7,183.7,183.5,183.4,183.2,181.5,179.5,179.3 +389,168,262,260.9,260.4,259.7,250.5,191.6,191.2,190.9,190.5,186.3,179.8,183.8,183.6,183.5,183.3,181.5,179.5,179.3 +390,168,262.1,261,260.5,259.8,250.6,191.7,191.3,191,190.6,186.4,179.8,183.9,183.7,183.5,183.4,181.6,179.6,179.3 +391,168.1,262.3,261.2,260.6,259.9,250.8,191.8,191.4,191.1,190.7,186.4,179.8,183.9,183.7,183.6,183.4,181.6,179.6,179.4 +392,168.1,262.4,261.3,260.8,260,250.9,191.9,191.5,191.2,190.8,186.5,179.8,184,183.8,183.7,183.5,181.7,179.6,179.4 +393,168.1,262.5,261.4,260.9,260.2,251,192,191.6,191.3,190.9,186.6,179.9,184.1,183.9,183.8,183.6,181.7,179.6,179.4 +394,168.1,262.6,261.5,261,260.3,251.2,192.1,191.7,191.4,191,186.6,179.9,184.2,183.9,183.8,183.6,181.8,179.6,179.4 +395,168.2,262.7,261.6,261.1,260.4,251.3,192.2,191.8,191.5,191.1,186.7,179.9,184.2,184,183.9,183.7,181.9,179.7,179.4 +396,168.2,262.8,261.7,261.2,260.5,251.5,192.3,191.8,191.6,191.2,186.7,179.9,184.3,184.1,184,183.8,181.9,179.7,179.5 +397,168.2,262.9,261.9,261.3,260.6,251.6,192.4,191.9,191.7,191.2,186.8,180,184.4,184.2,184,183.9,182,179.7,179.5 +398,168.2,263,262,261.5,260.7,251.7,192.5,192,191.8,191.3,186.9,180,184.4,184.2,184.1,183.9,182,179.7,179.5 +399,168.2,263.2,262.1,261.6,260.9,251.9,192.6,192.1,191.9,191.4,187,180,184.5,184.3,184.2,184,182.1,179.8,179.5 +400,168.3,263.3,262.2,261.7,261,252,192.7,192.2,191.9,191.5,187.1,180,184.6,184.4,184.2,184.1,182.1,179.8,179.6 +401,168.3,263.4,262.3,261.8,261.1,252.2,192.8,192.3,192,191.6,187.1,180.1,184.7,184.4,184.3,184.1,182.2,179.8,179.6 +402,168.3,263.5,262.4,261.9,261.2,252.3,192.9,192.4,192.1,191.7,187.2,180.1,184.7,184.5,184.4,184.2,182.2,179.8,179.6 +403,168.3,263.6,262.5,262,261.3,252.4,193,192.5,192.2,191.8,187.3,180.1,184.8,184.6,184.5,184.3,182.3,179.8,179.6 +404,168.3,263.7,262.7,262.2,261.5,252.6,193.1,192.6,192.3,191.9,187.4,180.1,184.9,184.7,184.5,184.3,182.3,179.9,179.6 +405,168.4,263.8,262.8,262.3,261.6,252.7,193.5,192.7,192.4,192,187.4,180.2,184.9,184.7,184.6,184.4,182.4,179.9,179.7 +406,168.4,263.9,262.9,262.4,261.7,252.8,194.2,192.8,192.5,192.1,187.5,180.2,185,184.8,184.7,184.5,182.4,179.9,179.7 +407,168.4,264.1,263,262.5,261.8,253,195.3,192.9,192.6,192.2,187.6,180.2,185.1,184.9,184.7,184.5,182.5,179.9,179.7 +408,168.4,264.2,263.1,262.6,261.9,253.1,196.5,193,192.9,192.5,187.7,180.2,185.2,184.9,184.8,184.6,182.6,180,179.7 +409,168.5,264.3,263.2,262.7,262,253.2,197.9,193.3,193,192.5,187.7,180.2,185.2,185,184.9,184.7,182.6,180,179.7 +410,168.5,264.4,263.3,262.9,262.2,253.4,199.1,193.3,193,192.6,187.8,180.3,185.3,185.1,184.9,184.7,182.7,180,179.8 +411,168.5,264.5,263.5,263,262.3,253.5,200.3,193.5,193.1,192.7,187.9,180.3,185.4,185.1,185,184.8,182.7,180,179.8 +412,168.5,264.6,263.6,263.1,262.4,253.7,201.5,193.5,193.2,192.8,188,180.3,185.4,185.2,185.1,184.9,182.8,180,179.8 +413,168.5,264.7,263.7,263.2,262.5,253.8,202.7,193.6,193.3,192.8,188,180.4,185.5,185.3,185.1,184.9,182.8,180.1,179.8 +414,168.6,264.8,263.8,263.3,262.6,253.9,204.7,193.7,193.3,193,188.1,180.4,185.6,185.4,185.2,185,182.9,180.1,179.8 +415,168.6,265,263.9,263.4,262.7,254.1,207,193.8,193.5,193,188.2,180.5,185.7,185.4,185.3,185.1,182.9,180.1,179.9 +416,168.6,265.1,264,263.5,262.8,254.2,209.4,193.9,193.5,193.1,188.3,180.5,185.7,185.5,185.3,185.1,183,180.1,179.9 +417,168.6,265.2,264.1,263.7,263,254.3,211.7,193.9,193.6,193.1,188.3,180.5,185.8,185.6,185.4,185.2,183,180.2,179.9 +418,168.6,265.3,264.3,263.8,263.1,254.5,214.1,194,193.7,193.3,188.4,180.6,185.9,185.6,185.5,185.3,183.1,180.2,179.9 +419,168.7,265.4,264.4,263.9,263.2,254.6,216.4,194.2,193.8,193.4,188.5,180.6,185.9,185.7,185.5,185.3,183.1,180.2,180 +420,168.7,265.5,264.5,264,263.3,254.7,218.4,194.2,193.9,193.4,188.6,180.7,186,185.8,185.6,185.4,183.2,180.2,180 +421,168.7,265.6,264.6,264.1,263.4,254.9,219.4,194.3,194,193.6,188.6,180.7,186.1,185.8,185.7,185.5,183.3,180.2,180 +422,168.7,265.7,264.7,264.2,263.5,255,220.4,194.4,194.1,193.7,188.7,180.7,186.1,185.9,185.8,185.5,183.3,180.3,180 +423,168.7,265.8,264.8,264.3,263.7,255.1,221.3,196.4,194.2,193.8,188.8,180.8,186.2,186,185.8,185.6,183.4,180.3,180 +424,168.8,266,264.9,264.4,263.8,255.3,222.1,198.5,194.3,193.9,188.9,180.8,186.3,186,185.9,185.7,183.4,180.3,180.1 +425,168.8,266.1,265,264.6,263.9,255.4,222.9,200.4,194.4,194,189,180.8,186.4,186.1,186,185.7,183.5,180.3,180.1 +426,168.8,266.2,265.2,264.7,264,255.5,223.6,201.9,194.5,194.1,189,180.9,186.4,186.2,186,185.8,183.5,180.3,180.1 +427,168.8,266.3,265.3,264.8,264.1,255.7,224.3,203.4,194.6,194.1,189.1,180.9,186.5,186.2,186.1,185.9,183.6,180.4,180.1 +428,168.8,266.4,265.4,264.9,264.2,255.8,225,204.9,194.7,194.2,189.2,181,186.6,186.3,186.2,185.9,183.6,180.4,180.1 +429,168.9,266.5,265.5,265,264.3,255.9,225.7,206.4,194.8,194.3,189.3,181,186.6,186.4,186.2,186,183.7,180.4,180.2 +430,168.9,266.6,265.6,265.1,264.5,256.1,226.3,207.9,196.2,194.4,189.4,181,186.7,186.5,186.3,186.1,183.7,180.4,180.2 +431,168.9,266.7,265.7,265.2,264.6,256.2,226.9,209.5,198.4,194.5,189.4,181.1,186.8,186.5,186.4,186.1,183.8,180.5,180.2 +432,168.9,266.8,265.8,265.4,264.7,256.3,227.4,211.3,200.3,194.6,189.5,181.1,186.8,186.6,186.4,186.2,183.8,180.5,180.2 +433,168.9,266.9,266,265.5,264.8,256.5,228,212.9,201.8,194.7,189.6,181.2,186.9,186.7,186.5,186.3,183.9,180.5,180.2 +434,169,267.1,266.1,265.6,264.9,256.6,228.5,214.3,203.2,194.8,189.7,181.2,187,186.7,186.6,186.3,184,180.5,180.3 +435,169,267.2,266.2,265.7,265,256.7,229,215.6,204.7,194.9,189.7,181.2,187.1,186.8,186.6,186.4,184,180.5,180.3 +436,169,267.3,266.3,265.8,265.1,256.9,229.5,216.8,206.1,195,189.8,181.3,187.1,186.9,186.7,186.5,184.1,180.6,180.3 +437,169,267.4,266.4,265.9,265.2,257,230,217.9,207.6,195.1,189.9,181.3,187.2,186.9,186.8,186.5,184.1,180.6,180.3 +438,169,267.5,266.5,266,265.4,257.1,230.5,218.9,209,195.2,190,181.4,187.3,187,186.8,186.6,184.2,180.6,180.3 +439,169.1,267.6,266.6,266.1,265.5,257.2,231,219.9,211.1,195.3,190.1,181.4,187.3,187.1,186.9,186.7,184.2,180.6,180.4 +440,169.1,267.7,266.7,266.3,265.6,257.4,231.4,220.8,212.7,196.4,190.1,181.4,187.4,187.1,187,186.7,184.3,180.6,180.4 +441,169.1,267.8,266.8,266.4,265.7,257.5,231.8,221.6,214.2,199,190.2,181.5,187.5,187.2,187,186.8,184.3,180.7,180.4 +442,169.1,267.9,267,266.5,265.8,257.6,232.3,222.5,215.5,200.9,190.3,181.5,187.5,187.3,187.1,186.9,184.4,180.7,180.4 +443,169.1,268.1,267.1,266.6,265.9,257.8,232.7,223.2,216.7,202.4,190.4,181.5,187.6,187.3,187.2,186.9,184.4,180.7,180.4 +444,169.2,268.2,267.2,266.7,266,257.9,233.1,224,217.8,203.9,190.5,181.6,187.7,187.4,187.2,187,184.5,180.7,180.4 +445,169.2,268.3,267.3,266.8,266.1,258,233.5,224.7,218.9,205.4,190.5,181.6,187.8,187.5,187.3,187.1,184.5,180.7,180.5 +446,169.2,268.4,267.4,266.9,266.3,258.2,233.9,225.4,219.9,206.9,190.6,181.7,187.8,187.5,187.4,187.1,184.6,180.8,180.5 +447,169.2,268.5,267.5,267,266.4,258.3,234.2,226,220.8,208.4,190.7,181.7,187.9,187.6,187.4,187.2,184.7,180.8,180.5 +448,169.2,268.6,267.6,267.2,266.5,258.4,234.6,226.6,221.7,209.9,190.8,181.7,188,187.7,187.5,187.3,184.7,180.8,180.5 +449,169.3,268.7,267.7,267.3,266.6,258.5,235,227.2,222.5,211.4,190.9,181.8,188,187.8,187.6,187.3,184.8,180.8,180.5 +450,169.3,268.8,267.9,267.4,266.7,258.7,235.3,227.8,223.3,213.2,190.9,181.8,188.1,187.8,187.7,187.4,184.8,180.8,180.6 +451,169.3,268.9,268,267.5,266.8,258.8,235.7,228.4,224,214.6,191,181.9,188.2,187.9,187.7,187.5,184.9,180.9,180.6 +452,169.3,269,268.1,267.6,266.9,258.9,236,228.9,224.8,215.9,191.1,181.9,188.2,188,187.8,187.5,184.9,180.9,180.6 +453,169.3,269.2,268.2,267.7,267,259.1,236.3,229.4,225.5,217.2,191.2,181.9,188.3,188,187.9,187.6,185,180.9,180.6 +454,169.4,269.3,268.3,267.8,267.2,259.2,236.6,230,226.1,218.3,191.3,182,188.4,188.1,187.9,187.7,185,180.9,180.6 +455,169.4,269.4,268.4,267.9,267.3,259.3,237,230.5,226.7,219.3,191.4,182,188.4,188.2,188,187.7,185.1,181,180.7 +456,169.4,269.5,268.5,268,267.4,259.4,237.3,230.9,227.4,220.3,191.4,182.1,188.5,188.2,188.1,187.8,185.1,181,180.7 +457,169.4,269.6,268.6,268.2,267.5,259.6,237.6,231.4,227.9,221.2,191.5,182.1,188.6,188.3,188.1,187.9,185.2,181,180.7 +458,169.4,269.7,268.7,268.3,267.6,259.7,237.9,231.9,228.5,222.1,191.6,182.1,188.7,188.4,188.2,187.9,185.3,181,180.7 +459,169.5,269.8,268.9,268.4,267.7,259.8,238.2,232.3,229.1,223,191.7,182.2,188.7,188.4,188.3,188,185.3,181,180.7 +460,169.5,269.9,269,268.5,267.8,259.9,238.5,232.7,229.6,223.7,191.8,182.2,188.8,188.5,188.3,188.1,185.4,181.1,180.8 +461,169.5,270,269.1,268.6,267.9,260.1,238.8,233.1,230.1,224.5,191.9,182.3,188.9,188.6,188.4,188.1,185.4,181.1,180.8 +462,169.5,270.1,269.2,268.7,268.1,260.2,239,233.6,230.6,225.2,191.9,182.3,188.9,188.7,188.5,188.2,185.5,181.1,180.8 +463,169.5,270.2,269.3,268.8,268.2,260.3,239.3,234,231.1,225.9,192,182.3,189,188.7,188.5,188.3,185.5,181.1,180.8 +464,169.5,270.4,269.4,268.9,268.3,260.4,239.6,234.3,231.6,226.5,192.1,182.4,189.1,188.8,188.6,188.4,185.6,181.1,180.8 +465,169.6,270.5,269.5,269.1,268.4,260.6,239.8,234.7,232,227.2,192.2,182.4,189.2,188.9,188.7,188.4,185.6,181.2,180.8 +466,169.6,270.6,269.6,269.2,268.5,260.7,240.1,235.1,232.5,227.8,192.3,182.4,189.2,188.9,188.7,188.5,185.7,181.2,180.9 +467,169.6,270.7,269.7,269.3,268.6,260.8,240.4,235.5,232.9,228.4,192.4,182.5,189.3,189,188.8,188.6,185.7,181.2,180.9 +468,169.6,270.8,269.9,269.4,268.7,260.9,240.6,235.8,233.3,228.9,192.5,182.5,189.4,189.1,188.9,188.6,185.8,181.2,180.9 +469,169.6,270.9,270,269.5,268.8,261.1,240.9,236.2,233.7,229.5,192.5,182.6,189.4,189.1,189,188.7,185.9,181.2,180.9 +470,169.7,271,270.1,269.6,268.9,261.2,241.1,236.5,234.1,230,192.6,182.6,189.5,189.2,189,188.8,185.9,181.3,180.9 +471,169.7,271.1,270.2,269.7,269.1,261.3,241.4,236.9,234.5,230.5,192.7,182.6,189.6,189.3,189.1,188.8,186,181.3,181 +472,169.7,271.2,270.3,269.8,269.2,261.4,241.6,237.2,234.9,231,192.8,182.7,189.6,189.3,189.2,188.9,186,181.3,181 +473,169.7,271.3,270.4,269.9,269.3,261.6,241.8,237.5,235.3,231.5,192.9,182.7,189.7,189.4,189.2,189,186.1,181.3,181 +474,169.7,271.4,270.5,270.1,269.4,261.7,242.1,237.8,235.7,232,193,182.8,189.8,189.5,189.3,189,186.1,181.3,181 +475,169.7,271.6,270.6,270.2,269.5,261.8,242.3,238.1,236,232.4,193.1,182.8,189.9,189.6,189.4,189.1,186.2,181.3,181 +476,169.8,271.7,270.7,270.3,269.6,261.9,242.5,238.4,236.4,232.9,193.1,182.8,189.9,189.6,189.4,189.2,186.2,181.4,181 +477,169.8,271.8,270.8,270.4,269.7,262,242.7,238.7,236.7,233.3,193.2,182.9,190,189.7,189.5,189.2,186.3,181.4,181.1 +478,169.8,271.9,271,270.5,269.8,262.2,242.9,239,237,233.7,193.3,182.9,190.1,189.8,189.6,189.3,186.4,181.4,181.1 +479,169.8,272,271.1,270.6,269.9,262.3,243.2,239.3,237.4,234.2,193.4,183,190.1,189.8,189.6,189.4,186.4,181.4,181.1 +480,169.8,272.1,271.2,270.7,270.1,262.4,243.4,239.6,237.7,234.6,193.5,183,190.2,189.9,189.7,189.4,186.5,181.4,181.1 +481,169.9,272.2,271.3,270.8,270.2,262.5,243.6,239.9,238,235,193.6,183,190.3,190,189.8,189.5,186.5,181.5,181.1 +482,169.9,272.3,271.4,270.9,270.3,262.7,243.8,240.1,238.3,235.3,193.7,183.1,190.4,190,189.9,189.6,186.6,181.5,181.2 +483,169.9,272.4,271.5,271,270.4,262.8,244,240.4,238.6,235.7,193.8,183.1,190.4,190.1,189.9,189.7,186.6,181.5,181.2 +484,169.9,272.5,271.6,271.2,270.5,262.9,244.2,240.7,238.9,236.1,193.8,183.2,190.5,190.2,190,189.7,186.7,181.5,181.2 +485,169.9,272.6,271.7,271.3,270.6,263,244.4,240.9,239.2,236.4,193.9,183.2,190.6,190.3,190.1,189.8,186.8,181.5,181.2 +486,169.9,272.8,271.8,271.4,270.7,263.1,244.6,241.2,239.5,236.8,194,183.2,190.6,190.3,190.1,189.9,186.8,181.6,181.2 +487,170,272.9,271.9,271.5,270.8,263.3,244.8,241.4,239.8,237.1,194.1,183.3,190.7,190.4,190.2,189.9,186.9,181.6,181.2 +488,170,273,272.1,271.6,270.9,263.4,244.9,241.7,240.1,237.5,194.2,183.3,190.8,190.5,190.3,190,186.9,181.6,181.3 +489,170,273.1,272.2,271.7,271.1,263.5,245.1,241.9,240.3,237.8,194.3,183.3,190.9,190.5,190.3,190.1,187,181.6,181.3 +490,170,273.2,272.3,271.8,271.2,263.6,245.3,242.1,240.6,238.1,194.4,183.4,190.9,190.6,190.4,190.1,187,181.7,181.3 +491,170,273.3,272.4,271.9,271.3,263.7,245.5,242.4,240.9,238.4,194.5,183.4,191,190.7,190.5,190.2,187.1,181.7,181.3 +492,170,273.4,272.5,272,271.4,263.8,245.7,242.6,241.1,238.7,194.6,183.5,191.1,190.8,190.6,190.3,187.1,181.7,181.3 +493,170.1,273.5,272.6,272.1,271.5,264,245.8,242.8,241.4,239,194.7,183.5,191.1,190.8,190.6,190.3,187.2,181.8,181.3 +494,170.1,273.6,272.7,272.3,271.6,264.1,246,243.1,241.6,239.3,194.7,183.5,191.2,190.9,190.7,190.4,187.3,181.8,181.4 +495,170.1,273.7,272.8,272.4,271.7,264.2,246.2,243.3,241.9,239.6,194.8,183.6,191.3,191,190.8,190.5,187.3,181.8,181.4 +496,170.1,273.8,272.9,272.5,271.8,264.3,246.4,243.5,242.1,239.9,194.9,183.6,191.4,191,190.8,190.6,187.4,181.9,181.4 +497,170.1,273.9,273,272.6,271.9,264.4,246.5,243.7,242.4,240.2,195,183.7,191.4,191.1,190.9,190.6,187.4,181.9,181.4 +498,170.2,274,273.2,272.7,272,264.6,246.7,243.9,242.6,240.5,195.1,183.7,191.5,191.2,191,190.7,187.5,181.9,181.4 +499,170.2,274.2,273.3,272.8,272.2,264.7,246.9,244.1,242.8,240.8,195.2,183.7,191.6,191.3,191.1,190.8,187.5,182,181.5 +500,170.2,274.3,273.4,272.9,272.3,264.8,247,244.3,243.1,241,195.3,183.8,191.6,191.3,191.1,190.8,187.6,182,181.5 +501,170.2,274.4,273.5,273,272.4,264.9,247.2,244.5,243.3,241.3,195.4,183.8,191.7,191.4,191.2,190.9,187.7,182,181.5 +502,170.2,274.5,273.6,273.1,272.5,265,247.4,244.7,243.5,241.5,195.5,183.9,191.8,191.5,191.3,191,187.7,182.1,181.5 +503,170.2,274.6,273.7,273.2,272.6,265.1,247.5,244.9,243.7,241.8,195.6,183.9,191.9,191.5,191.3,191,187.8,182.1,181.5 +504,170.3,274.7,273.8,273.4,272.7,265.3,247.7,245.1,243.9,242,195.7,183.9,191.9,191.6,191.4,191.1,187.8,182.1,181.5 +505,170.3,274.8,273.9,273.5,272.8,265.4,247.8,245.3,244.1,242.3,195.8,184,192,191.7,191.5,191.2,187.9,182.1,181.6 +506,170.3,274.9,274,273.6,272.9,265.5,248,245.5,244.4,242.5,195.9,184,192.1,191.8,191.6,191.3,188,182.2,181.6 +507,170.3,275,274.1,273.7,273,265.6,248.1,245.7,244.6,242.8,196,184.1,192.2,191.8,191.6,191.3,188,182.2,181.6 +508,170.3,275.1,274.2,273.8,273.1,265.7,248.3,245.9,244.8,243,196,184.1,192.2,191.9,191.7,191.4,188.1,182.2,181.6 +509,170.3,275.2,274.3,273.9,273.3,265.8,248.4,246.1,245,243.2,196.1,184.1,192.3,192,191.8,191.5,188.1,182.3,181.6 +510,170.4,275.3,274.5,274,273.4,266,248.6,246.2,245.2,243.5,196.2,184.2,192.4,192,191.8,191.5,188.2,182.3,181.6 +511,170.4,275.4,274.6,274.1,273.5,266.1,248.7,246.4,245.4,243.7,196.3,184.2,192.4,192.1,191.9,191.6,188.2,182.3,181.7 +512,170.4,275.5,274.7,274.2,273.6,266.2,248.9,246.6,245.5,243.9,196.4,184.3,192.5,192.2,192,191.7,188.3,182.4,181.7 +513,170.4,275.6,274.8,274.3,273.7,266.3,249,246.8,245.7,244.1,196.5,184.3,192.6,192.3,192.1,191.8,188.4,182.4,181.7 +514,170.4,275.8,274.9,274.4,273.8,266.4,249.2,246.9,245.9,244.3,196.6,184.3,192.7,192.3,192.1,191.8,188.4,182.4,181.7 +515,170.4,275.9,275,274.5,273.9,266.5,249.3,247.1,246.1,244.5,196.7,184.4,192.7,192.4,192.2,191.9,188.5,182.5,181.7 +516,170.5,276,275.1,274.7,274,266.6,249.5,247.3,246.3,244.8,196.8,184.4,192.8,192.5,192.3,192,188.5,182.5,181.7 +517,170.5,276.1,275.2,274.8,274.1,266.8,249.6,247.4,246.5,245,196.9,184.5,192.9,192.6,192.3,192,188.6,182.5,181.8 +518,170.5,276.2,275.3,274.9,274.2,266.9,249.8,247.6,246.6,245.2,197,184.5,193,192.6,192.4,192.1,188.7,182.6,181.8 +519,170.5,276.3,275.4,275,274.3,267,249.9,247.8,246.8,245.4,197.1,184.5,193,192.7,192.5,192.2,188.7,182.6,181.8 +520,170.5,276.4,275.5,275.1,274.5,267.1,250,247.9,247,245.6,197.2,184.6,193.1,192.8,192.6,192.3,188.8,182.6,181.8 +521,170.5,276.5,275.6,275.2,274.6,267.2,250.2,248.1,247.2,245.8,197.3,184.6,193.2,192.8,192.6,192.3,188.8,182.7,181.8 +522,170.6,276.6,275.8,275.3,274.7,267.3,250.3,248.3,247.3,245.9,197.4,184.7,193.3,192.9,192.7,192.4,188.9,182.7,181.8 +523,170.6,276.7,275.9,275.4,274.8,267.4,250.5,248.4,247.5,246.1,197.5,184.7,193.3,193,192.8,192.5,188.9,182.7,181.9 +524,170.6,276.8,276,275.5,274.9,267.6,250.6,248.6,247.7,246.3,197.6,184.7,193.4,193.1,192.9,192.5,189,182.8,181.9 +525,170.6,276.9,276.1,275.6,275,267.7,250.7,248.7,247.8,246.5,197.7,184.8,193.5,193.1,192.9,192.6,189.1,182.8,181.9 +526,170.6,277,276.2,275.7,275.1,267.8,250.9,248.9,248,246.7,197.8,184.8,193.6,193.2,193,192.7,189.1,182.8,181.9 +527,170.6,277.1,276.3,275.8,275.2,267.9,251,249,248.2,246.9,197.9,184.9,193.6,193.3,193.1,192.8,189.2,182.9,181.9 +528,170.7,277.2,276.4,276,275.3,268,251.2,249.2,248.3,247,198,184.9,193.7,193.4,193.2,192.8,189.2,182.9,181.9 +529,170.7,277.3,276.5,276.1,275.4,268.1,251.3,249.4,248.5,247.2,198.2,184.9,193.8,193.4,193.2,192.9,189.3,182.9,182 +530,170.7,277.4,276.6,276.2,275.5,268.2,251.4,249.5,248.7,247.4,198.2,185,193.9,193.5,193.3,193,189.4,183,182 +531,170.7,277.5,276.7,276.3,275.6,268.4,251.6,249.7,248.8,247.6,198.4,185,193.9,193.6,193.4,193.1,189.4,183,182 +532,170.7,277.7,276.8,276.4,275.8,268.5,251.7,249.8,249,247.7,198.5,185.1,194,193.7,193.4,193.1,189.5,183,182 +533,170.7,277.8,276.9,276.5,275.9,268.6,251.8,250,249.1,247.9,198.6,185.1,194.1,193.7,193.5,193.2,189.5,183.1,182 +534,170.8,277.9,277,276.6,276,268.7,252,250.1,249.3,248.1,198.7,185.1,194.2,193.8,193.6,193.3,189.6,183.1,182 +535,170.8,278,277.1,276.7,276.1,268.8,252.1,250.2,249.4,248.2,198.8,185.2,194.2,193.9,193.7,193.4,189.7,183.1,182.1 +536,170.8,278.1,277.2,276.8,276.2,268.9,252.2,250.4,249.6,248.4,198.9,185.2,194.3,194,193.7,193.4,189.7,183.1,182.1 +537,170.8,278.2,277.3,276.9,276.3,269,252.4,250.5,249.7,248.6,199,185.3,194.4,194,193.8,193.5,189.8,183.2,182.1 +538,170.8,278.3,277.5,277,276.4,269.1,252.5,250.7,249.9,248.7,199.1,185.3,194.5,194.1,193.9,193.6,189.8,183.2,182.1 +539,170.8,278.4,277.6,277.1,276.5,269.3,252.6,250.8,250,248.9,199.2,185.3,194.5,194.2,194,193.7,189.9,183.2,182.1 +540,170.9,278.5,277.7,277.2,276.6,269.4,252.8,251,250.2,249.1,199.3,185.4,194.6,194.3,194,193.7,190,183.3,182.1 +541,170.9,278.6,277.8,277.3,276.7,269.5,252.9,251.1,250.3,249.2,199.4,185.4,194.7,194.3,194.1,193.8,190,183.3,182.2 +542,170.9,278.7,277.9,277.4,276.8,269.6,253,251.3,250.5,249.4,202.2,185.5,194.8,194.4,194.2,193.9,190.1,183.3,182.2 +543,170.9,278.8,278,277.6,276.9,269.7,253.2,251.4,250.6,249.5,208.9,185.5,194.8,194.5,194.3,194,190.2,183.4,182.2 +544,170.9,278.9,278.1,277.7,277,269.8,253.3,251.5,250.8,249.7,209.6,185.5,194.9,194.6,194.4,194,190.2,183.4,182.2 +545,170.9,279,278.2,277.8,277.1,269.9,253.4,251.7,250.9,249.8,210.2,185.6,195,194.6,194.4,194.1,190.3,183.4,182.2 +546,170.9,279.1,278.3,277.9,277.3,270,253.5,251.8,251.1,250,210.9,185.6,195.1,194.7,194.5,194.2,190.3,183.5,182.2 +547,171,279.2,278.4,278,277.4,270.2,253.7,252,251.2,250.1,211.6,185.7,195.2,194.8,194.6,194.3,190.4,183.5,182.3 +548,171,279.3,278.5,278.1,277.5,270.3,253.8,252.1,251.4,250.3,212.3,185.7,195.2,194.9,194.7,194.3,190.5,183.5,182.3 +549,171,279.4,278.6,278.2,277.6,270.4,253.9,252.2,251.5,250.4,213,185.7,195.3,195,194.7,194.4,190.5,183.6,182.3 +550,171,279.5,278.7,278.3,277.7,270.5,254.1,252.4,251.6,250.6,213.7,185.8,195.4,195,194.8,194.5,190.7,183.6,182.3 +551,171,279.6,278.8,278.4,277.8,270.6,254.2,252.5,251.8,250.7,215.6,185.8,195.5,195.1,194.9,194.6,190.7,183.6,182.3 +552,171,279.7,278.9,278.5,277.9,270.7,254.3,252.7,251.9,250.9,217.1,185.9,195.5,195.2,195,194.6,190.8,183.7,182.3 +553,171.1,279.8,279,278.6,278,270.8,254.5,252.8,252.1,251,218.6,185.9,195.6,195.3,195,194.7,190.8,183.7,182.4 +554,171.1,279.9,279.1,278.7,278.1,270.9,254.6,252.9,252.2,251.2,219.8,185.9,195.7,195.3,195.1,194.8,190.9,183.7,182.4 +555,171.1,280,279.2,278.8,278.2,271,254.7,253.1,252.4,251.3,221,186,195.8,195.4,195.2,194.9,190.9,183.8,182.4 +556,171.1,280.1,279.3,278.9,278.3,271.2,254.8,253.2,252.5,251.5,222.1,186,195.9,195.5,195.3,194.9,191,183.8,182.4 +557,171.1,280.2,279.4,279,278.4,271.3,255,253.3,252.6,251.6,223.2,186.1,195.9,195.6,195.4,195,191.1,183.8,182.4 +558,171.1,280.3,279.5,279.1,278.5,271.4,255.1,253.5,252.8,251.8,224.1,186.1,196,195.7,195.4,195.1,191.1,183.9,182.4 +559,171.1,280.4,279.6,279.2,278.6,271.5,255.2,253.6,252.9,251.9,225.1,186.2,196.1,195.7,195.5,195.2,191.2,183.9,182.4 +560,171.2,280.5,279.7,279.3,278.7,271.6,255.4,253.8,253,252,225.9,186.2,196.2,195.8,195.6,195.3,191.2,183.9,182.5 +561,171.2,280.6,279.9,279.4,278.8,271.7,255.5,253.9,253.2,252.2,226.7,186.2,196.3,195.9,195.7,195.3,191.3,184,182.5 +562,171.2,280.7,280,279.5,278.9,271.8,255.6,254,253.3,252.3,227.5,186.3,196.3,196,195.8,195.4,191.4,184,182.5 +563,171.2,280.8,280.1,279.6,279.1,271.9,255.8,254.2,253.5,252.5,228.2,186.3,197,196.1,195.8,195.5,191.4,184,182.5 +564,171.2,280.9,280.2,279.7,279.2,272,255.9,254.3,253.6,252.6,228.9,186.4,198,196.2,195.9,195.6,191.5,184.1,182.5 +565,171.2,281,280.3,279.9,279.3,272.2,256,254.4,253.7,252.8,229.6,186.4,199.2,196.2,196,195.8,191.5,184.1,182.5 +566,171.3,281.1,280.4,280,279.4,272.3,256.1,254.6,253.9,252.9,230.3,186.4,200.6,196.5,196.2,195.9,191.6,184.1,182.6 +567,171.3,281.2,280.5,280.1,279.5,272.4,256.3,254.7,254,253,230.9,186.5,201.8,196.5,196.3,195.9,191.7,184.2,182.6 +568,171.3,281.3,280.6,280.2,279.6,272.5,256.4,254.8,254.1,253.2,231.5,186.5,203,196.6,196.4,196,191.7,184.2,182.6 +569,171.3,281.4,280.7,280.3,279.7,272.6,256.5,255,254.3,253.3,232.1,186.6,204.2,196.7,196.4,196.1,191.8,184.2,182.6 +570,171.3,281.5,280.8,280.4,279.8,272.7,256.6,255.1,254.4,253.4,232.6,186.6,205.4,196.7,196.5,196.1,191.8,184.3,182.7 +571,171.3,281.6,280.9,280.5,279.9,272.8,256.8,255.2,254.6,253.6,233.2,186.6,207.2,196.8,196.5,196.2,191.9,184.3,182.7 +572,171.3,281.7,281,280.6,280,272.9,256.9,255.4,254.7,253.7,233.7,186.7,209.5,196.9,196.6,196.3,192,184.3,182.7 +573,171.4,281.8,281.1,280.7,280.1,273,257,255.5,254.8,253.9,234.2,186.7,211.8,196.9,196.7,196.3,192,184.4,182.7 +574,171.4,281.9,281.2,280.8,280.2,273.2,257.2,255.6,255,254,234.7,186.8,214.2,197,196.7,196.4,192.1,184.4,182.8 +575,171.4,282,281.3,280.9,280.3,273.3,257.3,255.8,255.1,254.1,235.2,186.8,216.5,197,196.8,196.5,192.2,184.4,182.8 +576,171.4,282.1,281.4,281,280.4,273.4,257.4,255.9,255.2,254.3,235.6,186.8,218.5,197.1,196.9,196.6,192.2,184.4,182.8 +577,171.4,282.2,281.5,281.1,280.5,273.5,257.5,256,255.4,254.4,236.1,186.9,219.6,197.2,197,196.6,192.3,184.5,182.9 +578,171.4,282.3,281.6,281.2,280.6,273.6,257.7,256.2,255.5,254.5,236.5,186.9,220.7,197.3,197,196.7,192.4,184.5,182.9 +579,171.5,282.4,281.7,281.3,280.7,273.7,257.8,256.3,255.6,254.7,237,187,221.7,197.4,197.2,196.8,192.4,184.5,182.9 +580,171.5,282.5,281.8,281.4,280.8,273.8,257.9,256.4,255.8,254.8,237.4,187,222.6,198.9,197.2,196.8,192.5,184.6,182.9 +581,171.5,282.6,281.9,281.5,280.9,273.9,258,256.6,255.9,255,237.8,187.1,223.4,201,197.3,197,192.5,184.6,183 +582,171.5,282.7,282,281.6,281,274,258.2,256.7,256,255.1,238.2,187.1,224.2,203,197.4,197,192.6,184.6,183 +583,171.5,282.8,282.1,281.7,281.1,274.2,258.3,256.8,256.2,255.2,238.6,187.1,224.9,204.2,197.5,197.1,192.7,184.7,183 +584,171.5,282.9,282.2,281.8,281.2,274.3,258.4,257,256.3,255.4,239,187.2,225.7,205.5,197.6,197.2,192.7,184.7,183 +585,171.5,283,282.3,281.9,281.3,274.4,258.5,257.1,256.4,255.5,239.3,187.2,226.3,206.8,197.6,197.3,192.8,184.7,183.1 +586,171.6,283.1,282.4,282,281.4,274.5,258.7,257.2,256.6,255.6,239.7,187.3,227,208.1,197.7,197.3,192.9,184.8,183.1 +587,171.6,283.2,282.5,282.1,281.5,274.6,258.8,257.4,256.7,255.8,240,187.3,227.6,209.3,198.6,197.4,192.9,184.8,183.1 +588,171.6,283.3,282.6,282.2,281.6,274.7,258.9,257.5,256.8,255.9,240.4,187.3,228.2,210.6,200.8,197.5,193,184.8,183.1 +589,171.6,283.4,282.7,282.3,281.7,274.8,259,257.6,257,256,240.7,187.4,228.8,212.5,202.9,197.6,193.1,184.9,183.2 +590,171.6,283.5,282.8,282.4,281.8,274.9,259.2,257.8,257.1,256.2,241.1,187.4,229.4,214.1,204.2,197.7,193.1,184.9,183.2 +591,171.6,283.6,282.9,282.5,281.9,275,259.3,257.9,257.2,256.3,241.4,187.5,229.9,215.5,205.5,197.8,193.2,184.9,183.2 +592,171.6,283.7,283,282.6,282,275.1,259.4,258,257.4,256.4,241.7,187.5,230.4,216.8,206.8,197.8,193.3,185,183.3 +593,171.7,283.8,283.1,282.7,282.1,275.3,259.5,258.1,257.5,256.6,242,187.5,230.9,218,208.2,197.9,193.3,185,183.3 +594,171.7,283.9,283.2,282.8,282.2,275.4,259.7,258.3,257.6,256.7,242.3,187.6,231.4,219.1,209.5,198,193.4,185,183.3 +595,171.7,283.9,283.3,282.9,282.3,275.5,259.8,258.4,257.7,256.8,242.6,187.6,231.9,220.2,210.8,198.1,193.5,185.1,183.3 +596,171.7,284,283.4,283,282.4,275.6,259.9,258.5,257.9,257,242.9,187.7,232.3,221.2,212.1,198.2,193.5,185.1,183.4 +597,171.7,284.1,283.5,283.1,282.5,275.7,260,258.7,258,257.1,243.2,187.7,232.8,222.1,213.9,198.6,193.6,185.1,183.4 +598,171.7,284.2,283.5,283.2,282.6,275.8,260.2,258.8,258.1,257.2,243.5,187.8,233.2,223,215.4,201.3,193.7,185.2,183.4 +599,171.7,284.3,283.6,283.3,282.7,275.9,260.3,258.9,258.3,257.4,243.8,187.8,233.7,223.8,216.7,203.4,193.7,185.2,183.4 +600,171.8,284.4,283.7,283.4,282.8,276,260.4,259,258.4,257.5,244.1,187.8,234.1,224.6,217.9,204.7,193.8,185.2,183.5 +601,171.8,284.5,283.8,283.5,282.9,276.1,260.5,259.2,258.5,257.6,244.3,187.9,234.5,225.3,219.1,206,193.9,185.3,183.5 +602,171.8,284.6,283.9,283.6,283,276.2,260.7,259.3,258.7,257.8,244.6,187.9,234.9,226,220.1,207.3,193.9,185.3,183.5 +603,171.8,284.7,284,283.7,283.1,276.3,260.8,259.4,258.8,257.9,244.9,188,235.3,226.7,221.2,208.5,194,185.3,183.5 +604,171.8,284.8,284.1,283.8,283.2,276.5,260.9,259.6,258.9,258,245.1,188,235.6,227.4,222.1,209.8,194.1,185.4,183.6 +605,171.8,284.9,284.2,283.9,283.3,276.6,261,259.7,259,258.1,245.4,188,236,228,223,211.1,194.1,185.4,183.6 +606,171.8,285,284.3,284,283.4,276.7,261.1,259.8,259.2,258.3,245.6,188.1,236.4,228.6,223.8,212.4,194.2,185.4,183.6 +607,171.9,285.1,284.4,284,283.5,276.8,261.3,259.9,259.3,258.4,245.8,188.1,236.7,229.2,224.6,214.3,194.3,185.5,183.7 +608,171.9,285.2,284.5,284.1,283.6,276.9,261.4,260.1,259.4,258.5,246.1,188.2,237.1,229.8,225.4,215.8,194.3,185.5,183.7 +609,171.9,285.3,284.6,284.2,283.7,277,261.5,260.2,259.6,258.7,246.3,188.2,237.4,230.3,226.1,217.1,194.4,185.5,183.7 +610,171.9,285.3,284.7,284.3,283.8,277.1,261.6,260.3,259.7,258.8,246.6,188.3,237.7,230.9,226.8,218.4,194.5,185.6,183.7 +611,171.9,285.4,284.8,284.4,283.9,277.2,261.7,260.4,259.8,258.9,246.8,188.3,238.1,231.4,227.5,219.5,194.6,185.6,183.8 +612,171.9,285.5,284.9,284.5,284,277.3,261.9,260.6,259.9,259.1,247,188.3,238.4,231.9,228.1,220.6,194.6,185.6,183.8 +613,171.9,285.6,285,284.6,284.1,277.4,262,260.7,260.1,259.2,247.2,188.4,238.7,232.4,228.7,221.6,194.7,185.7,183.8 +614,172,285.7,285.1,284.7,284.2,277.5,262.1,260.8,260.2,259.3,247.4,188.4,239,232.8,229.3,222.5,194.8,185.7,183.8 +615,172,285.8,285.2,284.8,284.3,277.7,262.2,260.9,260.3,259.4,247.7,188.5,239.3,233.3,229.9,223.4,194.8,185.7,183.9 +616,172,285.9,285.3,284.9,284.4,277.8,262.3,261.1,260.5,259.6,247.9,188.5,239.6,233.7,230.4,224.2,194.9,185.8,183.9 +617,172,286,285.4,285,284.5,277.9,262.5,261.2,260.6,259.7,248.1,188.5,239.9,234.2,231,225,195,185.8,183.9 +618,172,286.1,285.4,285.1,284.6,278,262.6,261.3,260.7,259.8,248.3,188.6,240.2,234.6,231.5,225.8,195,185.8,183.9 +619,172,286.2,285.5,285.2,284.7,278.1,262.7,261.4,260.8,260,248.5,188.6,240.5,235,232,226.5,195.1,185.9,184 +620,172,286.3,285.6,285.3,284.8,278.2,262.8,261.6,261,260.1,248.7,188.7,240.8,235.4,232.5,227.2,195.2,185.9,184 +621,172.1,286.3,285.7,285.4,284.9,278.3,262.9,261.7,261.1,260.2,248.9,188.7,241,235.8,233,227.9,195.3,185.9,184 +622,172.1,286.4,285.8,285.5,285,278.4,263.1,261.8,261.2,260.3,249.1,188.8,241.3,236.2,233.4,228.5,195.3,186,184.1 +623,172.1,286.5,285.9,285.6,285.1,278.5,263.2,261.9,261.3,260.5,249.3,188.8,241.6,236.6,233.9,229.1,195.4,186,184.1 +624,172.1,286.6,286,285.7,285.2,278.6,263.3,262.1,261.5,260.6,249.5,188.8,241.8,236.9,234.3,229.7,195.5,186,184.1 +625,172.1,286.7,286.1,285.8,285.3,278.7,263.4,262.2,261.6,260.7,249.7,188.9,242.1,237.3,234.8,230.3,195.5,186.1,184.1 +626,172.1,286.8,286.2,285.8,285.4,278.8,263.5,262.3,261.7,260.8,249.8,188.9,242.3,237.6,235.2,230.9,195.6,186.1,184.2 +627,172.1,286.9,286.3,285.9,285.4,279,263.6,262.4,261.8,261,250,189,242.6,238,235.6,231.4,195.7,186.1,184.2 +628,172.2,287,286.4,286,285.5,279.1,263.8,262.5,261.9,261.1,250.2,189,242.8,238.3,236,231.9,195.8,186.2,184.2 +629,172.2,287.1,286.5,286.1,285.6,279.2,263.9,262.7,262.1,261.2,250.4,189.1,243.1,238.7,236.4,232.4,195.8,186.2,184.2 +630,172.2,287.1,286.5,286.2,285.7,279.3,264,262.8,262.2,261.4,250.6,189.1,243.3,239,236.7,232.9,195.9,186.2,184.3 +631,172.2,287.2,286.6,286.3,285.8,279.4,264.1,262.9,262.3,261.5,250.7,189.1,243.5,239.3,237.1,233.4,196,186.3,184.3 +632,172.2,287.3,286.7,286.4,285.9,279.5,264.2,263,262.4,261.6,250.9,189.2,243.8,239.6,237.5,233.8,196.1,186.3,184.3 +633,172.2,287.4,286.8,286.5,286,279.6,264.3,263.1,262.6,261.7,251.1,189.2,244,239.9,237.8,234.3,196.1,186.3,184.3 +634,172.2,287.5,286.9,286.6,286.1,279.7,264.5,263.3,262.7,261.9,251.3,189.3,244.2,240.2,238.2,234.7,196.2,186.4,184.4 +635,172.2,287.6,287,286.7,286.2,279.8,264.6,263.4,262.8,262,251.4,189.3,244.4,240.5,238.5,235.2,196.3,186.4,184.4 +636,172.3,287.7,287.1,286.8,286.3,279.9,264.7,263.5,262.9,262.1,251.6,189.4,244.6,240.8,238.8,235.6,196.4,186.4,184.4 +637,172.3,287.8,287.2,286.9,286.4,280,264.8,263.6,263,262.2,251.8,189.4,244.8,241.1,239.2,236,196.4,186.5,184.5 +638,172.3,287.8,287.3,286.9,286.5,280.1,264.9,263.7,263.2,262.3,251.9,189.4,245.1,241.4,239.5,236.4,196.5,186.5,184.5 +639,172.3,287.9,287.4,287,286.6,280.2,265,263.9,263.3,262.5,252.1,189.5,245.3,241.6,239.8,236.8,196.6,186.5,184.5 +640,172.3,288,287.4,287.1,286.7,280.3,265.1,264,263.4,262.6,252.2,189.5,245.5,241.9,240.1,237.1,196.7,186.6,184.5 +641,172.3,288.1,287.5,287.2,286.8,280.5,265.3,264.1,263.5,262.7,252.4,189.6,245.7,242.2,240.4,237.5,196.8,186.6,184.6 +642,172.3,288.2,287.6,287.3,286.8,280.6,265.4,264.2,263.7,262.8,252.6,189.6,245.9,242.4,240.7,237.9,196.8,186.6,184.6 +643,172.4,288.3,287.7,287.4,286.9,280.7,265.5,264.3,263.8,263,252.7,189.6,246.1,242.7,241,238.2,196.9,186.7,184.6 +644,172.4,288.4,287.8,287.5,287,280.8,265.6,264.5,263.9,263.1,252.9,189.7,246.2,242.9,241.3,238.6,197,186.7,184.6 +645,172.4,288.5,287.9,287.6,287.1,280.9,265.7,264.6,264,263.2,253,189.7,246.4,243.2,241.6,238.9,197.1,186.7,184.7 +646,172.4,288.5,288,287.7,287.2,281,265.8,264.7,264.1,263.3,253.2,189.8,246.6,243.4,241.8,239.2,197.1,186.8,184.7 +647,172.4,288.6,288.1,287.8,287.3,281.1,265.9,264.8,264.2,263.4,253.3,189.8,246.8,243.7,242.1,239.6,197.2,186.8,184.7 +648,172.4,288.7,288.2,287.8,287.4,281.2,266.1,264.9,264.4,263.6,253.5,189.9,247,243.9,242.4,239.9,197.3,186.8,184.7 +649,172.4,288.8,288.2,287.9,287.5,281.3,266.2,265,264.5,263.7,253.6,189.9,247.2,244.1,242.6,240.2,197.4,186.9,184.8 +650,172.4,288.9,288.3,288,287.6,281.4,266.3,265.2,264.6,263.8,253.8,189.9,247.4,244.4,242.9,240.5,197.4,186.9,184.8 +651,172.5,289,288.4,288.1,287.7,281.5,266.4,265.3,264.7,263.9,253.9,190,247.5,244.6,243.1,240.8,197.5,186.9,184.8 +652,172.5,289.1,288.5,288.2,287.7,281.6,266.5,265.4,264.8,264.1,254.1,190,247.7,244.8,243.4,241.1,197.6,187,184.9 +653,172.5,289.1,288.6,288.3,287.8,281.7,266.6,265.5,265,264.2,254.2,190.1,247.9,245,243.6,241.4,197.7,187,184.9 +654,172.5,289.2,288.7,288.4,287.9,281.8,266.7,265.6,265.1,264.3,254.4,190.1,248,245.2,243.9,241.7,197.8,187,184.9 +655,172.5,289.3,288.8,288.5,288,281.9,266.8,265.7,265.2,264.4,254.5,190.2,248.2,245.5,244.1,242,197.9,187.1,184.9 +656,172.5,289.4,288.8,288.5,288.1,282,267,265.9,265.3,264.5,254.7,190.2,248.4,245.7,244.3,242.2,197.9,187.1,185 +657,172.5,289.5,288.9,288.6,288.2,282.1,267.1,266,265.4,264.6,254.8,190.2,248.5,245.9,244.6,242.5,198,187.1,185 +658,172.6,289.6,289,288.7,288.3,282.3,267.2,266.1,265.5,264.8,255,190.3,248.7,246.1,244.8,242.8,198.1,187.2,185 +659,172.6,289.6,289.1,288.8,288.4,282.4,267.3,266.2,265.7,264.9,255.1,190.3,248.9,246.3,245,243,198.2,187.2,185 +660,172.6,289.7,289.2,288.9,288.5,282.5,267.4,266.3,265.8,265,255.3,190.4,249,246.5,245.2,243.3,198.3,187.2,185.1 +661,172.6,289.8,289.3,289,288.5,282.6,267.5,266.4,265.9,265.1,255.4,190.4,249.2,246.7,245.5,243.5,198.4,187.3,185.1 +662,172.6,289.9,289.4,289.1,288.6,282.7,267.6,266.5,266,265.2,255.5,190.5,249.4,246.9,245.7,243.8,198.4,187.3,185.1 +663,172.6,290,289.4,289.2,288.7,282.8,267.7,266.7,266.1,265.4,255.7,190.5,249.5,247,245.9,244,198.5,187.3,185.1 +664,172.6,290.1,289.5,289.2,288.8,282.9,267.8,266.8,266.2,265.5,255.8,190.5,249.7,247.2,246.1,244.3,198.6,187.4,185.2 +665,172.6,290.1,289.6,289.3,288.9,283,268,266.9,266.4,265.6,256,190.6,249.8,247.4,246.3,244.5,198.7,187.4,185.2 +666,172.7,290.2,289.7,289.4,289,283.1,268.1,267,266.5,265.7,256.1,190.6,250,247.6,246.5,244.7,198.8,187.4,185.2 +667,172.7,290.3,289.8,289.5,289.1,283.2,268.2,267.1,266.6,265.8,256.2,190.7,250.1,247.8,246.7,245,198.9,187.5,185.3 +668,172.7,290.4,289.9,289.6,289.2,283.3,268.3,267.2,266.7,265.9,256.4,190.7,250.3,248,246.9,245.2,199,187.5,185.3 +669,172.7,290.5,290,289.7,289.2,283.4,268.4,267.3,266.8,266.1,256.5,190.8,250.4,248.1,247.1,245.4,199,187.5,185.3 +670,172.7,290.6,290,289.8,289.3,283.5,268.5,267.5,266.9,266.2,256.7,190.8,250.6,248.3,247.3,245.6,199.1,187.6,185.3 +671,172.7,290.6,290.1,289.8,289.4,283.6,268.6,267.6,267,266.3,256.8,190.9,250.7,248.5,247.5,245.8,199.2,187.6,185.4 +672,172.7,290.7,290.2,289.9,289.5,283.7,268.7,267.7,267.2,266.4,256.9,190.9,250.9,248.7,247.6,246.1,199.3,187.6,185.4 +673,172.7,290.8,290.3,290,289.6,283.8,268.8,267.8,267.3,266.5,257.1,190.9,251,248.8,247.8,246.3,199.4,187.7,185.4 +674,172.8,290.9,290.4,290.1,289.7,283.9,269,267.9,267.4,266.6,257.2,191,251.2,249,248,246.5,199.5,187.7,185.4 +675,172.8,291,290.5,290.2,289.8,284,269.1,268,267.5,266.8,257.3,191,251.3,249.2,248.2,246.7,199.6,187.7,185.5 +676,172.8,291.1,290.5,290.3,289.9,284.1,269.2,268.1,267.6,266.9,257.5,191.1,251.4,249.3,248.4,246.9,199.7,187.8,185.5 +677,172.8,291.1,290.6,290.3,289.9,284.2,269.3,268.2,267.7,267,257.6,191.1,251.6,249.5,248.5,247.1,199.8,187.8,185.5 +678,172.8,291.2,290.7,290.4,290,284.3,269.4,268.4,267.8,267.1,257.8,191.2,251.7,249.7,248.7,247.3,199.8,187.8,185.5 +679,172.8,291.3,290.8,290.5,290.1,284.4,269.5,268.5,268,267.2,257.9,191.2,251.9,249.8,248.9,247.5,199.9,187.9,185.6 +680,172.8,291.4,290.9,290.6,290.2,284.5,269.6,268.6,268.1,267.3,258,191.2,252,250,249.1,247.7,200,187.9,185.6 +681,172.8,291.5,291,290.7,290.3,284.6,269.7,268.7,268.2,267.4,258.2,191.3,252.1,250.1,249.2,247.8,200.1,187.9,185.6 +682,172.9,291.6,291,290.8,290.4,284.7,269.8,268.8,268.3,267.6,258.3,191.3,252.3,250.3,249.4,248,200.2,188,185.7 +683,172.9,291.6,291.1,290.9,290.5,284.8,269.9,268.9,268.4,267.7,258.4,191.4,252.4,250.5,249.6,248.2,200.3,188,185.7 +684,172.9,291.7,291.2,290.9,290.5,284.9,270,269,268.5,267.8,258.6,191.4,252.6,250.6,249.7,248.4,200.4,188,185.7 +685,172.9,291.8,291.3,291,290.6,285,270.2,269.1,268.6,267.9,258.7,191.5,252.7,250.8,249.9,248.6,200.5,188.1,185.7 +686,172.9,291.9,291.4,291.1,290.7,285.1,270.3,269.3,268.7,268,258.8,191.5,252.8,250.9,250.1,248.8,200.6,188.1,185.8 +687,172.9,292,291.5,291.2,290.8,285.2,270.4,269.4,268.9,268.1,259,191.6,253,251.1,250.2,248.9,200.7,188.2,185.8 +688,172.9,292.1,291.5,291.3,290.9,285.3,270.5,269.5,269,268.2,259.1,191.6,253.1,251.2,250.4,249.1,200.8,188.2,185.8 +689,173,292.1,291.6,291.4,291,285.4,270.6,269.6,269.1,268.4,259.2,191.6,253.2,251.4,250.5,249.3,200.9,188.2,185.8 +690,173,292.2,291.7,291.4,291,285.5,270.7,269.7,269.2,268.5,259.4,191.7,253.4,251.5,250.7,249.4,201,188.3,185.9 +691,173,292.3,291.8,291.5,291.1,285.7,270.8,269.8,269.3,268.6,259.5,191.7,253.5,251.7,250.9,249.6,201.1,188.3,185.9 +692,173,292.4,291.9,291.6,291.2,285.8,270.9,269.9,269.4,268.7,259.7,191.8,253.6,251.8,251,249.8,201.2,188.3,185.9 +693,173,292.5,292,291.7,291.3,285.9,271,270,269.5,268.8,259.8,191.8,253.8,252,251.2,249.9,201.3,188.4,185.9 +694,173,292.6,292.1,291.8,291.4,286,271.1,270.1,269.6,268.9,259.9,191.9,253.9,252.1,251.3,250.1,201.4,188.4,186 +695,173,292.6,292.1,291.9,291.5,286.1,271.2,270.3,269.7,269,260.1,191.9,254,252.3,251.5,250.3,201.5,188.4,186 +696,173,292.7,292.2,291.9,291.5,286.2,271.4,270.4,269.9,269.1,260.2,191.9,254.2,252.4,251.6,250.4,201.6,188.5,186 +697,173,292.8,292.3,292,291.6,286.3,271.5,270.5,270,269.3,260.3,192,254.3,252.6,251.8,250.6,201.7,188.5,186.1 +698,173.1,292.9,292.4,292.1,291.7,286.4,271.6,270.6,270.1,269.4,260.4,192,254.4,252.7,251.9,250.8,201.8,188.5,186.1 +699,173.1,293,292.5,292.2,291.8,286.5,271.7,270.7,270.2,269.5,260.6,192.1,254.6,252.8,252.1,250.9,203,188.6,186.1 +700,173.1,293.1,292.6,292.3,291.9,286.5,271.8,270.8,270.3,269.6,260.7,192.1,254.7,253,252.2,251.1,210.2,188.6,186.1 +701,173.1,293.1,292.6,292.4,292,286.6,271.9,270.9,270.4,269.7,260.8,192.2,254.8,253.1,252.4,251.2,212,188.6,186.2 +702,173.1,293.2,292.7,292.4,292,286.7,272,271,270.5,269.8,261,192.2,255,253.3,252.5,251.4,212.7,188.7,186.2 +703,173.1,293.3,292.8,292.5,292.1,286.8,272.1,271.1,270.6,269.9,261.1,192.3,255.1,253.4,252.6,251.5,213.3,188.7,186.2 +704,173.1,293.4,292.9,292.6,292.2,286.9,272.2,271.2,270.7,270,261.2,192.3,255.2,253.6,252.8,251.7,214,188.7,186.2 +705,173.1,293.5,293,292.7,292.3,287,272.3,271.4,270.9,270.1,261.4,192.3,255.4,253.7,252.9,251.8,214.6,188.8,186.3 +706,173.2,293.6,293.1,292.8,292.4,287.1,272.4,271.5,271,270.3,261.5,192.4,255.5,253.8,253.1,252,215.3,188.8,186.3 +707,173.2,293.6,293.1,292.9,292.5,287.2,272.5,271.6,271.1,270.4,261.6,192.4,255.6,254,253.2,252.1,215.9,188.8,186.3 +708,173.2,293.7,293.2,292.9,292.5,287.3,272.7,271.7,271.2,270.5,261.8,192.5,255.8,254.1,253.4,252.3,216.6,188.9,186.4 +709,173.2,293.8,293.3,293,292.6,287.4,272.8,271.8,271.3,270.6,261.9,192.5,255.9,254.3,253.5,252.4,217.2,188.9,186.4 +710,173.2,293.9,293.4,293.1,292.7,287.5,272.9,271.9,271.4,270.7,262,192.6,256,254.4,253.7,252.6,219.5,188.9,186.4 +711,173.2,294,293.5,293.2,292.8,287.6,273,272,271.5,270.8,262.2,192.6,256.2,254.5,253.8,252.7,220.8,189,186.4 +712,173.2,294.1,293.6,293.3,292.9,287.7,273.1,272.1,271.6,270.9,262.3,192.7,256.3,254.7,253.9,252.9,222,189,186.5 +713,173.2,294.2,293.6,293.4,293,287.8,273.2,272.2,271.7,271,262.4,192.7,256.4,254.8,254.1,253,223.2,189,186.5 +714,173.3,294.2,293.7,293.4,293,287.9,273.3,272.3,271.8,271.1,262.5,192.7,256.5,254.9,254.2,253.2,224.2,189.1,186.5 +715,173.3,294.3,293.8,293.5,293.1,288,273.4,272.5,272,271.3,262.7,192.8,256.7,255.1,254.4,253.3,225.2,189.1,186.5 +716,173.3,294.4,293.9,293.6,293.2,288.1,273.5,272.6,272.1,271.4,262.8,192.8,256.8,255.2,254.5,253.5,226.1,189.2,186.6 +717,173.3,294.5,294,293.7,293.3,288.2,273.6,272.7,272.2,271.5,262.9,192.9,256.9,255.4,254.6,253.6,227,189.2,186.6 +718,173.3,294.6,294.1,293.8,293.4,288.3,273.7,272.8,272.3,271.6,263.1,192.9,257.1,255.5,254.8,253.7,227.8,189.2,186.6 +719,173.3,294.7,294.1,293.9,293.5,288.4,273.8,272.9,272.4,271.7,263.2,193,257.2,255.6,254.9,253.9,228.6,189.3,186.6 +720,173.3,294.7,294.2,293.9,293.6,288.5,274,273,272.5,271.8,263.3,193,257.3,255.8,255,254,229.3,189.3,186.7 +721,173.3,294.8,294.3,294,293.6,288.6,274.1,273.1,272.6,271.9,263.5,193.1,257.4,255.9,255.2,254.2,230.1,189.3,186.7 +722,173.4,294.9,294.4,294.1,293.7,288.7,274.2,273.2,272.7,272,263.6,193.1,257.6,256,255.3,254.3,230.7,189.4,186.7 +723,173.4,295,294.5,294.2,293.8,288.8,274.3,273.3,272.8,272.1,263.7,193.2,257.7,256.2,255.5,254.5,231.4,189.4,186.8 +724,173.4,295.1,294.6,294.3,293.9,288.9,274.4,273.4,272.9,272.3,263.8,193.2,257.8,256.3,255.6,254.6,232,189.4,186.8 +725,173.4,295.2,294.7,294.4,294,289,274.5,273.5,273.1,272.4,264,193.2,258,256.4,255.7,254.7,232.6,189.5,186.8 +726,173.4,295.3,294.7,294.5,294.1,289.1,274.6,273.7,273.2,272.5,264.1,193.3,258.1,256.6,255.9,254.9,233.2,189.5,186.8 +727,173.4,295.3,294.8,294.5,294.1,289.2,274.7,273.8,273.3,272.6,264.2,193.3,258.2,256.7,256,255,233.8,189.5,186.9 +728,173.4,295.4,294.9,294.6,294.2,289.3,274.8,273.9,273.4,272.7,264.3,193.4,258.3,256.8,256.1,255.1,234.3,189.6,186.9 +729,173.4,295.5,295,294.7,294.3,289.4,274.9,274,273.5,272.8,264.5,193.4,258.5,257,256.3,255.3,234.9,189.6,186.9 +730,173.4,295.6,295.1,294.8,294.4,289.4,275,274.1,273.6,272.9,264.6,193.5,258.6,257.1,256.4,255.4,235.4,189.6,186.9 +731,173.5,295.7,295.2,294.9,294.5,289.5,275.1,274.2,273.7,273,264.7,193.5,258.7,257.2,256.5,255.6,235.9,189.7,187 +732,173.5,295.8,295.2,295,294.6,289.6,275.2,274.3,273.8,273.1,264.8,193.6,258.9,257.4,256.7,255.7,236.4,189.7,187 +733,173.5,295.9,295.3,295,294.6,289.7,275.3,274.4,273.9,273.2,265,193.6,259,257.5,256.8,255.8,236.8,189.7,187 +734,173.5,295.9,295.4,295.1,294.7,289.8,275.5,274.5,274,273.4,265.1,193.7,259.1,257.6,256.9,256,237.3,189.8,187.1 +735,173.5,296,295.5,295.2,294.8,289.9,275.6,274.6,274.1,273.5,265.2,193.7,259.2,257.8,257.1,256.1,237.7,189.8,187.1 +736,173.5,296.1,295.6,295.3,294.9,290,275.7,274.7,274.3,273.6,265.3,193.7,259.4,257.9,257.2,256.2,238.2,189.8,187.1 +737,173.5,296.2,295.7,295.4,295,290.1,275.8,274.9,274.4,273.7,265.5,193.8,259.5,258,257.4,256.4,238.6,189.9,187.1 +738,173.5,296.3,295.8,295.5,295.1,290.2,275.9,275,274.5,273.8,265.6,193.8,259.6,258.2,257.5,256.5,239,189.9,187.2 +739,173.6,296.4,295.8,295.6,295.1,290.3,276,275.1,274.6,273.9,265.7,193.9,259.7,258.3,257.6,256.7,239.4,190,187.2 +740,173.6,296.4,295.9,295.6,295.2,290.4,276.1,275.2,274.7,274,265.8,193.9,259.9,258.4,257.8,256.8,239.8,190,187.2 +741,173.6,296.5,296,295.7,295.3,290.5,276.2,275.3,274.8,274.1,266,194,260,258.6,257.9,256.9,240.2,190,187.2 +742,173.6,296.6,296.1,295.8,295.4,290.6,276.3,275.4,274.9,274.2,266.1,194,260.1,258.7,258,257.1,240.6,190.1,187.3 +743,173.6,296.7,296.2,295.9,295.5,290.7,276.4,275.5,275,274.3,266.2,194.1,260.3,258.8,258.2,257.2,240.9,190.1,187.3 +744,173.6,296.8,296.3,296,295.6,290.7,276.5,275.6,275.1,274.4,266.3,194.1,260.4,259,258.3,257.3,241.3,190.1,187.3 +745,173.6,296.9,296.4,296.1,295.7,290.8,276.6,275.7,275.2,274.6,266.5,194.2,260.5,259.1,258.4,257.5,241.6,190.2,187.4 +746,173.6,297,296.4,296.1,295.7,290.9,276.7,275.8,275.3,274.7,266.6,194.2,260.6,259.2,258.5,257.6,242,190.2,187.4 +747,173.6,297,296.5,296.2,295.8,291,276.8,275.9,275.5,274.8,266.7,194.3,260.8,259.4,258.7,257.7,242.3,190.2,187.4 +748,173.7,297.1,296.6,296.3,295.9,291.1,277,276,275.6,274.9,266.8,194.3,260.9,259.5,258.8,257.9,242.6,190.3,187.4 +749,173.7,297.2,296.7,296.4,296,291.2,277.1,276.2,275.7,275,266.9,194.3,261,259.6,258.9,258,243,190.3,187.5 +750,173.7,297.3,296.8,296.5,296.1,291.3,277.2,276.3,275.8,275.1,267.1,194.4,261.1,259.7,259.1,258.1,243.3,190.3,187.5 +751,173.7,297.4,296.9,296.6,296.2,291.4,277.3,276.4,275.9,275.2,267.2,194.4,261.2,259.9,259.2,258.3,243.6,190.4,187.5 +752,173.7,297.5,297,296.7,296.3,291.5,277.4,276.5,276,275.3,267.3,194.5,261.4,260,259.3,258.4,243.9,190.4,187.5 +753,173.7,297.6,297,296.7,296.3,291.6,277.5,276.6,276.1,275.4,267.4,194.5,261.5,260.1,259.5,258.5,244.2,190.4,187.6 +754,173.7,297.6,297.1,296.8,296.4,291.6,277.6,276.7,276.2,275.5,267.5,194.6,261.6,260.3,259.6,258.7,244.5,190.5,187.6 +755,173.7,297.7,297.2,296.9,296.5,291.7,277.7,276.8,276.3,275.6,267.7,194.6,261.7,260.4,259.7,258.8,244.8,190.5,187.6 +756,173.8,297.8,297.3,297,296.6,291.8,277.8,276.9,276.4,275.7,267.8,194.7,261.9,260.5,259.9,258.9,245.1,190.6,187.7 +757,173.8,297.9,297.4,297.1,296.7,291.9,277.9,277,276.5,275.9,267.9,194.7,262,260.6,260,259.1,245.3,190.6,187.7 +758,173.8,298,297.5,297.2,296.8,292,278,277.1,276.6,276,268,194.8,262.1,260.8,260.1,259.2,245.6,190.6,187.7 +759,173.8,298.1,297.5,297.3,296.8,292.1,278.1,277.2,276.8,276.1,268.1,194.8,262.2,260.9,260.3,259.3,245.9,190.7,187.7 +760,173.8,298.1,297.6,297.3,296.9,292.2,278.2,277.3,276.9,276.2,268.3,194.9,262.4,261,260.4,259.5,246.1,190.7,187.8 +761,173.8,298.2,297.7,297.4,297,292.3,278.3,277.4,277,276.3,268.4,194.9,262.5,261.2,260.5,259.6,246.4,190.7,187.8 +762,173.8,298.3,297.8,297.5,297.1,292.4,278.4,277.6,277.1,276.4,268.5,195,262.6,261.3,260.6,259.7,246.6,190.8,187.8 +763,173.8,298.4,297.9,297.6,297.2,292.4,278.5,277.7,277.2,276.5,268.6,195,262.7,261.4,260.8,259.9,246.9,190.8,187.8 +764,173.8,298.5,298,297.7,297.3,292.5,278.7,277.8,277.3,276.6,268.7,195.1,262.8,261.5,260.9,260,247.1,190.8,187.9 +765,173.9,298.6,298.1,297.8,297.4,292.6,278.8,277.9,277.4,276.7,268.9,195.1,263,261.7,261,260.1,247.4,190.9,187.9 +766,173.9,298.6,298.1,297.9,297.4,292.7,278.9,278,277.5,276.8,269,195.1,263.1,261.8,261.2,260.2,247.6,190.9,187.9 +767,173.9,298.7,298.2,297.9,297.5,292.8,279,278.1,277.6,276.9,269.1,195.2,263.2,261.9,261.3,260.4,247.9,190.9,187.9 +768,173.9,298.8,298.3,298,297.6,292.9,279.1,278.2,277.7,277,269.2,195.2,263.3,262,261.4,260.5,248.1,191,188 +769,173.9,298.9,298.4,298.1,297.7,293,279.2,278.3,277.8,277.2,269.3,195.3,263.4,262.2,261.5,260.6,248.3,191,188 +770,173.9,299,298.5,298.2,297.8,293.1,279.3,278.4,277.9,277.3,269.4,195.3,263.6,262.3,261.7,260.8,248.5,191.1,188 +771,173.9,299.1,298.6,298.3,297.9,293.1,279.4,278.5,278,277.4,269.6,195.4,263.7,262.4,261.8,260.9,248.8,191.1,188.1 +772,173.9,299.2,298.6,298.4,298,293.2,279.5,278.6,278.1,277.5,269.7,195.4,263.8,262.5,261.9,261,249,191.1,188.1 +773,173.9,299.2,298.7,298.4,298,293.3,279.6,278.7,278.3,277.6,269.8,195.5,263.9,262.7,262,261.1,249.2,191.2,188.1 +774,174,299.3,298.8,298.5,298.1,293.4,279.7,278.8,278.4,277.7,269.9,195.5,264,262.8,262.2,261.3,249.4,191.2,188.1 +775,174,299.4,298.9,298.6,298.2,293.5,279.8,278.9,278.5,277.8,270,195.6,264.2,262.9,262.3,261.4,249.6,191.2,188.2 +776,174,299.5,299,298.7,298.3,293.6,279.9,279,278.6,277.9,270.1,195.6,264.3,263,262.4,261.5,249.8,191.3,188.2 +777,174,299.6,299.1,298.8,298.4,293.7,280,279.2,278.7,278,270.3,195.7,264.4,263.2,262.5,261.7,250,191.3,188.2 +778,174,299.7,299.2,298.9,298.5,293.7,280.1,279.3,278.8,278.1,270.4,195.7,264.5,263.3,262.7,261.8,250.2,191.3,188.2 +779,174,299.7,299.2,299,298.5,293.8,280.2,279.4,278.9,278.2,270.5,195.8,264.6,263.4,262.8,261.9,250.4,191.4,188.3 +780,174,299.8,299.3,299,298.6,293.9,280.3,279.5,279,278.3,270.6,195.8,264.8,263.5,262.9,262,250.6,191.4,188.3 +781,174,299.9,299.4,299.1,298.7,294,280.4,279.6,279.1,278.4,270.7,195.9,264.9,263.7,263,262.2,250.8,191.4,188.3 +782,174,300,299.5,299.2,298.8,294.1,280.5,279.7,279.2,278.6,270.8,195.9,265,263.8,263.2,262.3,251,191.5,188.4 +783,174.1,300.1,299.6,299.3,298.9,294.2,280.6,279.8,279.3,278.7,271,196,265.1,263.9,263.3,262.4,251.2,191.5,188.4 +784,174.1,300.1,299.7,299.4,299,294.3,280.7,279.9,279.4,278.8,271.1,196,265.2,264,263.4,262.5,251.4,191.6,188.4 +785,174.1,300.2,299.7,299.5,299.1,294.3,280.9,280,279.5,278.9,271.2,196.1,265.3,264.1,263.5,262.7,251.5,191.6,188.4 +786,174.1,300.3,299.8,299.5,299.1,294.4,281,280.1,279.6,279,271.3,196.1,265.5,264.3,263.7,262.8,251.7,191.6,188.5 +787,174.1,300.4,299.9,299.6,299.2,294.5,281.1,280.2,279.7,279.1,271.4,196.2,265.6,264.4,263.8,262.9,251.9,191.7,188.5 +788,174.1,300.5,300,299.7,299.3,294.6,281.2,280.3,279.9,279.2,271.5,196.2,265.7,264.5,263.9,263.1,252.1,191.7,188.5 +789,174.1,300.6,300.1,299.8,299.4,294.7,281.3,280.4,280,279.3,271.6,196.3,265.8,264.6,264,263.2,252.3,191.7,188.5 +790,174.1,300.6,300.2,299.9,299.5,294.8,281.4,280.5,280.1,279.4,271.8,196.3,265.9,264.7,264.2,263.3,252.4,191.8,188.6 +791,174.1,300.7,300.2,300,299.6,294.8,281.5,280.6,280.2,279.5,271.9,196.4,266,264.9,264.3,263.4,252.6,191.8,188.6 +792,174.2,300.8,300.3,300,299.6,294.9,281.6,280.7,280.3,279.6,272,196.4,266.2,265,264.4,263.6,252.8,191.8,188.6 +793,174.2,300.9,300.4,300.1,299.7,295,281.7,280.8,280.4,279.7,272.1,196.5,266.3,265.1,264.5,263.7,252.9,191.9,188.7 +794,174.2,301,300.5,300.2,299.8,295.1,281.8,280.9,280.5,279.8,272.2,196.5,266.4,265.2,264.6,263.8,253.1,191.9,188.7 +795,174.2,301.1,300.6,300.3,299.9,295.2,281.9,281.1,280.6,279.9,272.3,196.6,266.5,265.3,264.8,263.9,253.3,192,188.7 +796,174.2,301.1,300.7,300.4,300,295.3,282,281.2,280.7,280.1,272.4,196.6,266.6,265.5,264.9,264,253.4,192,188.7 +797,174.2,301.2,300.7,300.5,300.1,295.3,282.1,281.3,280.8,280.2,272.5,196.7,266.7,265.6,265,264.2,253.6,192,188.8 +798,174.2,301.3,300.8,300.5,300.2,295.4,282.2,281.4,280.9,280.3,272.7,196.7,266.8,265.7,265.1,264.3,253.8,192.1,188.8 +799,174.2,301.4,300.9,300.6,300.2,295.5,282.3,281.5,281,280.4,272.8,196.8,267,265.8,265.2,264.4,253.9,192.1,188.8 +800,174.2,301.5,301,300.7,300.3,295.6,282.4,281.6,281.1,280.5,272.9,196.8,267.1,265.9,265.4,264.5,254.1,192.1,188.8 +801,174.3,301.5,301.1,300.8,300.4,295.7,282.5,281.7,281.2,280.6,273,196.9,267.2,266.1,265.5,264.7,254.2,192.2,188.9 +802,174.3,301.6,301.1,300.9,300.5,295.8,282.6,281.8,281.3,280.7,273.1,196.9,267.3,266.2,265.6,264.8,254.4,192.2,188.9 +803,174.3,301.7,301.2,301,300.6,295.8,282.7,281.9,281.4,280.8,273.2,197,267.4,266.3,265.7,264.9,254.5,192.2,188.9 +804,174.3,301.8,301.3,301,300.7,295.9,282.8,282,281.5,280.9,273.3,197,267.5,266.4,265.8,265,254.7,192.3,189 +805,174.3,301.9,301.4,301.1,300.7,296,282.9,282.1,281.6,281,273.4,197.1,267.6,266.5,266,265.1,254.9,192.3,189 +806,174.3,302,301.5,301.2,300.8,296.1,283,282.2,281.8,281.1,273.6,197.1,267.7,266.6,266.1,265.3,255,192.4,189 +807,174.3,302,301.6,301.3,300.9,296.2,283.1,282.3,281.9,281.2,273.7,197.2,267.9,266.8,266.2,265.4,255.2,192.4,189 +808,174.3,302.1,301.6,301.4,301,296.3,283.2,282.4,282,281.3,273.8,197.2,268,266.9,266.3,265.5,255.3,192.4,189.1 +809,174.3,302.2,301.7,301.5,301.1,296.3,283.3,282.5,282.1,281.4,273.9,197.3,268.1,267,266.4,265.6,255.5,192.5,189.1 +810,174.4,302.3,301.8,301.5,301.1,296.4,283.4,282.6,282.2,281.5,274,197.3,268.2,267.1,266.5,265.7,255.6,192.5,189.1 +811,174.4,302.4,301.9,301.6,301.2,296.5,283.5,282.7,282.3,281.6,274.1,197.4,268.3,267.2,266.7,265.9,255.8,192.5,189.2 +812,174.4,302.4,302,301.7,301.3,296.6,283.6,282.8,282.4,281.7,274.2,197.4,268.4,267.3,266.8,266,255.9,192.6,189.2 +813,174.4,302.5,302,301.8,301.4,296.7,283.7,282.9,282.5,281.8,274.3,197.5,268.5,267.4,266.9,266.1,256.1,192.6,189.2 +814,174.4,302.6,302.1,301.9,301.5,296.8,283.8,283,282.6,282,274.4,197.5,268.6,267.6,267,266.2,256.2,192.7,189.2 +815,174.4,302.7,302.2,301.9,301.6,296.8,283.9,283.1,282.7,282.1,274.6,197.6,268.8,267.7,267.1,266.3,256.3,192.7,189.3 +816,174.4,302.8,302.3,302,301.6,296.9,284,283.2,282.8,282.2,274.7,199.6,268.9,267.8,267.2,266.5,256.5,192.7,189.3 +817,174.4,302.8,302.4,302.1,301.7,297,284.1,283.3,282.9,282.3,274.8,217.7,269,267.9,267.4,266.6,256.6,192.8,189.3 +818,174.4,302.9,302.5,302.2,301.8,297.1,284.2,283.4,283,282.4,274.9,217.9,269.1,268,267.5,266.7,256.8,192.8,189.3 +819,174.4,303,302.5,302.3,301.9,297.2,284.3,283.5,283.1,282.5,275,218.1,269.2,268.1,267.6,266.8,256.9,192.8,189.4 +820,174.5,303.1,302.6,302.4,302,297.3,284.4,283.6,283.2,282.6,275.1,218.3,269.3,268.2,267.7,266.9,257.1,192.9,189.4 +821,174.5,303.2,302.7,302.4,302.1,297.3,284.5,283.7,283.3,282.7,275.2,218.5,269.4,268.4,267.8,267,257.2,192.9,189.4 +822,174.5,303.2,302.8,302.5,302.1,297.4,284.6,283.9,283.4,282.8,275.3,218.7,269.5,268.5,267.9,267.2,257.3,192.9,189.5 +823,174.5,303.3,302.9,302.6,302.2,297.5,284.7,284,283.5,282.9,275.4,219,269.6,268.6,268,267.3,257.5,193,189.5 +824,174.5,303.4,302.9,302.7,302.3,297.6,284.8,284.1,283.6,283,275.6,219.2,269.8,268.7,268.2,267.4,257.6,193,189.5 +825,174.5,303.5,303,302.8,302.4,297.7,284.9,284.2,283.7,283.1,275.7,219.4,269.9,268.8,268.3,267.5,257.8,193.1,189.5 +826,174.5,303.6,303.1,302.8,302.5,297.8,285,284.3,283.8,283.2,275.8,221.2,270,268.9,268.4,267.6,257.9,193.1,189.6 +827,174.5,303.6,303.2,302.9,302.5,297.8,285.1,284.4,283.9,283.3,275.9,222.6,270.1,269,268.5,267.7,258,193.1,189.6 +828,174.5,303.7,303.3,303,302.6,297.9,285.2,284.5,284,283.4,276,223.9,270.2,269.2,268.6,267.9,258.2,193.2,189.6 +829,174.6,303.8,303.3,303.1,302.7,298,285.3,284.6,284.1,283.5,276.1,225.1,270.3,269.3,268.7,268,258.3,193.2,189.6 +830,174.6,303.9,303.4,303.2,302.8,298.1,285.4,284.7,284.2,283.6,276.2,226.2,270.4,269.4,268.8,268.1,258.5,193.2,189.7 +831,174.6,304,303.5,303.2,302.9,298.2,285.5,284.8,284.3,283.7,276.3,227.2,270.5,269.5,269,268.2,258.6,193.3,189.7 +832,174.6,304.1,303.6,303.3,303,298.3,285.6,284.9,284.4,283.8,276.4,228.2,270.6,269.6,269.1,268.3,258.7,193.3,189.7 +833,174.6,304.1,303.7,303.4,303,298.3,285.7,285,284.5,283.9,276.6,229.1,270.7,269.7,269.2,268.4,258.9,193.4,189.8 +834,174.6,304.2,303.8,303.5,303.1,298.4,285.8,285.1,284.6,284,276.7,229.9,270.8,269.8,269.3,268.5,259,193.4,189.8 +835,174.6,304.3,303.8,303.6,303.2,298.5,285.9,285.2,284.7,284.1,276.8,230.7,271,269.9,269.4,268.7,259.2,193.4,189.8 +836,174.6,304.4,303.9,303.7,303.3,298.6,286,285.3,284.8,284.2,276.9,231.5,271.1,270.1,269.5,268.8,259.3,193.5,189.8 +837,174.6,304.4,304,303.7,303.4,298.7,286.1,285.4,284.9,284.3,277,232.3,271.2,270.2,269.6,268.9,259.4,193.5,189.9 +838,174.6,304.5,304.1,303.8,303.4,298.8,286.2,285.5,285,284.4,277.1,233,271.3,270.3,269.8,269,259.6,193.5,189.9 +839,174.7,304.6,304.2,303.9,303.5,298.9,286.3,285.6,285.1,284.5,277.2,233.6,271.4,270.4,269.9,269.1,259.7,193.6,189.9 +840,174.7,304.7,304.2,304,303.6,298.9,286.4,285.7,285.2,284.6,277.3,234.3,271.5,270.5,270,269.2,259.8,193.6,189.9 +841,174.7,304.8,304.3,304.1,303.7,299,286.5,285.8,285.3,284.7,277.4,234.9,271.6,270.6,270.1,269.3,260,193.7,190 +842,174.7,304.8,304.4,304.1,303.8,299.1,286.6,285.9,285.4,284.8,277.5,235.5,271.7,270.7,270.2,269.5,260.1,193.7,190 +843,174.7,304.9,304.5,304.2,303.8,299.2,286.7,286,285.6,284.9,277.7,236.1,271.8,270.8,270.3,269.6,260.2,193.7,190 +844,174.7,305,304.6,304.3,303.9,299.3,286.8,286.1,285.7,285.1,277.8,236.7,271.9,270.9,270.4,269.7,260.4,193.8,190.1 +845,174.7,305.1,304.6,304.4,304,299.4,286.9,286.2,285.8,285.2,277.9,237.2,272,271.1,270.5,269.8,260.5,193.8,190.1 +846,174.7,305.2,304.7,304.5,304.1,299.4,287,286.3,285.9,285.3,278,237.7,272.2,271.2,270.6,269.9,260.6,193.9,190.1 +847,174.7,305.2,304.8,304.5,304.2,299.5,287.1,286.4,286,285.4,278.1,238.2,272.3,271.3,270.8,270,260.8,193.9,190.1 +848,174.7,305.3,304.9,304.6,304.3,299.6,287.2,286.5,286.1,285.5,278.2,238.7,272.4,271.4,270.9,270.1,260.9,193.9,190.2 +849,174.8,305.4,305,304.7,304.3,299.7,287.3,286.6,286.2,285.6,278.3,239.2,272.5,271.5,271,270.2,261,194,190.2 +850,174.8,305.5,305,304.8,304.4,299.8,287.4,286.7,286.2,285.7,278.4,239.7,272.6,271.6,271.1,270.4,261.2,194,190.2 +851,174.8,305.6,305.1,304.9,304.5,299.9,287.5,286.8,286.3,285.8,278.5,240.1,272.7,271.7,271.2,270.5,261.3,194,190.3 +852,174.8,305.6,305.2,304.9,304.6,300,287.6,286.9,286.4,285.9,278.6,240.6,272.8,271.8,271.3,270.6,261.5,194.1,190.3 +853,174.8,305.7,305.3,305,304.7,300,287.7,287,286.5,286,278.7,241,272.9,271.9,271.4,270.7,261.6,194.1,190.3 +854,174.8,305.8,305.3,305.1,304.7,300.1,287.8,287.1,286.6,286.1,278.9,241.4,273,272,271.5,270.8,261.7,194.2,190.3 +855,174.8,305.9,305.4,305.2,304.8,300.2,287.9,287.1,286.7,286.2,279,241.8,273.1,272.2,271.6,270.9,261.9,194.2,190.4 +856,174.8,306,305.5,305.3,304.9,300.3,288,287.2,286.8,286.3,279.1,242.2,273.2,272.3,271.8,271,262,194.2,190.4 +857,174.8,306,305.6,305.3,305,300.4,288.1,287.3,286.9,286.4,279.2,242.6,273.3,272.4,271.9,271.1,262.1,194.3,190.4 +858,174.9,306.1,305.7,305.4,305.1,300.5,288.1,287.4,287,286.5,279.3,243,273.5,272.5,272,271.3,262.3,194.3,190.4 +859,174.9,306.2,305.7,305.5,305.1,300.5,288.2,287.5,287.1,286.6,279.4,243.4,273.6,272.6,272.1,271.4,262.4,194.4,190.5 +860,174.9,306.3,305.8,305.6,305.2,300.6,288.3,287.6,287.2,286.7,279.5,243.7,273.7,272.7,272.2,271.5,262.5,194.4,190.5 +861,174.9,306.3,305.9,305.7,305.3,300.7,288.4,287.7,287.3,286.8,279.6,244.1,273.8,272.8,272.3,271.6,262.6,194.4,190.5 +862,174.9,306.4,306,305.7,305.4,300.8,288.5,287.8,287.4,286.9,279.7,244.4,273.9,272.9,272.4,271.7,262.8,194.5,190.6 +863,174.9,306.5,306.1,305.8,305.5,300.9,288.6,287.9,287.5,287,279.8,244.8,274,273,272.5,271.8,262.9,194.5,190.6 +864,174.9,306.6,306.1,305.9,305.5,301,288.7,288,287.6,287.1,279.9,245.1,274.1,273.1,272.6,271.9,263,194.5,190.6 +865,174.9,306.7,306.2,306,305.6,301.1,288.8,288.1,287.7,287.2,280.1,245.4,274.2,273.3,272.7,272,263.2,194.6,190.6 +866,174.9,306.7,306.3,306,305.7,301.1,288.9,288.2,287.8,287.3,280.2,245.7,274.3,273.4,272.9,272.1,263.3,194.6,190.7 +867,174.9,306.8,306.4,306.1,305.8,301.2,289,288.3,287.9,287.4,280.3,246.1,274.4,273.5,273,272.3,263.4,194.7,190.7 +868,175,306.9,306.5,306.2,305.9,301.3,289.1,288.4,288,287.5,280.4,246.4,274.5,273.6,273.1,272.4,263.6,194.7,190.7 +869,175,307,306.5,306.3,305.9,301.4,289.2,288.5,288.1,287.5,280.5,246.7,274.6,273.7,273.2,272.5,263.7,194.7,190.8 +870,175,307.1,306.6,306.4,306,301.5,289.3,288.6,288.2,287.6,280.6,247,274.7,273.8,273.3,272.6,263.8,194.8,190.8 +871,175,307.1,306.7,306.4,306.1,301.6,289.4,288.7,288.3,287.7,280.7,247.3,274.9,273.9,273.4,272.7,264,194.8,190.8 +872,175,307.2,306.8,306.5,306.2,301.6,289.5,288.8,288.4,287.8,280.8,247.5,275,274,273.5,272.8,264.1,194.9,190.8 +873,175,307.3,306.8,306.6,306.2,301.7,289.5,288.9,288.5,287.9,280.9,247.8,275.1,274.1,273.6,272.9,264.2,194.9,190.9 +874,175,307.4,306.9,306.7,306.3,301.8,289.6,289,288.6,288,281,248.1,275.2,274.2,273.7,273,264.3,194.9,190.9 +875,175,307.4,307,306.8,306.4,301.9,289.7,289.1,288.7,288.1,281.1,248.4,275.3,274.3,273.8,273.1,264.5,195,190.9 +876,175,307.5,307.1,306.8,306.5,302,289.8,289.2,288.8,288.2,281.2,248.6,275.4,274.5,274,273.2,264.6,195,190.9 +877,175,307.6,307.2,306.9,306.6,302.1,289.9,289.3,288.9,288.3,281.4,248.9,275.5,274.6,274.1,273.4,264.7,195.1,191 +878,175.1,307.7,307.2,307,306.6,302.2,290,289.3,289,288.4,281.5,249.1,275.6,274.7,274.2,273.5,264.9,195.1,191 +879,175.1,307.8,307.3,307.1,306.7,302.2,290.1,289.4,289.1,288.5,281.6,249.4,275.7,274.8,274.3,273.6,265,195.1,191 +880,175.1,307.8,307.4,307.2,306.8,302.3,290.2,289.5,289.2,288.6,281.7,249.6,275.8,274.9,274.4,273.7,265.1,195.2,191.1 +881,175.1,307.9,307.5,307.2,306.9,302.4,290.3,289.6,289.3,288.7,281.8,249.9,275.9,275,274.5,273.8,265.2,195.2,191.1 +882,175.1,308,307.6,307.3,307,302.5,290.4,289.7,289.3,288.8,281.9,250.1,276,275.1,274.6,273.9,265.4,195.3,191.1 +883,175.1,308.1,307.6,307.4,307,302.6,290.5,289.8,289.4,288.9,282,250.4,276.1,275.2,274.7,274,265.5,195.3,191.1 +884,175.1,308.1,307.7,307.5,307.1,302.7,290.5,289.9,289.5,289,282.1,250.6,276.2,275.3,274.8,274.1,265.6,195.3,191.2 +885,175.1,308.2,307.8,307.5,307.2,302.7,290.6,290,289.6,289.1,282.2,250.8,276.4,275.4,274.9,274.2,265.8,195.4,191.2 +886,175.1,308.3,307.9,307.6,307.3,302.8,290.7,290.1,289.7,289.2,282.3,251.1,276.5,275.5,275,274.3,265.9,195.4,191.2 +887,175.1,308.4,307.9,307.7,307.4,302.9,290.8,290.2,289.8,289.3,282.4,251.3,276.6,275.6,275.2,274.5,266,195.5,191.3 +888,175.2,308.5,308,307.8,307.4,303,290.9,290.3,289.9,289.4,282.5,251.5,276.7,275.8,275.3,274.6,266.1,195.5,191.3 +889,175.2,308.5,308.1,307.9,307.5,303.1,291,290.4,290,289.5,282.7,251.7,276.8,275.9,275.4,274.7,266.3,195.5,191.3 +890,175.2,308.6,308.2,307.9,307.6,303.2,291.1,290.5,290.1,289.6,282.8,251.9,276.9,276,275.5,274.8,266.4,195.6,191.3 +891,175.2,308.7,308.3,308,307.7,303.2,291.2,290.5,290.2,289.7,282.9,252.1,277,276.1,275.6,274.9,266.5,195.6,191.4 +892,175.2,308.8,308.3,308.1,307.7,303.3,291.3,290.6,290.3,289.8,283,252.3,277.1,276.2,275.7,275,266.6,195.7,191.4 +893,175.2,308.8,308.4,308.2,307.8,303.4,291.3,290.7,290.4,289.9,283.1,252.5,277.2,276.3,275.8,275.1,266.8,195.7,191.4 +894,175.2,308.9,308.5,308.2,307.9,303.5,291.4,290.8,290.5,289.9,283.2,252.7,277.3,276.4,275.9,275.2,266.9,195.7,191.4 +895,175.2,309,308.6,308.3,308,303.6,291.5,290.9,290.6,290,283.3,252.9,277.4,276.5,276,275.3,267,195.8,191.5 +896,175.2,309.1,308.6,308.4,308.1,303.7,291.6,291,290.6,290.1,283.4,253.1,277.5,276.6,276.1,275.4,267.1,195.8,191.5 +897,175.2,309.2,308.7,308.5,308.1,303.7,291.7,291.1,290.7,290.2,283.5,253.3,277.6,276.7,276.2,275.5,267.3,195.9,191.5 +898,175.2,309.2,308.8,308.6,308.2,303.8,291.8,291.2,290.8,290.3,283.6,253.5,277.7,276.8,276.3,275.6,267.4,195.9,191.6 +899,175.3,309.3,308.9,308.6,308.3,303.9,291.9,291.3,290.9,290.4,283.7,253.7,277.8,276.9,276.4,275.8,267.5,195.9,191.6 +900,175.3,309.4,309,308.7,308.4,304,292,291.4,291,290.5,283.8,253.9,278,277,276.6,275.9,267.6,196,191.6 +901,175.3,309.5,309,308.8,308.4,304.1,292,291.4,291.1,290.6,283.9,254.1,278.1,277.2,276.7,276,267.7,196,191.6 +902,175.3,309.5,309.1,308.9,308.5,304.2,292.1,291.5,291.2,290.7,284,254.3,278.2,277.3,276.8,276.1,267.9,196.1,191.7 +903,175.3,309.6,309.2,308.9,308.6,304.2,292.2,291.6,291.3,290.8,284.1,254.5,278.3,277.4,276.9,276.2,268,196.1,191.7 +904,175.3,309.7,309.3,309,308.7,304.3,292.3,291.7,291.4,290.9,284.3,254.6,278.4,277.5,277,276.3,268.1,196.2,191.7 +905,175.3,309.8,309.3,309.1,308.8,304.4,292.4,291.8,291.5,291,284.4,254.8,278.5,277.6,277.1,276.4,268.2,196.2,191.8 +906,175.3,309.8,309.4,309.2,308.8,304.5,292.5,291.9,291.6,291.1,284.5,255,278.6,277.7,277.2,276.5,268.4,196.2,191.8 +907,175.3,309.9,309.5,309.3,308.9,304.6,292.6,292,291.6,291.2,284.6,255.2,278.7,277.8,277.3,276.6,268.5,196.3,191.8 +908,175.3,310,309.6,309.3,309,304.7,292.6,292.1,291.7,291.2,284.7,255.3,278.8,277.9,277.4,276.7,268.6,196.3,191.8 +909,175.4,310.1,309.7,309.4,309.1,304.7,292.7,292.2,291.8,291.3,284.8,255.5,278.9,278,277.5,276.8,268.7,196.4,191.9 +910,175.4,310.2,309.7,309.5,309.1,304.8,292.8,292.2,291.9,291.4,284.9,255.7,279,278.1,277.6,276.9,268.8,196.4,191.9 +911,175.4,310.2,309.8,309.6,309.2,304.9,292.9,292.3,292,291.5,285,255.8,279.1,278.2,277.7,277.1,269,196.4,191.9 +912,175.4,310.3,309.9,309.6,309.3,305,293,292.4,292.1,291.6,285.1,256,279.2,278.3,277.8,277.2,269.1,196.5,191.9 +913,175.4,310.4,310,309.7,309.4,305.1,293.1,292.5,292.2,291.7,285.2,256.2,279.3,278.4,278,277.3,269.2,196.5,192 +914,175.4,310.5,310,309.8,309.5,305.2,293.2,292.6,292.3,291.8,285.3,256.3,279.4,278.5,278.1,277.4,269.3,196.6,192 +915,175.4,310.5,310.1,309.9,309.5,305.2,293.2,292.7,292.4,291.9,285.4,256.5,279.5,278.7,278.2,277.5,269.4,196.6,192 +916,175.4,310.6,310.2,310,309.6,305.3,293.3,292.8,292.4,292,285.5,256.6,279.6,278.8,278.3,277.6,269.6,196.7,192.1 +917,175.4,310.7,310.3,310,309.7,305.4,293.4,292.9,292.5,292.1,285.6,256.8,279.7,278.9,278.4,277.7,269.7,196.7,192.1 +918,175.4,310.8,310.3,310.1,309.8,305.5,293.5,292.9,292.6,292.1,285.7,257,279.9,279,278.5,277.8,269.8,196.7,192.1 +919,175.5,310.8,310.4,310.2,309.8,305.6,293.6,293,292.7,292.2,285.8,257.1,280,279.1,278.6,277.9,269.9,196.8,192.1 +920,175.5,310.9,310.5,310.3,309.9,305.6,293.7,293.1,292.8,292.3,285.9,257.3,280.1,279.2,278.7,278,270,196.8,192.2 +921,175.5,311,310.6,310.3,310,305.7,293.7,293.2,292.9,292.4,286.1,257.4,280.2,279.3,278.8,278.1,270.2,196.9,192.2 +922,175.5,311.1,310.7,310.4,310.1,305.8,293.8,293.3,293,292.5,286.2,257.6,280.3,279.4,278.9,278.2,270.3,196.9,192.2 +923,175.5,311.2,310.7,310.5,310.2,305.9,293.9,293.4,293.1,292.6,286.3,257.7,280.4,279.5,279,278.3,270.4,197,192.3 +924,175.5,311.2,310.8,310.6,310.2,306,294,293.5,293.1,292.7,286.4,257.9,280.5,279.6,279.1,278.5,270.5,197,192.3 +925,175.5,311.3,310.9,310.6,310.3,306.1,294.1,293.5,293.2,292.8,286.5,258,280.6,279.7,279.2,278.6,270.6,197,192.3 +926,175.5,311.4,311,310.7,310.4,306.1,294.2,293.6,293.3,292.9,286.6,258.2,280.7,279.8,279.3,278.7,270.7,197.1,192.3 +927,175.5,311.5,311,310.8,310.5,306.2,294.2,293.7,293.4,292.9,286.7,258.3,280.8,279.9,279.5,278.8,270.9,197.1,192.4 +928,175.5,311.5,311.1,310.9,310.5,306.3,294.3,293.8,293.5,293,286.8,258.5,280.9,280,279.6,278.9,271,197.2,192.4 +929,175.5,311.6,311.2,311,310.6,306.4,294.4,293.9,293.6,293.1,286.9,258.6,281,280.1,279.7,279,271.1,197.2,192.4 +930,175.6,311.7,311.3,311,310.7,306.5,294.5,294,293.7,293.2,287,258.8,281.1,280.2,279.8,279.1,271.2,197.3,192.5 +931,175.6,311.8,311.3,311.1,310.8,306.5,294.6,294,293.7,293.3,287.1,258.9,281.2,280.4,279.9,279.2,271.3,197.3,192.5 +932,175.6,311.8,311.4,311.2,310.8,306.6,294.7,294.1,293.8,293.4,287.2,259.1,281.3,280.5,280,279.3,271.4,197.4,192.5 +933,175.6,311.9,311.5,311.3,310.9,306.7,294.7,294.2,293.9,293.5,287.3,259.2,281.4,280.6,280.1,279.4,271.6,197.4,192.5 +934,175.6,312,311.6,311.3,311,306.8,294.8,294.3,294,293.6,287.4,259.4,281.5,280.7,280.2,279.5,271.7,197.4,192.6 +935,175.6,312.1,311.6,311.4,311.1,306.9,294.9,294.4,294.1,293.6,287.5,259.5,281.6,280.8,280.3,279.6,271.8,197.5,192.6 +936,175.6,312.1,311.7,311.5,311.2,306.9,295,294.5,294.2,293.7,287.6,259.6,281.7,280.9,280.4,279.7,271.9,197.5,192.6 +937,175.6,312.2,311.8,311.6,311.2,307,295.1,294.5,294.2,293.8,287.7,259.8,281.8,281,280.5,279.8,272,197.6,192.6 +938,175.6,312.3,311.9,311.6,311.3,307.1,295.2,294.6,294.3,293.9,287.8,259.9,281.9,281.1,280.6,280,272.1,197.6,192.7 +939,175.6,312.4,312,311.7,311.4,307.2,295.2,294.7,294.4,294,287.9,260.1,282,281.2,280.7,280.1,272.2,197.7,192.7 +940,175.6,312.4,312,311.8,311.5,307.3,295.3,294.8,294.5,294.1,288,260.2,282.2,281.3,280.8,280.2,272.4,197.7,192.7 +941,175.7,312.5,312.1,311.9,311.5,307.4,295.4,294.9,294.6,294.2,288.1,260.4,282.3,281.4,280.9,280.3,272.5,197.8,192.8 +942,175.7,312.6,312.2,312,311.6,307.4,295.5,295,294.7,294.2,288.2,260.5,282.4,281.5,281,280.4,272.6,197.8,192.8 +943,175.7,312.7,312.3,312,311.7,307.5,295.6,295,294.8,294.3,288.3,260.6,282.5,281.6,281.2,280.5,272.7,197.9,192.8 +944,175.7,312.8,312.3,312.1,311.8,307.6,295.6,295.1,294.8,294.4,288.4,260.8,282.6,281.7,281.3,280.6,272.8,197.9,192.8 +945,175.7,312.8,312.4,312.2,311.8,307.7,295.7,295.2,294.9,294.5,288.5,260.9,282.7,281.8,281.4,280.7,272.9,197.9,192.9 +946,175.7,312.9,312.5,312.3,311.9,307.8,295.8,295.3,295,294.6,288.6,261.1,282.8,281.9,281.5,280.8,273,198,192.9 +947,175.7,313,312.6,312.3,312,307.8,295.9,295.4,295.1,294.7,288.7,261.2,282.9,282,281.6,280.9,273.2,198,192.9 +948,175.7,313.1,312.6,312.4,312.1,307.9,296,295.5,295.2,294.7,288.8,261.3,283,282.1,281.7,281,273.3,198.1,193 +949,175.7,313.1,312.7,312.5,312.2,308,296,295.5,295.2,294.8,288.9,261.5,283.1,282.2,281.8,281.1,273.4,198.1,193 +950,175.7,313.2,312.8,312.6,312.2,308.1,296.1,295.6,295.3,294.9,289,261.6,283.2,282.4,281.9,281.2,273.5,198.2,193 +951,175.7,313.3,312.9,312.6,312.3,308.2,296.2,295.7,295.4,295,289.1,261.7,283.3,282.5,282,281.3,273.6,198.2,193 +952,175.8,313.4,312.9,312.7,312.4,308.2,296.3,295.8,295.5,295.1,289.2,261.9,283.4,282.6,282.1,281.4,273.7,198.3,193.1 +953,175.8,313.4,313,312.8,312.5,308.3,296.4,295.9,295.6,295.2,289.4,262,283.5,282.7,282.2,281.5,273.8,198.3,193.1 +954,175.8,313.5,313.1,312.9,312.5,308.4,296.5,295.9,295.7,295.2,289.5,262.2,283.6,282.8,282.3,281.7,274,198.4,193.1 +955,175.8,313.6,313.2,312.9,312.6,308.5,296.5,296,295.7,295.3,289.6,262.3,283.7,282.9,282.4,281.8,274.1,198.4,193.2 +956,175.8,313.7,313.3,313,312.7,308.6,296.6,296.1,295.8,295.4,289.7,262.4,283.8,283,282.5,281.9,274.2,198.5,193.2 +957,175.8,313.7,313.3,313.1,312.8,308.6,296.7,296.2,295.9,295.5,289.8,262.6,283.9,283.1,282.6,282,274.3,198.5,193.2 +958,175.8,313.8,313.4,313.2,312.8,308.7,296.8,296.3,296,295.6,289.9,262.7,284,283.2,282.7,282.1,274.4,198.6,193.2 +959,175.8,313.9,313.5,313.2,312.9,308.8,296.9,296.4,296.1,295.7,290,262.8,284.1,283.3,282.8,282.2,274.5,198.6,193.3 +960,175.8,314,313.6,313.3,313,308.9,296.9,296.4,296.2,295.7,290.1,263,284.2,283.4,282.9,282.3,274.6,198.7,193.3 +961,175.8,314,313.6,313.4,313.1,308.9,297,296.5,296.2,295.8,290.2,263.1,284.3,283.5,283,282.4,274.7,198.7,193.3 +962,175.9,314.1,313.7,313.5,313.1,309,297.1,296.6,296.3,295.9,290.3,263.2,284.4,283.6,283.1,282.5,274.9,198.8,193.4 +963,175.9,314.2,313.8,313.6,313.2,309.1,297.2,296.7,296.4,296,290.4,263.4,284.5,283.7,283.2,282.6,275,198.8,193.4 +964,175.9,314.3,313.9,313.6,313.3,309.2,297.3,296.8,296.5,296.1,290.5,263.5,284.6,283.8,283.3,282.7,275.1,198.9,193.4 +965,175.9,314.3,313.9,313.7,313.4,309.3,297.3,296.8,296.6,296.2,290.6,263.7,284.7,283.9,283.5,282.8,275.2,198.9,193.4 +966,175.9,314.4,314,313.8,313.4,309.3,297.4,296.9,296.6,296.2,290.7,263.8,284.8,284,283.6,282.9,275.3,199,193.5 +967,175.9,314.5,314.1,313.9,313.5,309.4,297.5,297,296.7,296.3,290.8,263.9,284.9,284.1,283.7,283,275.4,199,193.5 +968,175.9,314.6,314.2,313.9,313.6,309.5,297.6,297.1,296.8,296.4,290.9,264.1,285,284.2,283.8,283.1,275.5,199.1,193.5 +969,175.9,314.7,314.2,314,313.7,309.6,297.7,297.2,296.9,296.5,291,264.2,285.1,284.3,283.9,283.2,275.6,199.1,193.6 +970,175.9,314.7,314.3,314.1,313.8,309.7,297.8,297.3,297,296.6,291,264.3,285.2,284.4,284,283.3,275.7,199.2,193.6 +971,175.9,314.8,314.4,314.2,313.8,309.7,297.8,297.3,297.1,296.7,291.1,264.5,285.3,284.5,284.1,283.4,275.9,199.2,193.6 +972,175.9,314.9,314.5,314.2,313.9,309.8,297.9,297.4,297.1,296.7,291.2,264.6,285.4,284.6,284.2,283.5,276,199.3,193.6 +973,176,315,314.5,314.3,314,309.9,298,297.5,297.2,296.8,291.3,264.7,285.5,284.7,284.3,283.6,276.1,199.3,193.7 +974,176,315,314.6,314.4,314.1,310,298.1,297.6,297.3,296.9,291.4,264.9,285.6,284.8,284.4,283.7,276.2,211.1,193.7 +975,176,315.1,314.7,314.5,314.1,310.1,298.2,297.7,297.4,297,291.5,265,285.7,284.9,284.5,283.8,276.3,220.1,193.7 +976,176,315.2,314.8,314.5,314.2,310.1,298.2,297.7,297.5,297.1,291.6,265.1,285.8,285,284.6,284,276.4,220.3,193.7 +977,176,315.3,314.8,314.6,314.3,310.2,298.3,297.8,297.5,297.1,291.7,265.3,285.9,285.1,284.7,284.1,276.5,220.5,193.8 +978,176,315.3,314.9,314.7,314.4,310.3,298.4,297.9,297.6,297.2,291.8,265.4,286,285.2,284.8,284.2,276.6,220.7,193.8 +979,176,315.4,315,314.8,314.4,310.4,298.5,298,297.7,297.3,291.9,265.5,286.1,285.3,284.9,284.3,276.7,221,193.8 +980,176,315.5,315.1,314.8,314.5,310.4,298.6,298.1,297.8,297.4,292,265.7,286.2,285.4,285,284.4,276.8,221.2,193.9 +981,176,315.6,315.1,314.9,314.6,310.5,298.7,298.2,297.9,297.5,292.1,265.8,286.3,285.5,285.1,284.5,277,221.4,193.9 +982,176,315.6,315.2,315,314.7,310.6,298.7,298.2,298,297.6,292.2,265.9,286.4,285.6,285.2,284.6,277.1,221.6,193.9 +983,176,315.7,315.3,315.1,314.7,310.7,298.8,298.3,298,297.6,292.3,266.1,286.5,285.7,285.3,284.7,277.2,221.8,193.9 +984,176,315.8,315.4,315.1,314.8,310.8,298.9,298.4,298.1,297.7,292.4,266.2,286.6,285.8,285.4,284.8,277.3,222,194 +985,176.1,315.9,315.4,315.2,314.9,310.8,299,298.5,298.2,297.8,292.5,266.3,286.7,285.9,285.5,284.9,277.4,224.5,194 +986,176.1,315.9,315.5,315.3,315,310.9,299.1,298.6,298.3,297.9,292.6,266.5,286.8,286,285.6,285,277.5,225.7,194 +987,176.1,316,315.6,315.4,315,311,299.1,298.6,298.4,298,292.7,266.6,286.9,286.1,285.7,285.1,277.6,226.8,194.1 +988,176.1,316.1,315.7,315.4,315.1,311.1,299.2,298.7,298.4,298,292.8,266.7,287,286.2,285.8,285.2,277.7,227.9,194.1 +989,176.1,316.2,315.8,315.5,315.2,311.2,299.3,298.8,298.5,298.1,292.9,266.8,287.1,286.3,285.9,285.3,277.8,228.9,194.1 +990,176.1,316.2,315.8,315.6,315.3,311.2,299.4,298.9,298.6,298.2,293,267,287.2,286.4,286,285.4,278,229.8,194.1 +991,176.1,316.3,315.9,315.7,315.3,311.3,299.5,299,298.7,298.3,293.1,267.1,287.3,286.5,286.1,285.5,278.1,230.7,194.2 +992,176.1,316.4,316,315.7,315.4,311.4,299.6,299.1,298.8,298.4,293.2,267.2,287.4,286.6,286.2,285.6,278.2,231.5,194.2 +993,176.1,316.5,316.1,315.8,315.5,311.5,299.6,299.1,298.9,298.5,293.3,267.4,287.5,286.7,286.3,285.7,278.3,232.3,194.2 +994,176.1,316.5,316.1,315.9,315.6,311.5,299.7,299.2,298.9,298.5,293.4,267.5,287.6,286.8,286.4,285.8,278.4,233,194.3 +995,176.1,316.6,316.2,316,315.6,311.6,299.8,299.3,299,298.6,293.5,267.6,287.7,286.9,286.5,285.9,278.5,233.7,194.3 +996,176.2,316.7,316.3,316.1,315.7,311.7,299.9,299.4,299.1,298.7,293.6,267.8,287.8,287,286.6,286,278.6,234.4,194.3 +997,176.2,316.8,316.4,316.1,315.8,311.8,300,299.5,299.2,298.8,293.7,267.9,287.9,287.1,286.7,286.1,278.7,235.1,194.3 +998,176.2,316.8,316.4,316.2,315.9,311.9,300.1,299.6,299.3,298.9,293.7,268,288,287.2,286.8,286.2,278.8,235.7,194.4 +999,176.2,316.9,316.5,316.3,316,311.9,300.1,299.6,299.3,298.9,293.8,268.1,288.1,287.3,286.9,286.3,278.9,236.3,194.4 +1000,176.2,317,316.6,316.4,316,312,300.2,299.7,299.4,299,293.9,268.3,288.2,287.4,287,286.4,279,236.9,194.4 diff --git a/test/Data Tables/2,400 MHz - Lb(0.05)_P528.csv b/test/Data Tables/2,400 MHz - Lb(0.05)_P528.csv new file mode 100644 index 0000000..c38a396 --- /dev/null +++ b/test/Data Tables/2,400 MHz - Lb(0.05)_P528.csv @@ -0,0 +1,1005 @@ +2400MHz / Lb(0.05) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,100,95.9,95.8,95.6,95.4,0,115.9,115.9,115.9,115.9,115,0,122,121.9,121.9,121.9,121.5,115.9,0 +1,103,98.5,98.4,98.4,98.4,97.7,115.9,115.9,115.9,115.9,115.5,99.7,121.9,121.9,121.9,121.9,121.7,118.3,99.8 +2,107,102.1,102.1,102.1,102.1,102.4,116,115.9,115.9,115.9,115.6,105.5,121.9,121.9,121.9,121.9,121.7,118.4,105.7 +3,110,105,105,105,105,105.3,116.1,116.1,116.1,116.1,115.7,108.7,121.9,121.9,121.9,121.9,121.7,118.5,109.1 +4,112.3,107.2,107.2,107.2,107.2,107.5,116.3,116.3,116.2,116.2,116,111,121.9,121.9,121.9,121.9,121.8,118.7,111.5 +5,114.2,109,109,109,109,109.2,116.5,116.5,116.5,116.5,116.2,112.7,122,122,122,122,121.8,118.9,113.3 +6,115.7,110.5,110.5,110.5,110.5,110.7,116.8,116.8,116.8,116.8,116.6,114,122,122,122,122,121.9,119.2,114.8 +7,117,111.8,111.8,111.8,111.8,112,117.1,117.1,117.1,117.1,116.9,115.1,122.1,122.1,122.1,122.1,122,119.5,116 +8,118.2,112.9,112.9,112.9,112.9,113.1,117.5,117.5,117.5,117.5,117.3,116.1,122.2,122.2,122.2,122.2,122,119.9,117 +9,119.2,113.9,113.9,113.9,113.9,114.1,117.9,117.9,117.9,117.9,117.7,116.9,122.3,122.3,122.3,122.3,122.2,120.2,117.9 +10,120.1,114.8,114.8,114.8,114.8,114.9,118.3,118.3,118.3,118.2,118.1,117.6,122.4,122.4,122.4,122.4,122.3,120.5,118.7 +11,120.9,115.7,115.7,115.7,115.7,115.7,118.7,118.7,118.7,118.6,118.6,118.3,122.6,122.6,122.5,122.5,122.4,120.9,119.4 +12,121.7,116.4,116.4,116.4,116.4,116.5,119.1,119.1,119.1,119.1,119,118.9,122.7,122.7,122.7,122.7,122.6,121.2,120 +13,122.4,117.1,117.1,117.1,117.1,117.2,119.5,119.5,119.5,119.4,119.4,119.4,122.9,122.9,122.9,122.9,122.8,121.6,120.6 +14,123,117.7,117.7,117.7,117.7,117.8,119.8,119.8,119.8,119.8,119.8,119.9,123,123,123,123,122.9,121.9,121.1 +15,123.6,118.3,118.3,118.3,118.3,118.4,120.2,120.2,120.2,120.2,120.2,120.4,123.2,123.2,123.2,123.2,123.1,122.2,121.6 +16,124.2,118.9,118.9,118.9,118.9,118.9,120.6,120.6,120.6,120.6,120.6,120.8,123.4,123.4,123.4,123.4,123.3,122.5,122.1 +17,124.7,119.4,119.4,119.4,119.4,119.5,121,121,121,121,121,121.2,123.6,123.6,123.6,123.6,123.5,122.8,122.5 +18,125.2,119.9,119.9,119.9,119.9,119.9,121.3,121.3,121.3,121.3,121.3,121.6,123.8,123.8,123.8,123.8,123.7,123.1,122.9 +19,125.6,120.4,120.4,120.4,120.4,120.4,121.7,121.7,121.7,121.7,121.7,122,124,124,124,124,123.9,123.4,123.3 +20,126.1,120.8,120.8,120.8,120.8,120.9,122,122,122,122,122,122.3,124.2,124.2,124.2,124.2,124.1,123.7,123.6 +21,126.5,121.3,121.3,121.3,121.3,121.3,122.4,122.4,122.4,122.4,122.4,122.7,124.4,124.4,124.4,124.4,124.3,123.9,123.9 +22,126.9,121.7,121.7,121.7,121.7,121.7,122.7,122.7,122.7,122.7,122.7,123,124.6,124.6,124.6,124.6,124.5,124.2,124.3 +23,127.3,122.1,122.1,122.1,122.1,122.1,123,123,123,123,123,123.3,124.8,124.8,124.8,124.8,124.7,124.5,124.6 +24,127.7,122.4,122.4,122.4,122.4,122.5,123.3,123.3,123.3,123.3,123.3,123.6,125,125,125,125,124.9,124.7,124.8 +25,128,122.8,122.8,122.8,122.8,122.8,123.6,123.6,123.6,123.6,123.6,123.9,125.2,125.2,125.2,125.2,125.1,124.9,125.1 +26,128.4,123.1,123.1,123.1,123.1,123.1,123.9,123.9,123.9,123.9,123.9,124.2,125.4,125.4,125.4,125.4,125.3,125.2,125.4 +27,128.7,123.5,123.5,123.5,123.5,123.5,124.2,124.2,124.2,124.2,124.2,124.5,125.6,125.6,125.6,125.6,125.5,125.4,125.6 +28,129,123.8,123.8,123.8,123.8,123.8,124.5,124.5,124.5,124.5,124.5,124.7,125.8,125.8,125.8,125.8,125.7,125.6,125.9 +29,129.3,124.1,124.1,124.1,124.1,124.1,124.7,124.7,124.7,124.7,124.7,125,126,126,126,126,125.9,125.9,126.1 +30,129.6,124.4,124.4,124.4,124.4,124.4,125,125,125,125,125,125.2,126.2,126.2,126.2,126.2,126.1,126.1,126.3 +31,129.9,124.7,124.7,124.7,124.7,124.7,125.3,125.3,125.3,125.3,125.2,125.5,126.4,126.4,126.4,126.4,126.3,126.3,126.6 +32,130.2,124.9,124.9,124.9,125,125,125.5,125.5,125.5,125.5,125.5,125.7,126.6,126.6,126.6,126.6,126.5,126.5,126.8 +33,130.4,125.2,125.2,125.2,125.2,125.2,125.7,125.7,125.7,125.7,125.7,126,126.7,126.7,126.7,126.7,126.7,126.7,127 +34,130.7,125.5,125.5,125.5,125.5,125.5,126,126,126,126,126,126.2,126.9,126.9,126.9,126.9,126.9,126.9,127.2 +35,130.9,125.7,125.7,125.7,125.7,125.8,126.2,126.2,126.2,126.2,126.2,126.4,127.1,127.1,127.1,127.1,127.1,127.1,127.4 +36,131.2,125.9,126,126,126,126,126.4,126.4,126.4,126.4,126.4,126.6,127.3,127.3,127.3,127.3,127.3,127.3,127.6 +37,131.4,126.2,126.2,126.2,126.2,126.2,126.7,126.7,126.7,126.7,126.6,126.8,127.5,127.5,127.5,127.5,127.5,127.5,127.8 +38,131.7,126.4,126.4,126.4,126.5,126.5,126.9,126.9,126.9,126.9,126.9,127,127.7,127.7,127.7,127.7,127.6,127.6,127.9 +39,131.9,126.6,126.7,126.7,126.7,126.7,127.1,127.1,127.1,127.1,127.1,127.2,127.8,127.8,127.8,127.8,127.8,127.8,128.1 +40,132.1,126.9,126.9,126.9,126.9,126.9,127.3,127.3,127.3,127.3,127.3,127.4,128,128,128,128,128,128,128.3 +41,132.3,127.1,127.1,127.1,127.1,127.2,127.5,127.5,127.5,127.5,127.5,127.6,128.2,128.2,128.2,128.2,128.2,128.2,128.5 +42,132.5,127.4,127.3,127.3,127.3,127.4,127.7,127.7,127.7,127.7,127.7,127.8,128.3,128.3,128.3,128.3,128.3,128.3,128.6 +43,132.7,127.7,127.5,127.5,127.5,127.6,127.9,127.9,127.9,127.9,127.9,128,128.5,128.5,128.5,128.5,128.5,128.5,128.8 +44,132.9,127.9,127.7,127.7,127.7,127.8,128.1,128.1,128.1,128.1,128.1,128.2,128.7,128.7,128.7,128.7,128.6,128.7,129 +45,133.1,128.2,127.9,127.9,127.9,128,128.2,128.2,128.2,128.2,128.2,128.4,128.8,128.8,128.8,128.8,128.8,128.8,129.1 +46,133.3,128.5,128.1,128.1,128.1,128.2,128.4,128.4,128.4,128.4,128.4,128.5,129,129,129,129,128.9,129,129.3 +47,133.5,128.8,128.3,128.3,128.3,128.4,128.6,128.6,128.6,128.6,128.6,128.7,129.1,129.1,129.1,129.1,129.1,129.1,129.4 +48,133.7,129.1,128.4,128.5,128.5,128.6,128.8,128.8,128.8,128.8,128.8,128.9,129.3,129.3,129.3,129.3,129.2,129.3,129.6 +49,133.9,129.4,128.6,128.6,128.7,128.7,128.9,128.9,128.9,128.9,128.9,129,129.4,129.4,129.4,129.4,129.4,129.4,129.7 +50,134,129.7,128.8,128.8,128.8,128.9,129.1,129.1,129.1,129.1,129.1,129.2,129.6,129.6,129.6,129.6,129.5,129.5,129.9 +51,134.2,130,128.9,129,129,129.1,129.3,129.3,129.3,129.3,129.3,129.3,129.7,129.7,129.7,129.7,129.7,129.7,130 +52,134.4,130.3,129.1,129.1,129.2,129.3,129.4,129.4,129.4,129.4,129.4,129.5,129.8,129.8,129.8,129.8,129.8,129.8,130.2 +53,134.5,130.6,129.2,129.3,129.3,129.5,129.6,129.6,129.6,129.6,129.6,129.7,130,130,130,130,130,129.9,130.3 +54,134.7,130.9,129.4,129.4,129.5,129.6,129.7,129.7,129.7,129.7,129.7,129.8,130.1,130.1,130.1,130.1,130.1,130.1,130.4 +55,134.9,131.2,129.5,129.6,129.6,129.8,129.9,129.9,129.9,129.9,129.9,130,130.2,130.2,130.2,130.2,130.2,130.2,130.6 +56,135,131.4,129.7,129.7,129.8,129.9,130,130,130,130,130,130.1,130.4,130.4,130.4,130.4,130.4,130.3,130.7 +57,135.2,131.7,129.8,129.9,129.9,130.1,130.2,130.2,130.2,130.2,130.2,130.2,130.5,130.5,130.5,130.5,130.5,130.5,130.8 +58,135.3,131.9,130,130,130.1,130.3,130.3,130.3,130.3,130.3,130.3,130.4,130.6,130.6,130.6,130.6,130.6,130.6,131 +59,135.5,132.2,130.1,130.1,130.2,130.4,130.5,130.5,130.5,130.5,130.4,130.5,130.8,130.8,130.8,130.8,130.7,130.7,131.1 +60,135.6,132.4,130.2,130.3,130.3,130.6,130.6,130.6,130.6,130.6,130.6,130.7,130.9,130.9,130.9,130.9,130.9,130.8,131.2 +61,135.8,132.5,130.3,130.4,130.5,130.7,130.7,130.7,130.7,130.7,130.7,130.8,131,131,131,131,131,130.9,131.3 +62,135.9,132.7,130.5,130.5,130.6,130.9,130.9,130.9,130.9,130.9,130.8,130.9,131.1,131.1,131.1,131.1,131.1,131.1,131.4 +63,136,132.9,130.6,130.6,130.7,131,131,131,131,131,131,131.1,131.2,131.2,131.2,131.2,131.2,131.2,131.6 +64,136.2,133,130.7,130.8,130.9,131.1,131.1,131.1,131.1,131.1,131.1,131.2,131.4,131.4,131.4,131.4,131.3,131.3,131.7 +65,136.3,133.1,130.8,130.9,131,131.3,131.3,131.3,131.3,131.3,131.2,131.3,131.5,131.5,131.5,131.5,131.5,131.4,131.8 +66,136.4,133.2,130.9,131,131.1,131.4,131.4,131.4,131.4,131.4,131.4,131.5,131.6,131.6,131.6,131.6,131.6,131.5,131.9 +67,136.6,133.3,131,131.1,131.2,131.5,131.5,131.5,131.5,131.5,131.5,131.6,131.7,131.7,131.7,131.7,131.7,131.6,132 +68,136.7,133.4,131.1,131.2,131.3,131.7,131.6,131.6,131.6,131.6,131.6,131.7,131.8,131.8,131.8,131.8,131.8,131.8,132.1 +69,136.8,133.5,131.2,131.3,131.4,131.8,131.7,131.7,131.7,131.7,131.7,131.8,131.9,131.9,131.9,131.9,131.9,131.9,132.3 +70,137,133.5,131.3,131.4,131.5,131.9,131.9,131.9,131.9,131.9,131.8,131.9,132,132,132,132,132,132,132.4 +71,137.1,133.6,131.4,131.5,131.6,132,132,132,132,132,132,132.1,132.2,132.2,132.2,132.2,132.1,132.1,132.5 +72,137.2,133.6,131.5,131.6,131.7,132.2,132.1,132.1,132.1,132.1,132.1,132.2,132.3,132.3,132.3,132.3,132.2,132.2,132.6 +73,137.3,133.7,131.6,131.7,131.8,132.3,132.2,132.2,132.2,132.2,132.2,132.3,132.4,132.4,132.4,132.4,132.3,132.3,132.7 +74,137.4,133.7,131.7,131.8,131.9,132.4,132.3,132.3,132.3,132.3,132.3,132.4,132.5,132.5,132.5,132.5,132.5,132.4,132.8 +75,137.6,133.7,131.8,131.9,132,132.5,132.4,132.4,132.4,132.4,132.4,132.5,132.6,132.6,132.6,132.6,132.6,132.5,132.9 +76,137.7,133.7,131.8,132,132.1,132.6,132.6,132.6,132.6,132.6,132.5,132.6,132.7,132.7,132.7,132.7,132.7,132.6,133 +77,137.8,133.8,131.9,132,132.2,132.7,132.7,132.7,132.7,132.7,132.6,132.7,132.8,132.8,132.8,132.8,132.8,132.7,133.1 +78,137.9,133.8,132,132.1,132.3,132.8,132.8,132.8,132.8,132.8,132.7,132.8,132.9,132.9,132.9,132.9,132.9,132.8,133.2 +79,138,133.8,132.1,132.2,132.4,132.9,132.9,132.9,132.9,132.9,132.8,132.9,133,133,133,133,133,132.9,133.3 +80,138.1,133.9,132.1,132.3,132.5,133.1,133,133,133,133,133,133,133.1,133.1,133.1,133.1,133.1,133,133.3 +81,138.2,134,132.2,132.3,132.5,133.2,133.1,133.1,133.1,133.1,133.1,133.1,133.2,133.2,133.2,133.2,133.2,133.1,133.4 +82,138.3,134.3,132.3,132.4,132.6,133.3,133.2,133.2,133.2,133.2,133.2,133.2,133.3,133.3,133.3,133.3,133.3,133.2,133.5 +83,138.4,134.5,132.3,132.5,132.7,133.4,133.3,133.3,133.3,133.3,133.3,133.3,133.4,133.4,133.4,133.4,133.3,133.3,133.6 +84,138.5,134.7,132.4,132.6,132.8,133.5,133.4,133.4,133.4,133.4,133.4,133.4,133.5,133.5,133.5,133.5,133.4,133.4,133.7 +85,138.6,134.9,132.4,132.6,132.8,133.6,133.5,133.5,133.5,133.5,133.5,133.5,133.6,133.6,133.6,133.6,133.5,133.4,133.8 +86,138.7,135.1,132.5,132.7,132.9,133.7,133.6,133.6,133.6,133.6,133.6,133.6,133.7,133.7,133.7,133.7,133.6,133.5,133.9 +87,138.8,135.4,132.6,132.7,133,133.8,133.7,133.7,133.7,133.7,133.7,133.7,133.7,133.7,133.7,133.7,133.7,133.6,134 +88,138.9,135.6,132.8,132.8,133,133.9,133.8,133.8,133.8,133.8,133.8,133.8,133.8,133.8,133.8,133.8,133.8,133.7,134 +89,139,135.8,132.9,132.9,133.1,133.9,133.9,133.9,133.9,133.9,133.9,133.9,133.9,133.9,133.9,133.9,133.9,133.8,134.1 +90,139.1,136.1,133.1,133,133.2,134,134,134,134,134,134,134,134,134,134,134,134,133.9,134.2 +91,139.2,136.3,133.2,133.1,133.2,134.1,134.1,134.1,134.1,134.1,134,134.1,134.1,134.1,134.1,134.1,134.1,134,134.3 +92,139.3,136.5,133.3,133.2,133.3,134.2,134.2,134.2,134.2,134.2,134.1,134.1,134.2,134.2,134.2,134.2,134.2,134.1,134.4 +93,139.4,136.8,133.5,133.4,133.3,134.3,134.3,134.3,134.3,134.3,134.2,134.2,134.3,134.3,134.3,134.3,134.3,134.1,134.5 +94,139.5,137,133.6,133.5,133.4,134.4,134.4,134.4,134.4,134.4,134.3,134.3,134.4,134.4,134.4,134.4,134.3,134.2,134.5 +95,139.6,137.3,133.7,133.6,133.5,134.5,134.5,134.5,134.5,134.5,134.4,134.4,134.5,134.5,134.5,134.5,134.4,134.3,134.6 +96,139.7,137.5,133.8,133.8,133.7,134.6,134.5,134.5,134.5,134.5,134.5,134.5,134.5,134.5,134.5,134.5,134.5,134.4,134.7 +97,139.8,137.8,134,133.9,133.8,134.7,134.6,134.6,134.6,134.6,134.6,134.6,134.6,134.6,134.6,134.6,134.6,134.5,134.8 +98,139.9,138,134.1,134,133.9,134.7,134.7,134.7,134.7,134.7,134.7,134.7,134.7,134.7,134.7,134.7,134.7,134.6,134.9 +99,140,138.3,134.2,134.1,134.1,134.8,134.8,134.8,134.8,134.8,134.8,134.7,134.8,134.8,134.8,134.8,134.8,134.6,134.9 +100,140.1,138.6,134.4,134.3,134.2,134.9,134.9,134.9,134.9,134.9,134.9,134.8,134.9,134.9,134.9,134.9,134.8,134.7,135 +101,140.1,138.8,134.5,134.4,134.3,135,135,135,135,135,135,134.9,135,135,135,135,134.9,134.8,135.1 +102,140.2,139.1,134.6,134.5,134.4,135,135.1,135.1,135.1,135.1,135,135,135,135,135,135,135,134.9,135.2 +103,140.3,139.4,134.7,134.7,134.6,135.1,135.1,135.1,135.1,135.1,135.1,135.1,135.1,135.1,135.1,135.1,135.1,134.9,135.2 +104,140.4,139.7,134.9,134.8,134.7,135.2,135.2,135.2,135.2,135.2,135.2,135.1,135.2,135.2,135.2,135.2,135.2,135,135.3 +105,140.5,140,135,134.9,134.8,135.3,135.3,135.3,135.3,135.3,135.3,135.2,135.3,135.3,135.3,135.3,135.2,135.1,135.4 +106,140.6,140.3,135.1,135,134.9,135.3,135.4,135.4,135.4,135.4,135.4,135.3,135.4,135.3,135.3,135.3,135.3,135.2,135.5 +107,140.6,140.6,135.2,135.2,135,135.4,135.5,135.5,135.5,135.5,135.4,135.4,135.4,135.4,135.4,135.4,135.4,135.2,135.5 +108,140.7,140.9,135.4,135.3,135.2,135.5,135.6,135.6,135.5,135.5,135.5,135.4,135.5,135.5,135.5,135.5,135.5,135.3,135.6 +109,140.8,141.3,135.5,135.4,135.3,135.6,135.6,135.6,135.6,135.6,135.6,135.5,135.6,135.6,135.6,135.6,135.5,135.4,135.7 +110,140.9,141.6,135.6,135.5,135.4,135.6,135.7,135.7,135.7,135.7,135.7,135.6,135.7,135.7,135.7,135.7,135.6,135.5,135.7 +111,141,142,135.7,135.7,135.5,135.7,135.8,135.8,135.8,135.8,135.8,135.7,135.7,135.7,135.7,135.7,135.7,135.5,135.8 +112,141,142.4,135.9,135.8,135.7,135.8,135.9,135.9,135.9,135.9,135.8,135.7,135.8,135.8,135.8,135.8,135.8,135.6,135.9 +113,141.1,142.7,136,135.9,135.8,135.8,135.9,135.9,135.9,135.9,135.9,135.8,135.9,135.9,135.9,135.9,135.8,135.7,136 +114,141.2,143.2,136.1,136,135.9,135.9,136,136,136,136,136,135.9,135.9,135.9,135.9,135.9,135.9,135.8,136 +115,141.3,143.6,136.2,136.1,136,136,136.1,136.1,136.1,136.1,136.1,135.9,136,136,136,136,136,135.8,136.1 +116,141.3,144,136.4,136.3,136.1,136,136.2,136.2,136.2,136.2,136.1,136,136.1,136.1,136.1,136.1,136.1,135.9,136.2 +117,141.4,144.5,136.5,136.4,136.2,136.1,136.2,136.2,136.2,136.2,136.2,136.1,136.2,136.2,136.2,136.2,136.1,136,136.2 +118,141.5,145,136.6,136.5,136.4,136.1,136.3,136.3,136.3,136.3,136.3,136.2,136.2,136.2,136.2,136.2,136.2,136,136.3 +119,141.6,145.4,136.7,136.6,136.5,136.2,136.4,136.4,136.4,136.4,136.4,136.2,136.3,136.3,136.3,136.3,136.3,136.1,136.4 +120,141.6,146,136.9,136.7,136.6,136.3,136.5,136.5,136.5,136.5,136.4,136.3,136.4,136.4,136.4,136.4,136.3,136.2,136.4 +121,141.7,146.5,137,136.9,136.7,136.3,136.5,136.5,136.5,136.5,136.5,136.4,136.4,136.4,136.4,136.4,136.4,136.2,136.5 +122,141.8,146.9,137.2,137,136.8,136.4,136.6,136.6,136.6,136.6,136.6,136.4,136.5,136.5,136.5,136.5,136.5,136.3,136.5 +123,141.9,147.3,137.4,137.1,136.9,136.4,136.7,136.7,136.7,136.7,136.6,136.5,136.6,136.6,136.6,136.6,136.5,136.4,136.6 +124,141.9,147.7,137.6,137.2,137,136.5,136.7,136.7,136.7,136.7,136.7,136.6,136.6,136.6,136.6,136.6,136.6,136.4,136.7 +125,142,148.1,137.8,137.3,137.2,136.5,136.8,136.8,136.8,136.8,136.8,136.6,136.7,136.7,136.7,136.7,136.7,136.5,136.7 +126,142.1,148.5,137.9,137.4,137.3,136.6,136.9,136.9,136.9,136.9,136.9,136.7,136.8,136.8,136.8,136.8,136.7,136.6,136.8 +127,142.1,148.9,138,137.5,137.4,136.6,136.9,136.9,136.9,136.9,136.9,136.7,136.8,136.8,136.8,136.8,136.8,136.6,136.9 +128,142.2,149.3,138.1,137.7,137.5,136.7,137,137,137,137,137,136.8,136.9,136.9,136.9,136.9,136.9,136.7,136.9 +129,142.3,149.7,138.2,137.8,137.6,136.7,137.1,137.1,137.1,137.1,137.1,136.9,137,137,137,137,136.9,136.7,137 +130,142.3,150.1,138.3,137.9,137.7,136.8,137.1,137.1,137.1,137.1,137.1,136.9,137,137,137,137,137,136.8,137 +131,142.4,150.5,138.4,138,137.8,136.8,137.2,137.2,137.2,137.2,137.2,137,137.1,137.1,137.1,137.1,137,136.9,137.1 +132,142.5,150.9,138.5,138.1,137.9,136.9,137.3,137.3,137.3,137.3,137.2,137.1,137.1,137.1,137.1,137.1,137.1,136.9,137.2 +133,142.5,151.3,138.6,138.2,138,136.9,137.3,137.3,137.3,137.3,137.3,137.1,137.2,137.2,137.2,137.2,137.2,137,137.2 +134,142.6,151.7,138.6,138.3,138.1,137,137.4,137.4,137.4,137.4,137.4,137.2,137.3,137.3,137.3,137.3,137.2,137,137.3 +135,142.7,152,138.7,138.5,138.2,137,137.5,137.5,137.5,137.5,137.4,137.3,137.3,137.3,137.3,137.3,137.3,137.1,137.3 +136,142.7,152.4,138.8,138.6,138.3,137,137.5,137.5,137.5,137.5,137.5,137.3,137.4,137.4,137.4,137.4,137.3,137.2,137.4 +137,142.8,152.8,138.9,138.7,138.4,137.1,137.6,137.6,137.6,137.6,137.6,137.4,137.4,137.4,137.4,137.4,137.4,137.2,137.5 +138,142.9,153.2,138.9,138.8,138.5,137.1,137.7,137.7,137.7,137.7,137.6,137.4,137.5,137.5,137.5,137.5,137.4,137.3,137.5 +139,142.9,153.6,139,138.9,138.6,137.2,137.7,137.7,137.7,137.7,137.7,137.5,137.5,137.5,137.5,137.5,137.5,137.3,137.6 +140,143,154.4,139.1,139,138.7,137.2,137.8,137.8,137.8,137.8,137.7,137.6,137.6,137.6,137.6,137.6,137.6,137.4,137.6 +141,143,155.6,139.2,139.1,138.8,137.2,137.8,137.8,137.8,137.8,137.8,137.6,137.7,137.7,137.7,137.7,137.6,137.4,137.7 +142,143.1,156.7,139.3,139.2,138.9,137.3,137.9,137.9,137.9,137.9,137.9,137.7,137.7,137.7,137.7,137.7,137.7,137.5,137.7 +143,143.1,157.9,139.5,139.2,139,137.4,137.9,137.9,137.9,137.9,137.9,137.7,137.8,137.8,137.8,137.8,137.7,137.5,137.8 +144,143.2,159,140.3,139.3,139.1,137.4,138,138,138,138,138,137.8,137.8,137.8,137.8,137.8,137.8,137.6,137.8 +145,143.2,160.2,141,139.4,139.1,137.5,138.1,138.1,138.1,138.1,138,137.8,137.9,137.9,137.9,137.9,137.8,137.6,137.9 +146,143.3,161.3,141.8,139.4,139.2,137.6,138.1,138.1,138.1,138.1,138.1,137.9,137.9,137.9,137.9,137.9,137.9,137.7,138 +147,143.4,162.5,142.6,139.5,139.3,137.7,138.2,138.2,138.2,138.2,138.2,138,138,138,138,138,137.9,137.8,138 +148,143.4,163.6,143.3,139.6,139.4,137.7,138.2,138.2,138.2,138.2,138.2,138,138,138,138,138,138,137.8,138.1 +149,143.5,164.8,144.1,139.6,139.5,137.8,138.3,138.3,138.3,138.3,138.3,138.1,138.1,138.1,138.1,138.1,138.1,137.9,138.1 +150,143.5,165.9,144.8,139.7,139.6,137.9,138.3,138.3,138.3,138.3,138.3,138.1,138.2,138.2,138.2,138.1,138.1,137.9,138.2 +151,143.6,167.1,145.7,139.9,139.7,138,138.4,138.4,138.4,138.4,138.4,138.2,138.2,138.2,138.2,138.2,138.2,138,138.2 +152,143.7,168.3,146.8,140,139.7,138.1,138.5,138.5,138.5,138.5,138.4,138.2,138.2,138.2,138.2,138.2,138.2,138,138.3 +153,143.7,169.4,148,140.9,139.8,138.2,138.5,138.5,138.5,138.5,138.5,138.3,138.3,138.3,138.3,138.3,138.2,138.1,138.3 +154,143.8,170.6,149.1,141.7,139.9,138.2,138.6,138.6,138.6,138.6,138.5,138.3,138.3,138.3,138.3,138.3,138.3,138.1,138.4 +155,143.8,171.7,150.3,142.6,139.9,138.3,138.6,138.6,138.6,138.6,138.6,138.4,138.4,138.4,138.4,138.4,138.3,138.1,138.4 +156,143.9,172.9,151.4,143.5,140,138.4,138.7,138.7,138.7,138.7,138.6,138.4,138.4,138.4,138.4,138.4,138.4,138.2,138.5 +157,143.9,174,152.6,144.3,140,138.5,138.7,138.7,138.7,138.7,138.7,138.5,138.5,138.5,138.5,138.5,138.4,138.2,138.5 +158,144,175.2,153.8,145.3,140.1,138.6,138.8,138.8,138.8,138.8,138.7,138.5,138.5,138.5,138.5,138.5,138.5,138.3,138.6 +159,144,176.4,154.9,146.5,140.2,138.6,138.8,138.8,138.8,138.8,138.8,138.6,138.6,138.6,138.6,138.6,138.5,138.3,138.6 +160,144.1,177.5,156.1,147.6,140.2,138.7,138.9,138.9,138.9,138.9,138.8,138.7,138.6,138.6,138.6,138.6,138.6,138.4,138.7 +161,144.2,178,157.2,148.8,140.3,138.8,138.9,138.9,138.9,138.9,138.9,138.7,138.7,138.7,138.7,138.7,138.6,138.4,138.7 +162,144.2,178.2,158.4,149.9,140.4,138.9,139,139,139,139,138.9,138.8,138.7,138.7,138.7,138.7,138.7,138.5,138.8 +163,144.3,178.3,159.6,151.1,140.6,138.9,139,139,139,139,139,138.8,138.8,138.8,138.8,138.8,138.7,138.5,138.8 +164,144.3,178.5,160.7,152.3,141.5,139,139.1,139.1,139.1,139.1,139,138.9,138.8,138.8,138.8,138.8,138.8,138.5,138.9 +165,144.4,178.6,161.9,153.4,142.5,139.1,139.1,139.1,139.1,139.1,139.1,138.9,138.9,138.9,138.9,138.9,138.8,138.6,138.9 +166,144.4,178.8,163.1,154.6,143.4,139.2,139.2,139.2,139.2,139.2,139.1,139,138.9,138.9,138.9,138.9,138.8,138.6,139 +167,144.5,178.9,163.9,155.7,144.4,139.2,139.2,139.2,139.2,139.2,139.2,139,138.9,138.9,138.9,138.9,138.9,138.7,139 +168,144.5,179.1,164.4,156.9,145.5,139.3,139.3,139.3,139.3,139.3,139.2,139,139,139,139,139,138.9,138.7,139.1 +169,144.6,179.2,164.9,158.1,146.6,139.4,139.3,139.3,139.3,139.3,139.3,139.1,139,139,139,139,138.9,138.7,139.1 +170,144.6,179.3,165.4,159.2,147.7,139.5,139.4,139.4,139.4,139.4,139.3,139.1,139,139,139,139,139,138.8,139.2 +171,144.7,179.5,165.9,160.4,148.9,139.5,139.4,139.4,139.4,139.4,139.4,139.2,139.1,139,139,139,139,138.8,139.2 +172,144.7,179.6,166.3,161.1,150,139.6,139.4,139.5,139.5,139.5,139.4,139.2,139.1,139.1,139.1,139.1,139,138.8,139.3 +173,144.8,179.7,166.7,161.8,151.2,139.7,139.5,139.5,139.5,139.5,139.4,139.3,139.1,139.1,139.1,139.1,139,138.9,139.3 +174,144.8,179.8,167.1,162.4,152.3,139.7,139.5,139.5,139.5,139.5,139.5,139.4,139.1,139.1,139.1,139.1,139.1,138.9,139.4 +175,144.9,179.9,167.5,163,153.5,139.8,139.6,139.6,139.6,139.6,139.5,139.4,139.1,139.1,139.1,139.1,139,138.9,139.4 +176,144.9,180.1,167.8,163.6,154.7,139.9,139.6,139.6,139.6,139.6,139.6,139.5,139.1,139.1,139.1,139.1,139,138.9,139.4 +177,145,180.2,168.2,164.1,155.8,139.9,139.6,139.6,139.6,139.6,139.6,139.5,139.1,139.1,139.1,139.1,139,139,139.5 +178,145,180.3,168.5,164.6,156.9,140,139.7,139.7,139.7,139.7,139.6,139.6,139.1,139.1,139.1,139.1,139.1,139,139.5 +179,145.1,180.4,168.8,165.1,157.9,140.1,139.7,139.7,139.7,139.7,139.7,139.6,139.2,139.2,139.2,139.2,139.1,139,139.6 +180,145.1,180.5,169.1,165.6,158.8,140.1,139.7,139.7,139.7,139.7,139.7,139.7,139.2,139.2,139.2,139.2,139.2,138.9,139.6 +181,145.2,180.6,169.4,166,159.6,140.2,139.8,139.8,139.8,139.8,139.7,139.7,139.3,139.3,139.3,139.3,139.2,138.9,139.7 +182,145.2,180.7,169.6,166.4,160.4,140.3,139.8,139.8,139.8,139.8,139.7,139.8,139.3,139.3,139.3,139.3,139.3,139,139.7 +183,145.3,180.8,169.9,166.8,161.1,140.3,139.8,139.8,139.8,139.8,139.8,139.8,139.4,139.4,139.4,139.4,139.3,139,139.8 +184,145.3,180.9,170.2,167.2,161.8,140.4,139.8,139.8,139.8,139.8,139.8,139.8,139.4,139.4,139.4,139.4,139.4,139.1,139.8 +185,145.4,181,170.4,167.5,162.4,140.5,139.8,139.8,139.8,139.8,139.8,139.9,139.5,139.5,139.5,139.5,139.4,139.1,139.8 +186,145.4,181.2,170.7,167.9,163.1,140.5,139.8,139.8,139.8,139.8,139.8,139.9,139.5,139.5,139.5,139.5,139.5,139.2,139.9 +187,145.5,181.3,171,168.2,163.6,140.6,139.8,139.8,139.8,139.8,139.7,140,139.6,139.6,139.6,139.6,139.5,139.2,139.9 +188,145.5,181.4,171.2,168.5,164.2,140.7,139.8,139.8,139.8,139.8,139.7,140,139.6,139.6,139.6,139.6,139.6,139.3,140 +189,145.6,181.5,171.4,168.8,164.7,140.7,139.9,139.9,139.9,139.9,139.8,140.1,139.7,139.7,139.7,139.7,139.6,139.3,140 +190,145.6,181.6,171.7,169.1,165.2,140.8,139.9,139.9,139.9,139.9,139.8,140.1,139.7,139.7,139.7,139.7,139.7,139.4,140.1 +191,145.6,181.7,171.9,169.4,165.6,140.8,140,140,140,140,139.9,140.2,139.8,139.8,139.8,139.8,139.7,139.4,140.1 +192,145.7,181.8,172.1,169.7,166.1,140.9,140,140,140,140,139.9,140.2,139.8,139.8,139.8,139.8,139.8,139.4,140.1 +193,145.7,181.9,172.3,170,166.5,140.9,140.1,140.1,140.1,140.1,139.9,140.2,139.9,139.9,139.9,139.9,139.8,139.5,140.2 +194,145.8,182,172.6,170.3,166.9,141,140.1,140.1,140.1,140.1,140,140.3,139.9,139.9,139.9,139.9,139.9,139.5,140.2 +195,145.8,182.1,172.8,170.5,167.2,141,140.1,140.2,140.2,140.2,140,140.3,140,140,140,140,139.9,139.6,140.3 +196,145.9,182.2,173,170.8,167.6,141.1,140.2,140.2,140.2,140.2,140,140.4,140,140,140,140,139.9,139.6,140.3 +197,145.9,182.4,173.2,171,167.9,141.1,140.2,140.2,140.2,140.2,140.1,140.4,140.1,140.1,140.1,140.1,140,139.7,140.3 +198,146,182.5,173.4,171.3,168.3,141.2,140.3,140.3,140.3,140.3,140.1,140.4,140.1,140.1,140.1,140.1,140,139.7,140.4 +199,146,182.6,173.6,171.5,168.6,141.3,140.3,140.3,140.3,140.3,140.2,140.5,140.1,140.1,140.1,140.1,140.1,139.8,140.4 +200,146,182.7,173.8,171.8,168.9,141.3,140.3,140.3,140.4,140.4,140.2,140.5,140.2,140.2,140.2,140.2,140.1,139.8,140.5 +201,146.1,182.8,174,172,169.2,141.4,140.4,140.4,140.4,140.4,140.2,140.6,140.2,140.2,140.2,140.2,140.2,139.8,140.5 +202,146.1,182.9,174.2,172.2,169.5,141.4,140.4,140.4,140.4,140.4,140.3,140.6,140.3,140.3,140.3,140.3,140.2,139.9,140.5 +203,146.2,183,174.4,172.5,169.8,141.4,140.4,140.5,140.5,140.5,140.3,140.6,140.3,140.3,140.3,140.3,140.3,139.9,140.6 +204,146.2,183.1,174.6,172.7,170.1,141.5,140.5,140.5,140.5,140.5,140.3,140.7,140.4,140.4,140.4,140.4,140.3,140,140.6 +205,146.3,183.3,174.8,172.9,170.4,141.5,140.5,140.5,140.5,140.5,140.4,140.7,140.4,140.4,140.4,140.4,140.4,140,140.7 +206,146.3,183.4,175,173.1,170.6,141.5,140.5,140.5,140.5,140.5,140.4,140.7,140.5,140.5,140.5,140.5,140.4,140,140.7 +207,146.3,183.5,175.2,173.3,170.9,141.6,140.5,140.6,140.6,140.6,140.4,140.8,140.5,140.5,140.5,140.5,140.4,140.1,140.7 +208,146.4,183.6,175.4,173.5,171.1,141.6,140.6,140.6,140.6,140.6,140.5,140.8,140.5,140.5,140.5,140.5,140.5,140.1,140.8 +209,146.4,183.7,175.6,173.7,171.4,141.6,140.6,140.6,140.6,140.6,140.5,140.9,140.6,140.6,140.6,140.6,140.5,140.2,140.8 +210,146.5,183.9,175.8,174,171.6,141.6,140.6,140.6,140.6,140.6,140.5,140.9,140.6,140.6,140.6,140.6,140.6,140.2,140.8 +211,146.5,184,175.9,174.2,171.9,141.6,140.6,140.6,140.6,140.7,140.6,140.9,140.7,140.7,140.7,140.7,140.6,140.2,140.9 +212,146.6,184.1,176.1,174.4,172.1,141.7,140.6,140.7,140.7,140.7,140.6,141,140.7,140.7,140.7,140.7,140.7,140.3,140.9 +213,146.6,184.2,176.3,174.6,172.4,141.7,140.6,140.7,140.7,140.7,140.6,141,140.8,140.8,140.8,140.8,140.7,140.3,140.9 +214,146.6,184.3,176.5,174.8,172.6,141.6,140.6,140.7,140.7,140.7,140.7,141,140.8,140.8,140.8,140.8,140.7,140.4,141 +215,146.7,184.5,176.7,175,172.8,141.7,140.7,140.7,140.7,140.7,140.7,141.1,140.8,140.8,140.8,140.8,140.8,140.4,141 +216,146.7,184.6,176.9,175.2,173,141.7,140.7,140.7,140.7,140.7,140.7,141.1,140.9,140.9,140.9,140.9,140.8,140.4,141.1 +217,146.8,184.7,177.1,175.4,173.3,141.8,140.7,140.7,140.7,140.7,140.8,141.1,140.9,140.9,140.9,140.9,140.9,140.5,141.1 +218,146.8,184.8,177.2,175.6,173.5,141.9,140.7,140.7,140.7,140.8,140.8,141.2,141,141,141,141,140.9,140.5,141.1 +219,146.8,185,177.4,175.8,173.7,141.9,140.7,140.7,140.7,140.8,140.8,141.2,141,141,141,141,141,140.6,141.2 +220,146.9,185.1,177.6,176,173.9,142,140.7,140.7,140.8,140.8,140.9,141.2,141.1,141.1,141.1,141.1,141,140.6,141.2 +221,146.9,185.2,177.8,176.2,174.1,142,140.7,140.7,140.8,140.8,140.9,141.3,141.1,141.1,141.1,141.1,141,140.6,141.2 +222,147,185.4,178,176.3,174.3,142.1,140.7,140.7,140.8,140.8,140.9,141.3,141.1,141.1,141.1,141.1,141.1,140.7,141.3 +223,147,185.5,178.1,176.5,174.5,142.2,140.7,140.8,140.8,140.8,141,141.3,141.2,141.2,141.2,141.2,141.1,140.7,141.3 +224,147,185.6,178.3,176.7,174.8,142.2,140.7,140.8,140.8,140.8,141,141.4,141.2,141.2,141.2,141.2,141.2,140.8,141.3 +225,147.1,185.8,178.5,176.9,175,142.3,140.7,140.8,140.8,140.9,141,141.4,141.3,141.3,141.3,141.3,141.2,140.8,141.4 +226,147.1,185.9,178.7,177.1,175.2,142.3,140.7,140.8,140.8,140.9,141.1,141.4,141.3,141.3,141.3,141.3,141.2,140.8,141.4 +227,147.1,186,178.9,177.3,175.4,142.4,140.7,140.8,140.8,140.9,141.1,141.5,141.3,141.3,141.3,141.3,141.3,140.9,141.4 +228,147.2,186.2,179,177.5,175.6,142.4,140.7,140.8,140.8,140.9,141.1,141.5,141.4,141.4,141.4,141.4,141.3,140.9,141.5 +229,147.2,186.3,179.2,177.7,175.8,142.5,140.7,140.8,140.9,140.9,141.2,141.5,141.4,141.4,141.4,141.4,141.4,140.9,141.5 +230,147.3,186.4,179.4,177.9,176,142.6,140.7,140.8,140.9,140.9,141.2,141.6,141.5,141.5,141.5,141.5,141.4,141,141.5 +231,147.3,186.6,179.6,178.1,176.2,142.6,140.7,140.8,140.9,140.9,141.2,141.6,141.5,141.5,141.5,141.5,141.4,141,141.6 +232,147.3,186.7,179.8,178.2,176.4,142.7,140.8,140.8,140.9,141,141.3,141.6,141.5,141.5,141.5,141.5,141.5,141,141.6 +233,147.4,186.8,180,178.4,176.6,142.7,140.8,140.9,140.9,141,141.3,141.7,141.6,141.6,141.6,141.6,141.5,141.1,141.6 +234,147.4,187,180.1,178.6,176.7,142.8,140.8,140.9,140.9,141,141.3,141.7,141.6,141.6,141.6,141.6,141.6,141.1,141.7 +235,147.4,187.1,180.3,178.8,176.9,142.8,140.9,140.9,140.9,141,141.3,141.7,141.7,141.7,141.7,141.7,141.6,141.2,141.7 +236,147.5,187.2,180.5,179,177.1,142.9,140.9,140.9,140.9,141,141.4,141.7,141.7,141.7,141.7,141.7,141.6,141.2,141.7 +237,147.5,187.4,180.7,179.2,177.3,143,141,140.9,141,141,141.4,141.8,141.7,141.7,141.7,141.7,141.7,141.2,141.7 +238,147.6,187.5,180.9,179.4,177.5,143,141,141,141,141,141.4,141.8,141.8,141.8,141.8,141.8,141.7,141.3,141.8 +239,147.6,187.6,181,179.5,177.7,143.1,141.1,141,141,141.1,141.5,141.8,141.8,141.8,141.8,141.8,141.7,141.3,141.8 +240,147.6,187.8,181.2,179.7,177.9,143.1,141.2,141.1,141.1,141.1,141.5,141.8,141.9,141.9,141.9,141.9,141.8,141.3,141.8 +241,147.7,187.9,181.4,179.9,178.1,143.2,141.2,141.1,141.1,141.1,141.5,141.9,141.9,141.9,141.9,141.9,141.8,141.4,141.9 +242,147.7,188.1,181.6,180.1,178.3,143.2,141.3,141.2,141.2,141.1,141.5,141.9,141.9,141.9,141.9,141.9,141.9,141.4,141.9 +243,147.7,188.2,181.7,180.3,178.5,143.3,141.3,141.3,141.2,141.2,141.6,141.9,142,142,142,142,141.9,141.4,141.9 +244,147.8,188.3,181.9,180.5,178.7,143.3,141.4,141.3,141.3,141.2,141.6,142,142,142,142,142,141.9,141.5,141.9 +245,147.8,188.5,182.1,180.7,178.9,143.4,141.4,141.4,141.3,141.3,141.6,142,142,142,142,142,142,141.5,142 +246,147.8,188.6,182.3,180.8,179.1,143.4,141.5,141.4,141.4,141.3,141.7,142,142.1,142.1,142.1,142.1,142,141.5,142 +247,147.9,188.8,182.5,181,179.2,143.5,141.6,141.5,141.4,141.4,141.7,142,142.1,142.1,142.1,142.1,142,141.6,142 +248,147.9,188.9,182.6,181.2,179.4,143.6,141.6,141.5,141.5,141.4,141.7,142.1,142.2,142.2,142.2,142.2,142.1,141.6,142.1 +249,148,189,182.8,181.4,179.6,143.6,141.7,141.6,141.6,141.5,141.7,142.1,142.2,142.2,142.2,142.2,142.1,141.6,142.1 +250,148,189.2,183,181.6,179.8,143.7,141.7,141.7,141.6,141.5,141.8,142.1,142.2,142.2,142.2,142.2,142.2,141.7,142.1 +251,148,189.3,183.2,181.7,180,143.7,141.8,141.7,141.7,141.6,141.8,142.1,142.3,142.3,142.3,142.3,142.2,141.7,142.1 +252,148.1,189.5,183.3,181.9,180.2,143.8,141.8,141.8,141.7,141.7,141.8,142.2,142.3,142.3,142.3,142.3,142.2,141.7,142.2 +253,148.1,189.6,183.5,182.1,180.4,143.8,141.9,141.8,141.8,141.7,141.8,142.2,142.3,142.3,142.3,142.3,142.3,141.8,142.2 +254,148.1,189.7,183.7,182.3,180.5,143.9,142,141.9,141.8,141.8,141.9,142.2,142.4,142.4,142.4,142.4,142.3,141.8,142.2 +255,148.2,189.9,183.9,182.5,180.7,143.9,142,141.9,141.9,141.8,141.9,142.2,142.4,142.4,142.4,142.4,142.3,141.8,142.2 +256,148.2,190,184,182.7,180.9,144,142.1,142,141.9,141.9,141.9,142.2,142.5,142.5,142.4,142.4,142.4,141.9,142.3 +257,148.2,190.2,184.2,182.8,181.1,144,142.1,142,142,141.9,141.9,142.3,142.5,142.5,142.5,142.5,142.4,141.9,142.3 +258,148.3,190.3,184.4,183,181.3,144.1,142.2,142.1,142,142,142,142.3,142.5,142.5,142.5,142.5,142.4,141.9,142.3 +259,148.3,190.4,184.6,183.2,181.5,144.1,142.2,142.1,142.1,142,142,142.3,142.6,142.6,142.6,142.6,142.5,142,142.4 +260,148.3,190.6,184.7,183.4,181.7,144.2,142.3,142.2,142.1,142.1,142,142.3,142.6,142.6,142.6,142.6,142.5,142,142.4 +261,148.4,190.7,184.9,183.6,181.8,144.2,142.3,142.2,142.2,142.1,142,142.3,142.6,142.6,142.6,142.6,142.6,142,142.4 +262,148.4,190.9,185.1,183.7,182,144.3,142.4,142.3,142.2,142.2,142.1,142.3,142.7,142.7,142.7,142.7,142.6,142.1,142.4 +263,148.4,191,185.3,183.9,182.2,144.3,142.4,142.3,142.3,142.2,142.1,142.3,142.7,142.7,142.7,142.7,142.6,142.1,142.5 +264,148.5,191.1,185.4,184.1,182.4,144.4,142.5,142.4,142.4,142.3,142.1,142.3,142.7,142.7,142.7,142.7,142.7,142.1,142.5 +265,148.5,191.3,185.6,184.3,182.6,144.4,142.5,142.5,142.4,142.3,142.1,142.3,142.8,142.8,142.8,142.8,142.7,142.2,142.5 +266,148.5,191.4,185.8,184.5,182.8,144.6,142.6,142.5,142.5,142.4,142.2,142.3,142.8,142.8,142.8,142.8,142.7,142.2,142.5 +267,148.6,191.5,186,184.6,183,145.1,142.6,142.6,142.5,142.4,142.2,142.3,142.8,142.8,142.8,142.8,142.8,142.2,142.5 +268,148.6,191.7,186.1,184.8,183.1,146.5,142.7,142.6,142.6,142.5,142.2,142.3,142.9,142.9,142.9,142.9,142.8,142.3,142.5 +269,148.6,191.8,186.3,185,183.3,148.1,142.7,142.7,142.6,142.5,142.2,142.3,142.9,142.9,142.9,142.9,142.8,142.3,142.6 +270,148.7,192,186.5,185.2,183.5,148.9,142.8,142.7,142.7,142.6,142.2,142.3,142.9,142.9,142.9,142.9,142.9,142.3,142.6 +271,148.7,192.1,186.6,185.3,183.7,149.8,142.8,142.8,142.7,142.6,142.3,142.3,143,143,143,143,142.9,142.4,142.6 +272,148.7,192.2,186.8,185.5,183.9,150.6,142.9,142.8,142.8,142.7,142.3,142.3,143,143,143,143,142.9,142.4,142.6 +273,148.8,192.4,187,185.7,184,151.4,142.9,142.9,142.8,142.7,142.3,142.4,143,143,143,143,143,142.4,142.6 +274,148.8,192.5,187.1,185.9,184.2,152.3,143,142.9,142.9,142.8,142.3,142.4,143.1,143.1,143.1,143.1,143,142.4,142.6 +275,148.8,192.6,187.3,186,184.4,153.1,143,143,142.9,142.8,142.3,142.4,143.1,143.1,143.1,143.1,143,142.5,142.6 +276,148.8,192.8,187.5,186.2,184.6,153.9,143.1,143,143,142.9,142.4,142.5,143.1,143.1,143.1,143.1,143.1,142.5,142.6 +277,148.9,192.9,187.6,186.4,184.8,154.8,143.1,143.1,143,142.9,142.4,142.5,143.2,143.2,143.2,143.2,143.1,142.5,142.7 +278,148.9,193,187.8,186.6,184.9,155.6,143.2,143.1,143.1,143,142.4,142.5,143.2,143.2,143.2,143.2,143.1,142.6,142.7 +279,148.9,193.2,188,186.7,185.1,156.5,143.2,143.2,143.1,143,142.4,142.5,143.2,143.2,143.2,143.2,143.2,142.6,142.6 +280,149,193.3,188.1,186.9,185.3,157.7,143.3,143.2,143.2,143.1,142.5,142.6,143.3,143.3,143.3,143.3,143.2,142.6,142.6 +281,149,193.4,188.3,187.1,185.5,158.8,143.3,143.2,143.2,143.1,142.5,142.6,143.3,143.3,143.3,143.3,143.2,142.7,142.6 +282,149,193.6,188.5,187.2,185.6,159.8,143.4,143.3,143.2,143.2,142.5,142.6,143.3,143.3,143.3,143.3,143.3,142.7,142.6 +283,149.1,193.7,188.6,187.4,185.8,160.7,143.4,143.3,143.3,143.2,142.6,142.7,143.4,143.4,143.4,143.4,143.3,142.7,142.7 +284,149.1,193.8,188.8,187.6,186,161.6,143.5,143.4,143.3,143.3,142.6,142.7,143.4,143.4,143.4,143.4,143.3,142.7,142.7 +285,149.1,194,189,187.7,186.2,162.4,143.5,143.4,143.4,143.3,142.6,142.7,143.4,143.4,143.4,143.4,143.4,142.8,142.7 +286,149.2,194.1,189.1,187.9,186.3,163.1,143.6,143.5,143.4,143.4,142.7,142.7,143.5,143.5,143.5,143.5,143.4,142.8,142.7 +287,149.2,194.2,189.3,188.1,186.5,163.8,143.6,143.5,143.5,143.4,142.7,142.8,143.5,143.5,143.5,143.5,143.4,142.8,142.8 +288,149.2,194.4,189.4,188.2,186.7,164.5,143.7,143.6,143.5,143.5,142.7,142.8,143.5,143.5,143.5,143.5,143.5,142.9,142.8 +289,149.2,194.5,189.6,188.4,186.9,165.1,143.7,143.6,143.6,143.5,142.8,142.8,143.6,143.6,143.6,143.6,143.5,142.9,142.8 +290,149.3,194.6,189.8,188.6,187,165.8,143.8,143.7,143.6,143.6,142.8,142.8,143.6,143.6,143.6,143.6,143.5,142.9,142.9 +291,149.3,194.8,189.9,188.7,187.2,166.3,143.8,143.7,143.7,143.6,142.9,142.9,143.6,143.6,143.6,143.6,143.5,142.9,142.9 +292,149.3,194.9,190.1,188.9,187.4,166.9,143.9,143.8,143.7,143.7,142.9,142.9,143.7,143.7,143.7,143.7,143.6,143,142.9 +293,149.4,195,190.2,189.1,187.5,167.3,143.9,143.8,143.8,143.7,143,142.9,143.7,143.7,143.7,143.7,143.6,143,142.9 +294,149.4,195.2,190.4,189.2,187.7,167.8,143.9,143.9,143.8,143.7,143,143,143.7,143.7,143.7,143.7,143.6,143,143 +295,149.4,195.3,190.5,189.4,187.9,168.2,144,143.9,143.9,143.8,143.1,143,143.8,143.8,143.8,143.8,143.7,143,143 +296,149.5,195.4,190.7,189.5,188,168.6,144,144,143.9,143.8,143.1,143,143.8,143.8,143.8,143.8,143.7,143.1,143 +297,149.5,195.5,190.9,189.7,188.2,169,144.1,144,144,143.9,143.2,143,143.8,143.8,143.8,143.8,143.7,143.1,143.1 +298,149.5,195.7,191,189.9,188.4,169.4,144.1,144,144,143.9,143.2,143.1,143.8,143.8,143.8,143.8,143.8,143.1,143.1 +299,149.5,195.8,191.2,190,188.5,169.7,144.2,144.1,144,144,143.2,143.1,143.9,143.9,143.9,143.9,143.8,143.2,143.1 +300,149.6,195.9,191.3,190.2,188.7,170.1,144.2,144.1,144.1,144,143.3,143.1,143.9,143.9,143.9,143.9,143.8,143.2,143.1 +301,149.6,196.1,191.5,190.3,188.9,170.4,144.3,144.2,144.1,144.1,143.3,143.1,143.9,143.9,143.9,143.9,143.8,143.2,143.2 +302,149.6,196.2,191.6,190.5,189,170.7,144.3,144.2,144.2,144.1,143.4,143.2,144,144,144,144,143.9,143.2,143.2 +303,149.7,196.3,191.8,190.7,189.2,171.1,144.3,144.3,144.2,144.2,143.4,143.2,144,144,144,144,143.9,143.3,143.2 +304,149.7,196.4,191.9,190.8,189.4,171.4,144.4,144.3,144.3,144.2,143.5,143.2,144,144,144,144,143.9,143.3,143.2 +305,149.7,196.6,192.1,191,189.5,171.7,144.4,144.4,144.3,144.2,143.5,143.2,144.1,144.1,144.1,144.1,144,143.3,143.3 +306,149.7,196.7,192.2,191.1,189.7,172,144.5,144.4,144.4,144.3,143.5,143.3,144.1,144.1,144.1,144.1,144,143.3,143.3 +307,149.8,196.8,192.4,191.3,189.9,172.3,144.5,144.4,144.4,144.3,143.6,143.3,144.1,144.1,144.1,144.1,144,143.4,143.3 +308,149.8,196.9,192.5,191.4,190,172.5,144.6,144.5,144.4,144.4,143.6,143.3,144.1,144.1,144.1,144.1,144,143.4,143.4 +309,149.8,197.1,192.7,191.6,190.2,172.8,144.6,144.5,144.5,144.4,143.7,143.3,144.2,144.2,144.2,144.2,144.1,143.4,143.4 +310,149.9,197.2,192.8,191.7,190.3,173.1,144.7,144.6,144.5,144.5,143.7,143.4,144.2,144.2,144.2,144.2,144.1,143.4,143.4 +311,149.9,197.3,193,191.9,190.5,173.3,144.7,144.6,144.6,144.5,143.8,143.4,144.2,144.2,144.2,144.2,144.1,143.5,143.4 +312,149.9,197.4,193.1,192.1,190.7,173.6,144.7,144.7,144.6,144.5,143.8,143.4,144.2,144.2,144.2,144.2,144.1,143.5,143.5 +313,149.9,197.6,193.3,192.2,190.8,173.8,144.8,144.7,144.7,144.6,143.8,143.4,144.3,144.3,144.3,144.3,144.2,143.5,143.5 +314,150,197.7,193.4,192.4,191,174.1,144.8,144.8,144.7,144.6,143.9,143.5,144.3,144.3,144.3,144.3,144.2,143.6,143.5 +315,150,197.8,193.6,192.5,191.1,174.3,144.9,144.8,144.7,144.7,143.9,143.5,144.3,144.3,144.3,144.3,144.2,143.6,143.5 +316,150,197.9,193.7,192.7,191.3,174.6,144.9,144.8,144.8,144.7,144,143.5,144.3,144.4,144.4,144.4,144.2,143.6,143.6 +317,150,198.1,193.9,192.8,191.4,174.8,145,144.9,144.8,144.8,144,143.5,144.4,144.4,144.4,144.4,144.3,143.6,143.6 +318,150.1,198.2,194,193,191.6,175,145,144.9,144.9,144.8,144.1,143.5,144.4,144.4,144.4,144.4,144.3,143.7,143.6 +319,150.1,198.3,194.2,193.1,191.7,175.3,145,145,144.9,144.8,144.1,143.6,144.4,144.4,144.4,144.4,144.3,143.7,143.6 +320,150.1,198.4,194.3,193.3,191.9,175.5,145.1,145,145,144.9,144.1,143.6,144.4,144.5,144.5,144.5,144.3,143.7,143.7 +321,150.2,198.6,194.4,193.4,192.1,175.7,145.1,145.1,145,144.9,144.2,143.6,144.5,144.5,144.5,144.5,144.4,143.7,143.7 +322,150.2,198.7,194.6,193.6,192.2,175.9,145.2,145.1,145,145,144.2,143.6,144.5,144.5,144.5,144.5,144.4,143.8,143.7 +323,150.2,198.8,194.7,193.7,192.4,176.2,145.2,145.1,145.1,145,144.3,143.7,144.5,144.5,144.5,144.5,144.4,143.8,143.7 +324,150.2,198.9,194.9,193.8,192.5,176.4,145.3,145.2,145.1,145.1,144.3,143.7,144.5,144.5,144.5,144.5,144.4,143.8,143.8 +325,150.3,199,195,194,192.7,176.6,145.3,145.2,145.2,145.1,144.3,143.7,144.6,144.6,144.6,144.6,144.4,143.8,143.8 +326,150.3,199.2,195.2,194.1,192.8,176.8,145.3,145.3,145.2,145.1,144.4,143.7,144.6,144.6,144.6,144.6,144.4,143.8,143.8 +327,150.3,199.3,195.3,194.3,193,177,145.4,145.3,145.3,145.2,144.4,143.7,144.6,144.6,144.6,144.6,144.5,143.9,143.8 +328,150.3,199.4,195.4,194.4,193.1,177.2,145.4,145.3,145.3,145.2,144.5,143.8,144.6,144.6,144.6,144.6,144.5,143.9,143.9 +329,150.4,199.5,195.6,194.6,193.3,177.4,145.5,145.4,145.3,145.3,144.5,143.8,144.6,144.6,144.6,144.6,144.5,143.9,143.9 +330,150.4,199.7,195.7,194.7,193.4,177.6,145.5,145.4,145.4,145.3,144.6,143.8,144.6,144.7,144.7,144.7,144.5,143.9,143.9 +331,150.4,199.8,195.9,194.9,193.6,177.8,145.5,145.5,145.4,145.4,144.6,143.8,144.7,144.7,144.7,144.7,144.5,144,143.9 +332,150.4,199.9,196,195,193.7,178,145.6,145.5,145.5,145.4,144.6,143.9,144.7,144.7,144.7,144.7,144.5,144,144 +333,150.5,200,196.1,195.1,193.9,178.2,145.6,145.5,145.5,145.4,144.7,143.9,144.7,144.7,144.7,144.7,144.5,144,144 +334,150.5,200.1,196.3,195.3,194,178.4,145.7,145.6,145.5,145.5,144.7,143.9,144.7,144.7,144.7,144.7,144.5,144,144 +335,150.5,200.3,196.4,195.4,194.2,178.6,145.7,145.6,145.6,145.5,144.8,143.9,144.7,144.7,144.7,144.7,144.5,144.1,144 +336,150.6,200.4,196.5,195.6,194.3,178.8,145.7,145.7,145.6,145.6,144.8,143.9,144.7,144.7,144.7,144.7,144.5,144.1,144.1 +337,150.6,200.5,196.7,195.7,194.4,179,145.8,145.7,145.7,145.6,144.8,144,144.7,144.7,144.7,144.7,144.5,144.1,144.1 +338,150.6,200.6,196.8,195.9,194.6,179.2,145.8,145.7,145.7,145.6,144.9,144,144.7,144.7,144.7,144.7,144.5,144.1,144.1 +339,150.6,200.7,197,196,194.7,179.4,145.9,145.8,145.7,145.7,144.9,144,144.7,144.7,144.7,144.7,144.5,144.2,144.1 +340,150.7,200.8,197.1,196.1,194.9,179.6,145.9,145.8,145.8,145.7,145,144,144.7,144.7,144.7,144.7,144.5,144.2,144.2 +341,150.7,201,197.2,196.3,195,179.8,145.9,145.9,145.8,145.8,145,144,144.7,144.7,144.7,144.7,144.6,144.2,144.2 +342,150.7,201.1,197.4,196.4,195.2,180,146,145.9,145.9,145.8,145,144.1,144.7,144.7,144.7,144.7,144.6,144.2,144.2 +343,150.7,201.2,197.5,196.6,195.3,180.2,146,145.9,145.9,145.8,145.1,144.1,144.7,144.7,144.7,144.7,144.6,144.2,144.2 +344,150.8,201.3,197.6,196.7,195.5,180.4,146.1,146,145.9,145.9,145.1,144.1,144.7,144.7,144.7,144.7,144.6,144.3,144.2 +345,150.8,201.4,197.8,196.8,195.6,180.6,146.1,146,146,145.9,145.2,144.1,144.6,144.7,144.7,144.7,144.6,144.3,144.3 +346,150.8,201.5,197.9,197,195.7,180.8,146.1,146.1,146,146,145.2,144.1,144.6,144.7,144.7,144.7,144.6,144.3,144.3 +347,150.8,201.7,198,197.1,195.9,181,146.2,146.1,146.1,146,145.2,144.2,144.6,144.6,144.7,144.7,144.6,144.3,144.3 +348,150.9,201.8,198.2,197.2,196,181.2,146.2,146.1,146.1,146,145.3,144.2,144.6,144.6,144.6,144.7,144.6,144.4,144.3 +349,150.9,201.9,198.3,197.4,196.2,181.3,146.3,146.2,146.1,146.1,145.3,144.2,144.6,144.6,144.6,144.7,144.6,144.4,144.4 +350,150.9,202,198.4,197.5,196.3,181.5,146.3,146.2,146.2,146.1,145.3,144.2,144.5,144.6,144.6,144.6,144.6,144.4,144.4 +351,150.9,202.1,198.6,197.7,196.4,181.7,146.3,146.3,146.2,146.2,145.4,144.2,144.5,144.6,144.6,144.6,144.6,144.4,144.4 +352,151,202.2,198.7,197.8,196.6,181.9,146.4,146.3,146.3,146.2,145.4,144.3,144.5,144.5,144.6,144.6,144.6,144.4,144.4 +353,151,202.4,198.8,197.9,196.7,182.1,146.4,146.3,146.3,146.2,145.5,144.3,144.5,144.5,144.6,144.6,144.6,144.5,144.5 +354,151,202.5,199,198.1,196.9,182.3,146.4,146.4,146.3,146.3,145.5,144.3,144.4,144.5,144.5,144.6,144.6,144.5,144.5 +355,151,202.6,199.1,198.2,197,182.5,146.5,146.4,146.4,146.3,145.5,144.3,144.4,144.5,144.5,144.5,144.6,144.5,144.5 +356,151.1,202.7,199.2,198.3,197.1,182.7,146.5,146.5,146.4,146.3,145.6,144.3,144.4,144.5,144.5,144.5,144.6,144.5,144.5 +357,151.1,202.8,199.4,198.5,197.3,182.8,146.6,146.5,146.4,146.4,145.6,144.3,144.5,144.5,144.5,144.5,144.6,144.5,144.5 +358,151.1,202.9,199.5,198.6,197.4,183,146.6,146.5,146.5,146.4,145.7,144.4,144.5,144.5,144.5,144.5,144.7,144.6,144.6 +359,151.1,203.1,199.6,198.7,197.5,183.2,146.6,146.6,146.5,146.5,145.7,144.4,144.6,144.6,144.5,144.5,144.7,144.6,144.6 +360,151.1,203.2,199.8,198.9,197.7,183.4,146.7,146.6,146.6,146.5,145.7,144.4,144.7,144.6,144.6,144.5,144.7,144.6,144.6 +361,151.2,203.3,199.9,199,197.8,183.6,146.7,146.6,146.6,146.5,145.8,144.4,144.7,144.7,144.6,144.6,144.7,144.6,144.6 +362,151.2,203.4,200,199.1,198,183.8,146.7,146.7,146.6,146.6,145.8,144.4,144.8,144.7,144.7,144.7,144.7,144.7,144.7 +363,151.2,203.5,200.1,199.3,198.1,184,146.8,146.7,146.7,146.6,145.8,144.5,144.8,144.8,144.8,144.7,144.7,144.7,144.7 +364,151.2,203.6,200.3,199.4,198.2,184.1,146.8,146.8,146.7,146.6,145.9,144.5,144.9,144.8,144.8,144.8,144.7,144.7,144.7 +365,151.3,203.7,200.4,199.5,198.4,184.3,146.9,146.8,146.7,146.7,145.9,144.5,144.9,144.9,144.9,144.8,144.7,144.7,144.7 +366,151.3,203.9,200.5,199.6,198.5,184.5,146.9,146.8,146.8,146.7,146,144.5,145,144.9,144.9,144.9,144.7,144.7,144.7 +367,151.3,204,200.7,199.8,198.6,184.7,146.9,146.9,146.8,146.8,146,144.5,145,145,145,144.9,144.7,144.8,144.8 +368,151.3,204.1,200.8,199.9,198.8,184.9,147,146.9,146.9,146.8,146,144.5,145.1,145,145,145,144.7,144.8,144.8 +369,151.4,204.2,200.9,200,198.9,185.1,147,146.9,146.9,146.8,146.1,144.6,145.1,145.1,145.1,145,144.8,144.8,144.8 +370,151.4,204.3,201,200.2,199,185.2,147,147,146.9,146.9,146.1,144.6,145.2,145.1,145.1,145.1,144.8,144.8,144.8 +371,151.4,204.4,201.2,200.3,199.2,185.4,147.1,147,147,146.9,146.1,144.6,145.2,145.2,145.1,145.1,144.8,144.8,144.8 +372,151.4,204.5,201.3,200.4,199.3,185.6,147.1,147.1,147,146.9,146.2,144.6,145.3,145.2,145.2,145.1,144.8,144.9,144.9 +373,151.5,204.6,201.4,200.6,199.4,185.8,147.2,147.1,147,147,146.2,144.6,145.3,145.3,145.2,145.2,144.8,144.9,144.9 +374,151.5,204.8,201.5,200.7,199.6,186,147.3,147.1,147.1,147,146.3,144.6,145.4,145.3,145.3,145.2,144.8,144.9,144.9 +375,151.5,204.9,201.7,200.8,199.7,186.1,147.3,147.2,147.1,147.1,146.3,144.7,145.4,145.4,145.3,145.3,144.8,144.9,144.9 +376,151.5,205,201.8,200.9,199.8,186.3,147.4,147.2,147.2,147.1,146.3,144.7,145.5,145.4,145.4,145.3,144.9,144.9,144.9 +377,151.5,205.1,201.9,201.1,200,186.5,147.5,147.2,147.2,147.1,146.4,144.7,145.5,145.4,145.4,145.4,144.9,144.9,145 +378,151.6,205.2,202,201.2,200.1,186.7,147.6,147.3,147.2,147.2,146.4,144.7,145.5,145.5,145.5,145.4,144.9,145,145 +379,151.6,205.3,202.2,201.3,200.2,186.9,147.7,147.3,147.3,147.2,146.4,144.7,145.6,145.5,145.5,145.5,145,145,145 +380,151.6,205.4,202.3,201.5,200.3,187,147.8,147.3,147.3,147.2,146.5,144.7,145.6,145.6,145.5,145.5,145,145,145 +381,151.6,205.5,202.4,201.6,200.5,187.2,148.2,147.4,147.3,147.3,146.5,144.8,145.7,145.6,145.6,145.5,145,145,145.1 +382,151.7,205.7,202.5,201.7,200.6,187.4,148.5,147.4,147.4,147.3,146.5,144.8,145.7,145.7,145.6,145.6,145.1,145,145.1 +383,151.7,205.8,202.7,201.8,200.7,187.6,148.8,147.4,147.4,147.3,146.6,144.8,145.8,145.7,145.7,145.6,145.1,145.1,145.1 +384,151.7,205.9,202.8,202,200.9,187.7,149.1,147.5,147.4,147.4,146.6,144.8,145.8,145.7,145.7,145.7,145.1,145.1,145.1 +385,151.7,206,202.9,202.1,201,187.9,149.5,147.5,147.5,147.4,146.7,144.8,145.8,145.8,145.7,145.7,145.2,145.1,145.1 +386,151.8,206.1,203,202.2,201.1,188.1,149.9,147.6,147.5,147.5,146.7,144.8,145.9,145.8,145.8,145.7,145.2,145.1,145.1 +387,151.8,206.2,203.2,202.3,201.2,188.2,150.2,147.6,147.6,147.5,146.8,144.8,145.9,145.9,145.8,145.8,145.2,145.1,145.2 +388,151.8,206.3,203.3,202.5,201.4,188.4,150.6,147.6,147.6,147.5,146.8,144.9,146,145.9,145.9,145.8,145.3,145.2,145.2 +389,151.8,206.4,203.4,202.6,201.5,188.6,151.1,147.7,147.6,147.6,146.8,144.9,146,145.9,145.9,145.9,145.3,145.2,145.2 +390,151.8,206.5,203.5,202.7,201.6,188.8,151.5,147.7,147.7,147.6,146.9,144.9,146,146,145.9,145.9,145.3,145.2,145.2 +391,151.9,206.7,203.7,202.8,201.8,188.9,152,147.7,147.7,147.6,146.9,144.9,146.1,146,146,145.9,145.4,145.2,145.2 +392,151.9,206.8,203.8,203,201.9,189.1,152.4,147.8,147.7,147.7,146.9,144.9,146.1,146.1,146,146,145.4,145.2,145.3 +393,151.9,206.9,203.9,203.1,202,189.3,152.9,147.8,147.8,147.7,147,144.9,146.1,146.1,146.1,146,145.5,145.2,145.3 +394,151.9,207,204,203.2,202.1,189.4,153.4,147.8,147.8,147.7,147,144.9,146.2,146.1,146.1,146,145.5,145.3,145.3 +395,152,207.1,204.1,203.3,202.3,189.6,154,147.9,147.8,147.8,147,145,146.2,146.2,146.1,146.1,145.5,145.3,145.3 +396,152,207.2,204.3,203.5,202.4,189.8,154.4,147.9,147.9,147.8,147,145,146.3,146.2,146.2,146.1,145.6,145.3,145.3 +397,152,207.3,204.4,203.6,202.5,189.9,154.9,147.9,147.9,147.8,147.1,145,146.3,146.2,146.2,146.2,145.6,145.3,145.4 +398,152,207.4,204.5,203.7,202.6,190.1,155.3,148,147.9,147.9,147.1,145,146.3,146.3,146.2,146.2,145.6,145.3,145.4 +399,152,207.5,204.6,203.8,202.8,190.3,155.7,148,148,147.9,147.2,145,146.4,146.3,146.3,146.2,145.7,145.3,145.4 +400,152.1,207.7,204.8,204,202.9,190.4,156.2,148,148,147.9,147.2,145,146.4,146.3,146.3,146.3,145.7,145.4,145.4 +401,152.1,207.8,204.9,204.1,203,190.6,156.6,148.1,148,148,147.2,145,146.4,146.4,146.3,146.3,145.7,145.4,145.4 +402,152.1,207.9,205,204.2,203.1,190.8,157,148.1,148.1,148,147.3,145.1,146.5,146.4,146.4,146.3,145.8,145.4,145.5 +403,152.1,208,205.1,204.3,203.3,190.9,157.4,148.1,148.1,148.1,147.3,145.1,146.5,146.5,146.4,146.4,145.8,145.4,145.5 +404,152.1,208.1,205.2,204.4,203.4,191.1,157.9,148.2,148.1,148.1,147.3,145.1,146.6,146.5,146.5,146.4,145.8,145.4,145.5 +405,152.2,208.2,205.4,204.6,203.5,191.3,158.3,148.2,148.2,148.1,147.4,145.1,146.6,146.5,146.5,146.4,145.9,145.4,145.5 +406,152.2,208.3,205.5,204.7,203.6,191.4,158.7,148.2,148.2,148.2,147.4,145.1,146.6,146.6,146.5,146.5,145.9,145.5,145.5 +407,152.2,208.4,205.6,204.8,203.8,191.6,159.1,148.3,148.2,148.2,147.4,145.1,146.7,146.6,146.6,146.5,145.9,145.5,145.5 +408,152.2,208.5,205.7,204.9,203.9,191.8,159.6,148.3,148.3,148.3,147.5,145.2,146.7,146.6,146.6,146.5,146,145.5,145.6 +409,152.3,208.6,205.8,205.1,204,191.9,159.9,148.4,148.3,148.3,147.5,145.2,146.7,146.7,146.6,146.6,146,145.5,145.6 +410,152.3,208.8,206,205.2,204.1,192.1,160.4,148.4,148.4,148.3,147.5,145.2,146.8,146.7,146.7,146.6,146,145.5,145.6 +411,152.3,208.9,206.1,205.3,204.3,192.2,160.8,148.4,148.4,148.3,147.6,145.2,146.8,146.7,146.7,146.7,146.1,145.5,145.6 +412,152.3,209,206.2,205.4,204.4,192.4,161.2,148.5,148.4,148.4,147.6,145.2,146.8,146.8,146.7,146.7,146.1,145.6,145.6 +413,152.3,209.1,206.3,205.5,204.5,192.5,161.6,148.5,148.5,148.4,147.6,145.3,146.9,146.8,146.8,146.7,146.1,145.6,145.7 +414,152.4,209.2,206.4,205.7,204.6,192.7,162.6,148.5,148.5,148.4,147.7,145.3,146.9,146.8,146.8,146.8,146.2,145.6,145.7 +415,152.4,209.3,206.6,205.8,204.7,192.9,163.8,148.6,148.5,148.5,147.7,145.3,146.9,146.9,146.8,146.8,146.2,145.6,145.7 +416,152.4,209.4,206.7,205.9,204.9,193,165,148.6,148.6,148.5,147.7,145.3,147,146.9,146.9,146.8,146.2,145.6,145.7 +417,152.4,209.5,206.8,206,205,193.2,166.2,148.6,148.6,148.5,147.8,145.4,147,146.9,146.9,146.9,146.3,145.6,145.7 +418,152.4,209.6,206.9,206.1,205.1,193.3,167.4,148.8,148.6,148.6,147.8,145.4,147,147,146.9,146.9,146.3,145.7,145.7 +419,152.5,209.7,207,206.3,205.2,193.5,168.7,149,148.7,148.6,147.8,145.4,147.1,147,147,146.9,146.3,145.7,145.8 +420,152.5,209.8,207.2,206.4,205.4,193.6,169.9,149.5,148.7,148.6,147.9,145.4,147.1,147,147,147,146.4,145.7,145.8 +421,152.5,210,207.3,206.5,205.5,193.8,171.1,150.3,148.7,148.7,147.9,145.5,147.1,147.1,147,147,146.4,145.7,145.8 +422,152.5,210.1,207.4,206.6,205.6,193.9,172.3,151.2,148.8,148.7,147.9,145.5,147.2,147.1,147.1,147,146.4,145.7,145.8 +423,152.5,210.2,207.5,206.7,205.7,194.1,173.5,152,148.8,148.7,148,145.5,147.2,147.1,147.1,147.1,146.5,145.7,145.8 +424,152.6,210.3,207.6,206.9,205.8,194.2,174.8,152.9,148.8,148.8,148,145.6,147.2,147.2,147.1,147.1,146.5,145.7,145.8 +425,152.6,210.4,207.7,207,206,194.4,176,153.8,148.8,148.8,148,145.6,147.3,147.2,147.2,147.1,146.5,145.8,145.9 +426,152.6,210.5,207.9,207.1,206.1,194.6,177.2,154.8,149,148.8,148.1,145.6,147.3,147.2,147.2,147.2,146.6,145.8,145.9 +427,152.6,210.6,208,207.2,206.2,194.7,178.4,155.8,149.1,148.9,148.1,145.7,147.3,147.3,147.2,147.2,146.6,145.8,145.9 +428,152.6,210.7,208.1,207.3,206.3,194.9,179.6,156.8,149.5,148.9,148.1,145.7,147.4,147.3,147.3,147.2,146.6,145.8,145.9 +429,152.7,210.8,208.2,207.5,206.4,195,180.8,157.9,150.5,148.9,148.2,145.7,147.4,147.3,147.3,147.3,146.7,145.8,145.9 +430,152.7,210.9,208.3,207.6,206.6,195.2,181.1,158.9,151.4,149,148.2,145.7,147.4,147.4,147.3,147.3,146.7,145.8,145.9 +431,152.7,211,208.4,207.7,206.7,195.3,181.4,159.9,152.4,149,148.2,145.8,147.5,147.4,147.4,147.3,146.7,145.8,146 +432,152.7,211.2,208.6,207.8,206.8,195.4,181.7,160.9,153.3,149,148.3,145.8,147.5,147.4,147.4,147.4,146.8,145.9,146 +433,152.7,211.3,208.7,207.9,206.9,195.6,182,162,154.1,149.1,148.3,145.8,147.5,147.5,147.4,147.4,146.8,145.9,146 +434,152.8,211.4,208.8,208,207,195.7,182.3,163,154.9,149.1,148.3,145.9,147.6,147.5,147.5,147.4,146.8,145.9,146 +435,152.8,211.5,208.9,208.2,207.2,195.9,182.6,163.9,155.8,149.1,148.4,145.9,147.6,147.5,147.5,147.5,146.8,145.9,146 +436,152.8,211.6,209,208.3,207.3,196,182.8,164.7,156.6,149.2,148.4,145.9,147.6,147.6,147.5,147.5,146.9,145.9,146 +437,152.8,211.7,209.1,208.4,207.4,196.2,183,165.5,157.4,149.3,148.4,145.9,147.7,147.6,147.6,147.5,146.9,145.9,146.1 +438,152.8,211.8,209.3,208.5,207.5,196.3,183.1,166.2,158.2,149.5,148.5,146,147.7,147.6,147.6,147.6,146.9,145.9,146.1 +439,152.9,211.9,209.4,208.6,207.6,196.5,183.3,166.9,159,150.4,148.5,146,147.7,147.7,147.6,147.6,147,146,146.1 +440,152.9,212,209.5,208.8,207.8,196.6,183.4,167.6,159.8,151.5,148.5,146,147.8,147.7,147.7,147.6,147,146,146.1 +441,152.9,212.1,209.6,208.9,207.9,196.8,183.6,168.2,160.7,152.5,148.6,146,147.8,147.7,147.7,147.6,147,146,146.1 +442,152.9,212.2,209.7,209,208,196.9,183.7,168.8,161.8,153.4,148.6,146.1,147.8,147.8,147.7,147.7,147.1,146,146.1 +443,152.9,212.3,209.8,209.1,208.1,197,183.8,169.3,162.8,154.1,148.6,146.1,147.9,147.8,147.8,147.7,147.1,146,146.2 +444,153,212.4,210,209.2,208.2,197.2,184,169.9,163.6,154.9,148.7,146.1,147.9,147.8,147.8,147.7,147.1,146,146.2 +445,153,212.6,210.1,209.3,208.3,197.3,184.1,170.4,164.5,155.6,148.7,146.2,147.9,147.9,147.8,147.8,147.2,146,146.2 +446,153,212.7,210.2,209.5,208.5,197.5,184.2,170.9,165.3,156.4,148.7,146.2,147.9,147.9,147.9,147.8,147.2,146.1,146.2 +447,153,212.8,210.3,209.6,208.6,197.6,184.3,171.4,166,157.2,148.8,146.2,148,147.9,147.9,147.8,147.2,146.1,146.2 +448,153,212.9,210.4,209.7,208.7,197.8,184.4,171.8,166.7,157.9,148.8,146.2,148,148,147.9,147.9,147.3,146.1,146.2 +449,153.1,213,210.5,209.8,208.8,197.9,184.6,172.1,167.4,158.7,148.8,146.3,148,148,147.9,147.9,147.3,146.1,146.2 +450,153.1,213.1,210.7,209.9,208.9,198,184.7,172.5,168,159.4,148.9,146.3,148.1,148,148,147.9,147.3,146.1,146.3 +451,153.1,213.2,210.8,210,209.1,198.2,184.8,172.8,168.6,160.2,148.9,146.3,148.1,148,148,148,147.3,146.1,146.3 +452,153.1,213.3,210.9,210.2,209.2,198.3,184.9,173.1,169.2,160.9,148.9,146.4,148.1,148.1,148,148,147.4,146.1,146.3 +453,153.1,213.4,211,210.3,209.3,198.5,185,173.5,169.7,161.7,148.9,146.4,148.2,148.1,148.1,148,147.4,146.1,146.3 +454,153.2,213.5,211.1,210.4,209.4,198.6,185.1,173.8,170.2,162.8,149,146.4,148.2,148.1,148.1,148.1,147.4,146.2,146.3 +455,153.2,213.6,211.2,210.5,209.5,198.7,185.2,174.1,170.7,163.7,149,146.4,148.2,148.2,148.1,148.1,147.5,146.2,146.3 +456,153.2,213.7,211.3,210.6,209.6,198.9,185.3,174.3,171.1,164.6,149,146.5,148.3,148.2,148.2,148.1,147.5,146.2,146.4 +457,153.2,213.8,211.5,210.7,209.8,199,185.4,174.6,171.4,165.3,149.1,146.5,148.3,148.2,148.2,148.1,147.5,146.2,146.4 +458,153.2,214,211.6,210.8,209.9,199.1,185.5,174.9,171.8,166.1,149.1,146.5,148.3,148.3,148.2,148.2,147.6,146.2,146.4 +459,153.2,214.1,211.7,211,210,199.3,185.6,175.2,172.2,166.8,149.1,146.5,148.3,148.3,148.3,148.2,147.6,146.2,146.4 +460,153.3,214.2,211.8,211.1,210.1,199.4,185.7,175.4,172.5,167.4,149.2,146.6,148.4,148.3,148.3,148.2,147.6,146.2,146.4 +461,153.3,214.3,211.9,211.2,210.2,199.6,185.9,175.7,172.9,168.1,149.2,146.6,148.4,148.4,148.3,148.3,147.7,146.2,146.4 +462,153.3,214.4,212,211.3,210.3,199.7,186,175.9,173.2,168.7,149.2,146.6,148.4,148.4,148.3,148.3,147.7,146.3,146.4 +463,153.3,214.5,212.1,211.4,210.5,199.8,186.1,176.2,173.5,169.2,149.3,146.7,148.5,148.4,148.4,148.3,147.7,146.3,146.5 +464,153.3,214.6,212.3,211.5,210.6,200,186.2,176.4,173.8,169.8,149.3,146.7,148.5,148.4,148.4,148.4,147.7,146.3,146.5 +465,153.4,214.7,212.4,211.6,210.7,200.1,186.3,176.6,174.1,170.2,149.3,146.7,148.5,148.5,148.4,148.4,147.8,146.3,146.5 +466,153.4,214.8,212.5,211.8,210.8,200.2,186.4,176.8,174.4,170.7,149.4,146.7,148.6,148.5,148.5,148.4,147.8,146.3,146.5 +467,153.4,214.9,212.6,211.9,210.9,200.4,186.5,177.1,174.7,171.1,149.4,146.8,148.6,148.5,148.5,148.4,147.8,146.3,146.5 +468,153.4,215,212.7,212,211,200.5,186.6,177.3,174.9,171.5,149.4,146.8,148.6,148.6,148.5,148.5,147.9,146.3,146.5 +469,153.4,215.1,212.8,212.1,211.1,200.6,186.7,177.5,175.2,171.8,149.5,146.8,148.6,148.6,148.6,148.5,147.9,146.3,146.5 +470,153.5,215.2,212.9,212.2,211.3,200.8,186.8,177.7,175.5,172.2,149.5,146.8,148.7,148.6,148.6,148.5,147.9,146.4,146.6 +471,153.5,215.3,213.1,212.3,211.4,200.9,186.9,177.9,175.7,172.6,149.5,146.9,148.7,148.7,148.6,148.6,147.9,146.4,146.6 +472,153.5,215.4,213.2,212.5,211.5,201,187,178.1,176,172.9,149.5,146.9,148.7,148.7,148.6,148.6,148,146.4,146.6 +473,153.5,215.6,213.3,212.6,211.6,201.2,187.1,178.4,176.2,173.2,149.6,146.9,148.8,148.7,148.7,148.6,148,146.4,146.6 +474,153.5,215.7,213.4,212.7,211.7,201.3,187.2,178.6,176.5,173.5,149.6,147,148.8,148.7,148.7,148.7,148,146.4,146.6 +475,153.5,215.8,213.5,212.8,211.8,201.4,187.4,178.8,176.7,173.8,149.6,147,148.8,148.8,148.7,148.7,148.1,146.4,146.6 +476,153.6,215.9,213.6,212.9,212,201.6,187.5,179,176.9,174.1,149.7,147,148.9,148.8,148.8,148.7,148.1,146.4,146.6 +477,153.6,216,213.7,213,212.1,201.7,187.6,179.2,177.2,174.4,149.7,147,148.9,148.8,148.8,148.7,148.1,146.4,146.6 +478,153.6,216.1,213.8,213.1,212.2,201.8,187.7,179.4,177.4,174.7,149.7,147.1,148.9,148.9,148.8,148.8,148.2,146.4,146.7 +479,153.6,216.2,214,213.2,212.3,202,187.8,179.6,177.6,175,149.8,147.1,148.9,148.9,148.9,148.8,148.2,146.5,146.7 +480,153.6,216.3,214.1,213.4,212.4,202.1,187.9,179.8,177.8,175.3,149.8,147.1,149,148.9,148.9,148.8,148.2,146.5,146.7 +481,153.7,216.4,214.2,213.5,212.5,202.2,188,179.9,178.1,175.5,149.8,147.1,149,148.9,148.9,148.9,148.2,146.5,146.7 +482,153.7,216.5,214.3,213.6,212.6,202.3,188.1,180.1,178.3,175.8,149.9,147.2,149,149,148.9,148.9,148.3,146.5,146.7 +483,153.7,216.6,214.4,213.7,212.8,202.5,188.3,180.3,178.5,176.1,149.9,147.2,149.1,149,149,148.9,148.3,146.5,146.7 +484,153.7,216.7,214.5,213.8,212.9,202.6,188.4,180.5,178.7,176.3,149.9,147.2,149.1,149,149,149,148.3,146.5,146.7 +485,153.7,216.8,214.6,213.9,213,202.7,188.5,180.7,178.9,176.6,150,147.2,149.1,149.1,149,149,148.4,146.5,146.8 +486,153.7,216.9,214.7,214,213.1,202.9,188.6,180.9,179.1,176.8,150,147.3,149.1,149.1,149.1,149,148.4,146.6,146.8 +487,153.8,217,214.8,214.2,213.2,203,188.7,181.1,179.3,177,150,147.3,149.2,149.1,149.1,149,148.4,146.6,146.8 +488,153.8,217.1,215,214.3,213.3,203.1,188.9,181.3,179.5,177.3,150,147.3,149.2,149.1,149.1,149.1,148.4,146.6,146.8 +489,153.8,217.2,215.1,214.4,213.4,203.2,189,181.4,179.7,177.5,150.1,147.4,149.2,149.2,149.1,149.1,148.5,146.6,146.8 +490,153.8,217.4,215.2,214.5,213.5,203.4,189.1,181.6,179.9,177.7,150.1,147.4,149.3,149.2,149.2,149.1,148.5,146.6,146.8 +491,153.8,217.5,215.3,214.6,213.7,203.5,189.2,181.8,180.1,177.9,150.1,147.4,149.3,149.2,149.2,149.2,148.5,146.6,146.8 +492,153.8,217.6,215.4,214.7,213.8,203.6,189.3,182,180.3,178.2,150.2,147.4,149.3,149.3,149.2,149.2,148.6,146.7,146.8 +493,153.9,217.7,215.5,214.8,213.9,203.8,189.5,182.2,180.5,178.4,150.2,147.5,149.3,149.3,149.3,149.2,148.6,146.7,146.9 +494,153.9,217.8,215.6,214.9,214,203.9,189.6,182.4,180.7,178.6,150.2,147.5,149.4,149.3,149.3,149.2,148.6,146.7,146.9 +495,153.9,217.9,215.7,215,214.1,204,189.7,182.6,180.9,178.8,150.3,147.5,149.4,149.3,149.3,149.3,148.6,146.7,146.9 +496,153.9,218,215.8,215.2,214.2,204.1,189.8,182.7,181.1,179,150.3,147.5,149.4,149.4,149.3,149.3,148.7,146.8,146.9 +497,153.9,218.1,216,215.3,214.3,204.3,190,182.9,181.3,179.2,150.3,147.6,149.5,149.4,149.4,149.3,148.7,146.8,146.9 +498,154,218.2,216.1,215.4,214.5,204.4,190.1,183.1,181.5,179.4,150.4,147.6,149.5,149.4,149.4,149.4,148.7,146.8,146.9 +499,154,218.3,216.2,215.5,214.6,204.5,190.2,183.3,181.7,179.7,150.4,147.6,149.5,149.5,149.4,149.4,148.8,146.8,146.9 +500,154,218.4,216.3,215.6,214.7,204.6,190.4,183.5,181.9,179.9,150.4,147.6,149.5,149.5,149.5,149.4,148.8,146.9,146.9 +501,154,218.5,216.4,215.7,214.8,204.8,190.5,183.6,182.1,180.1,150.4,147.7,149.6,149.5,149.5,149.4,148.8,146.9,147 +502,154,218.6,216.5,215.8,214.9,204.9,190.6,183.8,182.2,180.3,150.5,147.7,149.6,149.5,149.5,149.5,148.8,146.9,147 +503,154,218.7,216.6,215.9,215,205,190.7,184,182.4,180.5,150.5,147.7,149.6,149.6,149.5,149.5,148.9,146.9,147 +504,154.1,218.8,216.7,216.1,215.1,205.1,190.9,184.2,182.6,180.7,150.5,147.7,149.7,149.6,149.6,149.5,148.9,147,147 +505,154.1,218.9,216.8,216.2,215.2,205.3,191,184.4,182.8,180.9,150.6,147.8,149.7,149.6,149.6,149.6,148.9,147,147 +506,154.1,219,217,216.3,215.4,205.4,191.1,184.5,183,181.1,150.6,147.8,149.7,149.7,149.6,149.6,149,147,147 +507,154.1,219.1,217.1,216.4,215.5,205.5,191.3,184.7,183.2,181.3,150.6,147.8,149.7,149.7,149.7,149.6,149,147,147 +508,154.1,219.2,217.2,216.5,215.6,205.6,191.4,184.9,183.4,181.5,150.7,147.8,149.8,149.7,149.7,149.6,149,147,147 +509,154.1,219.3,217.3,216.6,215.7,205.8,191.5,185.1,183.6,181.6,150.7,147.9,149.8,149.7,149.7,149.7,149,147.1,147 +510,154.2,219.4,217.4,216.7,215.8,205.9,191.7,185.3,183.7,181.8,150.7,147.9,149.8,149.8,149.7,149.7,149.1,147.1,147.1 +511,154.2,219.5,217.5,216.8,215.9,206,191.8,185.4,183.9,182,150.8,147.9,149.8,149.8,149.8,149.7,149.1,147.1,147.1 +512,154.2,219.6,217.6,216.9,216,206.1,191.9,185.6,184.1,182.2,150.8,147.9,149.9,149.8,149.8,149.7,149.1,147.1,147.1 +513,154.2,219.7,217.7,217,216.1,206.2,192.1,185.8,184.3,182.4,150.8,148,149.9,149.9,149.8,149.8,149.2,147.2,147.1 +514,154.2,219.9,217.8,217.2,216.2,206.4,192.2,186,184.5,182.6,150.8,148,149.9,149.9,149.9,149.8,149.2,147.2,147.1 +515,154.2,220,217.9,217.3,216.4,206.5,192.3,186.1,184.7,182.8,150.9,148,150,149.9,149.9,149.8,149.2,147.2,147.1 +516,154.3,220.1,218,217.4,216.5,206.6,192.5,186.3,184.8,183,150.9,148,150,149.9,149.9,149.9,149.2,147.2,147.1 +517,154.3,220.2,218.2,217.5,216.6,206.7,192.6,186.5,185,183.2,150.9,148.1,150,150,149.9,149.9,149.3,147.3,147.1 +518,154.3,220.3,218.3,217.6,216.7,206.9,192.7,186.7,185.2,183.4,151,148.1,150,150,150,149.9,149.3,147.3,147.1 +519,154.3,220.4,218.4,217.7,216.8,207,192.9,186.9,185.4,183.6,151,148.1,150.1,150,150,149.9,149.3,147.3,147.2 +520,154.3,220.5,218.5,217.8,216.9,207.1,193,187,185.6,183.7,151,148.1,150.1,150,150,150,149.3,147.3,147.2 +521,154.3,220.6,218.6,217.9,217,207.2,193.1,187.2,185.8,183.9,151.1,148.2,150.1,150.1,150,150,149.4,147.4,147.2 +522,154.4,220.7,218.7,218,217.1,207.3,193.3,187.4,185.9,184.1,151.1,148.2,150.1,150.1,150.1,150,149.4,147.4,147.2 +523,154.4,220.8,218.8,218.1,217.2,207.5,193.4,187.6,186.1,184.3,151.1,148.2,150.2,150.1,150.1,150.1,149.4,147.4,147.2 +524,154.4,220.9,218.9,218.2,217.3,207.6,193.6,187.7,186.3,184.5,151.2,148.2,150.2,150.2,150.1,150.1,149.5,147.4,147.2 +525,154.4,221,219,218.4,217.5,207.7,193.7,187.9,186.5,184.7,151.2,148.3,150.2,150.2,150.2,150.1,149.5,147.5,147.2 +526,154.4,221.1,219.1,218.5,217.6,207.8,193.8,188.1,186.7,184.9,151.2,148.3,150.3,150.2,150.2,150.1,149.5,147.5,147.2 +527,154.4,221.2,219.2,218.6,217.7,207.9,194,188.3,186.8,185.1,151.2,148.3,150.3,150.2,150.2,150.2,149.5,147.5,147.2 +528,154.5,221.3,219.3,218.7,217.8,208.1,194.1,188.4,187,185.2,151.3,148.3,150.3,150.3,150.2,150.2,149.6,147.5,147.2 +529,154.5,221.4,219.4,218.8,217.9,208.2,194.2,188.6,187.2,185.4,151.3,148.4,150.3,150.3,150.3,150.2,149.6,147.5,147.3 +530,154.5,221.5,219.6,218.9,218,208.3,194.4,188.8,187.4,185.6,151.3,148.4,150.4,150.3,150.3,150.2,149.6,147.6,147.3 +531,154.5,221.6,219.7,219,218.1,208.4,194.5,189,187.6,185.8,151.4,148.4,150.4,150.3,150.3,150.3,149.6,147.6,147.3 +532,154.5,221.7,219.8,219.1,218.2,208.5,194.6,189.1,187.7,186,151.4,148.4,150.4,150.4,150.3,150.3,149.7,147.6,147.3 +533,154.5,221.8,219.9,219.2,218.3,208.7,194.8,189.3,187.9,186.2,151.4,148.5,150.5,150.4,150.4,150.3,149.7,147.6,147.3 +534,154.6,221.9,220,219.3,218.4,208.8,194.9,189.5,188.1,186.3,151.5,148.5,150.6,150.4,150.4,150.4,149.7,147.7,147.3 +535,154.6,222,220.1,219.4,218.5,208.9,195,189.6,188.3,186.5,151.5,148.5,150.7,150.5,150.4,150.4,149.8,147.7,147.3 +536,154.6,222.1,220.2,219.5,218.7,209,195.2,189.8,188.5,186.7,151.5,148.5,150.7,150.5,150.5,150.4,149.8,147.7,147.3 +537,154.6,222.2,220.3,219.6,218.8,209.1,195.3,190,188.6,186.9,151.6,148.6,150.8,150.5,150.5,150.4,149.8,147.7,147.3 +538,154.6,222.3,220.4,219.8,218.9,209.3,195.5,190.1,188.8,187.1,151.6,148.6,150.9,150.5,150.5,150.5,149.8,147.8,147.3 +539,154.6,222.4,220.5,219.9,219,209.4,195.6,190.3,189,187.3,151.6,148.6,151,150.6,150.5,150.5,149.9,147.8,147.4 +540,154.6,222.5,220.6,220,219.1,209.5,195.7,190.5,189.2,187.4,151.7,148.6,151.3,150.6,150.6,150.5,149.9,147.8,147.4 +541,154.7,222.6,220.7,220.1,219.2,209.6,195.9,190.7,189.3,187.6,152.1,148.7,151.7,150.6,150.6,150.5,149.9,147.8,147.4 +542,154.7,222.7,220.8,220.2,219.3,209.7,196,190.8,189.5,187.8,154.2,148.7,152,150.6,150.6,150.6,149.9,147.8,147.4 +543,154.7,222.8,220.9,220.3,219.4,209.8,196.1,191,189.7,188,156.3,148.7,152.4,150.7,150.6,150.6,150,147.9,147.4 +544,154.7,222.9,221,220.4,219.5,210,196.3,191.2,189.9,188.2,156.9,148.7,152.8,150.7,150.7,150.6,150,147.9,147.4 +545,154.7,223,221.1,220.5,219.6,210.1,196.4,191.3,190,188.3,157.4,148.7,153.2,150.7,150.7,150.7,150,147.9,147.4 +546,154.7,223.1,221.2,220.6,219.7,210.2,196.5,191.5,190.2,188.5,158,148.8,153.6,150.7,150.7,150.7,150,147.9,147.4 +547,154.8,223.2,221.3,220.7,219.8,210.3,196.7,191.7,190.4,188.7,158.5,148.8,154,150.8,150.7,150.7,150.1,148,147.4 +548,154.8,223.3,221.4,220.8,220,210.4,196.8,191.8,190.5,188.9,159.1,148.8,154.5,150.8,150.8,150.7,150.1,148,147.4 +549,154.8,223.4,221.6,220.9,220.1,210.5,196.9,192,190.7,189,159.6,148.8,154.9,150.8,150.8,150.8,150.1,148,147.4 +550,154.8,223.5,221.7,221,220.2,210.7,197.1,192.2,190.9,189.2,160.2,148.9,155.4,150.9,150.8,150.8,150.2,148,147.5 +551,154.8,223.6,221.8,221.1,220.3,210.8,197.2,192.3,191.1,189.4,160.7,148.9,155.9,150.9,150.9,150.8,150.2,148,147.5 +552,154.8,223.7,221.9,221.2,220.4,210.9,197.3,192.5,191.2,189.6,161.3,148.9,156.5,150.9,150.9,150.8,150.2,148.1,147.5 +553,154.9,223.8,222,221.3,220.5,211,197.4,192.6,191.4,189.7,161.8,148.9,157,150.9,150.9,150.9,150.2,148.1,147.5 +554,154.9,223.9,222.1,221.4,220.6,211.1,197.6,192.8,191.6,189.9,162.4,149,157.4,151,150.9,150.9,150.3,148.1,147.5 +555,154.9,224,222.2,221.6,220.7,211.2,197.7,193,191.7,190.1,162.9,149,157.8,151,151,150.9,150.3,148.1,147.5 +556,154.9,224.1,222.3,221.7,220.8,211.4,197.8,193.1,191.9,190.3,163.5,149,158.3,151,151,150.9,150.3,148.2,147.5 +557,154.9,224.2,222.4,221.8,220.9,211.5,198,193.3,192.1,190.4,164.5,149,158.7,151,151,151,150.3,148.2,147.5 +558,154.9,224.3,222.5,221.9,221,211.6,198.1,193.4,192.2,190.6,165.4,149.1,159.1,151.1,151,151,150.4,148.2,147.5 +559,154.9,224.4,222.6,222,221.1,211.7,198.2,193.6,192.4,190.8,166.2,149.1,159.5,151.1,151.1,151,150.4,148.2,147.5 +560,155,224.5,222.7,222.1,221.2,211.8,198.4,193.8,192.6,191,167,149.1,160,151.1,151.1,151.1,150.4,148.3,147.6 +561,155,224.6,222.8,222.2,221.3,211.9,198.5,193.9,192.7,191.1,167.7,149.1,160.4,151.1,151.1,151.1,150.4,148.3,147.6 +562,155,224.7,222.9,222.3,221.4,212.1,198.6,194.1,192.9,191.3,168.4,149.2,160.8,151.2,151.1,151.1,150.5,148.3,147.6 +563,155,224.8,223,222.4,221.5,212.2,198.7,194.2,193,191.5,169.1,149.2,161.3,151.2,151.2,151.1,150.5,148.3,147.6 +564,155,224.9,223.1,222.5,221.6,212.3,198.9,194.4,193.2,191.6,169.7,149.2,161.7,151.2,151.2,151.2,150.5,148.3,147.6 +565,155,225,223.2,222.6,221.7,212.4,199,194.6,193.4,191.8,170.3,149.2,162.1,151.3,151.2,151.2,150.5,148.4,147.6 +566,155.1,225.1,223.3,222.7,221.9,212.5,199.1,194.7,193.5,192,170.8,149.2,162.5,151.3,151.3,151.2,150.6,148.4,147.6 +567,155.1,225.2,223.4,222.8,222,212.6,199.3,194.9,193.7,192.1,171.3,149.3,162.9,151.3,151.3,151.3,150.6,148.4,147.7 +568,155.1,225.3,223.5,222.9,222.1,212.8,199.4,195,193.9,192.3,171.7,149.3,163.4,151.3,151.3,151.3,150.6,148.4,147.7 +569,155.1,225.4,223.6,223,222.2,212.9,199.5,195.2,194,192.5,172.2,149.3,163.8,151.4,151.3,151.3,150.6,148.5,147.7 +570,155.1,225.4,223.7,223.1,222.3,213,199.6,195.3,194.2,192.6,172.6,149.3,164.2,151.4,151.4,151.3,150.7,148.5,147.7 +571,155.1,225.5,223.8,223.2,222.4,213.1,199.8,195.5,194.3,192.8,173,149.4,165,151.4,151.4,151.3,150.7,148.5,147.7 +572,155.1,225.6,223.9,223.3,222.5,213.2,199.9,195.6,194.5,193,173.3,149.4,166.2,151.5,151.4,151.4,150.7,148.5,147.7 +573,155.2,225.7,224,223.4,222.6,213.3,200,195.8,194.6,193.1,173.7,149.4,167.4,151.5,151.4,151.4,150.8,148.5,147.8 +574,155.2,225.8,224.1,223.5,222.7,213.4,200.1,195.9,194.8,193.3,174,149.4,168.7,151.5,151.5,151.4,150.8,148.6,147.8 +575,155.2,225.9,224.2,223.6,222.8,213.6,200.3,196.1,195,193.5,174.4,149.5,169.9,151.6,151.5,151.4,150.8,148.6,147.8 +576,155.2,226,224.3,223.7,222.9,213.7,200.4,196.2,195.1,193.6,174.7,149.5,171.1,151.7,151.5,151.5,150.8,148.6,147.8 +577,155.2,226.1,224.4,223.8,223,213.8,200.5,196.4,195.3,193.8,175,149.5,172.3,151.9,151.5,151.5,150.8,148.6,147.8 +578,155.2,226.2,224.5,223.9,223.1,213.9,200.6,196.5,195.4,193.9,175.3,149.5,173.6,152.8,151.6,151.5,150.9,148.7,147.9 +579,155.2,226.3,224.6,224,223.2,214,200.8,196.7,195.6,194.1,175.6,149.5,174.8,153.6,151.6,151.6,150.9,148.7,147.9 +580,155.3,226.4,224.7,224.1,223.3,214.1,200.9,196.8,195.7,194.3,175.9,149.6,176,154.5,151.6,151.6,150.9,148.7,147.9 +581,155.3,226.5,224.8,224.2,223.4,214.2,201,197,195.9,194.4,176.2,149.6,177.2,155.3,151.6,151.6,151,148.7,147.9 +582,155.3,226.6,224.9,224.3,223.5,214.4,201.1,197.1,196,194.6,176.5,149.6,178.5,156.2,151.7,151.6,151,148.7,147.9 +583,155.3,226.7,225,224.4,223.6,214.5,201.3,197.3,196.2,194.7,176.8,149.6,179.7,157.1,151.7,151.7,151,148.8,148 +584,155.3,226.8,225.1,224.5,223.7,214.6,201.4,197.4,196.3,194.9,177,149.7,180.9,157.9,151.9,151.7,151,148.8,148 +585,155.3,226.9,225.2,224.6,223.8,214.7,201.5,197.6,196.5,195,177.3,149.7,181.7,158.8,152,151.7,151.1,148.8,148 +586,155.4,227,225.3,224.7,223.9,214.8,201.6,197.7,196.6,195.2,177.6,149.7,182.1,159.7,152.9,151.7,151.1,148.8,148 +587,155.4,227.1,225.4,224.8,224,214.9,201.8,197.9,196.8,195.4,177.8,149.7,182.4,160.5,153.9,151.8,151.1,148.8,148 +588,155.4,227.2,225.5,224.9,224.1,215,201.9,198,196.9,195.5,178.1,149.7,182.8,161.4,154.8,151.8,151.1,148.9,148.1 +589,155.4,227.2,225.6,225,224.2,215.2,202,198.1,197.1,195.7,178.3,149.8,183.1,162.2,155.8,151.8,151.2,148.9,148.1 +590,155.4,227.3,225.7,225.1,224.3,215.3,202.1,198.3,197.2,195.8,178.5,149.8,183.4,163.1,156.5,151.8,151.2,148.9,148.1 +591,155.4,227.4,225.8,225.2,224.4,215.4,202.2,198.4,197.4,196,178.8,149.8,183.6,164.1,157.2,151.9,151.2,148.9,148.1 +592,155.4,227.5,225.9,225.3,224.5,215.5,202.4,198.6,197.5,196.1,179,149.8,183.9,165,158,151.9,151.2,149,148.1 +593,155.5,227.6,226,225.4,224.6,215.6,202.5,198.7,197.7,196.3,179.2,149.9,184.2,165.9,158.7,151.9,151.3,149,148.2 +594,155.5,227.7,226.1,225.5,224.7,215.7,202.6,198.9,197.8,196.4,179.5,149.9,184.3,166.7,159.4,152,151.3,149,148.2 +595,155.5,227.8,226.2,225.6,224.8,215.8,202.7,199,198,196.6,179.7,149.9,184.5,167.4,160.2,152.2,151.3,149,148.2 +596,155.5,227.9,226.3,225.7,224.9,215.9,202.9,199.1,198.1,196.7,179.9,149.9,184.7,168.1,160.9,152.7,151.3,149,148.2 +597,155.5,228,226.4,225.8,225,216.1,203,199.3,198.3,196.9,180.1,150,184.8,168.8,161.6,153.8,151.4,149.1,148.2 +598,155.5,228.1,226.5,225.9,225.1,216.2,203.1,199.4,198.4,197,180.3,150,184.9,169.4,162.4,154.9,151.4,149.1,148.3 +599,155.5,228.2,226.5,226,225.2,216.3,203.2,199.6,198.6,197.2,180.5,150,185.1,170.1,163.1,155.8,151.4,149.1,148.3 +600,155.6,228.3,226.6,226.1,225.3,216.4,203.3,199.7,198.7,197.3,180.8,150,185.2,170.6,163.8,156.5,151.4,149.1,148.3 +601,155.6,228.3,226.7,226.2,225.4,216.5,203.5,199.8,198.8,197.5,181,150,185.3,171.2,164.8,157.1,151.5,149.1,148.3 +602,155.6,228.4,226.8,226.3,225.5,216.6,203.6,200,199,197.6,181.2,150.1,185.5,171.7,165.7,157.8,151.5,149.2,148.3 +603,155.6,228.5,226.9,226.4,225.6,216.7,203.7,200.1,199.1,197.8,181.4,150.1,185.6,172.2,166.5,158.5,151.5,149.2,148.4 +604,155.6,228.6,227,226.5,225.7,216.8,203.8,200.3,199.3,197.9,181.6,150.1,185.7,172.7,167.2,159.1,151.5,149.2,148.4 +605,155.6,228.7,227.1,226.6,225.8,217,203.9,200.4,199.4,198.1,181.8,150.1,185.8,173.1,167.9,159.8,151.6,149.2,148.4 +606,155.6,228.8,227.2,226.7,225.9,217.1,204,200.5,199.5,198.2,182,150.2,185.9,173.5,168.6,160.5,151.6,149.3,148.4 +607,155.7,228.9,227.3,226.8,226,217.2,204.2,200.7,199.7,198.4,182.2,150.2,186,173.9,169.3,161.2,151.6,149.3,148.4 +608,155.7,229,227.4,226.8,226.1,217.3,204.3,200.8,199.8,198.5,182.4,150.2,186.1,174.2,169.9,161.8,151.6,149.3,148.5 +609,155.7,229.1,227.5,226.9,226.2,217.4,204.4,200.9,200,198.7,182.6,150.2,186.3,174.5,170.5,162.5,151.7,149.3,148.5 +610,155.7,229.2,227.6,227,226.3,217.5,204.5,201.1,200.1,198.8,182.8,150.2,186.4,174.8,171,163.2,151.7,149.3,148.5 +611,155.7,229.2,227.7,227.1,226.4,217.6,204.6,201.2,200.2,198.9,183,150.3,186.5,175.1,171.6,163.8,151.7,149.4,148.5 +612,155.7,229.3,227.8,227.2,226.5,217.7,204.8,201.4,200.4,199.1,183.2,150.3,186.6,175.4,172,164.9,151.7,149.4,148.5 +613,155.7,229.4,227.9,227.3,226.6,217.8,204.9,201.5,200.5,199.2,183.4,150.3,186.7,175.7,172.4,165.7,151.8,149.4,148.6 +614,155.8,229.5,228,227.4,226.7,218,205,201.6,200.7,199.4,183.6,150.3,186.8,176,172.8,166.5,151.8,149.4,148.6 +615,155.8,229.6,228,227.5,226.8,218.1,205.1,201.8,200.8,199.5,183.8,150.3,186.9,176.3,173.2,167.3,151.8,149.4,148.6 +616,155.8,229.7,228.1,227.6,226.9,218.2,205.2,201.9,200.9,199.7,184,150.4,187,176.6,173.6,168,151.8,149.5,148.6 +617,155.8,229.8,228.2,227.7,226.9,218.3,205.3,202,201.1,199.8,184.2,150.4,187.1,176.8,173.9,168.7,151.9,149.5,148.6 +618,155.8,229.9,228.3,227.8,227,218.4,205.5,202.2,201.2,199.9,184.3,150.4,187.2,177.1,174.2,169.3,151.9,149.5,148.7 +619,155.8,229.9,228.4,227.9,227.1,218.5,205.6,202.3,201.3,200.1,184.5,150.4,187.3,177.3,174.6,170,151.9,149.5,148.7 +620,155.8,230,228.5,228,227.2,218.6,205.7,202.4,201.5,200.2,184.7,150.5,187.4,177.6,174.9,170.6,151.9,149.5,148.7 +621,155.9,230.1,228.6,228.1,227.3,218.7,205.8,202.6,201.6,200.4,184.9,150.5,187.5,177.8,175.2,171.1,152,149.6,148.7 +622,155.9,230.2,228.7,228.2,227.4,218.8,205.9,202.7,201.7,200.5,185.1,150.5,187.6,178,175.5,171.6,152,149.6,148.7 +623,155.9,230.3,228.8,228.2,227.5,218.9,206,202.8,201.9,200.6,185.3,150.5,187.7,178.3,175.8,172,152,149.6,148.7 +624,155.9,230.4,228.9,228.3,227.6,219.1,206.1,202.9,202,200.8,185.5,150.5,187.8,178.5,176.1,172.4,152,149.6,148.8 +625,155.9,230.5,229,228.4,227.7,219.2,206.3,203.1,202.2,200.9,185.7,150.6,187.9,178.7,176.4,172.8,152.1,149.6,148.8 +626,155.9,230.6,229,228.5,227.8,219.3,206.4,203.2,202.3,201,185.9,150.6,188,178.9,176.6,173.2,152.1,149.7,148.8 +627,155.9,230.6,229.1,228.6,227.9,219.4,206.5,203.3,202.4,201.2,186.1,150.6,188.1,179.2,176.9,173.6,152.1,149.7,148.8 +628,155.9,230.7,229.2,228.7,228,219.5,206.6,203.5,202.6,201.3,186.2,150.6,188.3,179.4,177.2,173.9,152.1,149.7,148.8 +629,156,230.8,229.3,228.8,228.1,219.6,206.7,203.6,202.7,201.5,186.4,150.7,188.4,179.6,177.4,174.3,152.2,149.7,148.9 +630,156,230.9,229.4,228.9,228.2,219.7,206.8,203.7,202.8,201.6,186.6,150.7,188.5,179.8,177.7,174.6,152.2,149.7,148.9 +631,156,231,229.5,229,228.3,219.8,206.9,203.9,202.9,201.7,186.8,150.7,188.6,180,177.9,174.9,152.2,149.8,148.9 +632,156,231.1,229.6,229.1,228.4,219.9,207.1,204,203.1,201.9,187,150.7,188.7,180.2,178.1,175.2,152.2,149.8,148.9 +633,156,231.2,229.7,229.2,228.4,220,207.2,204.1,203.2,202,187.2,150.7,188.8,180.4,178.4,175.5,152.3,149.8,148.9 +634,156,231.2,229.8,229.2,228.5,220.1,207.3,204.2,203.3,202.1,187.4,150.8,188.9,180.6,178.6,175.8,152.3,149.8,149 +635,156,231.3,229.8,229.3,228.6,220.3,207.4,204.4,203.5,202.3,187.5,150.8,189,180.8,178.8,176.1,152.3,149.9,149 +636,156.1,231.4,229.9,229.4,228.7,220.4,207.5,204.5,203.6,202.4,187.7,150.8,189.1,181,179.1,176.4,152.3,149.9,149 +637,156.1,231.5,230,229.5,228.8,220.5,207.6,204.6,203.7,202.5,187.9,150.8,189.2,181.2,179.3,176.7,152.4,149.9,149 +638,156.1,231.6,230.1,229.6,228.9,220.6,207.7,204.7,203.9,202.7,188.1,150.8,189.4,181.4,179.5,177,152.4,149.9,149 +639,156.1,231.7,230.2,229.7,229,220.7,207.9,204.9,204,202.8,188.3,150.9,189.5,181.6,179.7,177.2,152.4,149.9,149 +640,156.1,231.7,230.3,229.8,229.1,220.8,208,205,204.1,202.9,188.5,150.9,189.6,181.8,179.9,177.5,152.4,150,149.1 +641,156.1,231.8,230.4,229.9,229.2,220.9,208.1,205.1,204.2,203.1,188.6,150.9,189.7,182,180.2,177.7,152.5,150,149.1 +642,156.1,231.9,230.5,230,229.3,221,208.2,205.3,204.4,203.2,188.8,150.9,189.8,182.2,180.4,178,152.5,150,149.1 +643,156.2,232,230.5,230,229.4,221.1,208.3,205.4,204.5,203.3,189,151,189.9,182.4,180.6,178.2,152.5,150,149.1 +644,156.2,232.1,230.6,230.1,229.4,221.2,208.4,205.5,204.6,203.5,189.2,151,190.1,182.5,180.8,178.5,152.5,150,149.1 +645,156.2,232.2,230.7,230.2,229.5,221.3,208.5,205.6,204.8,203.6,189.4,151,190.2,182.7,181,178.7,152.6,150.1,149.2 +646,156.2,232.2,230.8,230.3,229.6,221.4,208.6,205.8,204.9,203.7,189.5,151,190.3,182.9,181.2,178.9,152.6,150.1,149.2 +647,156.2,232.3,230.9,230.4,229.7,221.5,208.7,205.9,205,203.9,189.7,151,190.4,183.1,181.4,179.2,152.6,150.1,149.2 +648,156.2,232.4,231,230.5,229.8,221.7,208.9,206,205.1,204,189.9,151.1,190.6,183.3,181.6,179.4,152.7,150.1,149.2 +649,156.2,232.5,231.1,230.6,229.9,221.8,209,206.1,205.3,204.1,190.1,151.1,190.7,183.5,181.8,179.6,152.7,150.1,149.2 +650,156.2,232.6,231.1,230.7,230,221.9,209.1,206.3,205.4,204.2,190.3,151.1,190.8,183.7,182,179.8,152.7,150.2,149.3 +651,156.3,232.7,231.2,230.7,230.1,222,209.2,206.4,205.5,204.4,190.4,151.1,190.9,183.8,182.2,180,152.7,150.2,149.3 +652,156.3,232.7,231.3,230.8,230.2,222.1,209.3,206.5,205.6,204.5,190.6,151.1,191,184,182.4,180.3,152.8,150.2,149.3 +653,156.3,232.8,231.4,230.9,230.2,222.2,209.4,206.6,205.8,204.6,190.8,151.2,191.2,184.2,182.6,180.5,152.8,150.2,149.3 +654,156.3,232.9,231.5,231,230.3,222.3,209.5,206.7,205.9,204.8,191,151.2,191.3,184.4,182.8,180.7,152.8,150.2,149.3 +655,156.3,233,231.6,231.1,230.4,222.4,209.6,206.9,206,204.9,191.1,151.2,191.4,184.6,183,180.9,152.8,150.3,149.3 +656,156.3,233.1,231.6,231.2,230.5,222.5,209.7,207,206.1,205,191.3,151.2,191.6,184.8,183.2,181.1,152.9,150.3,149.4 +657,156.3,233.2,231.7,231.3,230.6,222.6,209.9,207.1,206.3,205.1,191.5,151.2,191.7,184.9,183.3,181.3,152.9,150.3,149.4 +658,156.4,233.2,231.8,231.3,230.7,222.7,210,207.2,206.4,205.3,191.7,151.3,191.8,185.1,183.5,181.5,152.9,150.3,149.4 +659,156.4,233.3,231.9,231.4,230.8,222.8,210.1,207.4,206.5,205.4,191.8,151.3,191.9,185.3,183.7,181.7,152.9,150.3,149.4 +660,156.4,233.4,232,231.5,230.8,222.9,210.2,207.5,206.6,205.5,192,151.3,192.1,185.5,183.9,181.9,153,150.4,149.4 +661,156.4,233.5,232.1,231.6,230.9,223,210.3,207.6,206.8,205.6,192.2,151.3,192.2,185.7,184.1,182.1,153,150.4,149.5 +662,156.4,233.6,232.1,231.7,231,223.1,210.4,207.7,206.9,205.8,192.4,151.3,192.3,185.8,184.3,182.3,153,150.4,149.5 +663,156.4,233.6,232.2,231.8,231.1,223.2,210.5,207.8,207,205.9,192.5,151.4,192.5,186,184.5,182.5,153,150.4,149.5 +664,156.4,233.7,232.3,231.8,231.2,223.3,210.6,208,207.1,206,192.7,151.4,192.6,186.2,184.7,182.7,153.1,150.4,149.5 +665,156.4,233.8,232.4,231.9,231.3,223.4,210.7,208.1,207.3,206.2,192.9,151.4,192.7,186.4,184.9,182.9,153.1,150.5,149.5 +666,156.5,233.9,232.5,232,231.4,223.6,210.8,208.2,207.4,206.3,193,151.4,192.9,186.6,185,183.1,153.1,150.5,149.5 +667,156.5,234,232.6,232.1,231.5,223.7,211,208.3,207.5,206.4,193.2,151.5,193,186.7,185.2,183.3,153.1,150.5,149.6 +668,156.5,234.1,232.6,232.2,231.5,223.8,211.1,208.4,207.6,206.5,193.4,151.5,193.1,186.9,185.4,183.5,153.2,150.5,149.6 +669,156.5,234.1,232.7,232.3,231.6,223.9,211.2,208.6,207.8,206.7,193.5,151.5,193.3,187.1,185.6,183.7,153.2,150.5,149.6 +670,156.5,234.2,232.8,232.3,231.7,224,211.3,208.7,207.9,206.8,193.7,151.5,193.4,187.3,185.8,183.9,153.2,150.5,149.6 +671,156.5,234.3,232.9,232.4,231.8,224.1,211.4,208.8,208,206.9,193.9,151.5,193.5,187.5,186,184.1,153.2,150.6,149.6 +672,156.5,234.4,233,232.5,231.9,224.2,211.5,208.9,208.1,207,194,151.6,193.7,187.6,186.2,184.3,153.3,150.6,149.7 +673,156.5,234.5,233.1,232.6,232,224.3,211.6,209,208.2,207.1,194.2,151.6,193.8,187.8,186.3,184.5,153.3,150.6,149.7 +674,156.6,234.5,233.1,232.7,232,224.4,211.7,209.2,208.4,207.3,194.4,151.6,193.9,188,186.5,184.7,153.3,150.6,149.7 +675,156.6,234.6,233.2,232.8,232.1,224.5,211.8,209.3,208.5,207.4,194.5,151.6,194.1,188.2,186.7,184.8,153.3,150.6,149.7 +676,156.6,234.7,233.3,232.8,232.2,224.6,211.9,209.4,208.6,207.5,194.7,151.6,194.2,188.4,186.9,185,153.4,150.7,149.7 +677,156.6,234.8,233.4,232.9,232.3,224.7,212,209.5,208.7,207.6,194.9,151.7,194.3,188.5,187.1,185.2,153.4,150.7,149.7 +678,156.6,234.9,233.5,233,232.4,224.8,212.2,209.6,208.8,207.8,195,151.7,194.5,188.7,187.3,185.4,153.4,150.7,149.8 +679,156.6,234.9,233.5,233.1,232.5,224.9,212.3,209.8,209,207.9,195.2,151.7,194.6,188.9,187.5,185.6,153.5,150.7,149.8 +680,156.6,235,233.6,233.2,232.5,225,212.4,209.9,209.1,208,195.4,151.7,194.7,189.1,187.6,185.8,153.5,150.7,149.8 +681,156.6,235.1,233.7,233.3,232.6,225.1,212.5,210,209.2,208.1,195.5,151.7,194.9,189.2,187.8,186,153.5,150.8,149.8 +682,156.7,235.2,233.8,233.3,232.7,225.2,212.6,210.1,209.3,208.2,195.7,151.8,195,189.4,188,186.2,153.5,150.8,149.8 +683,156.7,235.3,233.9,233.4,232.8,225.3,212.7,210.2,209.4,208.4,195.8,151.8,195.2,189.6,188.2,186.4,153.6,150.8,149.8 +684,156.7,235.4,234,233.5,232.9,225.4,212.8,210.3,209.6,208.5,196,151.8,195.3,189.8,188.4,186.5,153.6,150.8,149.9 +685,156.7,235.4,234,233.6,233,225.5,212.9,210.5,209.7,208.6,196.2,151.8,195.4,189.9,188.5,186.7,153.6,150.8,149.9 +686,156.7,235.5,234.1,233.7,233,225.6,213,210.6,209.8,208.7,196.3,151.8,195.6,190.1,188.7,186.9,153.6,150.9,149.9 +687,156.7,235.6,234.2,233.8,233.1,225.7,213.1,210.7,209.9,208.9,196.5,151.9,195.7,190.3,188.9,187.1,153.7,150.9,149.9 +688,156.7,235.7,234.3,233.8,233.2,225.8,213.2,210.8,210,209,196.6,151.9,195.8,190.5,189.1,187.3,153.7,150.9,149.9 +689,156.7,235.8,234.4,233.9,233.3,225.9,213.3,210.9,210.1,209.1,196.8,151.9,196,190.6,189.3,187.5,153.7,150.9,150 +690,156.8,235.8,234.4,234,233.4,226,213.5,211,210.3,209.2,196.9,151.9,196.1,190.8,189.4,187.7,153.7,150.9,150 +691,156.8,235.9,234.5,234.1,233.5,226.1,213.6,211.2,210.4,209.3,197.1,151.9,196.2,191,189.6,187.8,153.8,151,150 +692,156.8,236,234.6,234.2,233.5,226.2,213.7,211.3,210.5,209.5,197.2,152,196.4,191.2,189.8,188,153.8,151,150 +693,156.8,236.1,234.7,234.2,233.6,226.3,213.8,211.4,210.6,209.6,197.4,152,196.5,191.3,190,188.2,153.8,151,150 +694,156.8,236.2,234.8,234.3,233.7,226.4,213.9,211.5,210.7,209.7,197.6,152,196.7,191.5,190.2,188.4,153.9,151,150 +695,156.8,236.3,234.9,234.4,233.8,226.5,214,211.6,210.9,209.8,197.7,152,196.8,191.7,190.3,188.6,153.9,151,150.1 +696,156.8,236.3,234.9,234.5,233.9,226.6,214.1,211.7,211,209.9,197.9,152,196.9,191.8,190.5,188.8,153.9,151.1,150.1 +697,156.8,236.4,235,234.6,233.9,226.7,214.2,211.9,211.1,210,198,152.1,197.1,192,190.7,188.9,153.9,151.1,150.1 +698,156.9,236.5,235.1,234.6,234,226.8,214.3,212,211.2,210.2,198.2,152.1,197.2,192.2,190.9,189.1,154.2,151.1,150.1 +699,156.9,236.6,235.2,234.7,234.1,226.9,214.4,212.1,211.3,210.3,198.3,152.1,197.3,192.3,191,189.3,156.1,151.1,150.1 +700,156.9,236.7,235.3,234.8,234.2,227,214.5,212.2,211.4,210.4,198.5,152.1,197.5,192.5,191.2,189.5,158.4,151.1,150.1 +701,156.9,236.7,235.3,234.9,234.3,227.1,214.6,212.3,211.6,210.5,198.6,152.1,197.6,192.7,191.4,189.7,159.2,151.1,150.2 +702,156.9,236.8,235.4,235,234.4,227.2,214.7,212.4,211.7,210.6,198.8,152.2,197.7,192.9,191.6,189.8,159.6,151.2,150.2 +703,156.9,236.9,235.5,235.1,234.4,227.3,214.9,212.6,211.8,210.8,198.9,152.2,197.9,193,191.7,190,160.1,151.2,150.2 +704,156.9,237,235.6,235.1,234.5,227.4,215,212.7,211.9,210.9,199.1,152.2,198,193.2,191.9,190.2,160.6,151.2,150.2 +705,156.9,237.1,235.7,235.2,234.6,227.5,215.1,212.8,212,211,199.2,152.2,198.1,193.4,192.1,190.4,161.1,151.2,150.2 +706,157,237.2,235.7,235.3,234.7,227.6,215.2,212.9,212.1,211.1,199.4,152.2,198.3,193.5,192.2,190.6,161.6,151.2,150.2 +707,157,237.2,235.8,235.4,234.8,227.7,215.3,213,212.3,211.2,199.5,152.3,198.4,193.7,192.4,190.7,162.1,151.3,150.3 +708,157,237.3,235.9,235.5,234.8,227.8,215.4,213.1,212.4,211.3,199.7,152.3,198.5,193.8,192.6,190.9,162.6,151.3,150.3 +709,157,237.4,236,235.5,234.9,227.9,215.5,213.2,212.5,211.5,199.8,152.3,198.7,194,192.8,191.1,163,151.3,150.3 +710,157,237.5,236.1,235.6,235,228,215.6,213.4,212.6,211.6,199.9,152.3,198.8,194.2,192.9,191.3,163.5,151.3,150.3 +711,157,237.6,236.2,235.7,235.1,228.1,215.7,213.5,212.7,211.7,200.1,152.3,198.9,194.3,193.1,191.4,164,151.3,150.3 +712,157,237.7,236.2,235.8,235.2,228.2,215.8,213.6,212.8,211.8,200.2,152.4,199.1,194.5,193.3,191.6,164.5,151.4,150.3 +713,157,237.7,236.3,235.9,235.3,228.3,215.9,213.7,212.9,211.9,200.4,152.4,199.2,194.7,193.4,191.8,165,151.4,150.4 +714,157.1,237.8,236.4,236,235.3,228.4,216,213.8,213.1,212,200.5,152.4,199.3,194.8,193.6,192,165.5,151.4,150.4 +715,157.1,237.9,236.5,236,235.4,228.5,216.1,213.9,213.2,212.2,200.7,152.4,199.4,195,193.8,192.1,166,151.4,150.4 +716,157.1,238,236.6,236.1,235.5,228.5,216.2,214,213.3,212.3,200.8,152.5,199.6,195.1,193.9,192.3,167.2,151.4,150.4 +717,157.1,238.1,236.6,236.2,235.6,228.6,216.3,214.1,213.4,212.4,200.9,152.5,199.7,195.3,194.1,192.5,168,151.4,150.4 +718,157.1,238.2,236.7,236.3,235.7,228.7,216.5,214.3,213.5,212.5,201.1,152.5,199.8,195.5,194.3,192.6,168.8,151.5,150.4 +719,157.1,238.2,236.8,236.4,235.7,228.8,216.6,214.4,213.6,212.6,201.2,152.5,200,195.6,194.4,192.8,169.5,151.5,150.5 +720,157.1,238.3,236.9,236.4,235.8,228.9,216.7,214.5,213.7,212.7,201.4,152.5,200.1,195.8,194.6,193,170.2,151.5,150.5 +721,157.1,238.4,237,236.5,235.9,229,216.8,214.6,213.9,212.9,201.5,152.5,200.2,195.9,194.7,193.2,170.8,151.5,150.5 +722,157.2,238.5,237.1,236.6,236,229.1,216.9,214.7,214,213,201.7,152.6,200.4,196.1,194.9,193.3,171.4,151.5,150.5 +723,157.2,238.6,237.1,236.7,236.1,229.2,217,214.8,214.1,213.1,201.8,152.6,200.5,196.2,195.1,193.5,172,151.6,150.5 +724,157.2,238.7,237.2,236.8,236.1,229.3,217.1,214.9,214.2,213.2,201.9,152.6,200.6,196.4,195.2,193.7,172.4,151.6,150.5 +725,157.2,238.7,237.3,236.9,236.2,229.4,217.2,215.1,214.3,213.3,202.1,152.6,200.7,196.6,195.4,193.8,172.9,151.6,150.6 +726,157.2,238.8,237.4,236.9,236.3,229.5,217.3,215.2,214.4,213.4,202.2,152.7,200.9,196.7,195.6,194,173.3,151.6,150.6 +727,157.2,238.9,237.5,237,236.4,229.6,217.4,215.3,214.5,213.5,202.4,152.7,201,196.9,195.7,194.2,173.7,151.6,150.6 +728,157.2,239,237.6,237.1,236.5,229.7,217.5,215.4,214.7,213.7,202.5,152.7,201.1,197,195.9,194.3,174.1,151.6,150.6 +729,157.2,239.1,237.6,237.2,236.6,229.8,217.6,215.5,214.8,213.8,202.6,152.7,201.3,197.2,196,194.5,174.5,151.7,150.6 +730,157.2,239.2,237.7,237.3,236.6,229.9,217.7,215.6,214.9,213.9,202.8,152.7,201.4,197.3,196.2,194.7,174.9,151.7,150.6 +731,157.3,239.2,237.8,237.3,236.7,230,217.8,215.7,215,214,202.9,152.7,201.5,197.5,196.3,194.8,175.2,151.7,150.7 +732,157.3,239.3,237.9,237.4,236.8,230,217.9,215.8,215.1,214.1,203,152.8,201.6,197.6,196.5,195,175.6,151.7,150.7 +733,157.3,239.4,238,237.5,236.9,230.1,218,216,215.2,214.2,203.2,152.8,201.8,197.8,196.7,195.1,175.9,151.7,150.7 +734,157.3,239.5,238.1,237.6,237,230.2,218.1,216.1,215.3,214.4,203.3,152.8,201.9,197.9,196.8,195.3,176.2,151.8,150.7 +735,157.3,239.6,238.1,237.7,237.1,230.3,218.3,216.2,215.5,214.5,203.4,152.8,202,198.1,197,195.5,176.5,151.8,150.7 +736,157.3,239.7,238.2,237.8,237.1,230.4,218.4,216.3,215.6,214.6,203.6,152.9,202.1,198.2,197.1,195.6,176.9,151.8,150.7 +737,157.3,239.7,238.3,237.8,237.2,230.5,218.5,216.4,215.7,214.7,203.7,152.9,202.3,198.4,197.3,195.8,177.1,151.8,150.8 +738,157.3,239.8,238.4,237.9,237.3,230.6,218.6,216.5,215.8,214.8,203.8,152.9,202.4,198.5,197.4,196,177.4,151.8,150.8 +739,157.4,239.9,238.5,238,237.4,230.7,218.7,216.6,215.9,214.9,204,152.9,202.5,198.7,197.6,196.1,177.7,151.9,150.8 +740,157.4,240,238.6,238.1,237.5,230.8,218.8,216.7,216,215,204.1,152.9,202.6,198.8,197.7,196.3,178,151.9,150.8 +741,157.4,240.1,238.6,238.2,237.5,230.9,218.9,216.8,216.1,215.1,204.2,152.9,202.8,199,197.9,196.4,178.3,151.9,150.8 +742,157.4,240.2,238.7,238.3,237.6,231,219,217,216.2,215.3,204.4,153,202.9,199.1,198,196.6,178.5,151.9,150.8 +743,157.4,240.3,238.8,238.3,237.7,231.1,219.1,217.1,216.4,215.4,204.5,153,203,199.3,198.2,196.7,178.8,151.9,150.9 +744,157.4,240.3,238.9,238.4,237.8,231.1,219.2,217.2,216.5,215.5,204.6,153,203.1,199.4,198.3,196.9,179,151.9,150.9 +745,157.4,240.4,239,238.5,237.9,231.2,219.3,217.3,216.6,215.6,204.8,153,203.2,199.6,198.5,197.1,179.3,152,150.9 +746,157.4,240.5,239.1,238.6,238,231.3,219.4,217.4,216.7,215.7,204.9,153,203.4,199.7,198.6,197.2,179.5,152,150.9 +747,157.4,240.6,239.1,238.7,238,231.4,219.5,217.5,216.8,215.8,205,153.1,203.5,199.8,198.8,197.4,179.8,152,150.9 +748,157.5,240.7,239.2,238.8,238.1,231.5,219.6,217.6,216.9,215.9,205.2,153.1,203.6,200,198.9,197.5,180,152,150.9 +749,157.5,240.8,239.3,238.8,238.2,231.6,219.7,217.7,217,216,205.3,153.1,203.7,200.1,199.1,197.7,180.2,152,151 +750,157.5,240.8,239.4,238.9,238.3,231.7,219.8,217.8,217.1,216.2,205.4,153.1,203.9,200.3,199.2,197.8,180.5,152.1,151 +751,157.5,240.9,239.5,239,238.4,231.8,219.9,218,217.2,216.3,205.6,153.1,204,200.4,199.4,198,180.7,152.1,151 +752,157.5,241,239.6,239.1,238.5,231.9,220,218.1,217.4,216.4,205.7,153.2,204.1,200.6,199.5,198.1,180.9,152.1,151 +753,157.5,241.1,239.6,239.2,238.5,231.9,220.1,218.2,217.5,216.5,205.8,153.2,204.2,200.7,199.7,198.3,181.2,152.1,151 +754,157.5,241.2,239.7,239.3,238.6,232,220.2,218.3,217.6,216.6,206,153.2,204.3,200.8,199.8,198.4,181.4,152.1,151 +755,157.5,241.3,239.8,239.3,238.7,232.1,220.3,218.4,217.7,216.7,206.1,153.2,204.5,201,200,198.6,181.6,152.1,151.1 +756,157.5,241.3,239.9,239.4,238.8,232.2,220.5,218.5,217.8,216.8,206.2,153.2,204.6,201.1,200.1,198.7,181.8,152.2,151.1 +757,157.6,241.4,240,239.5,238.9,232.3,220.6,218.6,217.9,216.9,206.3,153.3,204.7,201.3,200.2,198.9,182,152.2,151.1 +758,157.6,241.5,240.1,239.6,239,232.4,220.7,218.7,218,217.1,206.5,153.3,204.8,201.4,200.4,199,182.2,152.2,151.1 +759,157.6,241.6,240.1,239.7,239,232.5,220.8,218.8,218.1,217.2,206.6,153.3,204.9,201.5,200.5,199.2,182.4,152.2,151.1 +760,157.6,241.7,240.2,239.8,239.1,232.6,220.9,218.9,218.2,217.3,206.7,153.3,205.1,201.7,200.7,199.3,182.7,152.2,151.1 +761,157.6,241.8,240.3,239.8,239.2,232.6,221,219.1,218.4,217.4,206.9,153.3,205.2,201.8,200.8,199.5,182.9,152.3,151.2 +762,157.6,241.8,240.4,239.9,239.3,232.7,221.1,219.2,218.5,217.5,207,153.4,205.3,202,201,199.6,183.1,152.3,151.2 +763,157.6,241.9,240.5,240,239.4,232.8,221.2,219.3,218.6,217.6,207.1,153.4,205.4,202.1,201.1,199.8,183.3,152.3,151.2 +764,157.6,242,240.6,240.1,239.5,232.9,221.3,219.4,218.7,217.7,207.2,153.4,205.5,202.2,201.2,199.9,183.5,152.3,151.2 +765,157.7,242.1,240.6,240.2,239.5,233,221.4,219.5,218.8,217.8,207.4,153.4,205.7,202.4,201.4,200.1,183.7,152.3,151.2 +766,157.7,242.2,240.7,240.3,239.6,233.1,221.5,219.6,218.9,217.9,207.5,153.4,205.8,202.5,201.5,200.2,183.9,152.3,151.2 +767,157.7,242.3,240.8,240.3,239.7,233.2,221.6,219.7,219,218.1,207.6,153.5,205.9,202.6,201.7,200.3,184.1,152.4,151.2 +768,157.7,242.3,240.9,240.4,239.8,233.2,221.7,219.8,219.1,218.2,207.7,153.5,206,202.8,201.8,200.5,184.3,152.4,151.3 +769,157.7,242.4,241,240.5,239.9,233.3,221.8,219.9,219.2,218.3,207.9,153.5,206.1,202.9,201.9,200.6,184.5,152.4,151.3 +770,157.7,242.5,241.1,240.6,240,233.4,221.9,220,219.3,218.4,208,153.5,206.2,203,202.1,200.8,184.7,152.4,151.3 +771,157.7,242.6,241.1,240.7,240,233.5,222,220.1,219.4,218.5,208.1,153.5,206.4,203.2,202.2,200.9,184.9,152.4,151.3 +772,157.7,242.7,241.2,240.8,240.1,233.6,222.1,220.2,219.6,218.6,208.2,153.6,206.5,203.3,202.4,201.1,185.1,152.4,151.3 +773,157.7,242.8,241.3,240.8,240.2,233.7,222.2,220.4,219.7,218.7,208.4,153.6,206.6,203.4,202.5,201.2,185.3,152.5,151.3 +774,157.8,242.8,241.4,240.9,240.3,233.7,222.3,220.5,219.8,218.8,208.5,153.6,206.7,203.6,202.6,201.3,185.4,152.5,151.4 +775,157.8,242.9,241.5,241,240.4,233.8,222.4,220.6,219.9,218.9,208.6,153.6,206.8,203.7,202.8,201.5,185.6,152.5,151.4 +776,157.8,243,241.6,241.1,240.5,233.9,222.5,220.7,220,219.1,208.7,153.6,206.9,203.8,202.9,201.6,185.8,152.5,151.4 +777,157.8,243.1,241.6,241.2,240.5,234,222.6,220.8,220.1,219.2,208.9,153.7,207.1,204,203,201.8,186,152.5,151.4 +778,157.8,243.2,241.7,241.3,240.6,234.1,222.7,220.9,220.2,219.3,209,153.7,207.2,204.1,203.2,201.9,186.2,152.6,151.4 +779,157.8,243.3,241.8,241.3,240.7,234.2,222.8,221,220.3,219.4,209.1,153.7,207.3,204.2,203.3,202,186.4,152.6,151.4 +780,157.8,243.3,241.9,241.4,240.8,234.2,222.9,221.1,220.4,219.5,209.2,153.7,207.4,204.4,203.4,202.2,186.6,152.6,151.5 +781,157.8,243.4,242,241.5,240.9,234.3,223,221.2,220.5,219.6,209.4,153.7,207.5,204.5,203.6,202.3,186.8,152.6,151.5 +782,157.8,243.5,242,241.6,241,234.4,223.1,221.3,220.6,219.7,209.5,153.8,207.6,204.6,203.7,202.5,187,152.6,151.5 +783,157.9,243.6,242.1,241.7,241,234.5,223.2,221.4,220.8,219.8,209.6,153.8,207.8,204.8,203.8,202.6,187.2,152.6,151.5 +784,157.9,243.7,242.2,241.8,241.1,234.6,223.3,221.5,220.9,219.9,209.7,153.8,207.9,204.9,204,202.7,187.4,152.7,151.5 +785,157.9,243.8,242.3,241.8,241.2,234.7,223.4,221.6,221,220,209.8,153.8,208,205,204.1,202.9,187.6,152.7,151.5 +786,157.9,243.8,242.4,241.9,241.3,234.7,223.5,221.8,221.1,220.1,210,153.8,208.1,205.1,204.2,203,187.7,152.7,151.5 +787,157.9,243.9,242.5,242,241.4,234.8,223.6,221.9,221.2,220.3,210.1,153.9,208.2,205.3,204.4,203.1,187.9,152.7,151.6 +788,157.9,244,242.5,242.1,241.5,234.9,223.7,222,221.3,220.4,210.2,153.9,208.3,205.4,204.5,203.3,188.1,152.7,151.6 +789,157.9,244.1,242.6,242.2,241.5,235,223.8,222.1,221.4,220.5,210.3,153.9,208.4,205.5,204.6,203.4,188.3,152.8,151.6 +790,157.9,244.2,242.7,242.3,241.6,235.1,224,222.2,221.5,220.6,210.4,153.9,208.6,205.7,204.8,203.5,188.5,152.8,151.6 +791,157.9,244.2,242.8,242.3,241.7,235.2,224.1,222.3,221.6,220.7,210.6,153.9,208.7,205.8,204.9,203.7,188.7,152.8,151.6 +792,158,244.3,242.9,242.4,241.8,235.2,224.2,222.4,221.7,220.8,210.7,154,208.8,205.9,205,203.8,188.9,152.8,151.6 +793,158,244.4,242.9,242.5,241.9,235.3,224.3,222.5,221.8,220.9,210.8,154,208.9,206,205.2,203.9,189,152.8,151.7 +794,158,244.5,243,242.6,242,235.4,224.4,222.6,221.9,221,210.9,154,209,206.2,205.3,204.1,189.2,152.8,151.7 +795,158,244.6,243.1,242.7,242,235.5,224.5,222.7,222,221.1,211.1,154,209.1,206.3,205.4,204.2,189.4,152.9,151.7 +796,158,244.7,243.2,242.7,242.1,235.6,224.6,222.8,222.2,221.2,211.2,154,209.2,206.4,205.5,204.3,189.6,152.9,151.7 +797,158,244.7,243.3,242.8,242.2,235.6,224.7,222.9,222.3,221.3,211.3,154.1,209.4,206.6,205.7,204.5,189.8,152.9,151.7 +798,158,244.8,243.4,242.9,242.3,235.7,224.8,223,222.4,221.4,211.4,154.1,209.5,206.7,205.8,204.6,190,152.9,151.7 +799,158,244.9,243.4,243,242.4,235.8,224.9,223.1,222.5,221.6,211.5,154.1,209.6,206.8,205.9,204.7,190.2,152.9,151.7 +800,158,245,243.5,243.1,242.4,235.9,225,223.2,222.6,221.7,211.6,154.1,209.7,206.9,206.1,204.9,190.3,152.9,151.8 +801,158.1,245.1,243.6,243.2,242.5,236,225.1,223.3,222.7,221.8,211.8,154.1,209.8,207.1,206.2,205,190.5,153,151.8 +802,158.1,245.1,243.7,243.2,242.6,236.1,225.2,223.4,222.8,221.9,211.9,154.2,209.9,207.2,206.3,205.1,190.7,153,151.8 +803,158.1,245.2,243.8,243.3,242.7,236.1,225.3,223.5,222.9,222,212,154.2,210,207.3,206.4,205.3,190.9,153,151.8 +804,158.1,245.3,243.8,243.4,242.8,236.2,225.4,223.7,223,222.1,212.1,154.2,210.1,207.4,206.6,205.4,191.1,153,151.8 +805,158.1,245.4,243.9,243.5,242.9,236.3,225.5,223.8,223.1,222.2,212.2,154.2,210.3,207.6,206.7,205.5,191.2,153,151.8 +806,158.1,245.5,244,243.6,242.9,236.4,225.6,223.9,223.2,222.3,212.4,154.2,210.4,207.7,206.8,205.7,191.4,153.1,151.9 +807,158.1,245.5,244.1,243.6,243,236.5,225.7,224,223.3,222.4,212.5,154.3,210.5,207.8,206.9,205.8,191.6,153.1,151.9 +808,158.1,245.6,244.2,243.7,243.1,236.5,225.8,224.1,223.4,222.5,212.6,154.3,210.6,207.9,207.1,205.9,191.8,153.1,151.9 +809,158.1,245.7,244.2,243.8,243.2,236.6,225.9,224.2,223.5,222.6,212.7,154.3,210.7,208,207.2,206,192,153.1,151.9 +810,158.1,245.8,244.3,243.9,243.3,236.7,226,224.3,223.6,222.7,212.8,154.3,210.8,208.2,207.3,206.2,192.1,153.1,151.9 +811,158.2,245.9,244.4,244,243.3,236.8,226.1,224.4,223.7,222.8,213,154.3,210.9,208.3,207.5,206.3,192.3,153.1,151.9 +812,158.2,246,244.5,244,243.4,236.9,226.2,224.5,223.8,222.9,213.1,154.4,211,208.4,207.6,206.4,192.5,153.2,151.9 +813,158.2,246,244.6,244.1,243.5,237,226.3,224.6,223.9,223.1,213.2,154.4,211.1,208.5,207.7,206.6,192.7,153.2,152 +814,158.2,246.1,244.6,244.2,243.6,237,226.4,224.7,224,223.2,213.3,154.4,211.3,208.7,207.8,206.7,192.8,153.2,152 +815,158.2,246.2,244.7,244.3,243.7,237.1,226.4,224.8,224.2,223.3,213.4,154.7,211.4,208.8,207.9,206.8,193,153.2,152 +816,158.2,246.3,244.8,244.4,243.8,237.2,226.5,224.9,224.3,223.4,213.5,158.5,211.5,208.9,208.1,206.9,193.2,153.2,152 +817,158.2,246.4,244.9,244.4,243.8,237.3,226.6,225,224.4,223.5,213.7,163.6,211.6,209,208.2,207.1,193.4,153.2,152 +818,158.2,246.4,245,244.5,243.9,237.4,226.7,225.1,224.5,223.6,213.8,163.9,211.7,209.1,208.3,207.2,193.5,153.3,152 +819,158.2,246.5,245,244.6,244,237.4,226.8,225.2,224.6,223.7,213.9,164.2,211.8,209.3,208.4,207.3,193.7,153.3,152 +820,158.3,246.6,245.1,244.7,244.1,237.5,226.9,225.3,224.7,223.8,214,164.5,211.9,209.4,208.6,207.4,193.9,153.3,152.1 +821,158.3,246.7,245.2,244.8,244.2,237.6,227,225.4,224.8,223.9,214.1,164.8,212,209.5,208.7,207.6,194.1,153.3,152.1 +822,158.3,246.8,245.3,244.8,244.2,237.7,227.1,225.5,224.9,224,214.2,165.1,212.1,209.6,208.8,207.7,194.2,153.3,152.1 +823,158.3,246.8,245.4,244.9,244.3,237.8,227.2,225.6,225,224.1,214.4,165.3,212.2,209.8,208.9,207.8,194.4,153.4,152.1 +824,158.3,246.9,245.4,245,244.4,237.8,227.3,225.7,225.1,224.2,214.5,165.6,212.4,209.9,209.1,207.9,194.6,153.4,152.1 +825,158.3,247,245.5,245.1,244.5,237.9,227.4,225.8,225.2,224.3,214.6,165.9,212.5,210,209.2,208.1,194.7,153.4,152.1 +826,158.3,247.1,245.6,245.2,244.6,238,227.5,225.9,225.3,224.4,214.7,166.2,212.6,210.1,209.3,208.2,194.9,153.4,152.1 +827,158.3,247.2,245.7,245.2,244.6,238.1,227.6,226,225.4,224.5,214.8,166.5,212.7,210.2,209.4,208.3,195.1,153.4,152.2 +828,158.3,247.2,245.8,245.3,244.7,238.2,227.7,226.1,225.5,224.6,214.9,166.8,212.8,210.4,209.5,208.4,195.2,153.4,152.2 +829,158.3,247.3,245.8,245.4,244.8,238.3,227.8,226.2,225.6,224.7,215,167,212.9,210.5,209.7,208.6,195.4,153.5,152.2 +830,158.4,247.4,245.9,245.5,244.9,238.3,227.9,226.3,225.7,224.8,215.2,167.3,213,210.6,209.8,208.7,195.6,153.5,152.2 +831,158.4,247.5,246,245.6,245,238.4,228,226.4,225.8,224.9,215.3,167.6,213.1,210.7,209.9,208.8,195.7,153.5,152.2 +832,158.4,247.6,246.1,245.6,245,238.5,228.1,226.5,225.9,225,215.4,167.9,213.2,210.8,210,208.9,195.9,153.5,152.2 +833,158.4,247.6,246.2,245.7,245.1,238.6,228.2,226.6,226,225.1,215.5,168.8,213.3,210.9,210.1,209.1,196.1,153.5,152.3 +834,158.4,247.7,246.2,245.8,245.2,238.7,228.3,226.7,226.1,225.2,215.6,169.6,213.4,211.1,210.3,209.2,196.2,153.5,152.3 +835,158.4,247.8,246.3,245.9,245.3,238.7,228.4,226.8,226.2,225.3,215.7,170.4,213.6,211.2,210.4,209.3,196.4,153.6,152.3 +836,158.4,247.9,246.4,246,245.4,238.8,228.5,226.9,226.3,225.5,215.9,171.1,213.7,211.3,210.5,209.4,196.6,153.6,152.3 +837,158.4,248,246.5,246,245.4,238.9,228.6,227,226.4,225.6,216,171.8,213.8,211.4,210.6,209.5,196.7,153.6,152.3 +838,158.4,248,246.6,246.1,245.5,239,228.7,227.1,226.5,225.7,216.1,172.4,213.9,211.5,210.7,209.7,196.9,153.6,152.3 +839,158.5,248.1,246.6,246.2,245.6,239.1,228.8,227.2,226.6,225.8,216.2,173,214,211.7,210.9,209.8,197,153.6,152.3 +840,158.5,248.2,246.7,246.3,245.7,239.2,228.9,227.3,226.7,225.9,216.3,173.5,214.1,211.8,211,209.9,197.2,153.6,152.4 +841,158.5,248.3,246.8,246.4,245.8,239.2,229,227.4,226.8,226,216.4,174,214.2,211.9,211.1,210,197.4,153.7,152.4 +842,158.5,248.4,246.9,246.4,245.8,239.3,229.1,227.5,226.9,226.1,216.5,174.4,214.3,212,211.2,210.1,197.5,153.7,152.4 +843,158.5,248.4,247,246.5,245.9,239.4,229.1,227.6,227,226.2,216.7,174.9,214.4,212.1,211.3,210.3,197.7,153.7,152.4 +844,158.5,248.5,247,246.6,246,239.5,229.2,227.7,227.1,226.3,216.8,175.3,214.5,212.2,211.5,210.4,197.8,153.7,152.4 +845,158.5,248.6,247.1,246.7,246.1,239.6,229.3,227.8,227.2,226.4,216.9,175.7,214.6,212.4,211.6,210.5,198,153.7,152.4 +846,158.5,248.7,247.2,246.8,246.2,239.7,229.4,227.9,227.3,226.5,217,176.1,214.7,212.5,211.7,210.6,198.2,153.8,152.4 +847,158.5,248.8,247.3,246.8,246.2,239.7,229.5,228,227.4,226.6,217.1,176.4,214.9,212.6,211.8,210.7,198.3,153.8,152.5 +848,158.5,248.8,247.3,246.9,246.3,239.8,229.6,228.1,227.5,226.7,217.2,176.8,215,212.7,211.9,210.9,198.5,153.8,152.5 +849,158.6,248.9,247.4,247,246.4,239.9,229.7,228.2,227.6,226.8,217.3,177.1,215.1,212.8,212,211,198.6,153.8,152.5 +850,158.6,249,247.5,247.1,246.5,240,229.8,228.3,227.7,226.9,217.4,177.4,215.2,212.9,212.2,211.1,198.8,153.8,152.5 +851,158.6,249.1,247.6,247.2,246.6,240.1,229.9,228.4,227.8,227,217.6,177.8,215.3,213,212.3,211.2,198.9,153.8,152.5 +852,158.6,249.2,247.7,247.2,246.6,240.1,230,228.5,227.9,227.1,217.7,178.1,215.4,213.2,212.4,211.3,199.1,153.9,152.5 +853,158.6,249.2,247.7,247.3,246.7,240.2,230.1,228.6,228,227.2,217.8,178.4,215.5,213.3,212.5,211.5,199.2,153.9,152.5 +854,158.6,249.3,247.8,247.4,246.8,240.3,230.2,228.7,228.1,227.3,217.9,178.7,215.6,213.4,212.6,211.6,199.4,153.9,152.6 +855,158.6,249.4,247.9,247.5,246.9,240.4,230.3,228.8,228.2,227.4,218,179,215.7,213.5,212.7,211.7,199.5,153.9,152.6 +856,158.6,249.5,248,247.5,247,240.5,230.4,228.9,228.3,227.5,218.1,179.2,215.8,213.6,212.9,211.8,199.7,153.9,152.6 +857,158.6,249.6,248.1,247.6,247,240.6,230.5,229,228.4,227.6,218.2,179.5,215.9,213.7,213,211.9,199.8,153.9,152.6 +858,158.6,249.6,248.1,247.7,247.1,240.6,230.5,229.1,228.5,227.7,218.4,179.8,216,213.9,213.1,212.1,200,154,152.6 +859,158.7,249.7,248.2,247.8,247.2,240.7,230.6,229.2,228.6,227.8,218.5,180,216.1,214,213.2,212.2,200.1,154,152.6 +860,158.7,249.8,248.3,247.9,247.3,240.8,230.7,229.3,228.7,227.9,218.6,180.3,216.3,214.1,213.3,212.3,200.3,154,152.6 +861,158.7,249.9,248.4,247.9,247.3,240.9,230.8,229.4,228.8,228,218.7,180.5,216.4,214.2,213.4,212.4,200.4,154,152.7 +862,158.7,249.9,248.4,248,247.4,241,230.9,229.5,228.9,228.1,218.8,180.8,216.5,214.3,213.6,212.5,200.6,154,152.7 +863,158.7,250,248.5,248.1,247.5,241.1,231,229.6,229,228.2,218.9,181,216.6,214.4,213.7,212.6,200.7,154.1,152.7 +864,158.7,250.1,248.6,248.2,247.6,241.1,231.1,229.7,229.1,228.3,219,181.3,216.7,214.5,213.8,212.8,200.9,154.1,152.7 +865,158.7,250.2,248.7,248.3,247.7,241.2,231.2,229.7,229.2,228.4,219.1,181.5,216.8,214.7,213.9,212.9,201,154.1,152.7 +866,158.7,250.3,248.8,248.3,247.7,241.3,231.3,229.8,229.3,228.5,219.2,181.7,216.9,214.8,214,213,201.2,154.1,152.7 +867,158.7,250.3,248.8,248.4,247.8,241.4,231.4,229.9,229.4,228.6,219.4,182,217,214.9,214.1,213.1,201.3,154.1,152.7 +868,158.7,250.4,248.9,248.5,247.9,241.5,231.5,230,229.5,228.7,219.5,182.2,217.1,215,214.2,213.2,201.5,154.1,152.8 +869,158.8,250.5,249,248.6,248,241.6,231.5,230.1,229.6,228.8,219.6,182.4,217.2,215.1,214.4,213.3,201.6,154.2,152.8 +870,158.8,250.6,249.1,248.6,248.1,241.6,231.6,230.2,229.6,228.9,219.7,182.6,217.3,215.2,214.5,213.5,201.8,154.2,152.8 +871,158.8,250.7,249.1,248.7,248.1,241.7,231.7,230.3,229.7,228.9,219.8,182.9,217.4,215.3,214.6,213.6,201.9,154.2,152.8 +872,158.8,250.7,249.2,248.8,248.2,241.8,231.8,230.4,229.8,229,219.9,183.1,217.5,215.4,214.7,213.7,202,154.2,152.8 +873,158.8,250.8,249.3,248.9,248.3,241.9,231.9,230.5,229.9,229.1,220,183.3,217.6,215.6,214.8,213.8,202.2,154.2,152.8 +874,158.8,250.9,249.4,249,248.4,242,232,230.6,230,229.2,220.1,183.5,217.7,215.7,214.9,213.9,202.3,154.2,152.8 +875,158.8,251,249.5,249,248.4,242.1,232.1,230.7,230.1,229.3,220.3,183.7,217.9,215.8,215,214,202.5,154.3,152.9 +876,158.8,251.1,249.5,249.1,248.5,242.1,232.2,230.8,230.2,229.4,220.4,183.9,218,215.9,215.2,214.1,202.6,154.3,152.9 +877,158.8,251.1,249.6,249.2,248.6,242.2,232.3,230.9,230.3,229.5,220.5,184.1,218.1,216,215.3,214.3,202.8,154.3,152.9 +878,158.8,251.2,249.7,249.3,248.7,242.3,232.3,231,230.4,229.6,220.6,184.3,218.2,216.1,215.4,214.4,202.9,154.3,152.9 +879,158.9,251.3,249.8,249.3,248.8,242.4,232.4,231.1,230.5,229.7,220.7,184.5,218.3,216.2,215.5,214.5,203,154.3,152.9 +880,158.9,251.4,249.8,249.4,248.8,242.5,232.5,231.1,230.6,229.8,220.8,184.8,218.4,216.3,215.6,214.6,203.2,154.3,152.9 +881,158.9,251.4,249.9,249.5,248.9,242.6,232.6,231.2,230.7,229.9,220.9,185,218.5,216.5,215.7,214.7,203.3,154.4,152.9 +882,158.9,251.5,250,249.6,249,242.6,232.7,231.3,230.8,230,221,185.2,218.6,216.6,215.8,214.8,203.5,154.4,153 +883,158.9,251.6,250.1,249.7,249.1,242.7,232.8,231.4,230.9,230.1,221.1,185.4,218.7,216.7,216,214.9,203.6,154.4,153 +884,158.9,251.7,250.1,249.7,249.1,242.8,232.9,231.5,231,230.2,221.2,185.6,218.8,216.8,216.1,215.1,203.7,154.4,153 +885,158.9,251.8,250.2,249.8,249.2,242.9,233,231.6,231.1,230.3,221.4,185.8,218.9,216.9,216.2,215.2,203.9,154.4,153 +886,158.9,251.8,250.3,249.9,249.3,243,233,231.7,231.1,230.4,221.5,186,219,217,216.3,215.3,204,154.5,153 +887,158.9,251.9,250.4,250,249.4,243.1,233.1,231.8,231.2,230.5,221.6,186.1,219.1,217.1,216.4,215.4,204.2,154.5,153 +888,158.9,252,250.5,250,249.5,243.1,233.2,231.9,231.3,230.6,221.7,186.3,219.2,217.2,216.5,215.5,204.3,154.5,153 +889,159,252.1,250.5,250.1,249.5,243.2,233.3,232,231.4,230.7,221.8,186.5,219.3,217.4,216.6,215.6,204.4,154.5,153.1 +890,159,252.2,250.6,250.2,249.6,243.3,233.4,232.1,231.5,230.8,221.9,186.7,219.4,217.5,216.7,215.7,204.6,154.5,153.1 +891,159,252.2,250.7,250.3,249.7,243.4,233.5,232.1,231.6,230.9,222,186.9,219.5,217.6,216.9,215.9,204.7,154.5,153.1 +892,159,252.3,250.8,250.3,249.8,243.5,233.6,232.2,231.7,230.9,222.1,187.1,219.7,217.7,217,216,204.8,154.6,153.1 +893,159,252.4,250.8,250.4,249.8,243.5,233.6,232.3,231.8,231,222.2,187.3,219.8,217.8,217.1,216.1,205,154.6,153.1 +894,159,252.5,250.9,250.5,249.9,243.6,233.7,232.4,231.9,231.1,222.3,187.5,219.9,217.9,217.2,216.2,205.1,154.6,153.1 +895,159,252.5,251,250.6,250,243.7,233.8,232.5,232,231.2,222.4,187.7,220,218,217.3,216.3,205.2,154.6,153.1 +896,159,252.6,251.1,250.7,250.1,243.8,233.9,232.6,232.1,231.3,222.6,187.9,220.1,218.1,217.4,216.4,205.4,154.6,153.1 +897,159,252.7,251.2,250.7,250.2,243.9,234,232.7,232.1,231.4,222.7,188.1,220.2,218.2,217.5,216.5,205.5,154.6,153.2 +898,159,252.8,251.2,250.8,250.2,244,234.1,232.8,232.2,231.5,222.8,188.3,220.3,218.4,217.6,216.7,205.6,154.7,153.2 +899,159.1,252.9,251.3,250.9,250.3,244,234.2,232.8,232.3,231.6,222.9,188.5,220.4,218.5,217.7,216.8,205.8,154.7,153.2 +900,159.1,252.9,251.4,251,250.4,244.1,234.2,232.9,232.4,231.7,223,188.7,220.5,218.6,217.9,216.9,205.9,154.7,153.2 +901,159.1,253,251.5,251,250.5,244.2,234.3,233,232.5,231.8,223.1,188.8,220.6,218.7,218,217,206,154.7,153.2 +902,159.1,253.1,251.5,251.1,250.5,244.3,234.4,233.1,232.6,231.9,223.2,189,220.7,218.8,218.1,217.1,206.2,154.7,153.2 +903,159.1,253.2,251.6,251.2,250.6,244.4,234.5,233.2,232.7,232,223.3,189.2,220.8,218.9,218.2,217.2,206.3,154.8,153.2 +904,159.1,253.2,251.7,251.3,250.7,244.4,234.6,233.3,232.8,232,223.4,189.4,220.9,219,218.3,217.3,206.4,154.8,153.3 +905,159.1,253.3,251.8,251.4,250.8,244.5,234.7,233.4,232.9,232.1,223.5,189.6,221,219.1,218.4,217.4,206.6,154.8,153.3 +906,159.1,253.4,251.8,251.4,250.9,244.6,234.7,233.5,232.9,232.2,223.6,189.8,221.1,219.2,218.5,217.6,206.7,154.8,153.3 +907,159.1,253.5,251.9,251.5,250.9,244.7,234.8,233.5,233,232.3,223.7,190,221.2,219.3,218.6,217.7,206.8,154.8,153.3 +908,159.1,253.6,252,251.6,251,244.8,234.9,233.6,233.1,232.4,223.9,190.2,221.3,219.5,218.7,217.8,207,154.8,153.3 +909,159.2,253.6,252.1,251.7,251.1,244.8,235,233.7,233.2,232.5,224,190.3,221.4,219.6,218.9,217.9,207.1,154.9,153.3 +910,159.2,253.7,252.1,251.7,251.2,244.9,235.1,233.8,233.3,232.6,224.1,190.5,221.5,219.7,219,218,207.2,154.9,153.3 +911,159.2,253.8,252.2,251.8,251.2,245,235.2,233.9,233.4,232.7,224.2,190.7,221.6,219.8,219.1,218.1,207.3,154.9,153.4 +912,159.2,253.9,252.3,251.9,251.3,245.1,235.2,234,233.5,232.8,224.3,190.9,221.7,219.9,219.2,218.2,207.5,154.9,153.4 +913,159.2,253.9,252.4,252,251.4,245.2,235.3,234.1,233.6,232.9,224.4,191.1,221.8,220,219.3,218.3,207.6,154.9,153.4 +914,159.2,254,252.5,252,251.5,245.3,235.4,234.1,233.6,232.9,224.5,191.3,222,220.1,219.4,218.4,207.7,155,153.4 +915,159.2,254.1,252.5,252.1,251.5,245.3,235.5,234.2,233.7,233,224.6,191.4,222.1,220.2,219.5,218.6,207.9,155,153.4 +916,159.2,254.2,252.6,252.2,251.6,245.4,235.6,234.3,233.8,233.1,224.7,191.6,222.2,220.3,219.6,218.7,208,155,153.4 +917,159.2,254.3,252.7,252.3,251.7,245.5,235.6,234.4,233.9,233.2,224.8,191.8,222.3,220.4,219.7,218.8,208.1,155,153.4 +918,159.2,254.3,252.8,252.3,251.8,245.6,235.7,234.5,234,233.3,224.9,192,222.4,220.5,219.9,218.9,208.2,155,153.5 +919,159.2,254.4,252.8,252.4,251.9,245.7,235.8,234.6,234.1,233.4,225,192.2,222.5,220.7,220,219,208.4,155,153.5 +920,159.3,254.5,252.9,252.5,251.9,245.7,235.9,234.7,234.2,233.5,225.1,192.4,222.6,220.8,220.1,219.1,208.5,155.1,153.5 +921,159.3,254.6,253,252.6,252,245.8,236,234.7,234.2,233.6,225.2,192.5,222.7,220.9,220.2,219.2,208.6,155.1,153.5 +922,159.3,254.6,253.1,252.7,252.1,245.9,236.1,234.8,234.3,233.6,225.3,192.7,222.8,221,220.3,219.3,208.8,155.1,153.5 +923,159.3,254.7,253.1,252.7,252.2,246,236.1,234.9,234.4,233.7,225.4,192.9,222.9,221.1,220.4,219.4,208.9,155.1,153.5 +924,159.3,254.8,253.2,252.8,252.2,246.1,236.2,235,234.5,233.8,225.6,193.1,223,221.2,220.5,219.6,209,155.1,153.5 +925,159.3,254.9,253.3,252.9,252.3,246.1,236.3,235.1,234.6,233.9,225.7,193.3,223.1,221.3,220.6,219.7,209.1,155.2,153.5 +926,159.3,255,253.4,253,252.4,246.2,236.4,235.2,234.7,234,225.8,193.4,223.2,221.4,220.7,219.8,209.3,155.2,153.6 +927,159.3,255,253.4,253,252.5,246.3,236.5,235.2,234.8,234.1,225.9,193.6,223.3,221.5,220.8,219.9,209.4,155.2,153.6 +928,159.3,255.1,253.5,253.1,252.5,246.4,236.5,235.3,234.8,234.2,226,193.8,223.4,221.6,220.9,220,209.5,155.2,153.6 +929,159.3,255.2,253.6,253.2,252.6,246.5,236.6,235.4,234.9,234.2,226.1,194,223.5,221.7,221.1,220.1,209.6,155.2,153.6 +930,159.4,255.3,253.7,253.3,252.7,246.5,236.7,235.5,235,234.3,226.2,194.1,223.6,221.8,221.2,220.2,209.8,155.2,153.6 +931,159.4,255.3,253.7,253.3,252.8,246.6,236.8,235.6,235.1,234.4,226.3,194.3,223.7,222,221.3,220.3,209.9,155.3,153.6 +932,159.4,255.4,253.8,253.4,252.8,246.7,236.9,235.6,235.2,234.5,226.4,194.5,223.8,222.1,221.4,220.4,210,155.3,153.6 +933,159.4,255.5,253.9,253.5,252.9,246.8,236.9,235.7,235.3,234.6,226.5,194.7,223.9,222.2,221.5,220.5,210.1,155.3,153.7 +934,159.4,255.6,254,253.6,253,246.9,237,235.8,235.3,234.7,226.6,194.8,224,222.3,221.6,220.6,210.2,155.3,153.7 +935,159.4,255.7,254.1,253.6,253.1,246.9,237.1,235.9,235.4,234.8,226.7,195,224.1,222.4,221.7,220.8,210.4,155.3,153.7 +936,159.4,255.7,254.1,253.7,253.2,247,237.2,236,235.5,234.8,226.8,195.2,224.2,222.5,221.8,220.9,210.5,155.4,153.7 +937,159.4,255.8,254.2,253.8,253.2,247.1,237.3,236.1,235.6,234.9,226.9,195.4,224.3,222.6,221.9,221,210.6,155.4,153.7 +938,159.4,255.9,254.3,253.9,253.3,247.2,237.3,236.1,235.7,235,227,195.5,224.4,222.7,222,221.1,210.7,155.4,153.7 +939,159.4,256,254.4,253.9,253.4,247.3,237.4,236.2,235.8,235.1,227.1,195.7,224.5,222.8,222.1,221.2,210.9,155.4,153.7 +940,159.4,256,254.4,254,253.5,247.3,237.5,236.3,235.8,235.2,227.2,195.9,224.6,222.9,222.2,221.3,211,155.4,153.7 +941,159.5,256.1,254.5,254.1,253.5,247.4,237.6,236.4,235.9,235.3,227.3,196.1,224.7,223,222.3,221.4,211.1,155.4,153.8 +942,159.5,256.2,254.6,254.2,253.6,247.5,237.7,236.5,236,235.3,227.4,196.2,224.8,223.1,222.5,221.5,211.2,155.5,153.8 +943,159.5,256.3,254.7,254.3,253.7,247.6,237.7,236.5,236.1,235.4,227.5,196.4,224.9,223.2,222.6,221.6,211.4,155.5,153.8 +944,159.5,256.3,254.7,254.3,253.8,247.7,237.8,236.6,236.2,235.5,227.6,196.6,225,223.3,222.7,221.7,211.5,155.5,153.8 +945,159.5,256.4,254.8,254.4,253.8,247.7,237.9,236.7,236.2,235.6,227.7,196.7,225.1,223.4,222.8,221.8,211.6,155.5,153.8 +946,159.5,256.5,254.9,254.5,253.9,247.8,238,236.8,236.3,235.7,227.8,196.9,225.2,223.6,222.9,222,211.7,155.5,153.8 +947,159.5,256.6,255,254.6,254,247.9,238.1,236.9,236.4,235.8,227.9,197.1,225.3,223.7,223,222.1,211.8,155.6,153.8 +948,159.5,256.7,255,254.6,254.1,248,238.1,236.9,236.5,235.8,228,197.2,225.4,223.8,223.1,222.2,212,155.6,153.9 +949,159.5,256.7,255.1,254.7,254.1,248,238.2,237,236.6,235.9,228.1,197.4,225.5,223.9,223.2,222.3,212.1,155.6,153.9 +950,159.5,256.8,255.2,254.8,254.2,248.1,238.3,237.1,236.6,236,228.2,197.6,225.6,224,223.3,222.4,212.2,155.6,153.9 +951,159.5,256.9,255.3,254.9,254.3,248.2,238.4,237.2,236.7,236.1,228.3,197.7,225.7,224.1,223.4,222.5,212.3,155.6,153.9 +952,159.6,257,255.3,254.9,254.4,248.3,238.4,237.3,236.8,236.2,228.4,197.9,225.8,224.2,223.5,222.6,212.4,155.6,153.9 +953,159.6,257,255.4,255,254.4,248.4,238.5,237.3,236.9,236.2,228.5,198,225.9,224.3,223.6,222.7,212.6,155.7,153.9 +954,159.6,257.1,255.5,255.1,254.5,248.4,238.6,237.4,237,236.3,228.6,198.2,226,224.4,223.7,222.8,212.7,155.7,153.9 +955,159.6,257.2,255.6,255.2,254.6,248.5,238.7,237.5,237,236.4,228.7,198.4,226.1,224.5,223.8,222.9,212.8,155.7,154 +956,159.6,257.3,255.6,255.2,254.7,248.6,238.8,237.6,237.1,236.5,228.8,198.5,226.2,224.6,223.9,223,212.9,155.7,154 +957,159.6,257.3,255.7,255.3,254.7,248.7,238.8,237.7,237.2,236.6,228.9,198.7,226.3,224.7,224,223.1,213,155.7,154 +958,159.6,257.4,255.8,255.4,254.8,248.8,238.9,237.7,237.3,236.7,229,198.9,226.4,224.8,224.2,223.2,213.2,155.8,154 +959,159.6,257.5,255.9,255.5,254.9,248.8,239,237.8,237.4,236.7,229.1,199,226.5,224.9,224.3,223.3,213.3,155.8,154 +960,159.6,257.6,255.9,255.5,255,248.9,239.1,237.9,237.5,236.8,229.2,199.2,226.6,225,224.4,223.5,213.4,155.8,154 +961,159.6,257.7,256,255.6,255,249,239.2,238,237.5,236.9,229.3,199.3,226.7,225.1,224.5,223.6,213.5,155.8,154 +962,159.6,257.7,256.1,255.7,255.1,249.1,239.2,238.1,237.6,237,229.4,199.5,226.8,225.2,224.6,223.7,213.6,155.8,154 +963,159.7,257.8,256.2,255.8,255.2,249.1,239.3,238.1,237.7,237.1,229.5,199.6,226.9,225.3,224.7,223.8,213.7,155.9,154.1 +964,159.7,257.9,256.2,255.8,255.3,249.2,239.4,238.2,237.8,237.1,229.6,199.8,227,225.4,224.8,223.9,213.9,155.9,154.1 +965,159.7,258,256.3,255.9,255.4,249.3,239.5,238.3,237.8,237.2,229.7,200,227.1,225.5,224.9,224,214,155.9,154.1 +966,159.7,258,256.4,256,255.4,249.4,239.6,238.4,237.9,237.3,229.8,200.1,227.2,225.6,225,224.1,214.1,155.9,154.1 +967,159.7,258.1,256.5,256.1,255.5,249.5,239.6,238.5,238,237.4,229.9,200.3,227.3,225.7,225.1,224.2,214.2,155.9,154.1 +968,159.7,258.2,256.5,256.1,255.6,249.5,239.7,238.5,238.1,237.5,230,200.4,227.4,225.8,225.2,224.3,214.3,156,154.1 +969,159.7,258.3,256.6,256.2,255.7,249.6,239.8,238.6,238.2,237.5,230.1,200.6,227.5,225.9,225.3,224.4,214.5,156,154.1 +970,159.7,258.3,256.7,256.3,255.7,249.7,239.9,238.7,238.2,237.6,230.2,200.7,227.6,226,225.4,224.5,214.6,156,154.2 +971,159.7,258.4,256.8,256.4,255.8,249.8,240,238.8,238.3,237.7,230.3,200.9,227.7,226.2,225.5,224.6,214.7,156,154.2 +972,159.7,258.5,256.8,256.4,255.9,249.9,240,238.9,238.4,237.8,230.4,201,227.8,226.3,225.6,224.7,214.8,156.2,154.2 +973,159.7,258.6,256.9,256.5,256,249.9,240.1,238.9,238.5,237.9,230.5,201.2,227.9,226.4,225.7,224.8,214.9,159.4,154.2 +974,159.8,258.7,257,256.6,256,250,240.2,239,238.6,237.9,230.6,201.3,228,226.5,225.8,224.9,215,163.8,154.2 +975,159.8,258.7,257.1,256.7,256.1,250.1,240.3,239.1,238.6,238,230.7,201.5,228.1,226.6,225.9,225,215.2,166,154.2 +976,159.8,258.8,257.2,256.7,256.2,250.2,240.4,239.2,238.7,238.1,230.8,201.6,228.2,226.7,226,225.1,215.3,166.2,154.2 +977,159.8,258.9,257.2,256.8,256.3,250.2,240.4,239.3,238.8,238.2,230.9,201.8,228.3,226.8,226.1,225.2,215.4,166.3,154.2 +978,159.8,259,257.3,256.9,256.3,250.3,240.5,239.3,238.9,238.3,231,201.9,228.4,226.9,226.2,225.3,215.5,166.5,154.3 +979,159.8,259,257.4,257,256.4,250.4,240.6,239.4,239,238.3,231.1,202.1,228.5,227,226.3,225.5,215.6,166.7,154.3 +980,159.8,259.1,257.5,257,256.5,250.5,240.7,239.5,239,238.4,231.2,202.2,228.6,227.1,226.4,225.6,215.7,166.9,154.3 +981,159.8,259.2,257.5,257.1,256.6,250.5,240.8,239.6,239.1,238.5,231.3,202.4,228.7,227.2,226.5,225.7,215.8,167.1,154.3 +982,159.8,259.3,257.6,257.2,256.6,250.6,240.8,239.7,239.2,238.6,231.4,202.5,228.8,227.3,226.6,225.8,216,167.3,154.3 +983,159.8,259.3,257.7,257.3,256.7,250.7,240.9,239.7,239.3,238.7,231.5,202.7,228.9,227.4,226.7,225.9,216.1,167.5,154.3 +984,159.8,259.4,257.8,257.3,256.8,250.8,241,239.8,239.4,238.7,231.6,202.8,229,227.5,226.8,226,216.2,167.7,154.3 +985,159.9,259.5,257.8,257.4,256.9,250.9,241.1,239.9,239.4,238.8,231.7,203,229.1,227.6,226.9,226.1,216.3,167.9,154.3 +986,159.9,259.6,257.9,257.5,256.9,250.9,241.2,240,239.5,238.9,231.8,203.1,229.2,227.7,227,226.2,216.4,168.1,154.4 +987,159.9,259.7,258,257.6,257,251,241.2,240.1,239.6,239,231.9,203.3,229.3,227.8,227.1,226.3,216.5,168.3,154.4 +988,159.9,259.7,258.1,257.6,257.1,251.1,241.3,240.1,239.7,239.1,232,203.4,229.4,227.9,227.2,226.4,216.7,168.5,154.4 +989,159.9,259.8,258.1,257.7,257.2,251.2,241.4,240.2,239.8,239.1,232.1,203.6,229.5,228,227.4,226.5,216.8,168.7,154.4 +990,159.9,259.9,258.2,257.8,257.2,251.2,241.5,240.3,239.8,239.2,232.2,203.7,229.6,228.1,227.5,226.6,216.9,168.9,154.4 +991,159.9,260,258.3,257.9,257.3,251.3,241.6,240.4,239.9,239.3,232.3,203.8,229.7,228.2,227.6,226.7,217,170.3,154.4 +992,159.9,260,258.4,257.9,257.4,251.4,241.6,240.5,240,239.4,232.3,204,229.7,228.3,227.7,226.8,217.1,171.1,154.4 +993,159.9,260.1,258.4,258,257.5,251.5,241.7,240.5,240.1,239.5,232.4,204.1,229.8,228.4,227.8,226.9,217.2,171.8,154.5 +994,159.9,260.2,258.5,258.1,257.5,251.6,241.8,240.6,240.2,239.5,232.5,204.3,229.9,228.5,227.9,227,217.3,172.5,154.5 +995,159.9,260.3,258.6,258.2,257.6,251.6,241.9,240.7,240.2,239.6,232.6,204.4,230,228.6,228,227.1,217.5,173.1,154.5 +996,160,260.3,258.7,258.2,257.7,251.7,242,240.8,240.3,239.7,232.7,204.6,230.1,228.7,228.1,227.2,217.6,173.8,154.5 +997,160,260.4,258.7,258.3,257.8,251.8,242,240.9,240.4,239.8,232.8,204.7,230.2,228.8,228.2,227.3,217.7,174.3,154.5 +998,160,260.5,258.8,258.4,257.8,251.9,242.1,240.9,240.5,239.9,232.9,204.8,230.3,228.9,228.3,227.4,217.8,174.8,154.5 +999,160,260.6,258.9,258.5,257.9,251.9,242.2,241,240.6,239.9,233,205,230.4,229,228.4,227.5,217.9,175.2,154.5 +1000,160,260.7,259,258.5,258,252,242.3,241.1,240.6,240,233.1,205.1,230.5,229.1,228.5,227.6,218,175.7,154.5 diff --git a/test/Data Tables/30,000 MHz - Lb(0.01)_P528.csv b/test/Data Tables/30,000 MHz - Lb(0.01)_P528.csv new file mode 100644 index 0000000..f3f00ac --- /dev/null +++ b/test/Data Tables/30,000 MHz - Lb(0.01)_P528.csv @@ -0,0 +1,1005 @@ +30000MHz / Lb(0.01) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,122,116.6,116.5,116.4,116.1,0,136.8,136.8,136.7,136.7,135.8,0,142.8,142.8,142.8,142.8,142.3,136.6,0 +1,124.9,119.1,119.1,119.1,119.1,119.2,136.7,136.7,136.7,136.7,136.4,121.5,142.8,142.8,142.8,142.8,142.6,139.6,121.6 +2,128.9,122.8,122.8,122.7,122.8,123.6,136.8,136.8,136.8,136.8,136.5,127.2,142.8,142.8,142.8,142.7,142.6,139.7,127.5 +3,132,125.7,125.7,125.7,125.7,126.3,136.9,136.9,136.9,136.9,136.6,130.4,142.8,142.8,142.8,142.7,142.6,139.8,130.9 +4,134.3,127.9,127.9,127.9,127.9,128.4,137.1,137.1,137.1,137.1,136.8,132.5,142.8,142.8,142.8,142.8,142.6,140,133.2 +5,136.1,129.8,129.8,129.8,129.8,130.1,137.3,137.3,137.3,137.3,137.1,134.1,142.8,142.8,142.8,142.8,142.6,140.2,134.9 +6,137.7,131.3,131.3,131.3,131.3,131.6,137.6,137.6,137.6,137.6,137.4,135.4,142.9,142.9,142.9,142.9,142.7,140.5,136.4 +7,139,132.7,132.7,132.7,132.7,132.8,137.9,137.9,137.9,137.9,137.8,136.4,142.9,142.9,142.9,142.9,142.8,140.7,137.5 +8,140.1,133.9,133.9,133.9,133.9,134.1,138.3,138.3,138.3,138.3,138.2,137.3,143,143,143,143,142.9,141.1,138.5 +9,141.1,135,135,134.9,134.9,135,138.7,138.7,138.7,138.7,138.5,138.1,143.1,143.1,143.1,143.1,143,141.4,139.4 +10,142,135.9,135.9,135.9,135.9,135.9,139.1,139.1,139.1,139.1,139,138.7,143.2,143.2,143.2,143.2,143.1,141.7,140.1 +11,142.9,136.8,136.8,136.8,136.8,136.7,139.5,139.5,139.5,139.5,139.4,139.3,143.4,143.4,143.4,143.3,143.2,142,140.8 +12,143.6,137.6,137.6,137.6,137.6,137.4,139.9,139.9,139.9,139.9,139.8,139.9,143.5,143.5,143.5,143.5,143.4,142.3,141.4 +13,144.3,138.4,138.4,138.4,138.4,138.1,140.3,140.3,140.3,140.3,140.2,140.4,143.6,143.6,143.6,143.6,143.5,142.6,141.9 +14,144.9,139.1,139.1,139.1,139.1,138.7,140.7,140.7,140.7,140.7,140.6,140.8,143.8,143.8,143.8,143.8,143.7,142.9,142.4 +15,145.5,139.7,139.7,139.7,139.7,139.5,141.1,141.1,141.1,141.1,141,141.3,143.9,143.9,143.9,143.9,143.8,143.2,142.9 +16,146.1,140.4,140.4,140.4,140.4,140.1,141.5,141.5,141.5,141.5,141.4,141.7,144.1,144.1,144.1,144.1,144,143.5,143.3 +17,146.6,141,141,141,141,140.6,141.9,141.9,141.9,141.9,141.8,142.1,144.3,144.3,144.3,144.3,144.2,143.8,143.7 +18,147.1,141.5,141.5,141.5,141.5,141.1,142.2,142.2,142.2,142.2,142.1,142.4,144.4,144.4,144.4,144.4,144.3,144,144 +19,147.6,142.1,142.1,142.1,142.1,141.6,142.6,142.6,142.6,142.6,142.5,142.8,144.6,144.6,144.6,144.6,144.5,144.2,144.4 +20,148,142.6,142.6,142.6,142.6,142,142.9,142.9,142.9,142.9,142.8,143.1,144.8,144.8,144.8,144.8,144.7,144.4,144.7 +21,148.4,143.1,143.1,143.1,143.1,142.6,143.3,143.3,143.3,143.3,143.1,143.4,145,145,145,145,144.9,144.6,145 +22,148.8,143.6,143.6,143.5,143.5,143,143.6,143.6,143.6,143.6,143.4,143.7,145.2,145.2,145.2,145.2,145,144.8,145.3 +23,149.2,144,144,144,144,143.5,143.9,143.9,143.9,143.9,143.7,144,145.4,145.4,145.3,145.3,145.2,145,145.6 +24,149.6,144.4,144.4,144.4,144.4,143.9,144.2,144.2,144.2,144.2,144,144.3,145.5,145.5,145.5,145.5,145.4,145.2,145.8 +25,150,144.8,144.8,144.8,144.8,144.3,144.5,144.5,144.5,144.5,144.3,144.6,145.7,145.7,145.7,145.7,145.6,145.4,146.1 +26,150.3,145.2,145.2,145.2,145.2,144.6,144.8,144.8,144.8,144.8,144.6,144.9,145.9,145.9,145.9,145.9,145.8,145.5,146.3 +27,150.6,145.6,145.6,145.6,145.6,144.9,145.1,145.1,145.1,145.1,144.9,145.1,146.1,146.1,146.1,146.1,146,145.7,146.5 +28,150.9,146,146,146,146,145.4,145.3,145.3,145.3,145.3,145.2,145.4,146.3,146.3,146.3,146.3,146.2,145.9,146.8 +29,151.2,146.4,146.4,146.4,146.4,145.7,145.6,145.6,145.6,145.6,145.4,145.6,146.5,146.5,146.5,146.5,146.4,146.1,146.9 +30,151.5,146.7,146.7,146.7,146.7,146.1,145.9,145.9,145.9,145.9,145.7,145.9,146.7,146.7,146.7,146.7,146.5,146.2,147 +31,151.8,147.1,147.1,147.1,147,146.4,146.1,146.1,146.1,146.1,145.9,146.1,146.9,146.9,146.9,146.9,146.7,146.4,147.2 +32,152.1,147.4,147.4,147.4,147.4,146.6,146.4,146.4,146.4,146.4,146.2,146.3,147.1,147.1,147.1,147.1,146.9,146.6,147.4 +33,152.4,147.7,147.7,147.7,147.7,147,146.6,146.6,146.6,146.6,146.4,146.5,147.3,147.3,147.3,147.2,147.1,146.8,147.5 +34,152.6,148,148,148,148,147.3,146.9,146.9,146.9,146.9,146.7,146.7,147.4,147.4,147.4,147.4,147.3,146.9,147.7 +35,152.9,148.3,148.3,148.3,148.3,147.6,147.1,147.1,147.1,147.1,146.9,146.9,147.6,147.6,147.6,147.6,147.5,147.1,147.9 +36,153.1,148.6,148.6,148.6,148.6,147.8,147.3,147.3,147.3,147.3,147.1,147.1,147.8,147.8,147.8,147.8,147.6,147.3,148 +37,153.4,148.9,148.9,148.9,148.9,148.1,147.6,147.6,147.6,147.5,147.3,147.3,148,148,148,148,147.8,147.4,148.1 +38,153.6,149.2,149.2,149.2,149.2,148.4,147.8,147.8,147.8,147.8,147.5,147.5,148.1,148.1,148.1,148.1,148,147.6,148.3 +39,153.8,149.5,149.5,149.5,149.5,148.7,148,148,148,148,147.8,147.6,148.3,148.3,148.3,148.3,148.1,147.8,148.5 +40,154,149.7,149.8,149.8,149.8,148.9,148.2,148.2,148.2,148.2,148,147.8,148.5,148.5,148.5,148.5,148.3,147.9,148.6 +41,154.3,150,150,150,150,149.1,148.4,148.4,148.4,148.4,148.2,148,148.7,148.6,148.6,148.6,148.5,148.1,148.8 +42,154.5,150.2,150.3,150.3,150.3,149.4,148.6,148.6,148.6,148.6,148.4,148.2,148.8,148.8,148.8,148.8,148.6,148.2,148.9 +43,154.7,150.5,150.5,150.6,150.6,149.7,148.8,148.8,148.8,148.8,148.6,148.4,149,149,149,149,148.8,148.4,149 +44,154.9,150.7,150.8,150.8,150.8,149.9,149,149,149,149,148.8,148.5,149.1,149.1,149.1,149.1,148.9,148.5,149.2 +45,155.1,151,151,151.1,151.1,150.2,149.2,149.2,149.2,149.2,148.9,148.7,149.3,149.3,149.3,149.3,149.1,148.7,149.3 +46,155.2,151.2,151.3,151.3,151.3,150.4,149.4,149.4,149.4,149.4,149.1,148.9,149.5,149.4,149.4,149.4,149.2,148.8,149.4 +47,155.4,151.4,151.5,151.5,151.6,150.6,149.6,149.6,149.6,149.6,149.3,149,149.6,149.6,149.6,149.6,149.4,149,149.6 +48,155.6,151.7,151.7,151.8,151.8,150.8,149.8,149.8,149.8,149.8,149.5,149.2,149.8,149.8,149.8,149.8,149.6,149.1,149.7 +49,155.8,151.9,152,152,152,151,150,150,150,150,149.7,149.3,149.9,149.9,149.9,149.9,149.7,149.2,149.8 +50,156,152.1,152.2,152.2,152.3,151.3,150.2,150.2,150.2,150.2,149.8,149.5,150.1,150.1,150.1,150.1,149.8,149.4,150 +51,156.1,152.3,152.4,152.4,152.5,151.5,150.4,150.3,150.3,150.3,150,149.6,150.2,150.2,150.2,150.2,150,149.5,150.1 +52,156.3,152.5,152.6,152.7,152.7,151.7,150.5,150.5,150.5,150.5,150.2,149.8,150.4,150.4,150.4,150.3,150.1,149.6,150.2 +53,156.5,152.7,152.8,152.9,152.9,151.9,150.7,150.7,150.7,150.7,150.4,149.9,150.5,150.5,150.5,150.5,150.3,149.8,150.3 +54,156.6,152.9,153,153.1,153.1,152.1,150.9,150.9,150.9,150.8,150.5,150,150.6,150.6,150.6,150.6,150.4,149.9,150.5 +55,156.8,153.1,153.2,153.3,153.3,152.3,151,151,151,151,150.7,150.2,150.8,150.8,150.8,150.8,150.5,150,150.6 +56,157,153.2,153.4,153.5,153.5,152.5,151.2,151.2,151.2,151.2,150.8,150.3,150.9,150.9,150.9,150.9,150.7,150.1,150.7 +57,157.1,153.4,153.6,153.6,153.7,152.7,151.3,151.3,151.3,151.3,151,150.5,151,151,151,151,150.8,150.2,150.8 +58,157.3,153.6,153.8,153.8,153.9,152.9,151.5,151.5,151.5,151.5,151.1,150.6,151.2,151.2,151.2,151.1,150.9,150.3,150.9 +59,157.4,153.8,153.9,154,154.1,153.1,151.7,151.6,151.6,151.6,151.3,150.7,151.3,151.3,151.3,151.3,151,150.5,151.1 +60,157.6,153.9,154.1,154.2,154.3,153.3,151.8,151.8,151.8,151.8,151.4,150.9,151.4,151.4,151.4,151.4,151.2,150.6,151.2 +61,157.7,154.1,154.3,154.4,154.5,153.5,151.9,151.9,151.9,151.9,151.5,151,151.5,151.5,151.5,151.5,151.3,150.7,151.3 +62,157.8,154.2,154.4,154.5,154.6,153.6,152.1,152.1,152.1,152.1,151.7,151.1,151.6,151.6,151.6,151.6,151.4,150.8,151.4 +63,158,154.4,154.6,154.7,154.8,153.8,152.2,152.2,152.2,152.2,151.8,151.2,151.7,151.7,151.7,151.7,151.5,150.9,151.5 +64,158.1,154.5,154.8,154.9,155,154,152.4,152.4,152.4,152.3,151.9,151.4,151.8,151.8,151.8,151.8,151.6,151,151.6 +65,158.3,154.6,154.9,155,155.1,154.1,152.5,152.5,152.5,152.5,152.1,151.5,151.9,151.9,151.9,151.9,151.7,151,151.7 +66,158.4,154.8,155,155.2,155.3,154.4,152.6,152.6,152.6,152.6,152.2,151.6,152,152,152,152,151.8,151.1,151.8 +67,158.5,154.9,155.2,155.3,155.5,154.5,152.8,152.7,152.7,152.7,152.3,151.7,152.1,152.1,152.1,152.1,151.9,151.2,152 +68,158.6,155,155.3,155.5,155.6,154.7,152.9,152.9,152.9,152.8,152.4,151.8,152.2,152.2,152.2,152.2,151.9,151.3,152 +69,158.8,155.1,155.5,155.6,155.8,154.9,153,153,153,153,152.5,151.9,152.3,152.3,152.3,152.3,152,151.3,152.2 +70,158.9,155.2,155.6,155.7,155.9,155,153.1,153.1,153.1,153.1,152.7,152,152.3,152.3,152.3,152.3,152,151.3,152.3 +71,159,155.3,155.7,155.9,156,155.2,153.2,153.2,153.2,153.2,152.8,152.2,152.4,152.4,152.3,152.3,152,151.3,152.4 +72,159.1,155.5,155.8,156,156.2,155.4,153.4,153.3,153.3,153.3,152.9,152.3,152.3,152.3,152.3,152.3,152,151.3,152.5 +73,159.3,155.7,155.9,156.1,156.3,155.5,153.4,153.4,153.4,153.4,152.9,152.4,152.3,152.3,152.3,152.3,152,151.2,152.5 +74,159.4,155.9,156,156.2,156.4,155.6,153.5,153.5,153.5,153.5,153,152.5,152.4,152.4,152.4,152.4,152.1,151.3,152.7 +75,159.5,156,156.2,156.3,156.6,155.8,153.6,153.6,153.6,153.5,153,152.6,152.5,152.5,152.5,152.5,152.2,151.4,152.7 +76,159.6,156.2,156.3,156.5,156.7,155.9,153.6,153.6,153.6,153.6,153,152.7,152.7,152.7,152.6,152.6,152.3,151.5,152.8 +77,159.7,156.5,156.4,156.6,156.8,156.1,153.5,153.5,153.5,153.4,153,152.8,152.8,152.8,152.8,152.8,152.5,151.7,152.9 +78,159.8,156.7,156.5,156.7,156.9,156.2,153.6,153.6,153.6,153.6,153.1,152.9,152.9,152.9,152.9,152.9,152.6,151.8,153 +79,159.9,156.9,156.7,156.8,157,156.4,153.7,153.7,153.7,153.7,153.2,153,153,153,153,153,152.7,151.9,153.1 +80,160.1,157,156.8,156.8,157.1,156.5,153.9,153.9,153.9,153.8,153.4,153.1,153.1,153.1,153.1,153.1,152.8,152,153.2 +81,160.2,157.2,157,157,157.2,156.7,154,154,154,154,153.5,153.2,153.3,153.2,153.2,153.2,152.9,152.1,153.3 +82,160.3,157.4,157.2,157.1,157.2,156.8,154.1,154.1,154.1,154.1,153.6,153.3,153.4,153.4,153.4,153.3,153,152.2,153.4 +83,160.4,157.5,157.3,157.2,157.3,157,154.3,154.3,154.3,154.2,153.7,153.4,153.5,153.5,153.5,153.5,153.1,152.3,153.5 +84,160.5,157.6,157.4,157.3,157.3,157,154.4,154.4,154.4,154.4,153.8,153.5,153.6,153.6,153.6,153.6,153.2,152.4,153.5 +85,160.6,157.8,157.5,157.4,157.3,157.2,154.5,154.5,154.5,154.5,154,153.6,153.7,153.7,153.7,153.7,153.4,152.5,153.6 +86,160.7,158,157.7,157.6,157.5,157.3,154.7,154.6,154.6,154.6,154.1,153.7,153.8,153.8,153.8,153.8,153.5,152.6,153.7 +87,160.8,158.2,157.9,157.8,157.6,157.4,154.8,154.8,154.8,154.7,154.2,153.8,153.9,153.9,153.9,153.9,153.6,152.7,153.8 +88,160.9,158.4,158.2,158,157.8,157.5,154.9,154.9,154.9,154.9,154.3,153.9,154,154,154,154,153.7,152.8,153.9 +89,161,158.6,158.4,158.2,158,157.7,155,155,155,155,154.4,153.9,154.1,154.1,154.1,154.1,153.8,152.9,153.9 +90,161.1,158.8,158.6,158.4,158.2,157.8,155.1,155.1,155.1,155.1,154.6,154,154.3,154.2,154.2,154.2,153.9,153,154 +91,161.2,159.1,158.8,158.6,158.4,157.9,155.3,155.3,155.2,155.2,154.7,154.1,154.4,154.4,154.3,154.3,154,153.1,154.1 +92,161.3,159.3,159,158.8,158.6,158,155.4,155.4,155.4,155.3,154.8,154.2,154.5,154.5,154.5,154.4,154.1,153.2,154.2 +93,161.4,159.5,159.2,159.1,158.8,158.1,155.5,155.5,155.5,155.5,154.9,154.3,154.6,154.6,154.6,154.5,154.2,153.3,154.3 +94,161.5,159.7,159.4,159.3,159,158.1,155.6,155.6,155.6,155.6,155,154.4,154.7,154.7,154.7,154.6,154.3,153.4,154.3 +95,161.5,159.9,159.6,159.5,159.2,158.2,155.7,155.7,155.7,155.7,155.1,154.4,154.8,154.8,154.8,154.7,154.4,153.5,154.4 +96,161.6,160.1,159.8,159.7,159.4,158.3,155.9,155.8,155.8,155.8,155.2,154.5,154.9,154.9,154.9,154.9,154.5,153.6,154.5 +97,161.7,160.3,160,159.9,159.6,158.1,156,156,155.9,155.9,155.3,154.6,155,155,155,155,154.6,153.7,154.6 +98,161.8,160.5,160.3,160.1,159.8,158.2,156.1,156.1,156.1,156,155.4,154.7,155.1,155.1,155.1,155.1,154.7,153.8,154.6 +99,161.9,160.7,160.5,160.3,160,158.3,156.2,156.2,156.2,156.2,155.5,154.7,155.2,155.2,155.2,155.2,154.8,153.8,154.7 +100,162,160.9,160.7,160.5,160.2,158.4,156.3,156.3,156.3,156.3,155.7,154.8,155.3,155.3,155.3,155.2,154.9,153.9,154.8 +101,162.1,161.1,160.9,160.7,160.4,158.6,156.4,156.4,156.4,156.4,155.8,154.9,155.4,155.4,155.4,155.3,155,154,154.8 +102,162.2,161.3,161.1,160.9,160.6,158.7,156.5,156.5,156.5,156.5,155.9,155,155.5,155.5,155.5,155.4,155.1,154.1,154.9 +103,162.2,161.5,161.3,161.1,160.8,158.8,156.6,156.6,156.6,156.6,156,155,155.6,155.6,155.6,155.5,155.2,154.2,155 +104,162.3,161.7,161.5,161.3,161,158.9,156.8,156.7,156.7,156.7,156.1,155.1,155.7,155.7,155.7,155.6,155.2,154.3,155 +105,162.4,161.9,161.7,161.5,161.2,159.1,156.9,156.9,156.8,156.8,156.2,155.1,155.8,155.8,155.7,155.7,155.3,154.4,155.1 +106,162.5,162.1,161.9,161.7,161.4,159.2,157,157,156.9,156.9,156.3,155.2,155.9,155.8,155.8,155.8,155.4,154.4,155.1 +107,162.6,162.3,162.1,161.9,161.6,159.3,157.1,157.1,157.1,157,156.4,155.2,155.9,155.9,155.9,155.9,155.5,154.5,155.2 +108,162.7,162.5,162.3,162.1,161.8,159.4,157.2,157.2,157.2,157.1,156.5,155.3,156,156,156,156,155.6,154.6,155.2 +109,162.7,162.7,162.4,162.3,162,159.5,157.3,157.3,157.3,157.2,156.6,155.4,156.1,156.1,156.1,156.1,155.7,154.7,155.3 +110,162.8,162.9,162.6,162.5,162.2,159.6,157.4,157.4,157.4,157.3,156.7,155.4,156.2,156.2,156.2,156.2,155.8,154.8,155.3 +111,162.9,163.1,162.8,162.7,162.4,159.8,157.5,157.5,157.5,157.4,156.8,155.5,156.3,156.3,156.3,156.3,155.9,154.9,155.4 +112,163,163.3,163,162.9,162.6,159.9,157.6,157.6,157.6,157.5,156.9,155.5,156.4,156.4,156.4,156.4,156,154.9,155.4 +113,163.1,163.5,163.2,163,162.8,160,157.7,157.7,157.7,157.7,157,155.5,156.5,156.5,156.5,156.5,156,155,155.5 +114,163.1,163.7,163.4,163.2,163,160.1,157.8,157.8,157.8,157.8,157.1,155.6,156.6,156.6,156.6,156.6,156.1,155.1,155.5 +115,163.2,163.9,163.6,163.4,163.2,160.2,157.9,157.9,157.9,157.9,157.1,155.6,156.7,156.7,156.7,156.6,156.2,155.2,155.5 +116,163.3,164.1,163.8,163.6,163.4,160.3,158,158,158,158,157.2,155.5,156.8,156.8,156.7,156.7,156.3,155.2,155.5 +117,163.4,164.2,164,163.8,163.5,160.4,158.1,158.1,158.1,158.1,157.3,155.4,156.8,156.8,156.8,156.8,156.4,155.3,155.6 +118,163.4,164.4,164.2,164,163.7,160.5,158.2,158.2,158.2,158.2,157.4,155.5,156.9,156.9,156.9,156.9,156.5,155.4,155.5 +119,163.5,164.6,164.4,164.2,163.9,160.6,158.3,158.3,158.3,158.3,157.5,155.5,157,157,157,157,156.5,155.5,155.5 +120,163.6,164.8,164.5,164.4,164.1,160.8,158.4,158.4,158.4,158.4,157.6,155.6,157.1,157.1,157.1,157.1,156.6,155.5,155.4 +121,163.6,165,164.7,164.6,164.3,160.8,158.5,158.5,158.5,158.5,157.7,155.7,157.2,157.2,157.2,157.2,156.7,155.6,155.4 +122,163.7,165.2,164.9,164.7,164.5,160.9,158.6,158.6,158.6,158.5,157.8,155.8,157.3,157.3,157.3,157.2,156.8,155.7,155.5 +123,163.8,165.4,165.1,164.9,164.7,161,158.7,158.7,158.7,158.6,157.9,155.8,157.4,157.3,157.3,157.3,156.9,155.8,155.6 +124,163.9,165.6,165.3,165.1,164.8,161.1,158.8,158.8,158.8,158.7,158,155.9,157.4,157.4,157.4,157.4,156.9,155.8,155.7 +125,163.9,165.7,165.5,165.3,165,161.2,158.9,158.9,158.9,158.8,158.1,156,157.5,157.5,157.5,157.5,157,155.9,155.7 +126,164,165.9,165.7,165.5,165.2,161.3,159,159,159,158.9,158.2,156.1,157.6,157.6,157.6,157.6,157.1,156,155.8 +127,164.1,166.1,165.8,165.7,165.4,161.4,159.1,159.1,159.1,159,158.2,156.1,157.7,157.7,157.7,157.7,157.2,156,155.9 +128,164.1,166.3,166,165.8,165.6,161.5,159.2,159.2,159.2,159.1,158.3,156.2,157.8,157.8,157.8,157.7,157.3,156.1,155.9 +129,164.2,166.5,166.2,166,165.7,161.6,159.3,159.3,159.2,159.2,158.4,156.3,157.9,157.8,157.8,157.8,157.3,156.2,156 +130,164.3,166.6,166.4,166.2,165.9,161.7,159.4,159.4,159.3,159.3,158.5,156.3,157.9,157.9,157.9,157.9,157.4,156.2,156.1 +131,164.3,166.8,166.6,166.4,166.4,161.8,159.5,159.5,159.4,159.4,158.6,156.4,158,158,158,158,157.5,156.3,156.1 +132,164.4,167,166.7,166.5,166.4,161.9,159.6,159.5,159.5,159.5,158.7,156.5,158.1,158.1,158.1,158.1,157.6,156.4,156.2 +133,164.5,167.2,166.9,167,166.5,162,159.7,159.6,159.6,159.6,158.8,156.5,158.2,158.2,158.2,158.1,157.6,156.4,156.3 +134,164.5,167.3,167.4,167.1,166.8,162.1,159.7,159.7,159.7,159.7,158.8,156.6,158.2,158.2,158.2,158.2,157.7,156.5,156.3 +135,164.6,168,167.5,167.2,166.9,162.3,159.8,159.8,159.8,159.8,158.9,156.7,158.3,158.3,158.3,158.3,157.8,156.6,156.4 +136,164.7,168.4,167.6,167.4,166.9,162.4,159.9,159.9,159.9,159.9,159,156.7,158.4,158.4,158.4,158.4,157.9,156.6,156.5 +137,164.7,168.7,167.8,167.5,167,162.5,160,160,160,160,159.1,156.8,158.5,158.5,158.5,158.4,157.9,156.7,156.5 +138,164.8,169.1,167.9,167.6,167.4,162.7,160.1,160.1,160.1,160,159.2,156.9,158.6,158.5,158.5,158.5,158,156.8,156.6 +139,164.9,170.6,168,167.7,167.4,162.8,160.2,160.2,160.2,160.1,159.3,156.9,158.6,158.6,158.6,158.6,158.1,156.8,156.6 +140,164.9,173.1,168.1,168,167.5,162.9,160.3,160.3,160.3,160.2,159.3,157,158.7,158.7,158.7,158.7,158.2,156.9,156.7 +141,165,175.9,168.4,168.1,167.8,163.1,160.4,160.4,160.3,160.3,159.4,157.1,158.8,158.8,158.8,158.7,158.2,157,156.8 +142,165,178.7,168.5,168.2,168,163.3,160.5,160.5,160.4,160.4,159.5,157.1,158.9,158.9,158.8,158.8,158.3,157,156.8 +143,165.1,181.5,168.5,168.4,168.1,163.4,160.6,160.5,160.5,160.5,159.6,157.2,158.9,158.9,158.9,158.9,158.4,157.1,156.9 +144,165.1,184.4,168.8,168.7,168.3,163.6,160.6,160.6,160.6,160.6,159.7,157.2,159,159,159,159,158.4,157.1,157 +145,165.2,187.2,169.1,168.8,168.6,163.7,160.7,160.7,160.7,160.7,159.7,157.3,159.1,159.1,159.1,159,158.5,157.2,157 +146,165.2,190.1,169.1,169,168.6,163.9,160.8,160.8,160.8,160.7,159.8,157.4,159.2,159.1,159.1,159.1,158.6,157.3,157.1 +147,165.3,192.7,169.4,169.2,168.8,164,160.9,160.9,160.9,160.8,159.9,157.4,159.2,159.2,159.2,159.2,158.6,157.3,157.1 +148,165.4,193.8,169.6,169.3,169,164.2,161,161,161,160.9,160,157.5,159.3,159.3,159.3,159.3,158.7,157.4,157.2 +149,165.4,194.8,169.8,169.5,169.1,164.3,161.1,161.1,161,161,160.1,157.6,159.4,159.4,159.4,159.3,158.8,157.4,157.2 +150,165.5,195.7,170.4,169.7,169.4,164.4,161.2,161.1,161.1,161.1,160.1,157.6,159.5,159.4,159.4,159.4,158.8,157.5,157.3 +151,165.5,196.5,171,169.8,169.5,164.6,161.2,161.2,161.2,161.2,160.2,157.7,159.5,159.5,159.5,159.5,158.9,157.6,157.4 +152,165.6,197.2,173.5,170.1,169.8,164.7,161.3,161.3,161.3,161.3,160.3,157.7,159.6,159.6,159.6,159.6,159,157.6,157.4 +153,165.6,198,176.2,170.1,169.8,164.9,161.4,161.4,161.4,161.3,160.4,157.8,159.7,159.7,159.6,159.6,159.1,157.7,157.5 +154,165.7,198.6,179,170.4,170.1,165,161.5,161.5,161.5,161.4,160.5,157.8,159.7,159.7,159.7,159.7,159.1,157.7,157.5 +155,165.8,199.3,181.7,170.5,170.2,165.2,161.6,161.6,161.6,161.5,160.5,157.9,159.8,159.8,159.8,159.8,159.2,157.8,157.6 +156,165.8,199.9,184.2,170.8,170.4,165.3,161.7,161.7,161.6,161.6,160.6,158,159.9,159.9,159.9,159.8,159.3,157.9,157.6 +157,165.9,200.5,186.3,171.3,170.6,165.5,161.8,161.7,161.7,161.7,160.7,158,159.9,159.9,159.9,159.9,159.3,157.9,157.7 +158,165.9,201.1,188.1,172,170.8,165.6,161.8,161.8,161.8,161.8,160.8,158.1,160,160,160,160,159.4,158,157.8 +159,166,201.6,189.7,174.1,171,165.8,161.9,161.9,161.9,161.8,160.8,158.1,160.1,160.1,160.1,160,159.4,158,157.8 +160,166,202.1,191.1,176.7,171.1,165.9,162,162,162,161.9,160.9,158.2,160.2,160.1,160.1,160.1,159.5,158.1,157.9 +161,166.1,202.6,192.4,179.4,171.3,166.1,162.1,162.1,162.1,162,161,158.2,160.2,160.2,160.2,160.2,159.6,158.1,157.9 +162,166.1,203.1,193.5,182.1,171.5,166.3,162.2,162.2,162.1,162.1,161.1,158.3,160.3,160.3,160.3,160.2,159.6,158.2,158 +163,166.2,203.6,194.6,184.7,171.6,166.4,162.3,162.2,162.2,162.2,161.1,158.4,160.4,160.3,160.3,160.3,159.7,158.2,158 +164,166.3,204,195.5,186.9,171.8,166.5,162.3,162.3,162.3,162.3,161.2,158.4,160.4,160.4,160.4,160.4,159.8,158.3,158.1 +165,166.3,204.5,196.4,188.7,172,166.7,162.4,162.4,162.4,162.3,161.3,158.5,160.5,160.5,160.5,160.4,159.8,158.3,158.1 +166,166.4,204.9,197.3,190.3,172.2,166.8,162.5,162.5,162.5,162.4,161.3,158.5,160.6,160.6,160.5,160.5,159.9,158.4,158.2 +167,166.4,205.3,198,191.8,172.9,167,162.6,162.6,162.5,162.5,161.4,158.6,160.6,160.6,160.6,160.6,160,158.5,158.2 +168,166.5,205.7,198.8,193.1,173.5,167.1,162.7,162.6,162.6,162.6,161.5,158.6,160.7,160.7,160.7,160.6,160,158.5,158.3 +169,166.5,206.1,199.5,194.2,175.9,167.2,162.7,162.7,162.7,162.7,161.6,158.7,160.8,160.8,160.7,160.7,160.1,158.6,158.3 +170,166.6,206.5,200.2,195.3,178.4,167.4,162.8,162.8,162.8,162.7,161.6,158.7,160.8,160.8,160.8,160.8,160.1,158.6,158.4 +171,166.6,206.9,200.8,196.2,180.9,167.6,162.9,162.9,162.9,162.8,161.7,158.8,160.9,160.9,160.9,160.8,160.2,158.7,158.4 +172,166.7,207.3,201.4,197.1,183.4,167.7,163,163,162.9,162.9,161.8,158.8,161,161,160.9,160.9,160.3,158.7,158.5 +173,166.7,207.7,202,198,186.2,167.8,163.1,163,163,163,161.8,158.9,161,161,161,161,160.3,158.8,158.5 +174,166.8,208.1,202.5,198.8,188.3,168,163.1,163.1,163.1,163.1,161.9,158.9,161.1,161.1,161.1,161,160.4,158.8,158.6 +175,166.8,208.4,203.1,199.5,190.1,168.1,163.2,163.2,163.2,163.1,162,159,161.2,161.1,161.1,161.1,160.4,158.9,158.6 +176,166.9,208.8,203.6,200.2,191.7,168.3,163.3,163.3,163.2,163.2,162.1,159,161.2,161.2,161.2,161.2,160.5,158.9,158.7 +177,166.9,209.1,204.1,200.9,193.1,168.4,163.4,163.3,163.3,163.3,162.1,159.1,161.3,161.3,161.3,161.2,160.6,159,158.7 +178,167,209.5,204.6,201.5,194.4,168.6,163.4,163.4,163.4,163.4,162.2,159.1,161.4,161.3,161.3,161.3,160.6,159,158.8 +179,167,209.8,205.1,202.1,195.5,168.7,163.5,163.5,163.5,163.4,162.3,159.2,161.4,161.4,161.4,161.4,160.7,159.1,158.8 +180,167.1,210.2,205.5,202.7,196.5,168.9,163.6,163.6,163.6,163.5,162.3,159.2,161.5,161.5,161.5,161.4,160.7,159.1,158.9 +181,167.1,210.5,206,203.3,197.5,169,163.7,163.7,163.6,163.6,162.4,159.3,161.5,161.5,161.5,161.5,160.8,159.2,158.9 +182,167.2,210.9,206.4,203.8,198.4,169.2,163.7,163.7,163.7,163.7,162.5,159.3,161.6,161.6,161.6,161.6,160.9,159.2,159 +183,167.2,211.2,206.9,204.3,199.2,169.3,163.8,163.8,163.8,163.7,162.5,159.4,161.7,161.7,161.6,161.6,160.9,159.3,159 +184,167.3,211.5,207.3,204.8,200,169.5,163.9,163.9,163.9,163.8,162.6,159.4,161.7,161.7,161.7,161.7,161,159.3,159.1 +185,167.3,211.9,207.7,205.3,200.7,169.6,164,164,163.9,163.9,162.6,159.5,161.8,161.8,161.8,161.7,161,159.4,159.1 +186,167.3,212.2,208.1,205.8,201.4,169.8,164,164,164,164,162.7,159.5,161.9,161.8,161.8,161.8,161.1,159.4,159.2 +187,167.4,212.5,208.5,206.3,202.1,169.9,164.1,164.1,164.1,164,162.8,159.6,161.9,161.9,161.9,161.9,161.2,159.5,159.2 +188,167.4,212.8,208.9,206.7,202.7,170,164.2,164.2,164.2,164.1,162.8,159.6,162,162,162,161.9,161.2,159.5,159.3 +189,167.5,213.2,209.3,207.2,203.3,170.2,164.3,164.2,164.2,164.2,162.9,159.7,162,162,162,162,161.3,159.5,159.3 +190,167.5,213.5,209.7,207.6,203.9,170.4,164.3,164.3,164.3,164.3,162.9,159.7,162.1,162.1,162.1,162,161.3,159.6,159.3 +191,167.6,213.8,210,208,204.5,170.5,164.4,164.4,164.4,164.3,163,159.8,162.2,162.2,162.1,162.1,161.4,159.6,159.4 +192,167.6,214.1,210.4,208.5,205,170.6,164.5,164.5,164.4,164.4,163,159.8,162.2,162.2,162.2,162.2,161.4,159.7,159.4 +193,167.7,214.4,210.8,208.9,205.5,170.8,164.5,164.5,164.5,164.5,163.1,159.9,162.3,162.3,162.3,162.2,161.5,159.7,159.5 +194,167.7,214.7,211.1,209.3,206,170.9,164.6,164.6,164.6,164.5,163.2,159.9,162.3,162.3,162.3,162.3,161.6,159.8,159.5 +195,167.8,215.1,211.5,209.7,206.5,171.1,164.7,164.7,164.6,164.6,163.2,159.9,162.4,162.4,162.4,162.4,161.6,159.8,159.6 +196,167.8,215.4,211.9,210,207,171.2,164.7,164.7,164.7,164.7,163.3,160,162.5,162.5,162.4,162.4,161.7,159.9,159.6 +197,167.9,215.7,212.2,210.4,207.5,171.4,164.8,164.8,164.8,164.7,163.3,160,162.5,162.5,162.5,162.5,161.7,159.9,159.7 +198,167.9,216,212.6,210.8,207.9,171.5,164.9,164.9,164.8,164.8,163.4,160.1,162.6,162.6,162.6,162.5,161.8,160,159.7 +199,167.9,216.3,212.9,211.2,208.4,171.7,164.9,164.9,164.9,164.9,163.4,160.1,162.7,162.6,162.6,162.6,161.8,160,159.7 +200,168,216.6,213.2,211.5,208.8,171.8,165,165,165,164.9,163.4,160.2,162.7,162.7,162.7,162.7,161.9,160,159.8 +201,168,216.9,213.6,211.9,209.2,172,165.1,165,165,165,163.5,160.2,162.8,162.8,162.7,162.7,161.9,160.1,159.8 +202,168.1,217.2,213.9,212.3,209.6,172.1,165.1,165.1,165.1,165,163.5,160.3,162.8,162.8,162.8,162.8,162,160.1,159.9 +203,168.1,217.5,214.3,212.6,210,172.3,165.2,165.2,165.1,165.1,163.6,160.3,162.9,162.9,162.9,162.8,162.1,160.2,159.9 +204,168.2,217.9,214.6,213,210.4,172.4,165.2,165.2,165.2,165.1,163.6,160.3,162.9,162.9,162.9,162.9,162.1,160.2,160 +205,168.2,218.2,214.9,213.3,210.8,172.5,165.3,165.2,165.2,165.2,163.7,160.4,163,163,163,162.9,162.2,160.2,160 +206,168.2,218.5,215.3,213.7,211.2,172.7,165.3,165.3,165.3,165.2,163.7,160.4,163.1,163.1,163,163,162.2,160.3,160 +207,168.3,218.8,215.6,214,211.6,172.9,165.3,165.3,165.3,165.3,163.8,160.5,163.1,163.1,163.1,163.1,162.3,160.3,160.1 +208,168.3,219.1,215.9,214.4,212,173,165.4,165.4,165.4,165.3,163.8,160.5,163.2,163.2,163.2,163.1,162.3,160.4,160.1 +209,168.4,219.4,216.3,214.7,212.3,173.2,165.4,165.4,165.4,165.3,163.9,160.6,163.2,163.2,163.2,163.2,162.4,160.4,160.2 +210,168.4,219.7,216.6,215,212.7,173.3,165.4,165.4,165.4,165.4,163.9,160.6,163.3,163.3,163.3,163.2,162.4,160.4,160.2 +211,168.4,220,216.9,215.4,213.1,173.5,165.4,165.5,165.5,165.4,164,160.6,163.4,163.3,163.3,163.3,162.5,160.5,160.2 +212,168.5,220.3,217.2,215.7,213.4,173.6,165.5,165.5,165.5,165.4,164,160.7,163.4,163.4,163.4,163.4,162.5,160.5,160.3 +213,168.5,220.6,217.6,216,213.8,173.7,165.5,165.5,165.5,165.5,164.1,160.7,163.5,163.5,163.4,163.4,162.6,160.6,160.3 +214,168.6,220.9,217.9,216.4,214.1,173.9,165.5,165.5,165.5,165.5,164.1,160.8,163.5,163.5,163.5,163.5,162.6,160.6,160.4 +215,168.6,221.2,218.2,216.7,214.5,174.1,165.5,165.5,165.5,165.5,164.2,160.8,163.6,163.6,163.6,163.5,162.7,160.7,160.4 +216,168.7,221.5,218.5,217,214.8,174.2,165.5,165.6,165.6,165.5,164.2,160.8,163.6,163.6,163.6,163.6,162.7,160.7,160.4 +217,168.7,221.8,218.8,217.3,215.2,174.4,165.5,165.6,165.6,165.6,164.3,160.9,163.7,163.7,163.7,163.6,162.8,160.7,160.5 +218,168.7,222.1,219.2,217.7,215.5,174.5,165.5,165.6,165.6,165.6,164.3,160.9,163.8,163.7,163.7,163.7,162.8,160.8,160.5 +219,168.8,222.4,219.5,218,215.8,174.7,165.5,165.6,165.6,165.6,164.4,161,163.8,163.8,163.8,163.7,162.9,160.8,160.6 +220,168.8,222.7,219.8,218.3,216.2,174.8,165.6,165.6,165.6,165.6,164.4,161,163.9,163.9,163.8,163.8,162.9,160.8,160.6 +221,168.9,223,220.1,218.6,216.5,175,165.6,165.6,165.7,165.7,164.5,161,163.9,163.9,163.9,163.9,163,160.9,160.6 +222,168.9,223.3,220.4,219,216.8,175.1,165.6,165.6,165.7,165.7,164.5,161.1,164,164,164,163.9,163.1,160.9,160.7 +223,168.9,223.6,220.7,219.3,217.2,175.3,165.6,165.7,165.7,165.7,164.5,161.1,164,164,164,164,163.1,161,160.7 +224,169,223.9,221,219.6,217.5,175.4,165.6,165.7,165.7,165.7,164.6,161.2,164.1,164.1,164.1,164,163.2,161,160.7 +225,169,224.2,221.4,219.9,217.8,175.6,165.6,165.7,165.7,165.8,164.6,161.2,164.2,164.1,164.1,164.1,163.2,161,160.8 +226,169,224.5,221.7,220.2,218.2,175.7,165.6,165.7,165.8,165.8,164.7,161.2,164.2,164.2,164.2,164.1,163.3,161.1,160.8 +227,169.1,224.8,222,220.6,218.5,175.9,165.7,165.7,165.8,165.8,164.7,161.3,164.3,164.2,164.2,164.2,163.3,161.1,160.9 +228,169.1,225.1,222.3,220.9,218.8,176,165.7,165.8,165.8,165.8,164.8,161.3,164.3,164.3,164.3,164.3,163.4,161.2,160.9 +229,169.2,225.4,222.6,221.2,219.1,176.2,165.8,165.8,165.8,165.9,164.8,161.3,164.4,164.4,164.3,164.3,163.4,161.2,160.9 +230,169.2,225.7,222.9,221.5,219.5,176.4,165.9,165.9,165.8,165.9,164.9,161.4,164.4,164.4,164.4,164.4,163.5,161.2,161 +231,169.2,226,223.2,221.8,219.8,176.5,165.9,165.9,165.9,165.9,164.9,161.4,164.5,164.5,164.5,164.4,163.5,161.3,161 +232,169.3,226.3,223.5,222.1,220.1,176.7,166,166,166,165.9,165,161.5,164.5,164.5,164.5,164.5,163.6,161.3,161 +233,169.3,226.6,223.8,222.4,220.4,176.9,166.1,166.1,166,166,165,161.5,164.6,164.6,164.6,164.5,163.6,161.3,161.1 +234,169.3,226.9,224.1,222.8,220.7,177,166.2,166.1,166.1,166,165.1,161.5,164.7,164.6,164.6,164.6,163.7,161.4,161.1 +235,169.4,227.2,224.5,223.1,221.1,177.2,166.3,166.2,166.2,166.1,165.1,161.6,164.7,164.7,164.7,164.6,163.7,161.4,161.2 +236,169.4,227.4,224.8,223.4,221.4,177.3,166.4,166.3,166.2,166.2,165.1,161.6,164.8,164.7,164.7,164.7,163.8,161.4,161.2 +237,169.5,227.7,225.1,223.7,221.7,177.5,166.5,166.4,166.3,166.3,165.2,161.6,164.8,164.8,164.8,164.7,163.8,161.5,161.2 +238,169.5,228,225.4,224,222,177.7,166.6,166.5,166.4,166.3,165.2,161.7,164.9,164.9,164.8,164.8,163.9,161.5,161.3 +239,169.5,228.3,225.7,224.3,222.3,177.8,166.7,166.6,166.5,166.4,165.3,161.7,164.9,164.9,164.9,164.9,163.9,161.6,161.3 +240,169.6,228.6,226,224.6,222.6,178,166.8,166.7,166.6,166.5,165.3,161.7,165,165,164.9,164.9,164,161.6,161.3 +241,169.6,228.9,226.3,224.9,223,178.1,166.9,166.8,166.7,166.6,165.4,161.8,165,165,165,165,164,161.6,161.4 +242,169.6,229.2,226.6,225.2,223.3,178.3,167,166.9,166.8,166.7,165.4,161.8,165.1,165.1,165,165,164,161.7,161.4 +243,169.7,229.5,226.9,225.5,223.6,178.5,167.1,167,166.9,166.7,165.5,161.8,165.1,165.1,165.1,165.1,164.1,161.7,161.4 +244,169.7,229.7,227.2,225.8,223.9,178.6,167.1,167,167,166.8,165.5,161.9,165.2,165.2,165.2,165.1,164.1,161.7,161.5 +245,169.7,230,227.5,226.1,224.2,178.8,167.2,167.1,167.1,166.9,165.5,161.9,165.2,165.2,165.2,165.2,164.2,161.8,161.5 +246,169.8,230.3,227.8,226.4,224.5,179,167.3,167.2,167.1,167,165.6,162,165.3,165.3,165.3,165.2,164.2,161.8,161.5 +247,169.8,230.6,228.1,226.7,224.8,179.1,167.4,167.3,167.2,167.1,165.6,162,165.4,165.3,165.3,165.3,164.3,161.8,161.6 +248,169.9,230.9,228.4,227,225.1,179.3,167.5,167.4,167.3,167.2,165.7,162,165.4,165.4,165.4,165.3,164.3,161.9,161.6 +249,169.9,231.1,228.6,227.3,225.4,179.4,167.6,167.5,167.4,167.3,165.7,162.1,165.5,165.4,165.4,165.4,164.4,161.9,161.6 +250,169.9,231.4,228.9,227.6,225.7,179.6,167.7,167.6,167.5,167.4,165.8,162.1,165.5,165.5,165.5,165.4,164.4,161.9,161.7 +251,170,231.7,229.2,227.9,226,179.8,167.8,167.7,167.6,167.5,165.8,162.1,165.6,165.5,165.5,165.5,164.5,162,161.7 +252,170,232,229.5,228.2,226.3,179.9,167.9,167.8,167.7,167.5,165.8,162.2,165.6,165.6,165.6,165.5,164.5,162,161.7 +253,170,232.2,229.8,228.5,226.7,180.1,168,167.9,167.8,167.6,165.9,162.2,165.7,165.7,165.6,165.6,164.6,162,161.8 +254,170.1,232.5,230.1,228.8,227,180.2,168.1,167.9,167.9,167.7,165.9,162.2,165.7,165.7,165.7,165.6,164.6,162.1,161.8 +255,170.1,232.8,230.4,229.1,227.3,180.4,168.1,168,167.9,167.8,166,162.3,165.8,165.8,165.7,165.7,164.7,162.1,161.8 +256,170.1,233.1,230.7,229.4,227.6,180.6,168.2,168.1,168,167.9,166,162.3,165.8,165.8,165.8,165.8,164.7,162.1,161.9 +257,170.2,233.3,231,229.7,227.9,180.8,168.3,168.2,168.1,168,166,162.3,165.9,165.9,165.8,165.8,164.8,162.2,161.9 +258,170.2,233.6,231.3,230,228.2,180.9,168.4,168.3,168.2,168.1,166.1,162.4,165.9,165.9,165.9,165.9,164.8,162.2,161.9 +259,170.2,233.9,231.5,230.3,228.5,181.1,168.5,168.4,168.3,168.2,166.1,162.4,166,166,165.9,165.9,164.9,162.2,162 +260,170.3,234.1,231.8,230.6,228.8,181.3,168.6,168.5,168.4,168.2,166.2,162.4,166,166,166,166,164.9,162.3,162 +261,170.3,234.4,232.1,230.9,229.1,181.5,168.7,168.6,168.5,168.3,166.2,162.4,166.1,166.1,166.1,166,165,162.3,162 +262,170.3,234.7,232.4,231.2,229.4,181.6,168.8,168.7,168.6,168.4,166.2,162.5,166.1,166.1,166.1,166.1,165,162.3,162.1 +263,170.4,234.9,232.7,231.4,229.7,181.8,168.9,168.7,168.7,168.5,166.3,162.5,166.2,166.2,166.2,166.1,165,162.4,162.1 +264,170.4,235.2,232.9,231.7,229.9,182,168.9,168.8,168.7,168.6,166.3,162.5,166.2,166.2,166.2,166.2,165.1,162.4,162.1 +265,170.4,235.5,233.2,232,230.2,182.2,169,168.9,168.8,168.7,166.4,162.6,166.3,166.3,166.3,166.2,165.1,162.4,162.2 +266,170.5,235.7,233.5,232.3,230.5,182.4,169.1,169,168.9,168.8,166.4,162.6,166.4,166.3,166.3,166.3,165.2,162.5,162.2 +267,170.5,236,233.8,232.6,230.8,182.5,169.2,169.1,169,168.9,166.4,162.6,166.4,166.4,166.4,166.3,165.2,162.5,162.2 +268,170.5,236.2,234.1,232.9,231.1,182.9,169.3,169.2,169.1,168.9,166.5,162.7,166.5,166.4,166.4,166.4,165.3,162.5,162.3 +269,170.6,236.5,234.3,233.1,231.4,187.3,169.4,169.3,169.2,169,166.6,162.7,166.5,166.5,166.5,166.4,165.3,162.6,162.3 +270,170.6,236.8,234.6,233.4,231.7,188.6,169.5,169.4,169.3,169.1,166.6,162.7,166.6,166.5,166.5,166.5,165.4,162.6,162.3 +271,170.6,237,234.9,233.7,232,190,169.6,169.4,169.4,169.2,166.7,162.8,166.6,166.6,166.6,166.5,165.4,162.6,162.3 +272,170.7,237.3,235.1,234,232.3,191.4,169.7,169.5,169.4,169.3,166.7,162.8,166.7,166.6,166.6,166.6,165.5,162.6,162.4 +273,170.7,237.5,235.4,234.3,232.6,192.8,169.7,169.6,169.5,169.4,166.8,162.8,166.7,166.7,166.7,166.6,165.5,162.7,162.4 +274,170.7,237.8,235.7,234.5,232.9,194.2,169.8,169.7,169.6,169.5,166.9,162.8,166.8,166.7,166.7,166.7,165.5,162.7,162.4 +275,170.8,238,235.9,234.8,233.1,196.6,169.9,169.8,169.7,169.6,166.9,162.9,166.8,166.8,166.8,166.7,165.6,162.7,162.5 +276,170.8,238.3,236.2,235.1,233.4,198.6,170,169.9,169.8,169.6,167,162.9,166.9,166.8,166.8,166.8,165.6,162.8,162.5 +277,170.8,238.5,236.5,235.4,233.7,200.4,170.1,170,169.9,169.7,167,162.9,166.9,166.9,166.9,166.8,165.7,162.8,162.5 +278,170.8,238.8,236.7,235.6,234,202,170.2,170.1,170,169.8,167.1,163,167,166.9,166.9,166.9,165.7,162.8,162.6 +279,170.9,239,237,235.9,234.3,203.3,170.3,170.2,170.1,169.9,167.2,163,167,167,167,166.9,165.8,162.9,162.6 +280,170.9,239.3,237.3,236.2,234.5,204.5,170.4,170.2,170.1,170,167.2,163,167.1,167,167,167,165.8,162.9,162.6 +281,170.9,239.5,237.5,236.4,234.8,205.6,170.4,170.3,170.2,170.1,167.3,163,167.1,167.1,167.1,167,165.9,162.9,162.6 +282,171,239.8,237.8,236.7,235.1,206.6,170.5,170.4,170.3,170.2,167.4,163.1,167.2,167.1,167.1,167.1,165.9,162.9,162.7 +283,171,240,238,237,235.4,207.5,170.6,170.5,170.4,170.3,167.4,163.1,167.2,167.2,167.2,167.1,166,163,162.7 +284,171,240.3,238.3,237.2,235.7,208.4,170.7,170.6,170.5,170.3,167.5,163.1,167.3,167.3,167.2,167.2,166,163,162.7 +285,171.1,240.5,238.6,237.5,235.9,209.2,170.8,170.7,170.6,170.4,167.6,163.2,167.3,167.3,167.3,167.2,166,163,162.8 +286,171.1,240.8,238.8,237.8,236.2,210,170.9,170.8,170.7,170.5,167.7,163.2,167.4,167.4,167.3,167.3,166.1,163.1,162.8 +287,171.1,241,239.1,238,236.5,210.7,171,170.9,170.8,170.6,167.7,163.2,167.4,167.4,167.4,167.3,166.1,163.1,162.8 +288,171.2,241.2,239.3,238.3,236.7,211.4,171.1,170.9,170.8,170.7,167.8,163.2,167.5,167.5,167.4,167.4,166.2,163.1,162.8 +289,171.2,241.5,239.6,238.5,237,212,171.2,171,170.9,170.8,167.9,163.3,167.5,167.5,167.5,167.4,166.2,163.1,162.9 +290,171.2,241.7,239.8,238.8,237.3,212.6,171.2,171.1,171,170.9,168,163.3,167.6,167.5,167.5,167.5,166.3,163.2,162.9 +291,171.2,242,240.1,239.1,237.5,213.2,171.3,171.2,171.1,171,168,163.3,167.6,167.6,167.6,167.5,166.3,163.2,162.9 +292,171.3,242.2,240.3,239.3,237.8,213.8,171.4,171.3,171.2,171,168.1,163.3,167.7,167.6,167.6,167.6,166.3,163.2,163 +293,171.3,242.4,240.6,239.6,238.1,214.3,171.5,171.4,171.3,171.1,168.2,163.4,167.7,167.7,167.7,167.6,166.4,163.3,163 +294,171.3,242.7,240.8,239.8,238.3,214.9,171.6,171.5,171.4,171.2,168.2,163.4,167.8,167.7,167.7,167.7,166.4,163.3,163 +295,171.4,242.9,241.1,240.1,238.6,215.4,171.7,171.6,171.5,171.3,168.3,163.4,167.8,167.8,167.8,167.7,166.5,163.3,163 +296,171.4,243.1,241.3,240.3,238.9,215.9,171.8,171.7,171.6,171.4,168.4,163.5,167.9,167.8,167.8,167.8,166.5,163.3,163.1 +297,171.4,243.4,241.6,240.6,239.1,216.3,171.9,171.7,171.6,171.5,168.5,163.5,167.9,167.9,167.9,167.8,166.6,163.4,163.1 +298,171.4,243.6,241.8,240.8,239.4,216.8,172,171.8,171.7,171.6,168.5,163.5,168,167.9,167.9,167.9,166.6,163.4,163.1 +299,171.5,243.8,242.1,241.1,239.7,217.3,172,171.9,171.8,171.7,168.6,163.5,168,168,168,167.9,166.6,163.4,163.2 +300,171.5,244.1,242.3,241.3,239.9,217.7,172.1,172,171.9,171.7,168.7,163.6,168.1,168,168,168,166.7,163.5,163.2 +301,171.5,244.3,242.5,241.6,240.2,218.1,172.2,172.1,172,171.8,168.8,163.6,168.1,168.1,168.1,168,166.7,163.5,163.2 +302,171.6,244.5,242.8,241.8,240.4,218.6,172.3,172.2,172.1,171.9,168.8,163.6,168.2,168.1,168.1,168.1,166.8,163.5,163.2 +303,171.6,244.8,243,242.1,240.7,219,172.4,172.3,172.2,172,168.9,163.6,168.2,168.2,168.2,168.1,166.8,163.5,163.3 +304,171.6,245,243.3,242.3,240.9,219.4,172.5,172.4,172.3,172.1,169,163.7,168.3,168.2,168.2,168.2,166.8,163.6,163.3 +305,171.7,245.2,243.5,242.6,241.2,219.8,172.6,172.5,172.4,172.2,169,163.7,168.3,168.3,168.3,168.2,166.9,163.6,163.3 +306,171.7,245.4,243.7,242.8,241.4,220.2,172.7,172.5,172.4,172.3,169.1,163.7,168.3,168.3,168.3,168.3,166.9,163.6,163.3 +307,171.7,245.7,244,243.1,241.7,220.5,172.8,172.6,172.5,172.4,169.2,163.7,168.4,168.4,168.3,168.3,167,163.6,163.4 +308,171.7,245.9,244.2,243.3,241.9,220.9,172.9,172.7,172.6,172.5,169.3,163.8,168.4,168.4,168.4,168.3,167,163.7,163.4 +309,171.8,246.1,244.5,243.5,242.2,221.3,172.9,172.8,172.7,172.5,169.3,163.8,168.5,168.5,168.4,168.4,167,163.7,163.4 +310,171.8,246.3,244.7,243.8,242.4,221.7,173,172.9,172.8,172.6,169.4,163.8,168.5,168.5,168.5,168.4,167.1,163.7,163.4 +311,171.8,246.6,244.9,244,242.7,222,173.1,173,172.9,172.7,169.5,163.8,168.6,168.6,168.5,168.5,167.1,163.7,163.5 +312,171.8,246.8,245.2,244.3,242.9,222.4,173.2,173.1,173,172.8,169.6,163.8,168.6,168.6,168.6,168.5,167.2,163.8,163.5 +313,171.9,247,245.4,244.5,243.2,222.7,173.3,173.2,173.1,172.9,169.6,163.9,168.7,168.7,168.6,168.6,167.2,163.8,163.5 +314,171.9,247.2,245.6,244.7,243.4,223.1,173.4,173.3,173.2,173,169.7,163.9,168.7,168.7,168.7,168.6,167.2,163.8,163.5 +315,171.9,247.4,245.8,245,243.7,223.4,173.5,173.4,173.3,173.1,169.8,163.9,168.8,168.7,168.7,168.7,167.3,163.8,163.6 +316,172,247.7,246.1,245.2,243.9,223.8,173.6,173.4,173.3,173.2,169.9,163.9,168.8,168.8,168.8,168.7,167.3,163.9,163.6 +317,172,247.9,246.3,245.4,244.2,224.1,173.7,173.5,173.4,173.3,169.9,164,168.8,168.8,168.8,168.8,167.3,163.9,163.6 +318,172,248.1,246.5,245.7,244.4,224.5,173.8,173.6,173.5,173.3,170,164,168.9,168.9,168.8,168.8,167.4,163.9,163.6 +319,172,248.3,246.8,245.9,244.6,224.8,173.8,173.7,173.6,173.4,170.1,164,168.9,168.9,168.9,168.8,167.4,163.9,163.7 +320,172.1,248.5,247,246.1,244.9,225.2,173.9,173.8,173.7,173.5,170.2,164,169,169,168.9,168.9,167.4,164,163.7 +321,172.1,248.7,247.2,246.4,245.1,225.5,174,173.9,173.8,173.6,170.2,164.1,169,169,169,168.9,167.5,164,163.7 +322,172.1,249,247.4,246.6,245.4,225.8,174.1,174,173.9,173.7,170.3,164.1,169.1,169,169,169,167.5,164,163.7 +323,172.1,249.2,247.7,246.8,245.6,226.1,174.2,174.1,174,173.8,170.4,164.1,169.1,169.1,169.1,169,167.5,164,163.8 +324,172.2,249.4,247.9,247.1,245.8,226.5,174.3,174.2,174.1,173.9,170.4,164.1,169.1,169.1,169.1,169,167.5,164.1,163.8 +325,172.2,249.6,248.1,247.3,246.1,226.8,174.4,174.3,174.2,174,170.5,164.1,169.2,169.2,169.1,169.1,167.6,164.1,163.8 +326,172.2,249.8,248.3,247.5,246.3,227.1,174.5,174.4,174.3,174.1,170.6,164.2,169.2,169.2,169.2,169.1,167.6,164.1,163.8 +327,172.3,250,248.5,247.7,246.5,227.4,174.6,174.5,174.3,174.2,170.7,164.2,169.2,169.2,169.2,169.1,167.6,164.1,163.9 +328,172.3,250.2,248.8,248,246.8,227.8,174.7,174.5,174.4,174.3,170.7,164.2,169.3,169.3,169.2,169.2,167.6,164.2,163.9 +329,172.3,250.5,249,248.2,247,228.1,174.8,174.6,174.5,174.3,170.8,164.2,169.3,169.3,169.3,169.2,167.6,164.2,163.9 +330,172.3,250.7,249.2,248.4,247.2,228.4,174.9,174.7,174.6,174.4,170.9,164.2,169.3,169.3,169.3,169.2,167.6,164.2,163.9 +331,172.4,250.9,249.4,248.6,247.5,228.7,175,174.8,174.7,174.5,171,164.3,169.4,169.3,169.3,169.3,167.7,164.2,164 +332,172.4,251.1,249.6,248.9,247.7,229,175,174.9,174.8,174.6,171,164.3,169.4,169.4,169.4,169.3,167.7,164.3,164 +333,172.4,251.3,249.9,249.1,247.9,229.4,175.1,175,174.9,174.7,171.1,164.3,169.4,169.4,169.4,169.3,167.7,164.3,164 +334,172.4,251.5,250.1,249.3,248.1,229.7,175.2,175.1,175,174.8,171.2,164.3,169.4,169.4,169.4,169.3,167.7,164.3,164 +335,172.5,251.7,250.3,249.5,248.4,230,175.3,175.2,175.1,174.9,171.3,164.3,169.4,169.4,169.4,169.4,167.7,164.3,164.1 +336,172.5,251.9,250.5,249.7,248.6,230.3,175.4,175.3,175.2,175,171.3,164.4,169.5,169.5,169.4,169.4,167.7,164.3,164.1 +337,172.5,252.1,250.7,250,248.8,230.6,175.5,175.4,175.3,175.1,171.4,164.4,169.5,169.5,169.4,169.4,167.7,164.4,164.1 +338,172.5,252.3,250.9,250.2,249,230.9,175.6,175.5,175.4,175.2,171.5,164.4,169.5,169.5,169.5,169.4,167.7,164.4,164.1 +339,172.6,252.5,251.2,250.4,249.3,231.3,175.7,175.6,175.5,175.3,171.6,164.4,169.5,169.5,169.5,169.4,167.7,164.4,164.1 +340,172.6,252.7,251.4,250.6,249.5,231.6,175.8,175.7,175.6,175.4,171.6,164.4,169.5,169.5,169.5,169.4,167.7,164.4,164.2 +341,172.6,253,251.6,250.8,249.7,231.9,175.9,175.8,175.7,175.5,171.7,164.5,169.5,169.5,169.5,169.4,167.7,164.5,164.2 +342,172.6,253.2,251.8,251,249.9,232.2,176,175.9,175.7,175.6,171.8,164.5,169.5,169.5,169.5,169.4,167.7,164.5,164.2 +343,172.7,253.4,252,251.3,250.2,232.5,176.1,176,175.8,175.7,171.9,164.5,169.4,169.5,169.5,169.4,167.7,164.5,164.2 +344,172.7,253.6,252.2,251.5,250.4,232.8,176.2,176,175.9,175.7,172,164.5,169.4,169.5,169.4,169.4,167.7,164.5,164.3 +345,172.7,253.8,252.4,251.7,250.6,233.1,176.3,176.1,176,175.8,172,164.5,169.4,169.4,169.4,169.4,167.8,164.5,164.3 +346,172.7,254,252.6,251.9,250.8,233.4,176.4,176.2,176.1,175.9,172.1,164.6,169.4,169.4,169.4,169.4,167.8,164.6,164.3 +347,172.8,254.2,252.8,252.1,251,233.7,176.5,176.3,176.2,176,172.2,164.6,169.4,169.4,169.4,169.4,167.8,164.6,164.3 +348,172.8,254.4,253.1,252.3,251.3,234,176.6,176.4,176.3,176.1,172.3,164.6,169.3,169.4,169.4,169.3,167.8,164.6,164.3 +349,172.8,254.6,253.3,252.5,251.5,234.3,176.7,176.5,176.4,176.2,172.3,164.6,169.3,169.3,169.4,169.3,167.8,164.6,164.4 +350,172.8,254.8,253.5,252.8,251.7,234.6,176.8,176.6,176.5,176.3,172.4,164.6,169.3,169.3,169.3,169.3,167.8,164.6,164.4 +351,172.9,255,253.7,253,251.9,234.9,176.9,176.7,176.6,176.4,172.5,164.7,169.2,169.3,169.3,169.3,167.8,164.7,164.4 +352,172.9,255.2,253.9,253.2,252.1,235.2,177,176.8,176.7,176.5,172.6,164.7,169.2,169.3,169.3,169.3,167.8,164.7,164.4 +353,172.9,255.4,254.1,253.4,252.3,235.5,177.1,176.9,176.8,176.6,172.6,164.7,169.3,169.3,169.2,169.2,167.8,164.7,164.5 +354,172.9,255.6,254.3,253.6,252.6,235.8,177.2,177,176.9,176.7,172.7,164.7,169.3,169.3,169.3,169.2,167.8,164.7,164.5 +355,173,255.8,254.5,253.8,252.8,236.1,177.3,177.1,177,176.8,172.8,164.7,169.4,169.4,169.3,169.3,167.8,164.8,164.5 +356,173,256,254.7,254,253,236.4,177.3,177.2,177.1,176.9,172.9,164.7,169.5,169.4,169.4,169.3,167.9,164.8,164.5 +357,173,256.2,254.9,254.2,253.2,236.7,177.4,177.3,177.2,177,172.9,164.8,169.6,169.5,169.4,169.4,167.9,164.8,164.5 +358,173,256.4,255.1,254.4,253.4,237,177.5,177.4,177.3,177.1,173,164.8,169.6,169.6,169.5,169.4,167.9,164.8,164.6 +359,173.1,256.5,255.3,254.6,253.6,237.3,177.6,177.5,177.4,177.2,173.1,164.8,169.7,169.6,169.6,169.5,167.9,164.8,164.6 +360,173.1,256.7,255.5,254.8,253.8,237.6,177.7,177.6,177.5,177.3,173.2,164.8,169.8,169.7,169.7,169.6,167.9,164.9,164.6 +361,173.1,256.9,255.7,255,254,237.9,177.8,177.7,177.6,177.4,173.3,164.8,169.9,169.8,169.7,169.6,167.9,164.9,164.6 +362,173.1,257.1,255.9,255.2,254.3,238.2,177.9,177.8,177.7,177.5,173.3,164.8,170,169.9,169.8,169.7,167.9,164.9,164.6 +363,173.2,257.3,256.1,255.4,254.5,238.5,178,177.9,177.8,177.6,173.4,164.9,170,170,169.9,169.8,168,164.9,164.7 +364,173.2,257.5,256.3,255.7,254.7,238.8,178.1,178,177.9,177.7,173.5,164.9,170.1,170,170,169.9,168,164.9,164.7 +365,173.2,257.7,256.5,255.9,254.9,239.1,178.2,178.1,178,177.8,173.6,164.9,170.2,170.1,170.1,169.9,168,165,164.7 +366,173.2,257.9,256.7,256.1,255.1,239.4,178.4,178.2,178.1,177.9,173.7,164.9,170.3,170.2,170.1,170,168.1,165,164.7 +367,173.3,258.1,256.9,256.3,255.3,239.7,178.5,178.3,178.2,178,173.7,164.9,170.4,170.3,170.2,170.1,168.1,165,164.7 +368,173.3,258.3,257.1,256.5,255.5,240,178.6,178.4,178.3,178.1,173.8,164.9,170.4,170.3,170.3,170.2,168.2,165,164.8 +369,173.3,258.5,257.3,256.7,255.7,240.3,178.7,178.5,178.4,178.2,173.9,165,170.5,170.4,170.4,170.2,168.2,165,164.8 +370,173.3,258.7,257.5,256.9,255.9,240.6,178.8,178.6,178.5,178.3,174,165,170.6,170.5,170.4,170.3,168.2,165,164.8 +371,173.3,258.9,257.7,257.1,256.1,240.9,178.9,178.7,178.6,178.4,174,165,170.7,170.6,170.5,170.4,168.3,165.1,164.8 +372,173.4,259,257.9,257.3,256.3,241.1,179,178.8,178.7,178.5,174.1,165,170.7,170.6,170.6,170.5,168.3,165.1,164.8 +373,173.4,259.2,258.1,257.5,256.5,241.4,179.1,178.9,178.8,178.6,174.2,165,170.8,170.7,170.6,170.5,168.4,165.1,164.9 +374,173.4,259.4,258.3,257.7,256.7,241.7,179.2,179,178.9,178.7,174.3,165,170.9,170.8,170.7,170.6,168.4,165.1,164.9 +375,173.4,259.6,258.5,257.9,256.9,242,179.3,179.1,179,178.8,174.4,165,170.9,170.8,170.8,170.7,168.5,165.1,164.9 +376,173.5,259.8,258.7,258.1,257.1,242.3,179.4,179.2,179.1,178.9,174.4,165.1,171,170.9,170.8,170.7,168.5,165.2,164.9 +377,173.5,260,258.9,258.2,257.3,242.6,179.5,179.4,179.2,179,174.5,165.1,171.1,171,170.9,170.8,168.6,165.2,164.9 +378,173.5,260.2,259.1,258.4,257.5,242.8,179.6,179.5,179.3,179.1,174.6,165.1,171.1,171.1,171,170.9,168.6,165.2,165 +379,173.5,260.4,259.3,258.6,257.7,243.1,179.7,179.6,179.4,179.2,174.7,165.1,171.2,171.1,171.1,170.9,168.7,165.2,165 +380,173.6,260.5,259.4,258.8,257.9,243.4,179.8,179.7,179.6,179.3,174.7,165.1,171.3,171.2,171.1,171,168.7,165.2,165 +381,173.6,260.7,259.6,259,258.1,243.7,179.9,179.8,179.7,179.4,174.8,165.1,171.4,171.3,171.2,171.1,168.8,165.2,165 +382,173.6,260.9,259.8,259.2,258.3,243.9,180,179.9,179.8,179.5,174.9,165.1,171.4,171.3,171.3,171.1,168.8,165.3,165 +383,173.6,261.1,260,259.4,258.5,244.2,180.1,180,179.9,179.7,175,165.2,171.5,171.4,171.3,171.2,168.9,165.3,165.1 +384,173.6,261.3,260.2,259.6,258.7,244.5,180.2,180.1,180,179.8,175,165.2,171.6,171.5,171.4,171.3,169,165.3,165.1 +385,173.7,261.5,260.4,259.8,258.9,244.8,180.4,180.2,180.1,179.9,175.1,165.2,171.6,171.5,171.5,171.3,169,165.3,165.1 +386,173.7,261.7,260.6,260,259.1,245,180.5,180.3,180.2,180,175.4,165.2,171.7,171.6,171.5,171.4,169.1,165.3,165.1 +387,173.7,261.8,260.8,260.2,259.3,245.3,180.6,180.4,180.3,180.1,175.4,165.2,171.8,171.7,171.6,171.5,169.1,165.3,165.1 +388,173.7,262,261,260.4,259.5,245.6,180.7,180.5,180.4,180.2,175.5,165.2,171.8,171.7,171.7,171.5,169.2,165.4,165.1 +389,173.8,262.2,261.2,260.6,259.7,245.9,180.8,180.6,180.5,180.3,175.5,165.2,171.9,171.8,171.7,171.6,169.2,165.4,165.2 +390,173.8,262.4,261.3,260.8,259.9,246.1,180.9,180.8,180.6,180.4,175.6,165.3,172,171.9,171.8,171.7,169.3,165.4,165.2 +391,173.8,262.6,261.5,261,260.1,246.4,181,180.9,180.7,180.5,175.6,165.3,172,171.9,171.9,171.7,169.3,165.4,165.2 +392,173.8,262.8,261.7,261.1,260.3,246.7,181.1,181,180.9,180.6,175.7,165.3,172.1,172,171.9,171.8,169.4,165.4,165.2 +393,173.8,262.9,261.9,261.3,260.5,246.9,181.2,181.1,181,180.7,175.8,165.3,172.2,172.1,172,171.9,169.4,165.4,165.2 +394,173.9,263.1,262.1,261.5,260.7,247.2,181.3,181.2,181.1,180.8,175.9,165.4,172.2,172.1,172.1,171.9,169.5,165.5,165.3 +395,173.9,263.3,262.3,261.7,260.9,247.4,181.5,181.3,181.2,181,175.9,165.4,172.3,172.2,172.1,172,169.6,165.5,165.3 +396,173.9,263.5,262.5,261.9,261.1,247.7,181.6,181.4,181.3,181.1,175.9,165.4,172.4,172.3,172.2,172.1,169.6,165.5,165.3 +397,173.9,263.7,262.6,262.1,261.3,248,181.7,181.5,181.4,181.2,176.1,165.4,172.4,172.3,172.3,172.1,169.7,165.5,165.3 +398,174,263.8,262.8,262.3,261.5,248.2,181.8,181.7,181.5,181.3,176.2,165.5,172.5,172.4,172.3,172.2,169.7,165.5,165.3 +399,174,264,263,262.5,261.6,248.5,181.9,181.8,181.6,181.4,176.2,165.5,172.6,172.5,172.4,172.3,169.8,165.5,165.3 +400,174,264.2,263.2,262.6,261.8,248.7,182,181.9,181.8,181.5,176.3,165.5,172.6,172.5,172.5,172.3,169.8,165.5,165.4 +401,174,264.4,263.4,262.8,262,249,182.2,182,181.9,181.6,176.4,165.5,172.7,172.6,172.5,172.4,169.9,165.6,165.4 +402,174,264.5,263.6,263,262.2,249.3,182.3,182.1,182,181.7,176.5,165.6,172.8,172.7,172.6,172.5,169.9,165.6,165.4 +403,174.1,264.7,263.7,263.2,262.4,249.5,182.4,182.2,182.1,181.9,176.6,165.6,172.8,172.7,172.7,172.5,170,165.6,165.4 +404,174.1,264.9,263.9,263.4,262.6,249.8,182.5,182.4,182.2,182,176.6,165.6,172.9,172.8,172.7,172.6,170,165.6,165.4 +405,174.1,265.1,264.1,263.6,262.8,250,182.6,182.5,182.3,182.1,176.7,165.7,173,172.9,172.8,172.7,170.1,165.6,165.4 +406,174.1,265.3,264.3,263.8,263,250.3,182.7,182.6,182.4,182.2,176.8,165.7,173,172.9,172.9,172.7,170.1,165.6,165.5 +407,174.1,265.4,264.5,263.9,263.2,250.5,182.9,182.7,182.5,182.3,176.9,165.7,173.1,173,172.9,172.8,170.2,165.7,165.5 +408,174.2,265.6,264.7,264.1,263.3,250.8,183,182.8,183,182.7,177,165.7,173.2,173.1,173,172.9,170.3,165.7,165.5 +409,174.2,265.8,264.8,264.3,263.5,251,183.4,183.2,183,182.7,177.1,165.8,173.2,173.1,173.1,172.9,170.3,165.7,165.5 +410,174.2,266,265,264.5,263.7,251.3,183.7,183.2,183,182.9,177.2,165.8,173.3,173.2,173.1,173,170.4,165.7,165.5 +411,174.2,266.1,265.2,264.7,263.9,251.5,184,183.4,183.2,182.9,177.3,165.8,173.4,173.3,173.2,173.1,170.4,165.7,165.5 +412,174.3,266.3,265.4,264.9,264.1,251.8,184.2,183.4,183.3,182.9,177.3,165.9,173.4,173.3,173.3,173.1,170.5,165.7,165.6 +413,174.3,266.5,265.5,265,264.3,252,185.1,183.5,183.3,182.9,177.5,165.9,173.5,173.4,173.3,173.2,170.5,165.7,165.6 +414,174.3,266.6,265.7,265.2,264.5,252.3,187.7,183.5,183.3,183.2,177.5,165.9,173.6,173.5,173.4,173.2,170.6,165.8,165.6 +415,174.3,266.8,265.9,265.4,264.6,252.5,190.6,183.8,183.6,183.2,177.6,166,173.6,173.5,173.5,173.3,170.6,165.8,165.6 +416,174.3,267,266.1,265.6,264.8,252.7,193.5,183.8,183.6,183.3,177.7,166,173.7,173.6,173.5,173.4,170.7,165.8,165.6 +417,174.4,267.2,266.3,265.8,265,253,196.4,183.8,183.6,183.3,177.8,166,173.8,173.7,173.6,173.4,170.7,165.8,165.6 +418,174.4,267.3,266.4,265.9,265.2,253.2,198.8,183.8,183.8,183.7,177.9,166.1,173.8,173.7,173.7,173.5,170.8,165.8,165.7 +419,174.4,267.5,266.6,266.1,265.4,253.5,200.4,184.2,184,183.7,178,166.1,173.9,173.8,173.7,173.6,170.8,165.8,165.7 +420,174.4,267.7,266.8,266.3,265.6,253.7,201.8,184.3,184.1,183.7,178.1,166.1,174,173.9,173.8,173.6,170.9,165.8,165.7 +421,174.4,267.9,267,266.5,265.7,253.9,203,184.3,184.2,184,178.2,166.2,174,173.9,173.9,173.7,171,165.9,165.7 +422,174.5,268,267.1,266.6,265.9,254.2,204.1,184.6,184.4,184,178.2,166.2,174.1,174,173.9,173.8,171,165.9,165.7 +423,174.5,268.2,267.3,266.8,266.1,254.4,205.2,184.7,184.4,184.2,178.4,166.2,174.2,174.1,174,173.8,171.1,165.9,165.7 +424,174.5,268.4,267.5,267,266.3,254.6,206.1,185.3,184.7,184.3,178.5,166.2,174.2,174.1,174.1,173.9,171.1,165.9,165.7 +425,174.5,268.5,267.7,267.2,266.5,254.9,206.9,185.8,184.7,184.5,178.6,166.3,174.3,174.2,174.1,174,171.2,165.9,165.8 +426,174.5,268.7,267.8,267.4,266.6,255.1,207.6,186.8,184.9,184.6,178.7,166.3,174.4,174.3,174.2,174,171.2,165.9,165.8 +427,174.6,268.9,268,267.5,266.8,255.4,208.3,188.6,185,184.7,178.7,166.3,174.4,174.3,174.3,174.1,171.3,165.9,165.8 +428,174.6,269,268.2,267.7,267,255.6,209,190.4,185.1,184.8,178.8,166.4,174.5,174.4,174.3,174.2,171.3,165.9,165.8 +429,174.6,269.2,268.4,267.9,267.2,255.8,209.6,192.3,185.2,185,178.9,166.4,174.6,174.5,174.4,174.2,171.4,166,165.8 +430,174.6,269.4,268.5,268.1,267.4,256,210.2,194.1,185.5,185.1,179,166.4,174.6,174.5,174.5,174.3,171.4,166,165.8 +431,174.6,269.5,268.7,268.2,267.5,256.3,210.8,196.4,185.9,185.3,179.1,166.5,174.7,174.6,174.5,174.4,171.5,166,165.8 +432,174.7,269.7,268.9,268.4,267.7,256.5,211.4,198.3,186.5,185.3,179.2,166.5,174.8,174.7,174.6,174.4,171.6,166,165.9 +433,174.7,269.9,269,268.6,267.9,256.7,211.9,199.9,187.2,185.5,179.3,166.5,174.8,174.7,174.7,174.5,171.6,166,165.9 +434,174.7,270,269.2,268.8,268.1,257,212.4,201.4,189,185.7,179.4,166.6,174.9,174.8,174.7,174.6,171.7,166,165.9 +435,174.7,270.2,269.4,268.9,268.2,257.2,212.9,202.7,190.8,185.8,179.5,166.6,175,174.9,174.8,174.6,171.7,166,165.9 +436,174.7,270.4,269.6,269.1,268.4,257.4,213.4,203.8,192.6,185.9,179.6,166.6,175.1,174.9,174.9,174.7,171.8,166.1,165.9 +437,174.8,270.5,269.7,269.3,268.6,257.6,213.8,204.8,194.4,186.1,179.7,166.7,175.1,175,174.9,174.8,171.8,166.1,165.9 +438,174.8,270.7,269.9,269.4,268.8,257.9,214.3,205.8,196.9,186.3,179.8,166.7,175.2,175.1,175,174.9,171.9,166.1,165.9 +439,174.8,270.9,270.1,269.6,268.9,258.1,214.7,206.7,198.8,186.4,179.9,166.7,175.3,175.2,175.1,174.9,171.9,166.1,166 +440,174.8,271,270.2,269.8,269.1,258.3,215.1,207.5,200.4,186.5,180,166.8,175.3,175.2,175.1,175,172,166.1,166 +441,174.8,271.2,270.4,270,269.3,258.5,215.5,208.3,201.9,187.2,180.1,166.8,175.4,175.3,175.2,175.1,172.1,166.1,166 +442,174.9,271.4,270.6,270.1,269.5,258.8,215.9,209,203.2,187.7,180.2,166.8,175.5,175.4,175.3,175.1,172.1,166.1,166 +443,174.9,271.5,270.7,270.3,269.6,259,216.3,209.7,204.4,188.8,180.3,166.9,175.5,175.4,175.3,175.2,172.2,166.1,166 +444,174.9,271.7,270.9,270.5,269.8,259.2,216.7,210.3,205.4,190.5,180.4,166.9,175.6,175.5,175.4,175.3,172.2,166.1,166 +445,174.9,271.9,271.1,270.6,270,259.4,217.1,211,206.4,192.1,180.5,166.9,175.7,175.6,175.5,175.3,172.3,166.2,166 +446,174.9,272,271.2,270.8,270.2,259.6,217.5,211.6,207.2,193.8,180.6,167,175.7,175.6,175.6,175.4,172.3,166.2,166.1 +447,175,272.2,271.4,271,270.3,259.9,217.8,212.1,208.1,195.5,180.8,167,175.8,175.7,175.6,175.5,172.4,166.2,166.1 +448,175,272.3,271.6,271.1,270.5,260.1,218.2,212.7,208.9,198.1,180.9,167,175.9,175.8,175.7,175.5,172.4,166.2,166.1 +449,175,272.5,271.7,271.3,270.7,260.3,218.6,213.2,209.6,200,181,167.1,176,175.8,175.8,175.6,172.5,166.2,166.1 +450,175,272.7,271.9,271.5,270.8,260.5,218.9,213.7,210.3,201.7,181.1,167.1,176,175.9,175.8,175.7,172.6,166.2,166.1 +451,175,272.8,272.1,271.6,271,260.7,219.3,214.2,211,203.1,181.2,167.1,176.1,176,175.9,175.7,172.6,166.2,166.1 +452,175.1,273,272.2,271.8,271.2,260.9,219.6,214.7,211.6,204.4,181.3,167.2,176.2,176.1,176,175.8,172.7,166.2,166.1 +453,175.1,273.2,272.4,272,271.4,261.2,219.9,215.2,212.2,205.5,181.4,167.2,176.2,176.1,176,175.9,172.7,166.2,166.1 +454,175.1,273.3,272.6,272.1,271.5,261.4,220.3,215.6,212.8,206.5,181.5,167.2,176.3,176.2,176.1,176,172.8,166.3,166.2 +455,175.1,273.5,272.7,272.3,271.7,261.6,220.6,216.1,213.3,207.5,181.6,167.2,176.4,176.3,176.2,176,172.8,166.3,166.2 +456,175.1,273.6,272.9,272.5,271.9,261.8,220.9,216.5,213.9,208.3,181.7,167.3,176.5,176.3,176.3,176.1,172.9,166.3,166.2 +457,175.1,273.8,273.1,272.6,272,262,221.3,216.9,214.4,209.2,181.8,167.3,176.5,176.4,176.3,176.2,173,166.3,166.2 +458,175.2,273.9,273.2,272.8,272.2,262.2,221.6,217.4,214.9,209.9,181.9,167.3,176.6,176.5,176.4,176.2,173,166.3,166.2 +459,175.2,274.1,273.4,273,272.4,262.4,221.9,217.8,215.4,210.7,182.1,167.4,176.7,176.6,176.5,176.3,173.1,166.3,166.2 +460,175.2,274.3,273.5,273.1,272.5,262.6,222.2,218.2,215.8,211.4,182.2,167.4,176.7,176.6,176.5,176.4,173.1,166.3,166.2 +461,175.2,274.4,273.7,273.3,272.7,262.9,222.6,218.6,216.3,212,182.3,167.4,176.8,176.7,176.6,176.4,173.2,166.3,166.2 +462,175.2,274.6,273.9,273.5,272.9,263.1,222.9,218.9,216.7,212.7,182.4,167.5,176.9,176.8,176.7,176.5,173.2,166.3,166.3 +463,175.3,274.7,274,273.6,273,263.3,223.2,219.3,217.2,213.3,182.5,167.5,177,176.8,176.8,176.6,173.3,166.3,166.3 +464,175.3,274.9,274.2,273.8,273.2,263.5,223.5,219.7,217.6,213.8,182.6,167.5,177,176.9,176.8,176.7,173.4,166.4,166.3 +465,175.3,275.1,274.4,274,273.4,263.7,223.8,220.1,218,214.4,182.7,167.6,177.1,177,176.9,176.7,173.4,166.4,166.3 +466,175.3,275.2,274.5,274.1,273.5,263.9,224.1,220.4,218.4,214.9,182.8,167.6,177.2,177.1,177,176.8,173.5,166.4,166.3 +467,175.3,275.4,274.7,274.3,273.7,264.1,224.4,220.8,218.8,215.4,183,167.6,177.2,177.1,177,176.9,173.5,166.4,166.3 +468,175.4,275.5,274.8,274.4,273.9,264.3,224.8,221.2,219.2,215.9,183.1,167.7,177.3,177.2,177.1,177,173.6,166.5,166.3 +469,175.4,275.7,275,274.6,274,264.5,225.1,221.5,219.6,216.4,183.2,167.7,177.4,177.3,177.2,177,173.6,166.5,166.3 +470,175.4,275.8,275.2,274.8,274.2,264.7,225.4,221.9,220,216.9,183.3,167.7,177.5,177.4,177.3,177.1,173.7,166.5,166.4 +471,175.4,276,275.3,274.9,274.4,264.9,225.7,222.2,220.4,217.3,183.5,167.8,177.5,177.4,177.3,177.2,173.8,166.5,166.4 +472,175.4,276.1,275.5,275.1,274.5,265.1,226,222.5,220.7,217.8,183.6,167.8,177.6,177.5,177.4,177.2,173.8,166.5,166.4 +473,175.4,276.3,275.6,275.3,274.7,265.3,226.3,222.9,221.1,218.2,183.7,167.8,177.7,177.6,177.5,177.3,173.9,166.6,166.4 +474,175.5,276.5,275.8,275.4,274.9,265.5,226.6,223.2,221.5,218.6,183.8,167.9,177.8,177.7,177.6,177.4,173.9,166.6,166.4 +475,175.5,276.6,275.9,275.6,275,265.7,226.9,223.6,221.8,219.1,183.9,167.9,177.8,177.7,177.6,177.5,174,166.6,166.4 +476,175.5,276.8,276.1,275.7,275.2,265.9,227.2,223.9,222.2,219.5,184,167.9,177.9,177.8,177.7,177.5,174.1,166.6,166.4 +477,175.5,276.9,276.3,275.9,275.3,266.1,227.5,224.2,222.5,219.9,184.2,167.9,178,177.9,177.8,177.6,174.1,166.6,166.4 +478,175.5,277.1,276.4,276.1,275.5,266.3,227.8,224.6,222.9,220.3,184.3,168,178.1,178,177.9,177.7,174.2,166.7,166.4 +479,175.6,277.2,276.6,276.2,275.7,266.5,228.1,224.9,223.2,220.6,184.5,168,178.1,178,177.9,177.8,174.2,166.7,166.5 +480,175.6,277.4,276.7,276.4,275.8,266.7,228.4,225.2,223.6,221,184.6,168,178.2,178.1,178,177.8,174.3,166.7,166.5 +481,175.6,277.5,276.9,276.5,276,266.9,228.7,225.5,223.9,221.4,184.7,168.1,178.3,178.2,178.1,177.9,174.3,166.7,166.5 +482,175.6,277.7,277,276.7,276.2,267.1,229,225.9,224.2,221.8,184.8,168.1,178.4,178.3,178.2,178,174.4,166.7,166.5 +483,175.6,277.8,277.2,276.8,276.3,267.3,229.3,226.2,224.6,222.1,185,168.1,178.4,178.3,178.2,178.1,174.5,166.8,166.5 +484,175.6,278,277.4,277,276.5,267.5,229.6,226.5,224.9,222.5,185.1,168.2,178.5,178.4,178.3,178.1,174.5,166.8,166.5 +485,175.7,278.1,277.5,277.2,276.6,267.7,229.9,226.8,225.2,222.9,185.2,168.2,178.6,178.5,178.4,178.2,174.6,166.8,166.5 +486,175.7,278.3,277.7,277.3,276.8,267.9,230.2,227.1,225.6,223.2,185.3,168.2,178.7,178.6,178.5,178.3,174.6,166.8,166.5 +487,175.7,278.4,277.8,277.5,276.9,268.1,230.5,227.5,225.9,223.6,185.5,168.3,178.8,178.6,178.5,178.4,174.7,166.8,166.5 +488,175.7,278.6,278,277.6,277.1,268.3,230.8,227.8,226.2,223.9,185.6,168.3,178.8,178.7,178.6,178.5,174.8,166.9,166.5 +489,175.7,278.7,278.1,277.8,277.3,268.5,231.1,228.1,226.5,224.3,185.8,168.3,178.9,178.8,178.7,178.5,174.8,166.9,166.6 +490,175.7,278.9,278.3,277.9,277.4,268.7,231.4,228.4,226.9,224.6,185.9,168.4,179,178.9,178.8,178.6,174.9,166.9,166.6 +491,175.8,279,278.4,278.1,277.6,268.9,231.7,228.7,227.2,224.9,186,168.4,179.1,179,178.9,178.7,175,167,166.6 +492,175.8,279.2,278.6,278.2,277.7,269.1,232,229,227.5,225.3,186.2,168.4,179.2,179,178.9,178.8,175,167,166.6 +493,175.8,279.3,278.7,278.4,277.9,269.3,232.3,229.4,227.8,225.6,186.3,168.5,179.2,179.1,179,178.8,175.1,167,166.6 +494,175.8,279.5,278.9,278.6,278.1,269.5,232.6,229.7,228.2,225.9,186.4,168.5,179.3,179.2,179.1,178.9,175.1,167,166.6 +495,175.8,279.6,279,278.7,278.2,269.7,232.9,230,228.5,226.3,186.6,168.5,179.4,179.3,179.2,179,175.2,167.1,166.6 +496,175.9,279.8,279.2,278.9,278.4,269.9,233.2,230.3,228.8,226.6,186.7,168.5,179.5,179.4,179.3,179.1,175.3,167.1,166.6 +497,175.9,279.9,279.3,279,278.5,270.1,233.5,230.6,229.1,226.9,186.9,168.6,179.6,179.4,179.3,179.2,175.3,167.1,166.6 +498,175.9,280.1,279.5,279.2,278.7,270.2,233.8,230.9,229.4,227.3,187,168.6,179.6,179.5,179.4,179.2,175.4,167.1,166.6 +499,175.9,280.2,279.6,279.3,278.8,270.4,234.1,231.2,229.7,227.6,187.2,168.6,179.7,179.6,179.5,179.3,175.4,167.2,166.7 +500,175.9,280.3,279.8,279.5,279,270.6,234.4,231.5,230,227.9,187.3,168.7,179.8,179.7,179.6,179.4,175.5,167.2,166.7 +501,175.9,280.5,279.9,279.6,279.1,270.8,234.6,231.8,230.4,228.2,187.4,168.7,179.9,179.8,179.7,179.5,175.6,167.2,166.7 +502,176,280.6,280.1,279.8,279.3,271,234.9,232.1,230.7,228.5,187.6,168.7,180,179.8,179.7,179.6,175.6,167.2,166.7 +503,176,280.8,280.2,279.9,279.5,271.2,235.2,232.4,231,228.9,187.7,168.8,180,179.9,179.8,179.6,175.7,167.3,166.7 +504,176,280.9,280.4,280.1,279.6,271.4,235.5,232.7,231.3,229.2,187.9,168.8,180.1,180,179.9,179.7,175.8,167.3,166.7 +505,176,281.1,280.5,280.2,279.8,271.6,235.8,233.1,231.6,229.5,188.1,168.8,180.2,180.1,180,179.8,175.8,167.3,166.7 +506,176,281.2,280.7,280.4,279.9,271.8,236.1,233.4,231.9,229.8,188.2,168.9,180.3,180.2,180.1,179.9,175.9,167.3,166.7 +507,176,281.4,280.8,280.5,280.1,271.9,236.4,233.7,232.2,230.1,188.3,168.9,180.4,180.3,180.2,180,175.9,167.4,166.7 +508,176.1,281.5,281,280.7,280.2,272.1,236.7,234,232.5,230.5,188.5,168.9,180.5,180.3,180.2,180.1,176,167.4,166.7 +509,176.1,281.6,281.1,280.8,280.4,272.3,237,234.3,232.8,230.8,188.7,168.9,180.5,180.4,180.3,180.1,176.1,167.4,166.7 +510,176.1,281.8,281.3,281,280.5,272.5,237.2,234.6,233.1,231.1,188.8,169,180.6,180.5,180.4,180.2,176.1,167.5,166.7 +511,176.1,281.9,281.4,281.1,280.7,272.7,237.5,234.9,233.4,231.4,189,169,180.7,180.6,180.5,180.3,176.2,167.5,166.8 +512,176.1,282.1,281.6,281.3,280.8,272.9,237.8,235.2,233.7,231.7,189.1,169,180.8,180.7,180.6,180.4,176.3,167.5,166.8 +513,176.1,282.2,281.7,281.4,281,273.1,238.1,235.5,234.1,232,189.3,169.1,180.9,180.8,180.7,180.5,176.3,167.5,166.8 +514,176.2,282.4,281.9,281.6,281.1,273.2,238.4,235.8,234.4,232.3,189.5,169.1,181,180.9,180.8,180.6,176.4,167.6,166.8 +515,176.2,282.5,282,281.7,281.3,273.4,238.7,236.1,234.7,232.6,189.6,169.1,181.1,180.9,180.8,180.6,176.5,167.6,166.8 +516,176.2,282.6,282.1,281.9,281.4,273.6,238.9,236.4,235,232.9,189.8,169.2,181.2,181,180.9,180.7,176.5,167.6,166.8 +517,176.2,282.8,282.3,282,281.6,273.8,239.2,236.7,235.3,233.3,190,169.2,181.2,181.1,181,180.8,176.6,167.6,166.8 +518,176.2,282.9,282.4,282.2,281.7,274,239.5,236.9,235.6,233.6,190.1,169.2,181.3,181.2,181.1,180.9,176.7,167.7,166.8 +519,176.2,283.1,282.6,282.3,281.9,274.2,239.8,237.2,235.9,233.9,190.3,169.3,181.4,181.3,181.2,181,176.7,167.7,166.8 +520,176.3,283.2,282.7,282.4,282,274.3,240.1,237.5,236.2,234.2,190.5,169.3,181.5,181.4,181.3,181.1,176.8,167.7,166.8 +521,176.3,283.3,282.9,282.6,282.2,274.5,240.3,237.8,236.5,234.5,190.7,169.3,181.6,181.5,181.4,181.2,176.9,167.7,166.8 +522,176.3,283.5,283,282.7,282.3,274.7,240.6,238.1,236.8,234.8,190.8,169.4,181.7,181.6,181.5,181.3,176.9,167.8,166.8 +523,176.3,283.6,283.1,282.9,282.5,274.9,240.9,238.4,237.1,235.1,191,169.4,181.8,181.7,181.5,181.3,177,167.8,166.8 +524,176.3,283.7,283.3,283,282.6,275.1,241.2,238.7,237.4,235.4,191.2,169.4,181.9,181.7,181.6,181.4,177.1,167.8,166.9 +525,176.3,283.9,283.4,283.2,282.8,275.2,241.4,239,237.6,235.7,191.4,169.4,182,181.8,181.7,181.5,177.1,167.8,166.9 +526,176.4,284,283.6,283.3,282.9,275.4,241.7,239.3,237.9,236,191.5,169.5,182,181.9,181.8,181.6,177.2,167.9,166.9 +527,176.4,284.2,283.7,283.5,283.1,275.6,242,239.6,238.2,236.3,191.7,169.5,182.1,182,181.9,181.7,177.3,167.9,166.9 +528,176.4,284.3,283.9,283.6,283.2,275.8,242.3,239.8,238.5,236.6,191.9,169.5,182.2,182.1,182,181.8,177.3,167.9,166.9 +529,176.4,284.4,284,283.7,283.3,276,242.5,240.1,238.8,236.9,192.1,169.6,182.3,182.2,182.1,181.9,177.4,168,166.9 +530,176.4,284.6,284.1,283.9,283.5,276.1,242.8,240.4,239.1,237.2,192.3,169.6,182.4,182.3,182.2,182,177.5,168,166.9 +531,176.4,284.7,284.3,284,283.6,276.3,243.1,240.7,239.4,237.5,192.5,169.6,182.5,182.4,182.3,182.1,177.5,168,166.9 +532,176.5,284.8,284.4,284.2,283.8,276.5,243.3,241,239.7,237.8,192.7,169.7,182.6,182.5,182.4,182.2,177.6,168,166.9 +533,176.5,285,284.6,284.3,283.9,276.7,243.6,241.3,240,238.1,192.9,169.7,182.7,182.6,182.5,182.2,177.7,168.1,166.9 +534,176.5,285.1,284.7,284.4,284.1,276.8,243.9,241.5,240.3,238.4,193.1,169.7,182.8,182.7,182.6,182.3,177.7,168.1,166.9 +535,176.5,285.2,284.8,284.6,284.2,277,244.1,241.8,240.5,238.7,193.3,169.8,182.9,182.8,182.6,182.4,177.8,168.1,166.9 +536,176.5,285.4,285,284.7,284.4,277.2,244.4,242.1,240.8,239,193.5,169.8,183,182.9,182.7,182.5,177.9,168.1,166.9 +537,176.5,285.5,285.1,284.9,284.5,277.4,244.6,242.4,241.1,239.3,193.7,169.8,183.1,183,182.8,182.6,177.9,168.2,166.9 +538,176.6,285.7,285.2,285,284.6,277.6,244.9,242.7,241.4,239.6,193.9,169.9,183.2,183,182.9,182.7,178,168.2,167 +539,176.6,285.8,285.4,285.2,284.8,277.7,245.2,242.9,241.7,239.8,194.1,169.9,183.3,183.1,183,182.8,178.1,168.2,167 +540,176.6,285.9,285.5,285.3,284.9,277.9,245.4,243.2,242,240.1,194.3,169.9,183.4,183.2,183.1,182.9,178.1,168.2,167 +541,176.6,286.1,285.7,285.4,285.1,278.1,245.7,243.5,242.2,240.4,194.5,169.9,183.5,183.3,183.2,183,178.2,168.3,167 +542,176.6,286.2,285.8,285.6,285.2,278.2,245.9,243.7,242.5,240.7,194.8,170,183.6,183.4,183.3,183.1,178.3,168.3,167 +543,176.6,286.3,285.9,285.7,285.4,278.4,246.2,244,242.8,241,200.6,170,183.7,183.5,183.4,183.2,178.3,168.3,167 +544,176.6,286.4,286.1,285.8,285.5,278.6,246.4,244.3,243.1,241.3,201.4,170,183.8,183.6,183.5,183.3,178.4,168.3,167.1 +545,176.7,286.6,286.2,286,285.6,278.8,246.7,244.6,243.4,241.6,202.1,170.1,183.9,183.7,183.6,183.4,178.5,168.4,167.1 +546,176.7,286.7,286.3,286.1,285.8,278.9,246.9,244.8,243.6,241.9,202.9,170.1,184,183.8,183.7,183.5,178.5,168.4,167.1 +547,176.7,286.8,286.5,286.3,285.9,279.1,247.2,245.1,243.9,242.1,203.7,170.1,184.1,183.9,183.8,183.6,178.6,168.4,167.1 +548,176.7,287,286.6,286.4,286.1,279.3,247.5,245.4,244.2,242.4,204.5,170.2,184.2,184,183.9,183.7,178.7,168.4,167.1 +549,176.7,287.1,286.7,286.5,286.2,279.5,247.7,245.6,244.4,242.7,205.3,170.2,184.3,184.1,184,183.8,178.7,168.5,167.1 +550,176.7,287.2,286.9,286.7,286.3,279.6,247.9,245.9,244.7,243,207.5,170.2,184.4,184.2,184.1,183.9,179,168.5,167.1 +551,176.8,287.4,287,286.8,286.5,279.8,248.2,246.1,245,243.3,209.3,170.3,184.5,184.3,184.2,184,179,168.5,167.2 +552,176.8,287.5,287.1,286.9,286.6,280,248.4,246.4,245.3,243.5,210.9,170.3,184.6,184.4,184.3,184.1,179,168.5,167.2 +553,176.8,287.6,287.3,287.1,286.8,280.1,248.7,246.7,245.5,243.8,212.3,170.3,184.7,184.6,184.4,184.2,179,168.6,167.2 +554,176.8,287.7,287.4,287.2,286.9,280.3,248.9,246.9,245.8,244.1,213.4,170.3,184.8,184.7,184.5,184.3,179.2,168.6,167.2 +555,176.8,287.9,287.5,287.3,287,280.5,249.2,247.2,246.1,244.4,214.5,170.4,184.9,184.8,184.6,184.4,179.2,168.6,167.2 +556,176.8,288,287.7,287.5,287.2,280.6,249.4,247.4,246.3,244.7,215.5,170.4,185,184.9,184.7,184.5,179.2,168.6,167.2 +557,176.9,288.1,287.8,287.6,287.3,280.8,249.7,247.7,246.6,244.9,216.4,170.4,185.1,185,184.8,184.6,179.4,168.7,167.3 +558,176.9,288.3,287.9,287.7,287.4,281,249.9,247.9,246.8,245.2,217.3,170.5,185.2,185.1,185,184.7,179.4,168.7,167.3 +559,176.9,288.4,288.1,287.9,287.6,281.2,250.1,248.2,247.1,245.5,218.1,170.5,185.3,185.2,185.1,184.8,179.4,168.7,167.3 +560,176.9,288.5,288.2,288,287.7,281.3,250.4,248.5,247.4,245.7,218.9,170.5,185.4,185.3,185.2,184.9,179.5,168.7,167.3 +561,176.9,288.6,288.3,288.1,287.8,281.5,250.6,248.7,247.6,246,219.6,170.6,185.5,185.4,185.3,185,179.5,168.8,167.3 +562,176.9,288.8,288.5,288.3,288,281.7,250.9,249,247.9,246.3,220.2,170.6,185.7,185.5,185.4,185.1,179.6,168.8,167.3 +563,176.9,288.9,288.6,288.4,288.1,281.8,251.1,249.2,248.1,246.5,220.9,170.6,185.8,185.6,185.5,185.2,179.7,168.8,167.3 +564,177,289,288.7,288.5,288.3,282,251.3,249.5,248.4,246.8,221.5,170.7,185.9,185.7,185.6,185.3,179.8,168.9,167.4 +565,177,289.1,288.8,288.7,288.4,282.2,251.6,249.7,248.6,247.1,222.1,170.7,186,185.8,185.7,185.7,179.9,168.9,167.4 +566,177,289.3,289,288.8,288.5,282.3,251.8,250,248.9,247.3,222.7,170.7,186.4,186.2,186.1,185.8,180,168.9,167.4 +567,177,289.4,289.1,288.9,288.7,282.5,252,250.2,249.2,247.6,223.2,170.8,186.7,186.3,186.1,185.8,180,168.9,167.4 +568,177,289.5,289.2,289.1,288.8,282.6,252.3,250.4,249.4,247.9,223.7,170.8,187,186.3,186.3,185.9,180.1,169,167.4 +569,177,289.6,289.4,289.2,288.9,282.8,252.5,250.7,249.7,248.1,224.2,170.8,187.2,186.5,186.3,186,180.2,169,167.5 +570,177.1,289.8,289.5,289.3,289.1,283,252.7,250.9,249.9,248.4,224.7,170.8,187.6,186.5,186.3,186,180.2,169,167.5 +571,177.1,289.9,289.6,289.4,289.2,283.1,253,251.2,250.2,248.6,225.2,170.9,189.9,186.5,186.3,186,180.3,169,167.5 +572,177.1,290,289.7,289.6,289.3,283.3,253.2,251.4,250.4,248.9,225.7,170.9,192.7,186.8,186.6,186.3,180.4,169.1,167.5 +573,177.1,290.1,289.9,289.7,289.5,283.5,253.4,251.7,250.7,249.2,226.1,170.9,195.5,186.8,186.6,186.3,180.5,169.1,167.5 +574,177.1,290.3,290,289.8,289.6,283.6,253.7,251.9,250.9,249.4,226.6,171,198.3,186.8,186.6,186.3,180.5,169.1,167.6 +575,177.1,290.4,290.1,290,289.7,283.8,253.9,252.1,251.1,249.7,227,171,200,186.8,186.6,186.5,180.7,169.1,167.6 +576,177.1,290.5,290.2,290.1,289.8,284,254.1,252.4,251.4,249.9,227.4,171,201.6,187,187,186.7,180.7,169.2,167.6 +577,177.2,290.6,290.4,290.2,290,284.1,254.3,252.6,251.6,250.2,227.8,171.1,203,187.2,187,186.7,180.8,169.2,167.6 +578,177.2,290.7,290.5,290.3,290.1,284.3,254.6,252.8,251.9,250.4,228.2,171.1,204.3,187.2,187,186.9,180.9,169.2,167.6 +579,177.2,290.9,290.6,290.5,290.2,284.4,254.8,253.1,252.1,250.7,228.6,171.1,205.5,187.4,187.3,187,181,169.2,167.7 +580,177.2,291,290.7,290.6,290.4,284.6,255,253.3,252.4,250.9,229,171.2,206.6,187.6,187.4,187,181.1,169.3,167.7 +581,177.2,291.1,290.9,290.7,290.5,284.8,255.2,253.5,252.6,251.2,229.4,171.2,207.5,188.1,187.5,187.3,181.2,169.3,167.7 +582,177.2,291.2,291,290.8,290.6,284.9,255.4,253.8,252.8,251.4,229.8,171.2,208.3,188.6,187.6,187.3,181.3,169.3,167.7 +583,177.2,291.3,291.1,291,290.8,285.1,255.7,254,253.1,251.7,230.1,171.3,209.1,189.1,187.8,187.5,181.3,169.3,167.7 +584,177.3,291.5,291.2,291.1,290.9,285.2,255.9,254.2,253.3,251.9,230.5,171.3,209.8,190.8,187.9,187.6,181.4,169.4,167.8 +585,177.3,291.6,291.4,291.2,291,285.4,256.1,254.5,253.5,252.2,230.9,171.3,210.4,192.5,188,187.8,181.5,169.4,167.8 +586,177.3,291.7,291.5,291.3,291.1,285.6,256.3,254.7,253.8,252.4,231.2,171.3,211.1,194.1,188.2,187.8,181.6,169.4,167.8 +587,177.3,291.8,291.6,291.5,291.3,285.7,256.5,254.9,254,252.7,231.6,171.4,211.7,195.8,188.4,188,181.7,169.4,167.8 +588,177.3,291.9,291.7,291.6,291.4,285.9,256.8,255.2,254.2,252.9,231.9,171.4,212.3,197.5,188.7,188.1,181.8,169.5,167.9 +589,177.3,292,291.8,291.7,291.5,286,257,255.4,254.5,253.1,232.3,171.4,212.8,199.5,189.3,188.2,181.9,169.5,167.9 +590,177.3,292.2,292,291.8,291.6,286.2,257.2,255.6,254.7,253.4,232.6,171.5,213.4,201.2,189.6,188.4,181.9,169.5,167.9 +591,177.4,292.3,292.1,292,291.8,286.4,257.4,255.8,254.9,253.6,233,171.5,213.9,202.7,191.2,188.5,182,169.5,167.9 +592,177.4,292.4,292.2,292.1,291.9,286.5,257.6,256.1,255.2,253.9,233.3,171.5,214.4,204,192.9,188.6,182.1,169.6,167.9 +593,177.4,292.5,292.3,292.2,292,286.7,257.8,256.3,255.4,254.1,233.7,171.6,214.9,205.2,194.5,188.8,182.2,169.6,168 +594,177.4,292.6,292.4,292.3,292.1,286.8,258.1,256.5,255.6,254.3,234,171.6,215.3,206.2,196.2,189,182.3,169.6,168 +595,177.4,292.7,292.6,292.5,292.3,287,258.3,256.7,255.9,254.6,234.3,171.6,215.8,207.2,197.9,189,182.4,169.6,168 +596,177.4,292.9,292.7,292.6,292.4,287.1,258.5,257,256.1,254.8,234.7,171.7,216.2,208.1,199.9,189.1,182.5,169.7,168 +597,177.5,293,292.8,292.7,292.5,287.3,258.7,257.2,256.3,255,235,171.7,216.6,208.9,201.7,189.3,182.6,169.7,168 +598,177.5,293.1,292.9,292.8,292.6,287.5,258.9,257.4,256.5,255.3,235.3,171.7,217,209.7,203.2,189.9,182.7,169.7,168.1 +599,177.5,293.2,293,292.9,292.8,287.6,259.1,257.6,256.8,255.5,235.6,171.8,217.5,210.4,204.6,190.5,182.8,169.7,168.1 +600,177.5,293.3,293.1,293.1,292.9,287.8,259.3,257.8,257,255.7,236,171.8,217.9,211.1,205.7,191.1,182.9,169.8,168.1 +601,177.5,293.4,293.3,293.2,293,287.9,259.5,258.1,257.2,256,236.3,171.8,218.2,211.8,206.8,192.7,183,169.8,168.1 +602,177.5,293.5,293.4,293.3,293.1,288.1,259.8,258.3,257.4,256.2,236.6,171.9,218.6,212.4,207.7,194.3,183.1,169.8,168.1 +603,177.5,293.6,293.5,293.4,293.3,288.2,260,258.5,257.7,256.4,236.9,171.9,219,213,208.6,195.8,183.1,169.8,168.2 +604,177.6,293.8,293.6,293.5,293.4,288.4,260.2,258.7,257.9,256.7,237.3,171.9,219.4,213.6,209.5,197.4,183.3,169.9,168.2 +605,177.6,293.9,293.7,293.6,293.5,288.5,260.4,258.9,258.1,256.9,237.6,172,219.7,214.2,210.3,199,183.3,169.9,168.2 +606,177.6,294,293.8,293.8,293.6,288.7,260.6,259.1,258.3,257.1,237.9,172,220.1,214.7,211,201.2,183.5,169.9,168.2 +607,177.6,294.1,294,293.9,293.7,288.8,260.8,259.4,258.5,257.3,238.2,172,220.5,215.2,211.7,202.9,183.5,169.9,168.2 +608,177.6,294.2,294.1,294,293.9,289,261,259.6,258.8,257.6,238.5,172,220.8,215.7,212.4,204.4,183.6,170,168.2 +609,177.6,294.3,294.2,294.1,294,289.1,261.2,259.8,259,257.8,238.8,172.1,221.1,216.2,213,205.7,183.8,170,168.3 +610,177.6,294.4,294.3,294.2,294.1,289.3,261.4,260,259.2,258,239.1,172.1,221.5,216.7,213.7,206.8,183.8,170,168.3 +611,177.7,294.5,294.4,294.3,294.2,289.4,261.6,260.2,259.4,258.2,239.5,172.1,221.8,217.2,214.2,207.9,184,170,168.3 +612,177.7,294.6,294.5,294.5,294.3,289.6,261.8,260.4,259.6,258.5,239.8,172.2,222.2,217.6,214.8,208.8,184.1,170.1,168.3 +613,177.7,294.8,294.6,294.6,294.5,289.8,262,260.6,259.8,258.7,240.1,172.2,222.5,218,215.3,209.7,184.1,170.1,168.3 +614,177.7,294.9,294.8,294.7,294.6,289.9,262.2,260.8,260.1,258.9,240.4,172.2,222.8,218.5,215.9,210.6,184.3,170.1,168.4 +615,177.7,295,294.9,294.8,294.7,290.1,262.4,261.1,260.3,259.1,240.7,172.3,223.2,218.9,216.4,211.3,184.4,170.1,168.4 +616,177.7,295.1,295,294.9,294.8,290.2,262.6,261.3,260.5,259.3,241,172.3,223.5,219.3,216.9,212.1,184.5,170.2,168.4 +617,177.7,295.2,295.1,295,294.9,290.4,262.8,261.5,260.7,259.6,241.3,172.3,223.8,219.7,217.3,212.8,184.6,170.2,168.4 +618,177.7,295.3,295.2,295.2,295,290.5,263,261.7,260.9,259.8,241.6,172.4,224.1,220.1,217.8,213.5,184.7,170.2,168.4 +619,177.8,295.4,295.3,295.3,295.2,290.6,263.2,261.9,261.1,260,241.9,172.4,224.4,220.5,218.3,214.1,184.8,170.2,168.5 +620,177.8,295.5,295.4,295.4,295.3,290.8,263.4,262.1,261.3,260.2,242.2,172.4,224.8,220.9,218.7,214.7,184.9,170.3,168.5 +621,177.8,295.6,295.5,295.5,295.4,290.9,263.6,262.3,261.5,260.4,242.6,172.5,225.1,221.3,219.1,215.3,185,170.3,168.5 +622,177.8,295.7,295.7,295.6,295.5,291.1,263.8,262.5,261.8,260.6,242.9,172.5,225.4,221.6,219.5,215.8,185.1,170.3,168.5 +623,177.8,295.8,295.8,295.7,295.6,291.2,264,262.7,262,260.9,243.2,172.5,225.7,222,220,216.4,185.2,170.3,168.5 +624,177.8,295.9,295.9,295.8,295.7,291.4,264.2,262.9,262.2,261.1,243.5,172.6,226,222.4,220.4,216.9,185.3,170.4,168.6 +625,177.8,296,296,295.9,295.9,291.5,264.4,263.1,262.4,261.3,243.8,172.6,226.3,222.7,220.8,217.4,185.4,170.4,168.6 +626,177.9,296.1,296.1,296.1,296,291.7,264.6,263.3,262.6,261.5,244.1,172.6,226.6,223.1,221.1,217.9,185.6,170.4,168.6 +627,177.9,296.3,296.2,296.2,296.1,291.8,264.8,263.5,262.8,261.7,244.4,172.7,226.9,223.4,221.5,218.4,185.7,170.4,168.6 +628,177.9,296.4,296.3,296.3,296.2,292,265,263.7,263,261.9,244.7,172.7,227.3,223.8,221.9,218.8,185.8,170.5,168.6 +629,177.9,296.5,296.4,296.4,296.3,292.1,265.2,263.9,263.2,262.1,245,172.7,227.6,224.1,222.3,219.3,185.9,170.5,168.7 +630,177.9,296.6,296.5,296.5,296.4,292.3,265.4,264.1,263.4,262.3,245.3,172.8,227.9,224.5,222.7,219.7,186,170.5,168.7 +631,177.9,296.7,296.6,296.6,296.5,292.4,265.6,264.3,263.6,262.6,245.6,172.8,228.2,224.8,223,220.1,186.1,170.5,168.7 +632,177.9,296.8,296.7,296.7,296.6,292.6,265.8,264.5,263.8,262.8,245.9,172.8,228.5,225.1,223.4,220.6,186.3,170.6,168.7 +633,178,296.9,296.8,296.8,296.8,292.7,266,264.7,264,263,246.2,172.9,228.8,225.5,223.7,221,186.4,170.6,168.7 +634,178,297,296.9,296.9,296.9,292.8,266.2,264.9,264.2,263.2,246.5,172.9,229.1,225.8,224.1,221.4,186.5,170.6,168.8 +635,178,297.1,297.1,297,297,293,266.4,265.1,264.4,263.4,246.8,172.9,229.4,226.1,224.4,221.8,186.6,170.6,168.8 +636,178,297.2,297.2,297.1,297.1,293.1,266.5,265.3,264.6,263.6,247.1,173,229.7,226.5,224.8,222.2,186.7,170.7,168.8 +637,178,297.3,297.3,297.3,297.2,293.3,266.7,265.5,264.8,263.8,247.3,173,230,226.8,225.1,222.6,186.9,170.7,168.8 +638,178,297.4,297.4,297.4,297.3,293.4,266.9,265.7,265,264,247.6,173,230.3,227.1,225.5,222.9,187,170.7,168.8 +639,178,297.5,297.5,297.5,297.4,293.6,267.1,265.9,265.2,264.2,247.9,173.1,230.6,227.5,225.8,223.3,187.1,170.7,168.9 +640,178,297.6,297.6,297.6,297.5,293.7,267.3,266.1,265.4,264.4,248.2,173.1,230.9,227.8,226.1,223.7,187.2,170.8,168.9 +641,178.1,297.7,297.7,297.7,297.6,293.8,267.5,266.3,265.6,264.6,248.5,173.1,231.2,228.1,226.5,224,187.4,170.8,168.9 +642,178.1,297.8,297.8,297.8,297.8,294,267.7,266.5,265.8,264.8,248.8,173.2,231.5,228.4,226.8,224.4,187.5,170.8,168.9 +643,178.1,297.9,297.9,297.9,297.9,294.1,267.9,266.7,266,265,249.1,173.2,231.8,228.7,227.1,224.8,187.6,170.8,168.9 +644,178.1,298,298,298,298,294.3,268.1,266.9,266.2,265.2,249.4,173.2,232.1,229.1,227.5,225.1,187.7,170.9,168.9 +645,178.1,298.1,298.1,298.1,298.1,294.4,268.2,267.1,266.4,265.4,249.7,173.3,232.4,229.4,227.8,225.5,187.9,170.9,169 +646,178.1,298.2,298.2,298.2,298.2,294.6,268.4,267.3,266.6,265.6,250,173.3,232.7,229.7,228.1,225.8,188,170.9,169 +647,178.1,298.3,298.3,298.3,298.3,294.7,268.6,267.5,266.8,265.8,250.2,173.3,233,230,228.5,226.1,188.1,170.9,169 +648,178.2,298.4,298.4,298.4,298.4,294.8,268.8,267.7,267,266,250.5,173.4,233.3,230.3,228.8,226.5,188.3,171,169 +649,178.2,298.5,298.5,298.5,298.5,295,269,267.9,267.2,266.2,250.8,173.4,233.6,230.7,229.1,226.8,188.4,171,169 +650,178.2,298.6,298.6,298.6,298.6,295.1,269.2,268.1,267.4,266.4,251.1,173.4,233.9,231,229.4,227.2,188.5,171,169.1 +651,178.2,298.7,298.7,298.7,298.7,295.3,269.4,268.2,267.6,266.6,251.4,173.5,234.2,231.3,229.7,227.5,188.7,171,169.1 +652,178.2,298.8,298.8,298.8,298.8,295.4,269.5,268.4,267.8,266.8,251.6,173.5,234.5,231.6,230.1,227.8,188.8,171.1,169.1 +653,178.2,298.9,298.9,298.9,298.9,295.5,269.7,268.6,268,267,251.9,173.5,234.8,231.9,230.4,228.2,189,171.1,169.1 +654,178.2,299,299,299,299,295.7,269.9,268.8,268.2,267.2,252.2,173.6,235.1,232.2,230.7,228.5,189.1,171.1,169.1 +655,178.2,299.1,299.1,299.1,299.1,295.8,270.1,269,268.4,267.4,252.5,173.6,235.4,232.5,231,228.8,189.2,171.1,169.2 +656,178.3,299.2,299.2,299.2,299.2,295.9,270.3,269.2,268.6,267.6,252.8,173.6,235.7,232.8,231.3,229.1,189.4,171.2,169.2 +657,178.3,299.3,299.3,299.3,299.4,296.1,270.5,269.4,268.8,267.8,253,173.7,236,233.1,231.6,229.5,189.5,171.2,169.2 +658,178.3,299.4,299.4,299.4,299.5,296.2,270.6,269.6,268.9,268,253.3,173.7,236.3,233.5,232,229.8,189.7,171.2,169.2 +659,178.3,299.5,299.5,299.5,299.6,296.4,270.8,269.8,269.1,268.2,253.6,173.8,236.6,233.8,232.3,230.1,189.8,171.2,169.2 +660,178.3,299.6,299.6,299.7,299.7,296.5,271,269.9,269.3,268.4,253.9,173.8,236.9,234.1,232.6,230.4,190,171.3,169.2 +661,178.3,299.7,299.7,299.8,299.8,296.6,271.2,270.1,269.5,268.6,254.1,173.8,237.1,234.4,232.9,230.8,190.1,171.3,169.3 +662,178.3,299.8,299.8,299.9,299.9,296.8,271.4,270.3,269.7,268.8,254.4,173.9,237.4,234.7,233.2,231.1,190.3,171.3,169.3 +663,178.4,299.9,299.9,300,300,296.9,271.5,270.5,269.9,269,254.7,173.9,237.7,235,233.5,231.4,190.4,171.3,169.3 +664,178.4,300,300,300.1,300.1,297,271.7,270.7,270.1,269.2,254.9,173.9,238,235.3,233.8,231.7,190.6,171.4,169.3 +665,178.4,300.1,300.1,300.2,300.2,297.2,271.9,270.9,270.3,269.4,255.2,174,238.3,235.6,234.1,232,190.7,171.4,169.3 +666,178.4,300.1,300.2,300.3,300.3,297.3,272.1,271.1,270.5,269.6,255.5,174,238.6,235.9,234.4,232.3,190.9,171.4,169.4 +667,178.4,300.2,300.3,300.4,300.4,297.4,272.3,271.2,270.6,269.8,255.7,174,238.9,236.2,234.8,232.7,191,171.4,169.4 +668,178.4,300.3,300.4,300.5,300.5,297.6,272.4,271.4,270.8,270,256,174.1,239.2,236.5,235.1,233,191.2,171.5,169.4 +669,178.4,300.4,300.5,300.5,300.6,297.7,272.6,271.6,271,270.1,256.3,174.1,239.5,236.8,235.4,233.3,191.4,171.5,169.4 +670,178.4,300.5,300.6,300.6,300.7,297.8,272.8,271.8,271.2,270.3,256.5,174.1,239.7,237.1,235.7,233.6,191.5,171.5,169.4 +671,178.5,300.6,300.7,300.7,300.8,298,273,272,271.4,270.5,256.8,174.2,240,237.4,236,233.9,191.7,171.5,169.5 +672,178.5,300.7,300.8,300.8,300.9,298.1,273.2,272.1,271.6,270.7,257,174.2,240.3,237.7,236.3,234.2,191.8,171.6,169.5 +673,178.5,300.8,300.9,300.9,301,298.2,273.3,272.3,271.8,270.9,257.3,174.2,240.6,238,236.6,234.5,192,171.6,169.5 +674,178.5,300.9,301,301,301.1,298.4,273.5,272.5,271.9,271.1,257.5,174.3,240.9,238.3,236.9,234.8,192.2,171.6,169.5 +675,178.5,301,301.1,301.1,301.2,298.5,273.7,272.7,272.1,271.3,257.8,174.3,241.1,238.6,237.2,235.2,192.4,171.6,169.5 +676,178.5,301.1,301.2,301.2,301.3,298.6,273.9,272.9,272.3,271.5,258.1,174.4,241.4,238.9,237.5,235.5,192.5,171.7,169.5 +677,178.5,301.2,301.3,301.3,301.4,298.7,274,273.1,272.5,271.7,258.3,174.4,241.7,239.2,237.8,235.8,192.7,171.7,169.6 +678,178.5,301.3,301.4,301.4,301.5,298.9,274.2,273.2,272.7,271.8,258.6,174.4,242,239.5,238.1,236.1,192.9,171.7,169.6 +679,178.6,301.4,301.5,301.5,301.6,299,274.4,273.4,272.9,272,258.8,174.5,242.3,239.8,238.4,236.4,193.1,171.7,169.6 +680,178.6,301.5,301.6,301.6,301.7,299.1,274.6,273.6,273,272.2,259.1,174.5,242.5,240.1,238.7,236.7,193.3,171.8,169.6 +681,178.6,301.6,301.7,301.7,301.8,299.3,274.7,273.8,273.2,272.4,259.3,174.5,242.8,240.3,239,237,193.4,171.8,169.6 +682,178.6,301.7,301.8,301.8,301.9,299.4,274.9,273.9,273.4,272.6,259.6,174.6,243.1,240.6,239.3,237.3,193.6,171.8,169.7 +683,178.6,301.8,301.9,301.9,302,299.5,275.1,274.1,273.6,272.8,259.8,174.6,243.4,240.9,239.6,237.6,193.8,171.8,169.7 +684,178.6,301.9,301.9,302,302.1,299.7,275.2,274.3,273.8,272.9,260.1,174.6,243.6,241.2,239.9,237.9,194,171.9,169.7 +685,178.6,301.9,302,302.1,302.2,299.8,275.4,274.5,273.9,273.1,260.3,174.7,243.9,241.5,240.2,238.2,194.2,171.9,169.7 +686,178.6,302,302.1,302.2,302.3,299.9,275.6,274.7,274.1,273.3,260.6,174.7,244.2,241.8,240.4,238.5,194.4,171.9,169.7 +687,178.7,302.1,302.2,302.3,302.4,300,275.8,274.8,274.3,273.5,260.8,174.8,244.4,242.1,240.7,238.8,194.6,171.9,169.7 +688,178.7,302.2,302.3,302.4,302.5,300.2,275.9,275,274.5,273.7,261,174.8,244.7,242.4,241,239.1,194.7,172,169.8 +689,178.7,302.3,302.4,302.5,302.6,300.3,276.1,275.2,274.6,273.9,261.3,174.8,245,242.6,241.3,239.4,195,172,169.8 +690,178.7,302.4,302.5,302.6,302.7,300.4,276.3,275.4,274.8,274,261.5,174.9,245.2,242.9,241.6,239.7,195.2,172,169.8 +691,178.7,302.5,302.6,302.7,302.8,300.5,276.4,275.5,275,274.2,261.8,174.9,245.5,243.2,241.9,240,195.3,172,169.8 +692,178.7,302.6,302.7,302.8,302.9,300.7,276.6,275.7,275.2,274.4,262,175,245.8,243.5,242.2,240.3,195.5,172.1,169.8 +693,178.7,302.7,302.8,302.9,302.9,300.8,276.8,275.9,275.4,274.6,262.3,175,246,243.8,242.5,240.6,195.8,172.1,169.9 +694,178.7,302.8,302.9,303,303,300.9,276.9,276.1,275.5,274.8,262.5,175,246.3,244,242.8,240.9,196,172.1,169.9 +695,178.8,302.9,303,303.1,303.1,301,277.1,276.2,275.7,274.9,262.7,175.1,246.6,244.3,243,241.2,196.2,172.1,169.9 +696,178.8,303,303.1,303.2,303.2,301.2,277.3,276.4,275.9,275.1,263,175.1,246.8,244.6,243.3,241.5,196.4,172.2,169.9 +697,178.8,303.1,303.2,303.2,303.3,301.3,277.5,276.6,276.1,275.3,263.2,175.1,247.1,244.9,243.6,241.8,196.6,172.2,169.9 +698,178.8,303.2,303.3,303.3,303.4,301.4,277.6,276.7,276.2,275.5,263.4,175.2,247.3,245.1,243.9,242,196.9,172.2,169.9 +699,178.8,303.3,303.4,303.4,303.5,301.5,277.8,276.9,276.4,275.7,263.7,175.2,247.6,245.4,244.2,242.3,197.1,172.2,170 +700,178.8,303.4,303.5,303.5,303.6,301.7,278,277.1,276.6,275.8,263.9,175.3,247.8,245.7,244.4,242.6,200.6,172.3,170 +701,178.8,303.4,303.6,303.6,303.7,301.8,278.1,277.3,276.8,276,264.1,175.3,248.1,245.9,244.7,242.9,203.6,172.3,170 +702,178.8,303.5,303.6,303.7,303.8,301.9,278.3,277.4,276.9,276.2,264.4,175.3,248.4,246.2,245,243.2,204.2,172.3,170 +703,178.9,303.6,303.7,303.8,303.9,302,278.4,277.6,277.1,276.4,264.6,175.4,248.6,246.5,245.3,243.5,204.7,172.3,170 +704,178.9,303.7,303.8,303.9,304,302.1,278.6,277.8,277.3,276.5,264.8,175.4,248.9,246.7,245.5,243.8,205.3,172.4,170.1 +705,178.9,303.8,303.9,304,304.1,302.3,278.8,277.9,277.4,276.7,265.1,175.5,249.1,247,245.8,244,205.9,172.4,170.1 +706,178.9,303.9,304,304.1,304.2,302.4,278.9,278.1,277.6,276.9,265.3,175.5,249.4,247.3,246.1,244.3,206.4,172.4,170.1 +707,178.9,304,304.1,304.2,304.3,302.5,279.1,278.3,277.8,277.1,265.5,175.5,249.6,247.5,246.4,244.6,207,172.4,170.1 +708,178.9,304.1,304.2,304.3,304.4,302.6,279.3,278.4,278,277.2,265.7,175.6,249.9,247.8,246.6,244.9,210.2,172.5,170.1 +709,178.9,304.2,304.3,304.4,304.5,302.8,279.4,278.6,278.1,277.4,266,175.6,250.1,248.1,246.9,245.2,211.9,172.5,170.1 +710,178.9,304.3,304.4,304.5,304.6,302.9,279.6,278.8,278.3,277.6,266.2,175.7,250.4,248.3,247.2,245.5,213.3,172.5,170.2 +711,179,304.4,304.5,304.6,304.7,303,279.8,278.9,278.5,277.8,266.4,175.7,250.6,248.6,247.4,245.7,214.5,172.5,170.2 +712,179,304.5,304.6,304.7,304.8,303.1,279.9,279.1,278.6,277.9,266.6,175.7,250.8,248.8,247.7,246,215.6,172.6,170.2 +713,179,304.6,304.7,304.8,304.8,303.2,280.1,279.3,278.8,278.1,266.9,175.8,251.1,249.1,248,246.3,216.7,172.6,170.2 +714,179,304.7,304.8,304.8,304.9,303.3,280.3,279.4,279,278.3,267.1,175.8,251.3,249.4,248.2,246.6,217.6,172.6,170.2 +715,179,304.8,304.9,304.9,305,303.5,280.4,279.6,279.1,278.5,267.3,175.9,251.6,249.6,248.5,246.8,218.5,172.7,170.2 +716,179,304.8,305,305,305.1,303.6,280.6,279.8,279.3,278.6,267.5,175.9,251.8,249.9,248.8,247.1,219.3,172.7,170.3 +717,179,304.9,305.1,305.1,305.2,303.7,280.7,279.9,279.5,278.8,267.7,175.9,252.1,250.1,249,247.4,220,172.7,170.3 +718,179,305,305.1,305.2,305.3,303.8,280.9,280.1,279.6,279,268,176,252.3,250.4,249.3,247.6,220.8,172.7,170.3 +719,179.1,305.1,305.2,305.3,305.4,303.9,281.1,280.3,279.8,279.1,268.2,176,252.5,250.6,249.5,247.9,221.5,172.8,170.3 +720,179.1,305.2,305.3,305.4,305.5,304.1,281.2,280.4,280,279.3,268.4,176.1,252.8,250.9,249.8,248.2,222.1,172.8,170.3 +721,179.1,305.3,305.4,305.5,305.6,304.2,281.4,280.6,280.2,279.5,268.6,176.1,253,251.1,250.1,248.4,222.7,172.8,170.4 +722,179.1,305.4,305.5,305.6,305.7,304.3,281.5,280.8,280.3,279.6,268.8,176.2,253.2,251.4,250.3,248.7,223.3,172.8,170.4 +723,179.1,305.5,305.6,305.7,305.8,304.4,281.7,280.9,280.5,279.8,269.1,176.2,253.5,251.6,250.6,249,223.9,172.9,170.4 +724,179.1,305.6,305.7,305.8,305.9,304.5,281.9,281.1,280.6,280,269.3,176.2,253.7,251.9,250.8,249.2,224.5,172.9,170.4 +725,179.1,305.7,305.8,305.9,306,304.6,282,281.3,280.8,280.2,269.5,176.3,253.9,252.1,251.1,249.5,225,172.9,170.4 +726,179.1,305.8,305.9,306,306.1,304.7,282.2,281.4,281,280.3,269.7,176.3,254.2,252.4,251.3,249.8,225.5,172.9,170.4 +727,179.1,305.9,306,306.1,306.2,304.9,282.3,281.6,281.1,280.5,269.9,176.4,254.4,252.6,251.6,250,226,173,170.5 +728,179.2,306,306.1,306.2,306.3,305,282.5,281.7,281.3,280.7,270.1,176.4,254.6,252.8,251.8,250.3,226.5,173,170.5 +729,179.2,306.1,306.2,306.2,306.3,305.1,282.6,281.9,281.5,280.8,270.3,176.4,254.9,253.1,252.1,250.5,226.9,173,170.5 +730,179.2,306.2,306.3,306.3,306.4,305.2,282.8,282.1,281.6,281,270.6,176.5,255.1,253.3,252.3,250.8,227.4,173,170.5 +731,179.2,306.2,306.4,306.4,306.5,305.3,283,282.2,281.8,281.2,270.8,176.5,255.3,253.6,252.6,251.1,227.8,173.1,170.5 +732,179.2,306.3,306.5,306.5,306.6,305.4,283.1,282.4,282,281.3,271,176.6,255.6,253.8,252.8,251.3,228.3,173.1,170.5 +733,179.2,306.4,306.5,306.6,306.7,305.5,283.3,282.5,282.1,281.5,271.2,176.6,255.8,254,253.1,251.6,228.7,173.1,170.6 +734,179.2,306.5,306.6,306.7,306.8,305.6,283.4,282.7,282.3,281.7,271.4,176.7,256,254.3,253.3,251.8,229.1,173.1,170.6 +735,179.2,306.6,306.7,306.8,306.9,305.8,283.6,282.9,282.4,281.8,271.6,176.7,256.2,254.5,253.5,252.1,229.5,173.2,170.6 +736,179.3,306.7,306.8,306.9,307,305.9,283.7,283,282.6,282,271.8,176.8,256.5,254.8,253.8,252.3,229.9,173.2,170.6 +737,179.3,306.8,306.9,307,307.1,306,283.9,283.2,282.8,282.2,272,176.8,256.7,255,254,252.6,230.3,173.2,170.6 +738,179.3,306.9,307,307.1,307.2,306.1,284,283.3,282.9,282.3,272.2,176.9,256.9,255.2,254.3,252.8,230.7,173.3,170.7 +739,179.3,307,307.1,307.2,307.3,306.2,284.2,283.5,283.1,282.5,272.4,176.9,257.1,255.5,254.5,253.1,231.1,173.3,170.7 +740,179.3,307.1,307.2,307.3,307.4,306.3,284.4,283.7,283.3,282.6,272.6,176.9,257.3,255.7,254.7,253.3,231.5,173.3,170.7 +741,179.3,307.2,307.3,307.4,307.5,306.4,284.5,283.8,283.4,282.8,272.9,177,257.6,255.9,255,253.6,231.8,173.3,170.7 +742,179.3,307.3,307.4,307.5,307.6,306.5,284.7,284,283.6,283,273.1,177,257.8,256.2,255.2,253.8,232.2,173.4,170.7 +743,179.3,307.4,307.5,307.6,307.7,306.6,284.8,284.1,283.7,283.1,273.3,177.1,258,256.4,255.4,254.1,232.6,173.4,170.7 +744,179.3,307.4,307.6,307.7,307.8,306.8,285,284.3,283.9,283.3,273.5,177.1,258.2,256.6,255.7,254.3,232.9,173.4,170.8 +745,179.4,307.5,307.7,307.7,307.8,306.9,285.1,284.4,284.1,283.5,273.7,177.2,258.4,256.8,255.9,254.5,233.3,173.4,170.8 +746,179.4,307.6,307.8,307.8,307.9,307,285.3,284.6,284.2,283.6,273.9,177.2,258.7,257.1,256.2,254.8,233.6,173.5,170.8 +747,179.4,307.7,307.9,307.9,308,307.1,285.4,284.8,284.4,283.8,274.1,177.3,258.9,257.3,256.4,255,234,173.5,170.8 +748,179.4,307.8,307.9,308,308.1,307.2,285.6,284.9,284.5,283.9,274.3,177.3,259.1,257.5,256.6,255.3,234.3,173.5,170.8 +749,179.4,307.9,308,308.1,308.2,307.3,285.7,285.1,284.7,284.1,274.5,177.4,259.3,257.7,256.8,255.5,234.7,173.5,170.8 +750,179.4,308,308.1,308.2,308.3,307.4,285.9,285.2,284.8,284.3,274.7,177.4,259.5,258,257.1,255.7,235,173.6,170.9 +751,179.4,308.1,308.2,308.3,308.4,307.5,286,285.4,285,284.4,274.9,177.5,259.7,258.2,257.3,256,235.3,173.6,170.9 +752,179.4,308.2,308.3,308.4,308.5,307.6,286.2,285.5,285.2,284.6,275.1,177.5,260,258.4,257.5,256.2,235.7,173.6,170.9 +753,179.5,308.3,308.4,308.5,308.6,307.7,286.3,285.7,285.3,284.7,275.3,177.6,260.2,258.6,257.8,256.5,236,173.7,170.9 +754,179.5,308.4,308.5,308.6,308.7,307.8,286.5,285.8,285.5,284.9,275.5,177.6,260.4,258.9,258,256.7,236.3,173.7,170.9 +755,179.5,308.5,308.6,308.7,308.8,307.9,286.6,286,285.6,285.1,275.7,177.6,260.6,259.1,258.2,256.9,236.7,173.7,170.9 +756,179.5,308.6,308.7,308.8,308.9,308,286.8,286.1,285.8,285.2,275.9,177.7,260.8,259.3,258.4,257.2,237,173.7,171 +757,179.5,308.6,308.8,308.9,309,308.1,286.9,286.3,285.9,285.4,276.1,177.8,261,259.5,258.7,257.4,237.3,173.8,171 +758,179.5,308.7,308.9,309,309.1,308.2,287.1,286.5,286.1,285.5,276.3,177.8,261.2,259.7,258.9,257.6,237.7,173.8,171 +759,179.5,308.8,309,309,309.2,308.3,287.2,286.6,286.2,285.7,276.5,177.8,261.4,260,259.1,257.8,238,173.8,171 +760,179.5,308.9,309.1,309.1,309.2,308.5,287.4,286.8,286.4,285.8,276.7,177.9,261.6,260.2,259.3,258.1,238.3,173.8,171 +761,179.5,309,309.1,309.2,309.3,308.6,287.5,286.9,286.5,286,276.9,178,261.9,260.4,259.6,258.3,238.6,173.9,171 +762,179.6,309.1,309.2,309.3,309.4,308.7,287.7,287.1,286.7,286.2,277,178,262.1,260.6,259.8,258.5,238.9,173.9,171.1 +763,179.6,309.2,309.3,309.4,309.5,308.8,287.8,287.2,286.9,286.3,277.2,178.1,262.3,260.8,260,258.8,239.3,173.9,171.1 +764,179.6,309.3,309.4,309.5,309.6,308.9,288,287.4,287,286.5,277.4,178.1,262.5,261,260.2,259,239.6,174,171.1 +765,179.6,309.4,309.5,309.6,309.7,309,288.1,287.5,287.2,286.6,277.6,178.2,262.7,261.3,260.4,259.2,239.9,174,171.1 +766,179.6,309.5,309.6,309.7,309.8,309.1,288.3,287.7,287.3,286.8,277.8,178.2,262.9,261.5,260.7,259.4,240.2,174,171.1 +767,179.6,309.5,309.7,309.8,309.9,309.2,288.4,287.8,287.5,286.9,278,178.3,263.1,261.7,260.9,259.7,240.5,174,171.2 +768,179.6,309.6,309.8,309.9,310,309.3,288.5,288,287.6,287.1,278.2,178.3,263.3,261.9,261.1,259.9,240.8,174.1,171.2 +769,179.6,309.7,309.9,310,310.1,309.4,288.7,288.1,287.8,287.2,278.4,178.4,263.5,262.1,261.3,260.1,241.2,174.1,171.2 +770,179.6,309.8,310,310.1,310.2,309.5,288.8,288.3,287.9,287.4,278.6,178.4,263.7,262.3,261.5,260.3,241.5,174.1,171.2 +771,179.7,309.9,310.1,310.1,310.3,309.6,289,288.4,288.1,287.6,278.8,178.5,263.9,262.5,261.7,260.6,241.8,174.2,171.2 +772,179.7,310,310.1,310.2,310.4,309.7,289.1,288.6,288.2,287.7,279,178.5,264.1,262.7,261.9,260.8,242.1,174.2,171.2 +773,179.7,310.1,310.2,310.3,310.4,309.8,289.3,288.7,288.4,287.9,279.2,178.6,264.3,262.9,262.2,261,242.4,174.2,171.3 +774,179.7,310.2,310.3,310.4,310.5,309.9,289.4,288.8,288.5,288,279.3,178.6,264.5,263.2,262.4,261.2,242.7,174.2,171.3 +775,179.7,310.3,310.4,310.5,310.6,310,289.6,289,288.7,288.2,279.5,178.7,264.7,263.4,262.6,261.4,243,174.3,171.3 +776,179.7,310.4,310.5,310.6,310.7,310.1,289.7,289.1,288.8,288.3,279.7,178.7,264.9,263.6,262.8,261.7,243.3,174.3,171.3 +777,179.7,310.4,310.6,310.7,310.8,310.2,289.8,289.3,289,288.5,279.9,178.8,265.1,263.8,263,261.9,243.6,174.3,171.3 +778,179.7,310.5,310.7,310.8,310.9,310.3,290,289.4,289.1,288.6,280.1,178.9,265.3,264,263.2,262.1,244,174.4,171.3 +779,179.7,310.6,310.8,310.9,311,310.4,290.1,289.6,289.3,288.8,280.3,178.9,265.5,264.2,263.4,262.3,244.3,174.4,171.4 +780,179.8,310.7,310.9,311,311.1,310.5,290.3,289.7,289.4,288.9,280.5,179,265.7,264.4,263.6,262.5,244.6,174.4,171.4 +781,179.8,310.8,311,311.1,311.2,310.6,290.4,289.9,289.6,289.1,280.7,179,265.9,264.6,263.8,262.7,244.9,174.4,171.4 +782,179.8,310.9,311.1,311.2,311.3,310.7,290.5,290,289.7,289.2,280.8,179.1,266.1,264.8,264.1,262.9,245.2,174.5,171.4 +783,179.8,311,311.1,311.2,311.4,310.8,290.7,290.2,289.8,289.4,281,179.1,266.3,265,264.3,263.2,245.5,174.5,171.4 +784,179.8,311.1,311.2,311.3,311.5,310.9,290.8,290.3,290,289.5,281.2,179.2,266.5,265.2,264.5,263.4,245.8,174.5,171.4 +785,179.8,311.2,311.3,311.4,311.5,311,291,290.4,290.1,289.7,281.4,179.3,266.7,265.4,264.7,263.6,246.1,174.6,171.5 +786,179.8,311.2,311.4,311.5,311.6,311.1,291.1,290.6,290.3,289.8,281.6,179.3,266.9,265.6,264.9,263.8,246.4,174.6,171.5 +787,179.8,311.3,311.5,311.6,311.7,311.2,291.2,290.7,290.4,290,281.8,179.4,267.1,265.8,265.1,264,246.7,174.6,171.5 +788,179.8,311.4,311.6,311.7,311.8,311.3,291.4,290.9,290.6,290.1,282,179.4,267.3,266,265.3,264.2,247,174.6,171.5 +789,179.9,311.5,311.7,311.8,311.9,311.4,291.5,291,290.7,290.3,282.1,179.5,267.5,266.2,265.5,264.4,247.3,174.7,171.5 +790,179.9,311.6,311.8,311.9,312,311.5,291.7,291.2,290.9,290.4,282.3,179.6,267.6,266.4,265.7,264.6,247.6,174.7,171.5 +791,179.9,311.7,311.9,312,312.1,311.5,291.8,291.3,291,290.6,282.5,179.6,267.8,266.6,265.9,264.8,247.9,174.7,171.6 +792,179.9,311.8,311.9,312,312.2,311.6,291.9,291.4,291.2,290.7,282.7,179.7,268,266.8,266.1,265.1,248.2,174.8,171.6 +793,179.9,311.9,312,312.1,312.3,311.7,292.1,291.6,291.3,290.9,282.9,179.7,268.2,267,266.3,265.3,248.5,174.8,171.6 +794,179.9,311.9,312.1,312.2,312.4,311.8,292.2,291.7,291.4,291,283,179.8,268.4,267.2,266.5,265.5,248.8,174.8,171.6 +795,179.9,312,312.2,312.3,312.5,311.9,292.3,291.9,291.6,291.2,283.2,179.9,268.6,267.4,266.7,265.7,249.1,174.8,171.6 +796,179.9,312.1,312.3,312.4,312.5,312,292.5,292,291.7,291.3,283.4,179.9,268.8,267.6,266.9,265.9,249.4,174.9,171.6 +797,179.9,312.2,312.4,312.5,312.6,312.1,292.6,292.2,291.9,291.4,283.6,180,269,267.8,267.1,266.1,249.7,174.9,171.7 +798,180,312.3,312.5,312.6,312.7,312.2,292.8,292.3,292,291.6,283.8,180,269.2,268,267.3,266.3,249.9,174.9,171.7 +799,180,312.4,312.6,312.7,312.8,312.3,292.9,292.4,292.2,291.7,283.9,180.1,269.4,268.2,267.5,266.5,250.2,175,171.7 +800,180,312.5,312.6,312.8,312.9,312.4,293,292.6,292.3,291.9,284.1,180.2,269.6,268.4,267.7,266.7,250.5,175,171.7 +801,180,312.6,312.7,312.8,313,312.5,293.2,292.7,292.4,292,284.3,180.2,269.7,268.6,267.9,266.9,250.8,175,171.7 +802,180,312.6,312.8,312.9,313.1,312.6,293.3,292.8,292.6,292.2,284.5,180.3,269.9,268.8,268.1,267.1,251.1,175.1,171.7 +803,180,312.7,312.9,313,313.2,312.7,293.4,293,292.7,292.3,284.7,180.4,270.1,269,268.3,267.3,251.4,175.1,171.8 +804,180,312.8,313,313.1,313.3,312.8,293.6,293.1,292.9,292.5,284.8,180.4,270.3,269.2,268.5,267.5,251.7,175.1,171.8 +805,180,312.9,313.1,313.2,313.3,312.9,293.7,293.3,293,292.6,285,180.5,270.5,269.3,268.7,267.7,252,175.1,171.8 +806,180,313,313.2,313.3,313.4,313,293.8,293.4,293.1,292.7,285.2,180.6,270.7,269.5,268.9,267.9,252.2,175.2,171.8 +807,180.1,313.1,313.3,313.4,313.5,313.1,294,293.5,293.3,292.9,285.4,180.6,270.9,269.7,269.1,268.1,252.5,175.2,171.8 +808,180.1,313.2,313.3,313.5,313.6,313.2,294.1,293.7,293.4,293,285.5,180.7,271,269.9,269.3,268.3,252.8,175.2,171.8 +809,180.1,313.2,313.4,313.6,313.7,313.3,294.2,293.8,293.6,293.2,285.7,180.8,271.2,270.1,269.5,268.5,253.1,175.3,171.9 +810,180.1,313.3,313.5,313.6,313.8,313.4,294.4,293.9,293.7,293.3,285.9,180.8,271.4,270.3,269.7,268.7,253.4,175.3,171.9 +811,180.1,313.4,313.6,313.7,313.9,313.5,294.5,294.1,293.8,293.4,286.1,180.9,271.6,270.5,269.8,268.9,253.7,175.3,171.9 +812,180.1,313.5,313.7,313.8,314,313.5,294.6,294.2,294,293.6,286.2,181,271.8,270.7,270,269.1,253.9,175.4,171.9 +813,180.1,313.6,313.8,313.9,314.1,313.6,294.8,294.4,294.1,293.7,286.4,181.1,272,270.9,270.2,269.3,254.2,175.4,171.9 +814,180.1,313.7,313.9,314,314.1,313.7,294.9,294.5,294.2,293.9,286.6,181.1,272.1,271.1,270.4,269.5,254.5,175.4,171.9 +815,180.1,313.8,314,314.1,314.2,313.8,295,294.6,294.4,294,286.8,181.2,272.3,271.2,270.6,269.7,254.8,175.5,172 +816,180.2,313.8,314,314.2,314.3,313.9,295.1,294.8,294.5,294.1,286.9,181.3,272.5,271.4,270.8,269.9,255,175.5,172 +817,180.2,313.9,314.1,314.3,314.4,314,295.3,294.9,294.7,294.3,287.1,212.8,272.7,271.6,271,270.1,255.3,175.5,172 +818,180.2,314,314.2,314.3,314.5,314.1,295.4,295,294.8,294.4,287.3,213.1,272.9,271.8,271.2,270.3,255.6,175.5,172 +819,180.2,314.1,314.3,314.4,314.6,314.2,295.5,295.2,294.9,294.6,287.4,213.4,273,272,271.4,270.5,255.8,175.6,172 +820,180.2,314.2,314.4,314.5,314.7,314.3,295.7,295.3,295.1,294.7,287.6,213.7,273.2,272.2,271.6,270.6,256.1,175.6,172 +821,180.2,314.3,314.5,314.6,314.8,314.4,295.8,295.4,295.2,294.8,287.8,214,273.4,272.4,271.7,270.8,256.4,175.6,172.1 +822,180.2,314.4,314.6,314.7,314.8,314.5,295.9,295.6,295.3,295,288,214.3,273.6,272.5,271.9,271,256.7,175.7,172.1 +823,180.2,314.4,314.6,314.8,314.9,314.6,296,295.7,295.5,295.1,288.1,214.6,273.8,272.7,272.1,271.2,256.9,175.7,172.1 +824,180.2,314.5,314.7,314.9,315,314.7,296.2,295.8,295.6,295.3,288.3,214.9,273.9,272.9,272.3,271.4,257.2,175.7,172.1 +825,180.2,314.6,314.8,314.9,315.1,314.8,296.3,295.9,295.7,295.4,288.5,216.9,274.1,273.1,272.5,271.6,257.4,175.8,172.1 +826,180.3,314.7,314.9,315,315.2,314.9,296.4,296.1,295.9,295.5,288.6,218.5,274.3,273.3,272.7,271.8,257.7,175.8,172.1 +827,180.3,314.8,315,315.1,315.3,314.9,296.6,296.2,296,295.7,288.8,219.9,274.5,273.5,272.9,272,258,175.8,172.2 +828,180.3,314.9,315.1,315.2,315.4,315,296.7,296.3,296.1,295.8,289,221.1,274.6,273.6,273,272.2,258.2,175.9,172.2 +829,180.3,314.9,315.2,315.3,315.5,315.1,296.8,296.5,296.3,295.9,289.1,222.1,274.8,273.8,273.2,272.4,258.5,175.9,172.2 +830,180.3,315,315.2,315.4,315.5,315.2,296.9,296.6,296.4,296.1,289.3,223.1,275,274,273.4,272.6,258.8,175.9,172.2 +831,180.3,315.1,315.3,315.5,315.6,315.3,297.1,296.7,296.5,296.2,289.5,224.1,275.2,274.2,273.6,272.7,259,176,172.2 +832,180.3,315.2,315.4,315.5,315.7,315.4,297.2,296.9,296.7,296.3,289.6,224.9,275.3,274.4,273.8,272.9,259.3,176,172.2 +833,180.3,315.3,315.5,315.6,315.8,315.5,297.3,297,296.8,296.5,289.8,225.7,275.5,274.5,274,273.1,259.5,176,172.3 +834,180.3,315.4,315.6,315.7,315.9,315.6,297.4,297.1,296.9,296.6,290,226.5,275.7,274.7,274.1,273.3,259.8,176.1,172.3 +835,180.4,315.4,315.7,315.8,316,315.7,297.6,297.2,297,296.7,290.1,227.2,275.9,274.9,274.3,273.5,260,176.1,172.3 +836,180.4,315.5,315.8,315.9,316.1,315.8,297.7,297.4,297.2,296.9,290.3,227.9,276,275.1,274.5,273.7,260.3,176.1,172.3 +837,180.4,315.6,315.8,316,316.1,315.9,297.8,297.5,297.3,297,290.5,228.5,276.2,275.3,274.7,273.9,260.5,176.2,172.3 +838,180.4,315.7,315.9,316.1,316.2,316,297.9,297.6,297.4,297.1,290.6,229.1,276.4,275.4,274.9,274,260.8,176.2,172.3 +839,180.4,315.8,316,316.1,316.3,316.1,298,297.7,297.6,297.3,290.8,229.7,276.6,275.6,275.1,274.2,261,176.2,172.4 +840,180.4,315.9,316.1,316.2,316.4,316.2,298.2,297.9,297.7,297.4,291,230.3,276.7,275.8,275.2,274.4,261.3,176.3,172.4 +841,180.4,315.9,316.2,316.3,316.5,316.3,298.3,298,297.8,297.5,291.1,230.8,276.9,276,275.4,274.6,261.5,176.3,172.4 +842,180.4,316,316.3,316.4,316.6,316.3,298.4,298.1,297.9,297.7,291.3,231.3,277.1,276.1,275.6,274.8,261.8,176.3,172.4 +843,180.4,316.1,316.3,316.5,316.7,316.4,298.5,298.3,298.1,297.8,291.5,231.8,277.2,276.3,275.8,275,262,176.4,172.4 +844,180.4,316.2,316.4,316.6,316.7,316.5,298.7,298.4,298.2,297.9,291.6,232.3,277.4,276.5,275.9,275.1,262.3,176.4,172.4 +845,180.5,316.3,316.5,316.6,316.8,316.6,298.8,298.5,298.3,298.1,291.8,232.8,277.6,276.7,276.1,275.3,262.5,176.4,172.5 +846,180.5,316.4,316.6,316.7,316.9,316.7,298.9,298.6,298.5,298.2,292,233.3,277.8,276.8,276.3,275.5,262.8,176.5,172.5 +847,180.5,316.4,316.7,316.8,317,316.8,299,298.7,298.6,298.3,292.1,233.7,277.9,277,276.5,275.7,263,176.5,172.5 +848,180.5,316.5,316.8,316.9,317.1,316.9,299.1,298.9,298.7,298.4,292.3,234.2,278.1,277.2,276.7,275.9,263.2,176.5,172.5 +849,180.5,316.6,316.8,317,317.2,317,299.3,299,298.8,298.6,292.4,234.6,278.3,277.4,276.8,276,263.5,176.6,172.5 +850,180.5,316.7,316.9,317.1,317.3,317.1,299.4,299.1,299,298.7,292.6,235,278.4,277.5,277,276.2,263.7,176.6,172.5 +851,180.5,316.8,317,317.2,317.3,317.2,299.5,299.2,299.1,298.8,292.8,235.4,278.6,277.7,277.2,276.4,264,176.7,172.6 +852,180.5,316.9,317.1,317.2,317.4,317.3,299.6,299.4,299.2,299,292.9,235.8,278.8,277.9,277.4,276.6,264.2,176.7,172.6 +853,180.5,316.9,317.2,317.3,317.5,317.4,299.7,299.5,299.3,299.1,293.1,236.2,278.9,278.1,277.5,276.8,264.4,176.7,172.6 +854,180.5,317,317.3,317.4,317.6,317.5,299.8,299.6,299.5,299.2,293.2,236.6,279.1,278.2,277.7,276.9,264.7,176.8,172.6 +855,180.6,317.1,317.3,317.5,317.7,317.6,300,299.7,299.6,299.3,293.4,237,279.3,278.4,277.9,277.1,264.9,176.8,172.6 +856,180.6,317.2,317.4,317.6,317.8,317.6,300.1,299.9,299.7,299.5,293.6,237.4,279.4,278.6,278.1,277.3,265.1,176.8,172.6 +857,180.6,317.3,317.5,317.7,317.8,317.7,300.2,300,299.8,299.6,293.7,237.8,279.6,278.7,278.2,277.5,265.4,176.9,172.7 +858,180.6,317.4,317.6,317.7,317.9,317.8,300.3,300.1,300,299.7,293.9,238.1,279.8,278.9,278.4,277.7,265.6,176.9,172.7 +859,180.6,317.4,317.7,317.8,318,317.9,300.4,300.2,300.1,299.8,294,238.5,279.9,279.1,278.6,277.8,265.8,176.9,172.7 +860,180.6,317.5,317.8,317.9,318.1,318,300.5,300.3,300.2,300,294.2,238.9,280.1,279.3,278.7,278,266.1,177,172.7 +861,180.6,317.6,317.8,318,318.2,318.1,300.7,300.5,300.3,300.1,294.4,239.2,280.3,279.4,278.9,278.2,266.3,177,172.7 +862,180.6,317.7,317.9,318.1,318.3,318.2,300.8,300.6,300.4,300.2,294.5,239.6,280.4,279.6,279.1,278.4,266.5,177.1,172.7 +863,180.6,317.8,318,318.2,318.3,318.3,300.9,300.7,300.6,300.3,294.7,239.9,280.6,279.8,279.3,278.5,266.8,177.1,172.7 +864,180.6,317.8,318.1,318.2,318.4,318.4,301,300.8,300.7,300.5,294.8,240.3,280.8,279.9,279.4,278.7,267,177.1,172.8 +865,180.7,317.9,318.2,318.3,318.5,318.5,301.1,300.9,300.8,300.6,295,240.6,280.9,280.1,279.6,278.9,267.2,177.2,172.8 +866,180.7,318,318.3,318.4,318.6,318.6,301.2,301,300.9,300.7,295.1,240.9,281.1,280.3,279.8,279.1,267.5,177.2,172.8 +867,180.7,318.1,318.3,318.5,318.7,318.7,301.4,301.2,301,300.8,295.3,241.3,281.3,280.4,279.9,279.2,267.7,177.2,172.8 +868,180.7,318.2,318.4,318.6,318.8,318.8,301.5,301.3,301.2,301,295.4,241.6,281.4,280.6,280.1,279.4,267.9,177.3,172.8 +869,180.7,318.3,318.5,318.7,318.8,318.9,301.6,301.4,301.3,301.1,295.6,242,281.6,280.8,280.3,279.6,268.1,177.3,172.8 +870,180.7,318.3,318.6,318.7,318.9,318.9,301.7,301.5,301.4,301.2,295.8,242.3,281.7,280.9,280.5,279.7,268.4,177.4,172.9 +871,180.7,318.4,318.7,318.8,319,319,301.8,301.6,301.5,301.3,295.9,242.6,281.9,281.1,280.6,279.9,268.6,177.4,172.9 +872,180.7,318.5,318.7,318.9,319.1,319.1,301.9,301.7,301.6,301.4,296.1,242.9,282.1,281.3,280.8,280.1,268.8,177.4,172.9 +873,180.7,318.6,318.8,319,319.2,319.2,302,301.9,301.8,301.6,296.2,243.3,282.2,281.4,281,280.3,269,177.5,172.9 +874,180.7,318.7,318.9,319.1,319.3,319.3,302.1,302,301.9,301.7,296.4,243.6,282.4,281.6,281.1,280.4,269.2,177.5,172.9 +875,180.8,318.7,319,319.1,319.3,319.4,302.2,302.1,302,301.8,296.5,243.9,282.5,281.8,281.3,280.6,269.5,177.6,172.9 +876,180.8,318.8,319.1,319.2,319.4,319.5,302.4,302.2,302.1,301.9,296.7,244.2,282.7,281.9,281.5,280.8,269.7,177.6,173 +877,180.8,318.9,319.2,319.3,319.5,319.6,302.5,302.3,302.2,302.1,296.8,244.6,282.9,282.1,281.6,280.9,269.9,177.6,173 +878,180.8,319,319.2,319.4,319.6,319.7,302.6,302.4,302.3,302.2,297,244.9,283,282.2,281.8,281.1,270.1,177.7,173 +879,180.8,319.1,319.3,319.5,319.7,319.8,302.7,302.5,302.5,302.3,297.1,245.2,283.2,282.4,282,281.3,270.3,177.7,173 +880,180.8,319.2,319.4,319.6,319.8,319.9,302.8,302.7,302.6,302.4,297.3,245.5,283.3,282.6,282.1,281.4,270.5,177.8,173 +881,180.8,319.2,319.5,319.6,319.8,320,302.9,302.8,302.7,302.5,297.4,245.8,283.5,282.7,282.3,281.6,270.8,177.8,173 +882,180.8,319.3,319.6,319.7,319.9,320,303,302.9,302.8,302.6,297.6,246.2,283.7,282.9,282.5,281.8,271,177.8,173.1 +883,180.8,319.4,319.6,319.8,320,320.1,303.1,303,302.9,302.8,297.7,246.5,283.8,283.1,282.6,282,271.2,177.9,173.1 +884,180.8,319.5,319.7,319.9,320.1,320.2,303.2,303.1,303,302.9,297.9,246.8,284,283.2,282.8,282.1,271.4,177.9,173.1 +885,180.9,319.6,319.8,320,320.2,320.3,303.3,303.2,303.1,303,298,247.1,284.1,283.4,282.9,282.3,271.6,178,173.1 +886,180.9,319.6,319.9,320,320.3,320.4,303.4,303.3,303.3,303.1,298.2,247.4,284.3,283.5,283.1,282.5,271.8,178,173.1 +887,180.9,319.7,320,320.1,320.3,320.5,303.6,303.4,303.4,303.2,298.3,247.7,284.4,283.7,283.3,282.6,272,178,173.1 +888,180.9,319.8,320.1,320.2,320.4,320.6,303.7,303.6,303.5,303.3,298.5,248,284.6,283.9,283.4,282.8,272.3,178.1,173.2 +889,180.9,319.9,320.1,320.3,320.5,320.7,303.8,303.7,303.6,303.5,298.6,248.4,284.8,284,283.6,283,272.5,178.1,173.2 +890,180.9,320,320.2,320.4,320.6,320.8,303.9,303.8,303.7,303.6,298.8,248.7,284.9,284.2,283.8,283.1,272.7,178.2,173.2 +891,180.9,320,320.3,320.5,320.7,320.9,304,303.9,303.8,303.7,298.9,249,285.1,284.3,283.9,283.3,272.9,178.2,173.2 +892,180.9,320.1,320.4,320.5,320.7,320.9,304.1,304,303.9,303.8,299.1,249.3,285.2,284.5,284.1,283.4,273.1,178.3,173.2 +893,180.9,320.2,320.5,320.6,320.8,321,304.2,304.1,304,303.9,299.2,249.6,285.4,284.7,284.2,283.6,273.3,178.3,173.2 +894,180.9,320.3,320.5,320.7,320.9,321.1,304.3,304.2,304.2,304,299.4,249.9,285.5,284.8,284.4,283.8,273.5,178.3,173.3 +895,181,320.4,320.6,320.8,321,321.2,304.4,304.3,304.3,304.2,299.5,250.2,285.7,285,284.6,283.9,273.7,178.4,173.3 +896,181,320.4,320.7,320.9,321.1,321.3,304.5,304.4,304.4,304.3,299.7,250.5,285.8,285.1,284.7,284.1,273.9,178.4,173.3 +897,181,320.5,320.8,320.9,321.2,321.4,304.6,304.5,304.5,304.4,299.8,250.8,286,285.3,284.9,284.3,274.1,178.5,173.3 +898,181,320.6,320.9,321,321.2,321.5,304.7,304.6,304.6,304.5,300,251.1,286.1,285.5,285,284.4,274.3,178.5,173.3 +899,181,320.7,320.9,321.1,321.3,321.6,304.8,304.8,304.7,304.6,300.1,251.4,286.3,285.6,285.2,284.6,274.6,178.6,173.3 +900,181,320.8,321,321.2,321.4,321.7,304.9,304.9,304.8,304.7,300.3,251.7,286.4,285.8,285.4,284.8,274.8,178.6,173.4 +901,181,320.8,321.1,321.3,321.5,321.8,305,305,304.9,304.8,300.4,252,286.6,285.9,285.5,284.9,275,178.7,173.4 +902,181,320.9,321.2,321.3,321.6,321.8,305.1,305.1,305,304.9,300.6,252.3,286.8,286.1,285.7,285.1,275.2,178.7,173.4 +903,181,321,321.3,321.4,321.6,321.9,305.2,305.2,305.1,305.1,300.7,252.6,286.9,286.2,285.8,285.2,275.4,178.8,173.4 +904,181,321.1,321.3,321.5,321.7,322,305.3,305.3,305.2,305.2,300.8,252.9,287.1,286.4,286,285.4,275.6,178.8,173.4 +905,181.1,321.2,321.4,321.6,321.8,322.1,305.4,305.4,305.4,305.3,301,253.2,287.2,286.5,286.1,285.6,275.8,178.8,173.4 +906,181.1,321.2,321.5,321.7,321.9,322.2,305.5,305.5,305.5,305.4,301.1,253.5,287.4,286.7,286.3,285.7,276,178.9,173.5 +907,181.1,321.3,321.6,321.7,322,322.3,305.6,305.6,305.6,305.5,301.3,253.8,287.5,286.9,286.5,285.9,276.2,178.9,173.5 +908,181.1,321.4,321.7,321.8,322,322.4,305.7,305.7,305.7,305.6,301.4,254.1,287.7,287,286.6,286,276.4,179,173.5 +909,181.1,321.5,321.7,321.9,322.1,322.5,305.8,305.8,305.8,305.7,301.6,254.4,287.8,287.2,286.8,286.2,276.6,179,173.5 +910,181.1,321.6,321.8,322,322.2,322.6,305.9,305.9,305.9,305.8,301.7,254.7,288,287.3,286.9,286.4,276.8,179.1,173.5 +911,181.1,321.6,321.9,322.1,322.3,322.6,306,306,306,305.9,301.8,255,288.1,287.5,287.1,286.5,277,179.1,173.5 +912,181.1,321.7,322,322.2,322.4,322.7,306.1,306.1,306.1,306,302,255.3,288.3,287.6,287.2,286.7,277.2,179.2,173.6 +913,181.1,321.8,322.1,322.2,322.5,322.8,306.2,306.2,306.2,306.1,302.1,255.6,288.4,287.8,287.4,286.8,277.4,179.2,173.6 +914,181.1,321.9,322.1,322.3,322.5,322.9,306.3,306.3,306.3,306.3,302.3,255.9,288.5,287.9,287.5,287,277.6,179.3,173.6 +915,181.1,322,322.2,322.4,322.6,323,306.4,306.4,306.4,306.4,302.4,256.2,288.7,288.1,287.7,287.1,277.8,179.3,173.6 +916,181.2,322,322.3,322.5,322.7,323.1,306.5,306.5,306.5,306.5,302.6,256.5,288.8,288.2,287.9,287.3,278,179.4,173.6 +917,181.2,322.1,322.4,322.6,322.8,323.2,306.6,306.6,306.6,306.6,302.7,256.8,289,288.4,288,287.5,278.2,179.4,173.6 +918,181.2,322.2,322.5,322.6,322.9,323.3,306.7,306.7,306.7,306.7,302.8,257.1,289.1,288.5,288.2,287.6,278.3,179.5,173.7 +919,181.2,322.3,322.5,322.7,322.9,323.3,306.8,306.8,306.8,306.8,303,257.4,289.3,288.7,288.3,287.8,278.5,179.5,173.7 +920,181.2,322.3,322.6,322.8,323,323.4,306.9,306.9,306.9,306.9,303.1,257.6,289.4,288.8,288.5,287.9,278.7,179.6,173.7 +921,181.2,322.4,322.7,322.9,323.1,323.5,307,307,307,307,303.2,257.9,289.6,289,288.6,288.1,278.9,179.6,173.7 +922,181.2,322.5,322.8,322.9,323.2,323.6,307.1,307.1,307.1,307.1,303.4,258.2,289.7,289.1,288.8,288.2,279.1,179.7,173.7 +923,181.2,322.6,322.9,323,323.3,323.7,307.2,307.2,307.2,307.2,303.5,258.5,289.9,289.3,288.9,288.4,279.3,179.7,173.7 +924,181.2,322.7,322.9,323.1,323.3,323.8,307.3,307.3,307.3,307.3,303.7,258.8,290,289.4,289.1,288.5,279.5,179.8,173.8 +925,181.2,322.7,323,323.2,323.4,323.9,307.4,307.4,307.4,307.4,303.8,259.1,290.2,289.6,289.2,288.7,279.7,179.9,173.8 +926,181.3,322.8,323.1,323.3,323.5,323.9,307.5,307.5,307.5,307.5,303.9,259.3,290.3,289.7,289.4,288.9,279.9,179.9,173.8 +927,181.3,322.9,323.2,323.3,323.6,324,307.6,307.6,307.6,307.6,304.1,259.6,290.4,289.9,289.5,289,280.1,180,173.8 +928,181.3,323,323.3,323.4,323.7,324.1,307.7,307.7,307.7,307.7,304.2,259.9,290.6,290,289.7,289.2,280.3,180,173.8 +929,181.3,323.1,323.3,323.5,323.7,324.2,307.8,307.8,307.8,307.8,304.3,260.2,290.7,290.2,289.8,289.3,280.5,180.1,173.8 +930,181.3,323.1,323.4,323.6,323.8,324.3,307.9,307.9,307.9,307.9,304.5,260.5,290.9,290.3,290,289.5,280.7,180.1,173.9 +931,181.3,323.2,323.5,323.7,323.9,324.4,308,308,308,308,304.6,260.7,291,290.5,290.1,289.6,280.8,180.2,173.9 +932,181.3,323.3,323.6,323.7,324,324.5,308.1,308.1,308.1,308.1,304.8,261,291.2,290.6,290.3,289.8,281,180.2,173.9 +933,181.3,323.4,323.7,323.8,324.1,324.6,308.2,308.2,308.2,308.2,304.9,261.3,291.3,290.8,290.4,289.9,281.2,180.3,173.9 +934,181.3,323.4,323.7,323.9,324.1,324.6,308.3,308.3,308.3,308.3,305,261.6,291.4,290.9,290.6,290.1,281.4,180.4,173.9 +935,181.3,323.5,323.8,324,324.2,324.7,308.4,308.4,308.4,308.5,305.2,261.8,291.6,291,290.7,290.2,281.6,180.4,174 +936,181.3,323.6,323.9,324.1,324.3,324.8,308.5,308.5,308.5,308.6,305.3,262.1,291.7,291.2,290.9,290.4,281.8,180.5,174 +937,181.4,323.7,324,324.1,324.4,324.9,308.6,308.6,308.6,308.7,305.4,262.4,291.9,291.3,291,290.5,282,180.5,174 +938,181.4,323.8,324,324.2,324.4,325,308.7,308.7,308.7,308.8,305.6,262.6,292,291.5,291.2,290.7,282.2,180.6,174 +939,181.4,323.8,324.1,324.3,324.5,325.1,308.7,308.8,308.8,308.9,305.7,262.9,292.1,291.6,291.3,290.8,282.3,180.6,174 +940,181.4,323.9,324.2,324.4,324.6,325.1,308.8,308.9,308.9,309,305.8,263.2,292.3,291.8,291.5,291,282.5,180.7,174 +941,181.4,324,324.3,324.5,324.7,325.2,308.9,309,309,309.1,306,263.4,292.4,291.9,291.6,291.1,282.7,180.8,174.1 +942,181.4,324.1,324.4,324.5,324.8,325.3,309,309.1,309.1,309.2,306.1,263.7,292.6,292.1,291.7,291.3,282.9,180.8,174.1 +943,181.4,324.2,324.4,324.6,324.8,325.4,309.1,309.2,309.2,309.3,306.2,264,292.7,292.2,291.9,291.4,283.1,180.9,174.1 +944,181.4,324.2,324.5,324.7,324.9,325.5,309.2,309.3,309.3,309.4,306.4,264.2,292.8,292.3,292,291.6,283.3,180.9,174.1 +945,181.4,324.3,324.6,324.8,325,325.6,309.3,309.4,309.4,309.5,306.5,264.5,293,292.5,292.2,291.7,283.4,181,174.1 +946,181.4,324.4,324.7,324.8,325.1,325.7,309.4,309.5,309.5,309.6,306.6,264.8,293.1,292.6,292.3,291.9,283.6,181.1,174.1 +947,181.4,324.5,324.8,324.9,325.2,325.7,309.5,309.6,309.6,309.7,306.7,265,293.3,292.8,292.5,292,283.8,181.1,174.2 +948,181.5,324.5,324.8,325,325.2,325.8,309.6,309.7,309.7,309.7,306.9,265.3,293.4,292.9,292.6,292.2,284,181.2,174.2 +949,181.5,324.6,324.9,325.1,325.3,325.9,309.7,309.8,309.8,309.8,307,265.5,293.5,293,292.8,292.3,284.2,181.3,174.2 +950,181.5,324.7,325,325.2,325.4,326,309.8,309.9,309.9,309.9,307.1,265.8,293.7,293.2,292.9,292.4,284.4,181.3,174.2 +951,181.5,324.8,325.1,325.2,325.5,326.1,309.9,309.9,310,310,307.3,266,293.8,293.3,293,292.6,284.5,181.4,174.2 +952,181.5,324.9,325.1,325.3,325.6,326.2,310,310,310.1,310.1,307.4,266.3,293.9,293.5,293.2,292.7,284.7,181.5,174.2 +953,181.5,324.9,325.2,325.4,325.6,326.3,310.1,310.1,310.2,310.2,307.5,266.5,294.1,293.6,293.3,292.9,284.9,181.5,174.3 +954,181.5,325,325.3,325.5,325.7,326.3,310.1,310.2,310.3,310.3,307.7,266.8,294.2,293.7,293.5,293,285.1,181.6,174.3 +955,181.5,325.1,325.4,325.6,325.8,326.4,310.2,310.3,310.4,310.4,307.8,267,294.3,293.9,293.6,293.2,285.3,181.7,174.3 +956,181.5,325.2,325.5,325.6,325.9,326.5,310.3,310.4,310.5,310.5,307.9,267.3,294.5,294,293.7,293.3,285.4,181.7,174.3 +957,181.5,325.2,325.5,325.7,325.9,326.6,310.4,310.5,310.6,310.6,308,267.5,294.6,294.2,293.9,293.5,285.6,181.8,174.3 +958,181.6,325.3,325.6,325.8,326,326.7,310.5,310.6,310.7,310.7,308.2,267.8,294.8,294.3,294,293.6,285.8,181.9,174.4 +959,181.6,325.4,325.7,325.9,326.1,326.8,310.6,310.7,310.8,310.8,308.3,268,294.9,294.4,294.2,293.7,286,181.9,174.4 +960,181.6,325.5,325.8,325.9,326.2,326.8,310.7,310.8,310.9,310.9,308.4,268.3,295,294.6,294.3,293.9,286.1,182,174.4 +961,181.6,325.6,325.8,326,326.3,326.9,310.8,310.9,310.9,311,308.5,268.5,295.2,294.7,294.4,294,286.3,182.1,174.4 +962,181.6,325.6,325.9,326.1,326.3,327,310.9,311,311,311.1,308.7,268.8,295.3,294.8,294.6,294.2,286.5,182.2,174.4 +963,181.6,325.7,326,326.2,326.4,327.1,311,311.1,311.1,311.2,308.8,269,295.4,295,294.7,294.3,286.7,182.2,174.4 +964,181.6,325.8,326.1,326.3,326.5,327.2,311.1,311.2,311.2,311.3,308.9,269.3,295.5,295.1,294.9,294.5,286.9,182.3,174.5 +965,181.6,325.9,326.2,326.3,326.6,327.3,311.2,311.3,311.3,311.4,309,269.5,295.7,295.3,295,294.6,287,182.4,174.5 +966,181.6,325.9,326.2,326.4,326.7,327.3,311.2,311.3,311.4,311.5,309.2,269.8,295.8,295.4,295.1,294.7,287.2,182.5,174.5 +967,181.6,326,326.3,326.5,326.7,327.4,311.3,311.4,311.5,311.6,309.3,270,295.9,295.5,295.3,294.9,287.4,182.5,174.5 +968,181.6,326.1,326.4,326.6,326.8,327.5,311.4,311.5,311.6,311.7,309.4,270.2,296.1,295.7,295.4,295,287.6,182.6,174.5 +969,181.7,326.2,326.5,326.6,326.9,327.6,311.5,311.6,311.7,311.8,309.5,270.5,296.2,295.8,295.5,295.2,287.7,182.7,174.5 +970,181.7,326.3,326.5,326.7,327,327.7,311.6,311.7,311.8,311.9,309.7,270.7,296.3,295.9,295.7,295.3,287.9,182.8,174.6 +971,181.7,326.3,326.6,326.8,327,327.8,311.7,311.8,311.9,312,309.8,270.9,296.5,296.1,295.8,295.4,288.1,182.8,174.6 +972,181.7,326.4,326.7,326.9,327.1,327.8,311.8,311.9,312,312,309.9,271.2,296.6,296.2,296,295.6,288.2,182.9,174.6 +973,181.7,326.5,326.8,327,327.2,327.9,311.9,312,312.1,312.1,310,271.4,296.7,296.3,296.1,295.7,288.4,183,174.6 +974,181.7,326.6,326.9,327,327.3,328,312,312.1,312.2,312.2,310.2,271.7,296.9,296.5,296.2,295.9,288.6,190.1,174.6 +975,181.7,326.6,326.9,327.1,327.4,328.1,312.1,312.2,312.2,312.3,310.3,271.9,297,296.6,296.4,296,288.8,215.2,174.6 +976,181.7,326.7,327,327.2,327.4,328.2,312.2,312.3,312.3,312.4,310.4,272.1,297.1,296.7,296.5,296.1,288.9,215.3,174.7 +977,181.7,326.8,327.1,327.3,327.5,328.2,312.3,312.4,312.4,312.5,310.5,272.3,297.2,296.9,296.6,296.3,289.1,215.4,174.7 +978,181.7,326.9,327.2,327.3,327.6,328.3,312.3,312.5,312.5,312.6,310.6,272.6,297.4,297,296.8,296.4,289.3,215.5,174.7 +979,181.7,327,327.2,327.4,327.7,328.4,312.4,312.5,312.6,312.7,310.8,272.8,297.5,297.1,296.9,296.5,289.4,215.6,174.7 +980,181.7,327,327.3,327.5,327.7,328.5,312.5,312.6,312.7,312.8,310.9,273,297.6,297.3,297,296.7,289.6,215.7,174.7 +981,181.8,327.1,327.4,327.6,327.8,328.6,312.6,312.7,312.8,312.9,311,273.3,297.7,297.4,297.2,296.8,289.8,215.8,174.8 +982,181.8,327.2,327.5,327.7,327.9,328.7,312.7,312.8,312.9,313,311.1,273.5,297.9,297.5,297.3,297,290,215.9,174.8 +983,181.8,327.3,327.6,327.7,328,328.7,312.8,312.9,313,313.1,311.2,273.7,298,297.6,297.4,297.1,290.1,219.2,174.8 +984,181.8,327.3,327.6,327.8,328.1,328.8,312.9,313,313.1,313.2,311.4,274,298.1,297.8,297.6,297.2,290.3,220.6,174.8 +985,181.8,327.4,327.7,327.9,328.1,328.9,313,313.1,313.2,313.3,311.5,274.2,298.3,297.9,297.7,297.4,290.5,221.8,174.8 +986,181.8,327.5,327.8,328,328.2,329,313.1,313.2,313.3,313.3,311.6,274.4,298.4,298,297.8,297.5,290.6,222.9,174.8 +987,181.8,327.6,327.9,328,328.3,329.1,313.2,313.3,313.4,313.4,311.7,274.6,298.5,298.2,298,297.6,290.8,223.9,174.9 +988,181.8,327.6,327.9,328.1,328.4,329.1,313.3,313.4,313.4,313.5,311.8,274.9,298.6,298.3,298.1,297.8,291,224.9,174.9 +989,181.8,327.7,328,328.2,328.4,329.2,313.3,313.5,313.5,313.6,311.9,275.1,298.7,298.4,298.2,297.9,291.1,225.7,174.9 +990,181.8,327.8,328.1,328.3,328.5,329.3,313.4,313.6,313.6,313.7,312.1,275.3,298.9,298.6,298.3,298,291.3,226.5,174.9 +991,181.8,327.9,328.2,328.4,328.6,329.4,313.5,313.6,313.7,313.8,312.2,275.5,299,298.7,298.5,298.2,291.5,227.3,174.9 +992,181.9,328,328.2,328.4,328.7,329.5,313.6,313.7,313.8,313.9,312.3,275.7,299.1,298.8,298.6,298.3,291.6,228,174.9 +993,181.9,328,328.3,328.5,328.8,329.6,313.7,313.8,313.9,314,312.4,276,299.2,298.9,298.7,298.4,291.8,228.7,175 +994,181.9,328.1,328.4,328.6,328.8,329.6,313.8,313.9,314,314.1,312.5,276.2,299.4,299.1,298.9,298.6,292,229.4,175 +995,181.9,328.2,328.5,328.7,328.9,329.7,313.9,314,314.1,314.2,312.6,276.4,299.5,299.2,299,298.7,292.1,230,175 +996,181.9,328.3,328.6,328.7,329,329.8,314,314.1,314.2,314.3,312.7,276.6,299.6,299.3,299.1,298.8,292.3,230.6,175 +997,181.9,328.3,328.6,328.8,329.1,329.9,314.1,314.2,314.3,314.4,312.9,276.8,299.7,299.4,299.3,299,292.5,231.2,175 +998,181.9,328.4,328.7,328.9,329.1,330,314.2,314.3,314.4,314.5,313,277.1,299.9,299.6,299.4,299.1,292.6,231.7,175.1 +999,181.9,328.5,328.8,329,329.2,330,314.3,314.4,314.5,314.5,313.1,277.3,300,299.7,299.5,299.2,292.8,232.2,175.1 +1000,181.9,328.6,328.9,329,329.3,330.1,314.4,314.5,314.5,314.6,313.2,277.5,300.1,299.8,299.6,299.3,292.9,232.8,175.1 diff --git a/test/Data Tables/300 MHz - Lb(0.50)_P528.csv b/test/Data Tables/300 MHz - Lb(0.50)_P528.csv new file mode 100644 index 0000000..2d1d6bf --- /dev/null +++ b/test/Data Tables/300 MHz - Lb(0.50)_P528.csv @@ -0,0 +1,1005 @@ +300MHz / Lb(0.50) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,82,82,81.9,81.7,81.5,0,102,102,102,102,101.1,0,108,108,108,108,107.6,102,0 +1,84.9,84.9,84.9,84.8,84.7,82,102,102,102,101.9,101.1,82,108,108,108,108,107.6,102,82 +2,88.9,89,88.9,88.9,88.9,88,102.1,102,102,102,101.2,88,108,108,108,108,107.5,102.1,88 +3,92,92,92,92,91.9,91.5,102.2,102.2,102.2,102.2,101.4,91.6,108,108,108,108,107.6,102.3,91.6 +4,94.3,94.3,94.3,94.3,94.3,94,102.4,102.4,102.4,102.4,101.7,94.1,108,108,108,108,107.6,102.5,94.1 +5,96.1,96.1,96.1,96.1,96.1,96,102.7,102.7,102.7,102.7,102,96,108.1,108.1,108.1,108.1,107.7,102.8,96 +6,97.7,97.7,97.7,97.7,97.7,97.6,103.1,103.1,103,103,102.4,97.6,108.2,108.2,108.1,108.1,107.8,103.2,97.6 +7,99,99,99,99,99,98.9,103.5,103.4,103.4,103.4,102.9,98.9,108.3,108.2,108.2,108.2,107.9,103.6,98.9 +8,100.1,100.1,100.1,100.1,100.1,100.1,103.9,103.9,103.9,103.8,103.4,100.1,108.4,108.4,108.4,108.3,108,104,100.1 +9,101.1,101.1,101.1,101.1,101.1,101.1,104.3,104.3,104.3,104.3,103.8,101.1,108.5,108.5,108.5,108.5,108.1,104.4,101.1 +10,102,102,102,102,102,102,104.7,104.7,104.7,104.7,104.3,102,108.6,108.6,108.6,108.6,108.3,104.8,102 +11,102.9,102.9,102.9,102.9,102.9,102.8,105.2,105.2,105.2,105.2,104.8,102.8,108.8,108.8,108.8,108.8,108.5,105.3,102.8 +12,103.6,103.6,103.6,103.6,103.6,103.6,105.6,105.6,105.6,105.6,105.3,103.6,109,109,109,109,108.7,105.7,103.6 +13,104.3,104.3,104.3,104.3,104.3,104.3,106.1,106.1,106.1,106.1,105.8,104.3,109.2,109.2,109.2,109.1,108.9,106.1,104.3 +14,104.9,105,105,105,105,104.9,106.5,106.5,106.5,106.5,106.2,104.9,109.4,109.4,109.4,109.3,109.1,106.5,104.9 +15,105.5,105.6,105.6,105.6,105.6,105.5,106.9,106.9,106.9,106.9,106.7,105.5,109.6,109.6,109.6,109.6,109.3,107,105.5 +16,106.1,106.6,106.1,106.1,106.1,106.1,107.3,107.3,107.3,107.3,107.1,106.1,109.8,109.8,109.8,109.8,109.5,107.4,106.1 +17,106.6,107.6,106.6,106.6,106.6,106.6,107.7,107.7,107.7,107.7,107.5,106.6,110,110,110,110,109.8,107.8,106.6 +18,107.1,108.6,107.1,107.1,107.1,107.1,108.1,108.1,108.1,108.1,107.9,107.1,110.2,110.2,110.2,110.2,110,108.1,107.1 +19,107.6,109.5,107.6,107.6,107.6,107.6,108.5,108.5,108.5,108.5,108.3,107.6,110.4,110.4,110.4,110.4,110.2,108.5,107.6 +20,108,110.4,108.1,108.1,108.1,108,108.9,108.9,108.9,108.9,108.7,108,110.7,110.7,110.7,110.7,110.5,108.9,108 +21,108.4,111.2,108.5,108.5,108.5,108.5,109.2,109.2,109.2,109.2,109.1,108.5,110.9,110.9,110.9,110.9,110.7,109.2,108.5 +22,108.8,112,108.9,108.9,108.9,108.9,109.6,109.6,109.6,109.6,109.4,108.9,111.1,111.1,111.1,111.1,110.9,109.5,108.9 +23,109.2,112.8,109.3,109.3,109.3,109.3,109.9,109.9,109.9,109.9,109.8,109.3,111.3,111.3,111.3,111.3,111.2,109.9,109.2 +24,109.6,113.5,109.6,109.6,109.6,109.6,110.2,110.2,110.2,110.2,110.1,109.6,111.6,111.6,111.6,111.6,111.4,110.2,109.6 +25,110,114.3,110,110,110,110,110.5,110.5,110.5,110.5,110.4,110,111.8,111.8,111.8,111.8,111.6,110.5,110 +26,110.3,114.9,110.3,110.3,110.3,110.3,110.8,110.8,110.8,110.8,110.7,110.3,112,112,112,112,111.9,110.8,110.3 +27,110.6,115.6,110.7,110.7,110.7,110.6,111.1,111.1,111.1,111.1,111,110.6,112.2,112.2,112.2,112.2,112.1,111.1,110.6 +28,110.9,116.3,111,111,111,111,111.4,111.4,111.4,111.4,111.3,111,112.5,112.5,112.5,112.4,112.3,111.4,111 +29,111.2,116.9,111.3,111.3,111.3,111.3,111.7,111.7,111.7,111.7,111.6,111.3,112.7,112.7,112.7,112.7,112.5,111.7,111.3 +30,111.5,117.5,111.6,111.6,111.6,111.6,112,112,112,112,111.9,111.6,112.9,112.9,112.9,112.9,112.8,111.9,111.6 +31,111.8,118.1,111.9,111.9,111.9,111.9,112.2,112.2,112.2,112.2,112.2,111.8,113.1,113.1,113.1,113.1,113,112.2,111.8 +32,112.1,118.7,112.1,112.1,112.1,112.1,112.5,112.5,112.5,112.5,112.4,112.1,113.3,113.3,113.3,113.3,113.2,112.4,112.1 +33,112.4,119.2,112.4,112.4,112.4,112.4,112.7,112.7,112.7,112.7,112.7,112.4,113.5,113.5,113.5,113.5,113.4,112.7,112.4 +34,112.6,119.8,112.7,112.7,112.7,112.7,113,113,113,113,112.9,112.6,113.7,113.7,113.7,113.7,113.6,112.9,112.6 +35,112.9,120.3,112.9,112.9,112.9,112.9,113.2,113.2,113.2,113.2,113.2,112.9,113.9,113.9,113.9,113.9,113.8,113.2,112.9 +36,113.1,120.8,113.2,113.2,113.2,113.2,113.4,113.4,113.4,113.4,113.4,113.1,114.1,114.1,114.1,114.1,114,113.4,113.1 +37,113.4,121.3,113.4,113.4,113.4,113.4,113.7,113.7,113.7,113.7,113.6,113.4,114.3,114.3,114.3,114.3,114.2,113.6,113.4 +38,113.6,121.8,113.6,113.6,113.6,113.6,113.9,113.9,113.9,113.9,113.8,113.6,114.5,114.5,114.5,114.5,114.4,113.8,113.6 +39,113.8,122.3,113.8,113.8,113.8,113.9,114.1,114.1,114.1,114.1,114.1,113.8,114.7,114.7,114.7,114.7,114.6,114.1,113.8 +40,114,122.8,114.1,114.1,114.1,114.1,114.3,114.3,114.3,114.3,114.3,114.1,114.8,114.8,114.8,114.8,114.8,114.3,114.1 +41,114.3,123.2,114.3,114.3,114.3,114.3,114.5,114.5,114.5,114.5,114.5,114.3,115,115,115,115,115,114.5,114.3 +42,114.5,123.7,114.5,114.5,114.5,114.5,114.7,114.7,114.7,114.7,114.7,114.5,115.2,115.2,115.2,115.2,115.1,114.7,114.5 +43,114.7,124.1,114.7,114.7,114.7,114.7,114.9,114.9,114.9,114.9,114.9,114.7,115.4,115.4,115.4,115.4,115.3,114.9,114.7 +44,114.9,124.6,114.9,114.9,114.9,114.9,115.1,115.1,115.1,115.1,115.1,114.9,115.6,115.6,115.5,115.5,115.5,115.1,114.9 +45,115.1,125,115.1,115.1,115.1,115.1,115.3,115.3,115.3,115.3,115.3,115.1,115.7,115.7,115.7,115.7,115.7,115.2,115.1 +46,115.2,125.4,115.3,115.3,115.3,115.3,115.5,115.5,115.5,115.5,115.4,115.3,115.9,115.9,115.9,115.9,115.8,115.4,115.3 +47,115.4,125.9,115.5,115.5,115.5,115.5,115.7,115.7,115.7,115.7,115.6,115.5,116,116,116,116,116,115.6,115.5 +48,115.6,126.3,115.6,115.6,115.6,115.7,115.8,115.8,115.8,115.8,115.8,115.6,116.2,116.2,116.2,116.2,116.2,115.8,115.6 +49,115.8,126.7,115.8,115.8,115.8,115.8,116,116,116,116,116,115.8,116.4,116.4,116.4,116.4,116.3,116,115.8 +50,116,127.1,116,116,116,116,116.2,116.2,116.2,116.2,116.2,116,116.5,116.5,116.5,116.5,116.5,116.1,116 +51,116.1,127.5,116.2,116.2,116.2,116.2,116.4,116.3,116.3,116.3,116.3,116.2,116.7,116.7,116.7,116.7,116.6,116.3,116.2 +52,116.3,127.9,116.3,116.3,116.3,116.4,116.5,116.5,116.5,116.5,116.5,116.3,116.8,116.8,116.8,116.8,116.8,116.5,116.3 +53,116.5,128.3,116.5,116.5,116.5,116.5,116.7,116.7,116.7,116.7,116.7,116.5,117,117,117,117,116.9,116.6,116.5 +54,116.6,128.6,116.7,116.7,116.7,116.7,116.8,116.8,116.8,116.8,116.8,116.7,117.1,117.1,117.1,117.1,117.1,116.8,116.7 +55,116.8,129,116.8,116.8,116.8,116.8,117,117,117,117,117,116.8,117.3,117.3,117.3,117.3,117.2,116.9,116.8 +56,117,129.4,117,117,117,117,117.1,117.1,117.1,117.1,117.1,117,117.4,117.4,117.4,117.4,117.4,117.1,117 +57,117.1,129.8,117.1,117.1,117.1,117.2,117.3,117.3,117.3,117.3,117.3,117.1,117.6,117.6,117.6,117.6,117.5,117.2,117.1 +58,117.3,130.1,117.3,117.3,117.3,117.3,117.4,117.4,117.4,117.4,117.4,117.3,117.7,117.7,117.7,117.7,117.7,117.4,117.3 +59,117.4,130.5,117.4,117.4,117.4,117.5,117.6,117.6,117.6,117.6,117.6,117.4,117.8,117.8,117.8,117.8,117.8,117.5,117.4 +60,117.6,130.8,117.6,117.6,117.6,117.6,117.7,117.7,117.7,117.7,117.7,117.6,118,118,118,118,117.9,117.7,117.6 +61,117.7,131.2,117.7,117.7,117.7,117.7,117.9,117.9,117.9,117.9,117.9,117.7,118.1,118.1,118.1,118.1,118.1,117.8,117.7 +62,117.8,131.5,117.8,117.8,117.9,117.9,118,118,118,118,118,117.9,118.2,118.2,118.2,118.2,118.2,118,117.9 +63,118,131.9,118,118,118,118,118.2,118.2,118.2,118.2,118.1,118,118.4,118.4,118.4,118.4,118.3,118.1,118 +64,118.1,132.2,118.1,118.1,118.1,118.2,118.3,118.3,118.3,118.3,118.3,118.2,118.5,118.5,118.5,118.5,118.5,118.2,118.1 +65,118.3,132.6,118.2,118.2,118.3,118.3,118.4,118.4,118.4,118.4,118.4,118.3,118.6,118.6,118.6,118.6,118.6,118.4,118.3 +66,118.4,132.9,118.4,118.4,118.4,118.4,118.6,118.6,118.6,118.6,118.5,118.4,118.7,118.7,118.7,118.7,118.7,118.5,118.4 +67,118.5,133.3,118.5,118.5,118.5,118.6,118.7,118.7,118.7,118.7,118.7,118.6,118.9,118.9,118.9,118.9,118.8,118.6,118.5 +68,118.6,133.6,118.6,118.6,118.6,118.7,118.8,118.8,118.8,118.8,118.8,118.7,119,119,119,119,119,118.7,118.7 +69,118.8,133.9,118.7,118.8,118.8,118.8,118.9,118.9,118.9,118.9,118.9,118.8,119.1,119.1,119.1,119.1,119.1,118.9,118.8 +70,118.9,134.3,118.9,118.9,118.9,118.9,119.1,119.1,119.1,119.1,119,118.9,119.2,119.2,119.2,119.2,119.2,119,118.9 +71,119,134.6,119,119,119,119.1,119.2,119.2,119.2,119.2,119.2,119.1,119.3,119.3,119.3,119.3,119.3,119.1,119 +72,119.1,134.9,119.1,119.1,119.1,119.2,119.3,119.3,119.3,119.3,119.3,119.2,119.5,119.5,119.5,119.5,119.4,119.2,119.2 +73,119.3,135.3,119.2,119.2,119.2,119.3,119.4,119.4,119.4,119.4,119.4,119.3,119.6,119.6,119.6,119.6,119.5,119.4,119.3 +74,119.4,135.6,119.3,119.3,119.4,119.4,119.5,119.5,119.5,119.5,119.5,119.4,119.7,119.7,119.7,119.7,119.7,119.5,119.4 +75,119.5,135.9,119.4,119.5,119.5,119.5,119.7,119.7,119.7,119.7,119.6,119.5,119.8,119.8,119.8,119.8,119.8,119.6,119.5 +76,119.6,136.3,119.6,119.6,119.6,119.6,119.8,119.8,119.8,119.8,119.8,119.7,119.9,119.9,119.9,119.9,119.9,119.7,119.6 +77,119.7,136.6,119.7,119.7,119.7,119.8,119.9,119.9,119.9,119.9,119.9,119.8,120,120,120,120,120,119.8,119.7 +78,119.8,136.9,119.8,119.8,119.8,119.9,120,120,120,120,120,119.9,120.1,120.1,120.1,120.1,120.1,119.9,119.9 +79,119.9,137.3,119.9,119.9,119.9,120,120.1,120.1,120.1,120.1,120.1,120,120.2,120.2,120.2,120.2,120.2,120,120 +80,120.1,137.6,120,120,120,120.1,120.2,120.2,120.2,120.2,120.2,120.1,120.3,120.3,120.3,120.3,120.3,120.1,120.1 +81,120.2,137.9,120.1,120.1,120.1,120.2,120.3,120.3,120.3,120.3,120.3,120.2,120.4,120.4,120.4,120.4,120.4,120.2,120.2 +82,120.3,138.2,120.2,120.2,120.2,120.3,120.4,120.4,120.4,120.4,120.4,120.3,120.5,120.5,120.5,120.5,120.5,120.4,120.3 +83,120.4,138.6,120.3,120.3,120.3,120.4,120.5,120.5,120.5,120.5,120.5,120.4,120.6,120.6,120.6,120.6,120.6,120.5,120.4 +84,120.5,138.9,120.4,120.4,120.4,120.5,120.6,120.6,120.6,120.6,120.6,120.5,120.7,120.7,120.7,120.7,120.7,120.6,120.5 +85,120.6,139.2,120.5,120.5,120.5,120.6,120.7,120.7,120.7,120.7,120.7,120.6,120.8,120.8,120.8,120.8,120.8,120.7,120.6 +86,120.7,139.6,120.6,120.6,120.6,120.7,120.8,120.8,120.8,120.8,120.8,120.7,120.9,120.9,120.9,120.9,120.9,120.8,120.7 +87,120.8,139.9,120.8,120.7,120.7,120.8,120.9,120.9,120.9,120.9,120.9,120.8,121,121,121,121,121,120.9,120.8 +88,120.9,140.2,121,120.8,120.8,120.9,121,121,121,121,121,120.9,121.1,121.1,121.1,121.1,121.1,121,120.9 +89,121,140.5,121.1,120.9,120.9,121,121.1,121.1,121.1,121.1,121.1,121,121.2,121.2,121.2,121.2,121.2,121.1,121 +90,121.1,140.9,121.3,121.1,121,121.1,121.2,121.2,121.2,121.2,121.2,121.1,121.3,121.3,121.3,121.3,121.3,121.2,121.1 +91,121.2,141.2,121.5,121.3,121.1,121.2,121.3,121.3,121.3,121.3,121.3,121.2,121.4,121.4,121.4,121.4,121.4,121.3,121.2 +92,121.3,141.5,121.7,121.4,121.2,121.3,121.4,121.4,121.4,121.4,121.4,121.3,121.5,121.5,121.5,121.5,121.5,121.3,121.3 +93,121.4,141.8,121.8,121.6,121.3,121.4,121.5,121.5,121.5,121.5,121.5,121.4,121.6,121.6,121.6,121.6,121.6,121.4,121.4 +94,121.5,142.1,122,121.8,121.5,121.5,121.6,121.6,121.6,121.6,121.6,121.5,121.7,121.7,121.7,121.7,121.7,121.5,121.5 +95,121.5,142.4,122.3,121.9,121.6,121.6,121.7,121.7,121.7,121.7,121.7,121.6,121.8,121.8,121.8,121.8,121.8,121.6,121.6 +96,121.6,142.7,122.6,122.1,121.8,121.7,121.8,121.8,121.8,121.8,121.8,121.7,121.9,121.9,121.9,121.9,121.8,121.7,121.7 +97,121.7,143.1,123,122.2,121.9,121.8,121.9,121.9,121.9,121.9,121.9,121.8,122,122,122,122,121.9,121.8,121.7 +98,121.8,143.4,123.3,122.4,122.1,121.8,122,122,122,122,122,121.9,122,122,122,122,122,121.9,121.8 +99,121.9,143.7,123.7,122.6,122.3,121.9,122.1,122.1,122.1,122.1,122.1,122,122.1,122.1,122.1,122.1,122.1,122,121.9 +100,122,144,124,122.7,122.4,122,122.2,122.2,122.2,122.2,122.2,122,122.2,122.2,122.2,122.2,122.2,122.1,122 +101,122.1,144.3,124.4,122.9,122.6,122.1,122.2,122.2,122.2,122.2,122.2,122.1,122.3,122.3,122.3,122.3,122.3,122.2,122.1 +102,122.2,144.6,124.7,123.1,122.7,122.2,122.3,122.3,122.3,122.3,122.3,122.2,122.4,122.4,122.4,122.4,122.4,122.2,122.2 +103,122.2,144.9,125.1,123.2,122.9,122.3,122.4,122.4,122.4,122.4,122.4,122.3,122.5,122.5,122.5,122.5,122.5,122.3,122.3 +104,122.3,145.2,125.5,123.4,123,122.3,122.5,122.5,122.5,122.5,122.5,122.4,122.5,122.5,122.5,122.5,122.5,122.4,122.3 +105,122.4,145.5,125.9,123.6,123.2,122.4,122.6,122.6,122.6,122.6,122.6,122.5,122.6,122.6,122.6,122.6,122.6,122.5,122.4 +106,122.5,145.8,126.3,123.7,123.3,122.5,122.7,122.7,122.7,122.7,122.7,122.6,122.7,122.7,122.7,122.7,122.7,122.6,122.5 +107,122.6,146.1,126.6,123.9,123.5,122.6,122.8,122.8,122.8,122.8,122.7,122.6,122.8,122.8,122.8,122.8,122.8,122.7,122.6 +108,122.7,146.4,127,124,123.7,122.7,122.8,122.8,122.8,122.8,122.8,122.7,122.9,122.9,122.9,122.9,122.9,122.7,122.7 +109,122.7,146.7,127.4,124.2,123.8,122.7,122.9,122.9,122.9,122.9,122.9,122.8,123,123,123,122.9,122.9,122.8,122.8 +110,122.8,147,127.8,124.4,124,122.8,123,123,123,123,123,122.9,123,123,123,123,123,122.9,122.8 +111,122.9,147.3,128.3,124.5,124.1,122.9,123.1,123.1,123.1,123.1,123.1,123,123.1,123.1,123.1,123.1,123.1,123,122.9 +112,123,147.6,128.7,124.7,124.3,123,123.2,123.2,123.2,123.2,123.1,123,123.2,123.2,123.2,123.2,123.2,123.1,123 +113,123.1,147.9,129.1,124.8,124.4,123.1,123.2,123.2,123.2,123.2,123.2,123.1,123.3,123.3,123.3,123.3,123.2,123.1,123.1 +114,123.1,148.2,129.5,125,124.6,123.1,123.3,123.3,123.3,123.3,123.3,123.2,123.3,123.3,123.3,123.3,123.3,123.2,123.1 +115,123.2,148.5,129.9,125.2,124.7,123.2,123.4,123.4,123.4,123.4,123.4,123.3,123.4,123.4,123.4,123.4,123.4,123.3,123.2 +116,123.3,148.8,130.3,125.3,124.9,123.3,123.5,123.5,123.5,123.5,123.5,123.3,123.5,123.5,123.5,123.5,123.5,123.4,123.3 +117,123.4,149,130.7,125.5,125.1,123.3,123.5,123.5,123.5,123.5,123.5,123.4,123.6,123.6,123.6,123.6,123.5,123.4,123.4 +118,123.4,149.3,131.1,125.7,125.2,123.4,123.6,123.6,123.6,123.6,123.6,123.5,123.6,123.6,123.6,123.6,123.6,123.5,123.4 +119,123.5,149.6,131.5,125.8,125.4,123.5,123.7,123.7,123.7,123.7,123.7,123.6,123.7,123.7,123.7,123.7,123.7,123.6,123.5 +120,123.6,149.9,131.9,126,125.5,123.6,123.8,123.8,123.8,123.8,123.8,123.6,123.8,123.8,123.8,123.8,123.8,123.6,123.6 +121,123.6,150.2,132.2,126.5,125.7,123.6,123.8,123.8,123.8,123.8,123.8,123.7,123.8,123.8,123.8,123.8,123.8,123.7,123.7 +122,123.7,150.5,132.5,126.9,125.8,123.7,123.9,123.9,123.9,123.9,123.9,123.8,123.9,123.9,123.9,123.9,123.9,123.8,123.7 +123,123.8,150.8,132.8,127.3,126,123.8,124,124,124,124,124,123.8,124,124,124,124,124,123.9,123.8 +124,123.9,151.1,133.2,127.7,126.1,123.8,124,124,124,124,124,123.9,124.1,124.1,124.1,124.1,124,123.9,123.9 +125,123.9,151.4,133.5,128.1,126.3,123.9,124.1,124.1,124.1,124.1,124.1,124,124.1,124.1,124.1,124.1,124.1,124,123.9 +126,124,151.6,133.8,128.5,126.4,124,124.2,124.2,124.2,124.2,124.2,124.1,124.2,124.2,124.2,124.2,124.2,124.1,124 +127,124.1,151.9,134.2,128.9,126.6,124,124.3,124.3,124.3,124.3,124.2,124.1,124.3,124.3,124.3,124.3,124.3,124.1,124.1 +128,124.1,152.2,134.5,129.2,126.7,124.1,124.4,124.3,124.3,124.3,124.3,124.2,124.3,124.3,124.3,124.3,124.3,124.2,124.1 +129,124.2,152.5,134.9,129.6,126.9,124.2,124.5,124.4,124.4,124.4,124.4,124.3,124.4,124.4,124.4,124.4,124.4,124.3,124.2 +130,124.3,152.8,135.2,129.9,127.1,124.2,124.7,124.5,124.5,124.5,124.5,124.3,124.5,124.5,124.5,124.5,124.5,124.3,124.3 +131,124.3,153,135.5,130.1,127.2,124.3,124.8,124.5,124.5,124.5,124.5,124.4,124.5,124.5,124.5,124.5,124.5,124.4,124.4 +132,124.4,153.3,135.9,130.3,127.4,124.4,125,124.6,124.6,124.6,124.6,124.5,124.6,124.6,124.6,124.6,124.6,124.5,124.4 +133,124.5,153.6,136.2,130.5,127.5,124.4,125.1,124.7,124.7,124.7,124.7,124.5,124.7,124.7,124.7,124.7,124.7,124.5,124.5 +134,124.5,153.9,136.5,130.8,127.7,124.5,125.2,124.7,124.7,124.7,124.7,124.6,124.7,124.7,124.7,124.7,124.7,124.6,124.5 +135,124.6,154.2,136.9,131.2,127.9,124.5,125.4,124.8,124.8,124.8,124.8,124.7,124.8,124.8,124.8,124.8,124.8,124.7,124.6 +136,124.7,154.4,137.2,131.6,128,124.6,125.5,124.9,124.9,124.9,124.9,124.7,124.9,124.9,124.9,124.9,124.8,124.7,124.7 +137,124.7,154.7,137.5,132,128.1,124.7,125.6,124.9,124.9,124.9,124.9,124.8,124.9,124.9,124.9,124.9,124.9,124.8,124.7 +138,124.8,155,137.9,132.4,128.3,124.9,125.8,125,125,125,125,124.9,125,125,125,125,125,124.9,124.8 +139,124.9,155.3,138.2,132.8,128.4,125,125.9,125.1,125.1,125.1,125,124.9,125,125,125,125,125,124.9,124.9 +140,124.9,155.7,138.5,133.2,128.6,125.1,126.1,125.1,125.1,125.1,125.1,125,125.1,125.1,125.1,125.1,125.1,125,124.9 +141,125,156.4,138.8,133.6,128.7,125.2,126.2,125.2,125.2,125.2,125.2,125,125.2,125.2,125.2,125.2,125.2,125.1,125 +142,125,157,139.2,133.9,128.9,125.3,126.3,125.2,125.2,125.2,125.2,125.1,125.2,125.2,125.2,125.2,125.2,125.1,125 +143,125.1,157.7,139.5,134.3,129,125.4,126.5,125.3,125.3,125.3,125.3,125.2,125.3,125.3,125.3,125.3,125.3,125.2,125.1 +144,125.1,158.3,139.8,134.7,129.2,125.5,126.6,125.4,125.4,125.4,125.4,125.2,125.4,125.4,125.4,125.4,125.3,125.2,125.2 +145,125.2,158.9,140.2,135.1,129.3,125.6,126.7,125.4,125.4,125.4,125.4,125.3,125.4,125.4,125.4,125.4,125.4,125.3,125.2 +146,125.2,159.6,140.5,135.5,129.5,125.7,126.8,125.5,125.5,125.5,125.5,125.3,125.5,125.5,125.5,125.5,125.5,125.4,125.3 +147,125.3,160.2,140.8,135.9,129.9,125.8,127,125.5,125.5,125.5,125.5,125.4,125.5,125.5,125.5,125.5,125.5,125.4,125.3 +148,125.4,160.9,141.1,136.2,130.3,125.9,127.1,125.6,125.6,125.6,125.6,125.5,125.6,125.6,125.6,125.6,125.6,125.5,125.4 +149,125.4,161.5,141.5,136.6,130.7,126,127.2,125.7,125.7,125.7,125.7,125.5,125.6,125.6,125.6,125.6,125.6,125.5,125.5 +150,125.5,162.1,141.8,137,131.2,126.1,127.4,125.7,125.7,125.7,125.7,125.6,125.7,125.7,125.7,125.7,125.7,125.6,125.5 +151,125.5,162.8,142.2,137.4,131.6,126.2,127.5,125.8,125.8,125.8,125.8,125.6,125.8,125.8,125.8,125.8,125.8,125.6,125.6 +152,125.6,163.4,142.8,137.8,132,126.4,127.6,125.8,125.8,125.8,125.8,125.7,125.8,125.8,125.8,125.8,125.8,125.7,125.6 +153,125.6,164,143.4,138.1,132.5,126.5,127.8,125.9,125.9,125.9,125.9,125.8,125.9,125.9,125.9,125.9,125.9,125.8,125.7 +154,125.7,164.7,144.1,138.5,132.9,126.6,127.9,126,126,126,125.9,125.8,125.9,125.9,125.9,125.9,125.9,125.8,125.8 +155,125.8,165.3,144.7,138.9,133.3,126.7,128,126,126,126,126,125.9,126,126,126,126,126,125.9,125.8 +156,125.8,166,145.4,139.3,133.8,126.8,128.1,126.1,126.1,126.1,126.1,125.9,126,126,126,126,126,125.9,125.9 +157,125.9,166.6,146,139.7,134.2,126.9,128.3,126.1,126.1,126.1,126.1,126,126.1,126.1,126.1,126.1,126.1,126,125.9 +158,125.9,167.2,146.6,140.1,134.6,127,128.4,126.2,126.2,126.2,126.2,126,126.2,126.2,126.2,126.2,126.1,126,126 +159,126,167.9,147.3,140.8,135.1,127.1,128.5,126.2,126.2,126.2,126.2,126.1,126.2,126.2,126.2,126.2,126.2,126.1,126 +160,126,168.5,147.9,141.4,135.5,127.2,128.6,126.3,126.3,126.3,126.3,126.1,126.3,126.3,126.3,126.3,126.3,126.2,126.1 +161,126.1,169.1,148.5,142,135.9,127.3,128.8,126.3,126.3,126.3,126.3,126.2,126.3,126.3,126.3,126.3,126.3,126.2,126.1 +162,126.1,169.8,149.2,142.7,136.4,127.4,128.9,126.4,126.4,126.4,126.4,126.2,126.4,126.4,126.4,126.4,126.4,126.3,126.2 +163,126.2,170.4,149.8,143.3,136.8,127.5,129,126.5,126.5,126.5,126.4,126.3,126.4,126.4,126.4,126.4,126.4,126.3,126.2 +164,126.3,171,150.5,143.9,137.2,127.6,129.1,126.5,126.5,126.5,126.5,126.4,126.5,126.5,126.5,126.5,126.5,126.4,126.3 +165,126.3,171.7,151.1,144.6,137.6,127.7,129.2,126.6,126.6,126.6,126.6,126.4,126.5,126.5,126.5,126.5,126.5,126.4,126.3 +166,126.4,172.3,151.7,145.2,138.1,127.8,129.4,126.6,126.6,126.6,126.6,126.5,126.6,126.6,126.6,126.6,126.6,126.5,126.4 +167,126.4,172.9,152.4,145.8,138.5,127.9,129.5,126.7,126.7,126.7,126.7,126.5,126.6,126.6,126.6,126.6,126.6,126.5,126.5 +168,126.5,173.6,153,146.5,139,128,129.6,126.7,126.7,126.7,126.7,126.6,126.7,126.7,126.7,126.7,126.7,126.6,126.5 +169,126.5,174.2,153.6,147.1,139.7,128.1,129.7,126.8,126.8,126.8,126.8,126.6,126.7,126.7,126.7,126.7,126.7,126.6,126.6 +170,126.6,174.8,154.3,147.7,140.3,128.3,129.8,126.8,126.8,126.8,126.8,126.7,126.8,126.8,126.8,126.8,126.8,126.7,126.6 +171,126.6,175.5,154.9,148.4,140.9,128.4,130,126.9,126.9,126.9,126.9,126.7,126.8,126.8,126.8,126.8,126.8,126.7,126.7 +172,126.7,176.1,155.5,149,141.6,128.5,130.1,126.9,126.9,126.9,126.9,126.8,126.9,126.9,126.9,126.9,126.9,126.8,126.7 +173,126.7,176.7,156.2,149.6,142.2,128.6,130.2,127,127,127,127,126.8,127,127,127,127,126.9,126.8,126.8 +174,126.8,177.3,156.8,150.3,142.8,128.7,130.3,127,127,127,127,126.9,127,127,127,127,127,126.9,126.8 +175,126.8,178,157.4,150.9,143.5,128.8,130.4,127.1,127.1,127.1,127.1,126.9,127.1,127.1,127.1,127.1,127,126.9,126.9 +176,126.9,178.6,158.1,151.5,144.1,128.9,130.6,127.1,127.1,127.1,127.1,127,127.1,127.1,127.1,127.1,127.1,127,126.9 +177,126.9,179.2,158.7,152.2,144.7,129,130.7,127.2,127.2,127.2,127.2,127,127.2,127.2,127.2,127.2,127.1,127,127 +178,127,179.9,159.3,152.8,145.4,129.1,130.8,127.2,127.2,127.2,127.2,127.1,127.2,127.2,127.2,127.2,127.2,127.1,127 +179,127,180.5,159.9,153.4,146,129.2,130.9,127.3,127.3,127.3,127.3,127.1,127.2,127.2,127.2,127.2,127.2,127.1,127.1 +180,127.1,181.1,160.6,154.1,146.6,129.3,131,127.3,127.3,127.3,127.3,127.2,127.3,127.3,127.3,127.3,127.3,127.2,127.1 +181,127.1,181.7,161.2,154.7,147.3,129.4,131.1,127.4,127.4,127.4,127.4,127.2,127.3,127.3,127.3,127.3,127.3,127.2,127.2 +182,127.2,182.4,161.8,155.3,147.9,129.5,131.3,127.4,127.4,127.4,127.4,127.3,127.4,127.4,127.4,127.4,127.4,127.3,127.2 +183,127.2,183,162.5,156,148.5,129.6,131.4,127.5,127.5,127.5,127.5,127.3,127.4,127.4,127.4,127.4,127.4,127.3,127.2 +184,127.3,183.4,163.1,156.6,149.2,129.7,131.5,127.5,127.5,127.5,127.5,127.4,127.5,127.5,127.5,127.5,127.5,127.4,127.3 +185,127.3,183.5,163.7,157.2,149.8,129.8,131.6,127.6,127.6,127.6,127.5,127.4,127.5,127.5,127.5,127.5,127.5,127.4,127.3 +186,127.3,183.6,164.3,157.9,150.4,129.9,131.7,127.6,127.6,127.6,127.6,127.5,127.6,127.6,127.6,127.6,127.6,127.5,127.4 +187,127.4,183.7,165,158.5,151.1,130,131.8,127.7,127.7,127.7,127.6,127.5,127.6,127.6,127.6,127.6,127.6,127.5,127.4 +188,127.4,183.8,165.3,159.1,151.7,130.1,131.9,127.7,127.7,127.7,127.7,127.5,127.7,127.7,127.7,127.7,127.7,127.6,127.5 +189,127.5,183.9,165.5,159.7,152.3,130.2,132.1,127.7,127.7,127.7,127.7,127.6,127.7,127.7,127.7,127.7,127.7,127.6,127.5 +190,127.5,184,165.7,160.4,153,130.3,132.2,127.8,127.8,127.8,127.8,127.6,127.8,127.8,127.8,127.8,127.8,127.6,127.6 +191,127.6,184.1,165.9,160.9,153.6,130.4,132.3,127.8,127.8,127.8,127.8,127.7,127.8,127.8,127.8,127.8,127.8,127.7,127.6 +192,127.6,184.2,166.1,161.2,154.2,130.5,132.4,127.9,127.9,127.9,127.9,127.7,127.9,127.9,127.9,127.9,127.9,127.7,127.7 +193,127.7,184.2,166.2,161.4,154.8,130.6,132.5,127.9,127.9,127.9,127.9,127.8,127.9,127.9,127.9,127.9,127.9,127.8,127.7 +194,127.7,184.3,166.4,161.7,155.5,130.7,132.6,128,128,128,127.9,127.8,128,128,128,128,127.9,127.8,127.7 +195,127.8,184.4,166.6,161.9,156.1,130.8,132.7,128,128,128,128,127.9,128,128,128,128,128,127.9,127.8 +196,127.8,184.5,166.8,162.2,156.7,131,132.8,128.1,128.1,128.1,128,127.9,128,128,128,128,128,127.9,127.8 +197,127.9,184.6,166.9,162.4,157.3,131.1,133,128.1,128.1,128.1,128.1,127.9,128.1,128.1,128.1,128.1,128.1,128,127.9 +198,127.9,184.7,167.1,162.7,157.7,131.2,133.1,128.1,128.1,128.1,128.1,128,128.1,128.1,128.1,128.1,128.1,128,127.9 +199,127.9,184.7,167.3,162.9,158,131.3,133.2,128.2,128.2,128.2,128.1,128,128.2,128.2,128.2,128.2,128.2,128,128 +200,128,184.8,167.4,163.1,158.3,131.4,133.3,128.2,128.2,128.2,128.2,128.1,128.2,128.2,128.2,128.2,128.2,128.1,128 +201,128,184.9,167.6,163.3,158.6,131.5,133.4,128.3,128.3,128.3,128.2,128.1,128.3,128.3,128.3,128.3,128.3,128.1,128.1 +202,128.1,185,167.7,163.6,158.9,131.6,133.5,128.3,128.3,128.3,128.3,128.2,128.3,128.3,128.3,128.3,128.3,128.2,128.1 +203,128.1,185,167.9,163.8,159.2,131.7,133.6,128.3,128.3,128.3,128.3,128.2,128.4,128.4,128.4,128.4,128.3,128.2,128.1 +204,128.2,185.1,168,164,159.5,131.8,133.7,128.4,128.4,128.4,128.4,128.3,128.4,128.4,128.4,128.4,128.4,128.3,128.2 +205,128.2,185.2,168.2,164.2,159.8,131.9,133.8,128.4,128.4,128.4,128.4,128.3,128.4,128.4,128.4,128.4,128.4,128.3,128.2 +206,128.2,185.3,168.3,164.4,160.1,132,133.9,128.5,128.5,128.5,128.4,128.3,128.5,128.5,128.5,128.5,128.5,128.3,128.3 +207,128.3,185.3,168.5,164.5,160.4,132.1,134,128.5,128.5,128.5,128.5,128.4,128.5,128.5,128.5,128.5,128.5,128.4,128.3 +208,128.3,185.4,168.6,164.7,160.6,132.2,134.1,128.5,128.5,128.5,128.5,128.4,128.6,128.6,128.6,128.6,128.6,128.4,128.4 +209,128.4,185.5,168.8,164.9,160.9,132.3,134.2,128.6,128.6,128.6,128.6,128.5,128.6,128.6,128.6,128.6,128.6,128.5,128.4 +210,128.4,185.5,168.9,165.1,161.2,132.4,134.3,128.6,128.6,128.6,128.6,128.5,128.7,128.7,128.7,128.7,128.6,128.5,128.4 +211,128.4,185.6,169,165.3,161.4,132.5,134.4,128.6,128.6,128.6,128.6,128.5,128.7,128.7,128.7,128.7,128.7,128.5,128.5 +212,128.5,185.7,169.2,165.4,161.7,132.6,134.6,128.7,128.7,128.7,128.7,128.6,128.7,128.7,128.7,128.7,128.7,128.6,128.5 +213,128.5,185.7,169.3,165.6,161.9,132.7,134.7,128.7,128.7,128.7,128.7,128.6,128.8,128.8,128.8,128.8,128.8,128.6,128.6 +214,128.6,185.8,169.4,165.8,162.1,132.8,134.8,128.7,128.7,128.7,128.8,128.7,128.8,128.8,128.8,128.8,128.8,128.7,128.6 +215,128.6,185.9,169.5,166,162.4,132.9,134.9,128.8,128.8,128.8,128.8,128.7,128.9,128.9,128.9,128.9,128.8,128.7,128.6 +216,128.7,185.9,169.7,166.1,162.6,133,135,128.8,128.8,128.8,128.8,128.7,128.9,128.9,128.9,128.9,128.9,128.7,128.7 +217,128.7,186,169.8,166.3,162.8,133.1,135.1,128.8,128.8,128.9,128.9,128.8,128.9,128.9,128.9,128.9,128.9,128.8,128.7 +218,128.7,186,169.9,166.4,163,133.2,135.2,128.9,128.9,128.9,128.9,128.8,129,129,129,129,129,128.8,128.8 +219,128.8,186.1,170,166.6,163.2,133.3,135.3,128.9,128.9,128.9,128.9,128.9,129,129,129,129,129,128.9,128.8 +220,128.8,186.2,170.2,166.8,163.4,133.4,135.4,128.9,128.9,129,129,128.9,129.1,129.1,129.1,129.1,129.1,128.9,128.8 +221,128.9,186.2,170.3,166.9,163.6,133.5,135.5,129,129,129,129,128.9,129.1,129.1,129.1,129.1,129.1,128.9,128.9 +222,128.9,186.3,170.4,167.1,163.8,133.6,135.6,129,129,129,129.1,129,129.1,129.1,129.1,129.1,129.1,129,128.9 +223,128.9,186.3,170.5,167.2,164,133.7,135.7,129,129.1,129.1,129.1,129,129.2,129.2,129.2,129.2,129.2,129,129 +224,129,186.4,170.6,167.4,164.2,133.8,135.8,129.1,129.1,129.1,129.1,129.1,129.2,129.2,129.2,129.2,129.2,129.1,129 +225,129,186.5,170.8,167.5,164.4,133.9,135.9,129.1,129.1,129.1,129.2,129.1,129.3,129.3,129.3,129.3,129.2,129.1,129 +226,129,186.5,170.9,167.7,164.6,134,136,129.1,129.2,129.2,129.2,129.1,129.3,129.3,129.3,129.3,129.3,129.1,129.1 +227,129.1,186.6,171,167.8,164.8,134.1,136.1,129.2,129.2,129.2,129.3,129.2,129.4,129.3,129.3,129.3,129.3,129.2,129.1 +228,129.1,186.6,171.1,167.9,165,134.2,136.2,129.2,129.2,129.2,129.3,129.2,129.4,129.4,129.4,129.4,129.4,129.2,129.1 +229,129.2,186.7,171.2,168.1,165.1,134.3,136.3,129.3,129.3,129.3,129.3,129.3,129.5,129.4,129.4,129.4,129.4,129.2,129.2 +230,129.2,186.7,171.3,168.2,165.3,134.4,136.4,129.4,129.3,129.3,129.4,129.3,129.6,129.5,129.5,129.5,129.4,129.3,129.2 +231,129.2,186.8,171.4,168.4,165.5,134.5,136.5,129.5,129.4,129.3,129.4,129.3,129.7,129.5,129.5,129.5,129.5,129.3,129.3 +232,129.3,186.9,171.5,168.5,165.7,134.6,136.6,129.6,129.5,129.4,129.4,129.4,129.8,129.5,129.5,129.5,129.5,129.4,129.3 +233,129.3,186.9,171.7,168.6,165.8,134.7,136.7,129.7,129.6,129.5,129.5,129.4,129.9,129.6,129.6,129.6,129.6,129.4,129.3 +234,129.3,187,171.8,168.8,166,134.8,136.8,129.8,129.7,129.6,129.5,129.4,130,129.6,129.6,129.6,129.6,129.4,129.4 +235,129.4,187,171.9,168.9,166.2,134.9,136.9,129.9,129.8,129.7,129.5,129.5,130,129.6,129.6,129.6,129.6,129.5,129.4 +236,129.4,187.1,172,169,166.3,135,137,130,129.9,129.8,129.6,129.5,130.1,129.7,129.7,129.7,129.7,129.5,129.4 +237,129.5,187.1,172.1,169.2,166.5,135.1,137.1,130,130,129.8,129.6,129.6,130.2,129.7,129.7,129.7,129.7,129.5,129.5 +238,129.5,187.2,172.2,169.3,166.6,135.2,137.3,130.1,130,129.9,129.7,129.6,130.3,129.8,129.8,129.8,129.7,129.6,129.5 +239,129.5,187.2,172.3,169.4,166.8,135.3,137.4,130.2,130.1,130,129.7,129.6,130.4,129.8,129.8,129.8,129.8,129.6,129.5 +240,129.6,187.3,172.4,169.5,167,135.4,137.5,130.3,130.2,130.1,129.7,129.7,130.5,129.8,129.8,129.8,129.8,129.7,129.6 +241,129.6,187.3,172.5,169.7,167.1,135.5,137.6,130.4,130.3,130.2,129.8,129.7,130.5,129.9,129.9,129.9,129.9,129.7,129.6 +242,129.6,187.4,172.6,169.8,167.3,135.6,137.7,130.5,130.4,130.2,129.8,129.7,130.6,129.9,129.9,129.9,129.9,129.7,129.7 +243,129.7,187.4,172.7,169.9,167.4,135.6,137.8,130.5,130.4,130.3,129.8,129.8,130.7,129.9,129.9,129.9,129.9,129.8,129.7 +244,129.7,187.5,172.8,170,167.6,135.7,137.9,130.6,130.5,130.4,129.9,129.8,130.8,130,130,130,130,129.8,129.7 +245,129.7,187.6,172.9,170.2,167.7,135.8,138,130.7,130.6,130.5,129.9,129.8,130.9,130,130,130,130,129.8,129.8 +246,129.8,187.6,173,170.3,167.9,135.9,138.1,130.8,130.7,130.5,129.9,129.9,131,130,130,130,130,129.9,129.8 +247,129.8,187.7,173.1,170.4,168,136,138.2,130.9,130.8,130.6,130,129.9,131,130.1,130.1,130.1,130.1,129.9,129.8 +248,129.9,187.7,173.2,170.5,168.1,136.1,138.3,130.9,130.8,130.7,130,129.9,131.1,130.1,130.1,130.1,130.1,129.9,129.9 +249,129.9,187.8,173.3,170.6,168.3,136.2,138.4,131,130.9,130.8,130,130,131.2,130.2,130.2,130.2,130.1,130,129.9 +250,129.9,187.8,173.4,170.8,168.4,136.3,138.5,131.1,131,130.8,130.1,130,131.3,130.2,130.2,130.2,130.2,130,129.9 +251,130,187.9,173.5,170.9,168.6,136.4,138.6,131.2,131.1,130.9,130.1,130,131.4,130.2,130.2,130.2,130.2,130,130 +252,130,187.9,173.6,171,168.7,136.5,138.7,131.3,131.1,131,130.1,130.1,131.5,130.3,130.3,130.3,130.2,130.1,130 +253,130,188,173.7,171.1,168.8,136.6,138.8,131.3,131.2,131.1,130.2,130.1,131.5,130.3,130.3,130.3,130.3,130.1,130 +254,130.1,188,173.8,171.2,169,136.7,138.9,131.4,131.3,131.1,130.2,130.2,131.6,130.3,130.3,130.3,130.3,130.1,130.1 +255,130.1,188.1,173.9,171.3,169.1,136.8,139.1,131.5,131.4,131.2,130.2,130.2,131.7,130.4,130.4,130.4,130.4,130.2,130.1 +256,130.1,188.1,174,171.5,169.2,136.9,139.2,131.6,131.4,131.3,130.3,130.2,131.8,130.4,130.4,130.4,130.4,130.2,130.1 +257,130.2,188.2,174.1,171.6,169.4,137,139.3,131.6,131.5,131.4,130.3,130.3,131.9,130.4,130.4,130.4,130.4,130.2,130.2 +258,130.2,188.2,174.2,171.7,169.5,137.1,139.4,131.7,131.6,131.4,130.3,130.3,131.9,130.5,130.5,130.5,130.5,130.3,130.2 +259,130.2,188.3,174.3,171.8,169.6,137.2,139.5,131.8,131.7,131.5,130.4,130.3,132,130.5,130.5,130.5,130.5,130.3,130.2 +260,130.3,188.4,174.4,171.9,169.8,137.2,139.6,131.9,131.7,131.6,130.4,130.4,132.1,130.5,130.5,130.5,130.5,130.3,130.3 +261,130.3,188.4,174.4,172,169.9,137.3,139.7,131.9,131.8,131.7,130.4,130.4,132.2,130.6,130.6,130.6,130.6,130.4,130.3 +262,130.3,188.5,174.5,172.1,170,137.4,139.8,132,131.9,131.7,130.5,130.4,132.3,130.6,130.6,130.6,130.6,130.4,130.3 +263,130.4,188.5,174.6,172.2,170.1,137.5,139.9,132.1,132,131.8,130.6,130.5,132.4,130.6,130.6,130.6,130.6,130.4,130.4 +264,130.4,188.6,174.7,172.3,170.3,137.6,140,132.2,132,131.9,130.6,130.5,132.4,130.7,130.7,130.7,130.7,130.5,130.4 +265,130.4,188.6,174.8,172.4,170.4,137.7,140.1,132.2,132.1,131.9,130.7,130.5,132.5,130.7,130.7,130.7,130.7,130.5,130.4 +266,130.5,188.7,174.9,172.6,170.5,137.9,140.2,132.3,132.2,132,130.7,130.5,132.6,130.7,130.7,130.7,130.7,130.5,130.5 +267,130.5,188.7,175,172.7,170.6,138.4,140.3,132.4,132.3,132.1,130.8,130.6,132.7,130.8,130.8,130.8,130.8,130.6,130.5 +268,130.5,188.8,175.1,172.8,170.8,138.9,140.5,132.5,132.3,132.2,130.8,130.6,132.8,130.8,130.8,130.8,130.8,130.6,130.5 +269,130.6,188.8,175.2,172.9,170.9,139.5,140.6,132.5,132.4,132.2,130.9,130.6,132.8,130.8,130.8,130.8,130.8,130.6,130.6 +270,130.6,188.9,175.3,173,171,140,140.7,132.6,132.5,132.3,131,130.7,132.9,130.9,130.9,130.9,130.9,130.7,130.6 +271,130.6,189,175.4,173.1,171.1,140.6,140.8,132.7,132.6,132.4,131,130.7,133,130.9,130.9,130.9,130.9,130.7,130.6 +272,130.7,189,175.5,173.2,171.2,141.1,140.9,132.8,132.6,132.4,131.1,130.7,133.1,130.9,130.9,130.9,130.9,130.7,130.7 +273,130.7,189.1,175.6,173.3,171.4,141.7,141,132.8,132.7,132.5,131.1,130.8,133.2,131,131,131,131,130.8,130.7 +274,130.7,189.1,175.7,173.4,171.5,142.3,141.1,132.9,132.8,132.6,131.2,130.8,133.2,131,131,131,131,130.8,130.7 +275,130.8,189.2,175.8,173.5,171.6,142.8,141.2,133,132.8,132.7,131.3,130.8,133.3,131,131,131,131,130.8,130.8 +276,130.8,189.2,175.9,173.6,171.7,143.4,141.3,133,132.9,132.7,131.3,130.9,133.4,131.1,131.1,131.1,131.1,130.9,130.8 +277,130.8,189.3,175.9,173.7,171.8,144,141.4,133.1,133,132.8,131.4,130.9,133.5,131.1,131.1,131.1,131.1,130.9,130.8 +278,130.8,189.4,176,173.8,171.9,144.5,141.6,133.2,133.1,132.9,131.4,130.9,133.6,131.1,131.1,131.1,131.1,130.9,130.8 +279,130.9,189.4,176.1,173.9,172.1,145.1,141.7,133.3,133.1,132.9,131.5,131,133.6,131.2,131.2,131.2,131.1,130.9,130.9 +280,130.9,189.5,176.2,174,172.2,145.7,141.8,133.3,133.2,133,131.6,131,133.7,131.2,131.2,131.2,131.2,131,130.9 +281,130.9,189.5,176.3,174.2,172.3,146.2,141.9,133.4,133.3,133.1,131.6,131,133.8,131.2,131.2,131.2,131.2,131,130.9 +282,131,189.6,176.4,174.3,172.4,146.8,142,133.5,133.3,133.1,131.7,131.1,133.9,131.2,131.2,131.2,131.2,131,131 +283,131,189.6,176.5,174.4,172.5,147.3,142.1,133.6,133.4,133.2,131.7,131.1,133.9,131.3,131.3,131.3,131.3,131.1,131 +284,131,189.7,176.6,174.5,172.6,147.9,142.2,133.6,133.5,133.3,131.8,131.1,134,131.3,131.3,131.3,131.3,131.1,131 +285,131.1,189.8,176.7,174.6,172.8,148.5,142.3,133.7,133.6,133.4,131.8,131.1,134.1,131.3,131.3,131.3,131.3,131.1,131.1 +286,131.1,189.8,176.8,174.7,172.9,149,142.5,133.8,133.6,133.4,131.9,131.2,134.2,131.4,131.4,131.4,131.4,131.2,131.1 +287,131.1,189.9,176.9,174.8,173,149.6,142.6,133.8,133.7,133.5,132,131.2,134.3,131.4,131.4,131.4,131.4,131.2,131.1 +288,131.2,189.9,177,174.9,173.1,150.2,142.7,133.9,133.8,133.6,132,131.2,134.3,131.4,131.4,131.4,131.4,131.2,131.2 +289,131.2,190,177.1,175,173.2,150.7,142.8,134,133.8,133.6,132.1,131.3,134.4,131.5,131.5,131.5,131.5,131.3,131.2 +290,131.2,190.1,177.2,175.1,173.3,151.3,142.9,134.1,133.9,133.7,132.1,131.3,134.5,131.5,131.5,131.5,131.5,131.3,131.2 +291,131.2,190.1,177.3,175.2,173.4,151.9,143,134.1,134,133.8,132.2,131.3,134.6,131.5,131.5,131.5,131.5,131.3,131.2 +292,131.3,190.2,177.4,175.3,173.5,152.5,143.2,134.2,134,133.8,132.2,131.4,134.7,131.6,131.6,131.6,131.5,131.3,131.3 +293,131.3,190.2,177.5,175.4,173.7,153,143.3,134.3,134.1,133.9,132.3,131.4,134.7,131.6,131.6,131.6,131.6,131.4,131.3 +294,131.3,190.3,177.5,175.5,173.8,153.5,143.4,134.3,134.2,134,132.4,131.4,134.8,131.6,131.6,131.6,131.6,131.4,131.3 +295,131.4,190.4,177.6,175.6,173.9,154,143.5,134.4,134.3,134.1,132.4,131.4,134.9,131.6,131.6,131.6,131.6,131.4,131.4 +296,131.4,190.4,177.7,175.7,174,154.5,143.6,134.5,134.3,134.1,132.5,131.5,135,131.7,131.7,131.7,131.7,131.5,131.4 +297,131.4,190.5,177.8,175.8,174.1,155,143.7,134.6,134.4,134.2,132.5,131.5,135,131.7,131.7,131.7,131.7,131.5,131.4 +298,131.4,190.6,177.9,175.9,174.2,155.5,143.9,134.6,134.5,134.3,132.6,131.5,135.1,131.7,131.7,131.7,131.7,131.5,131.4 +299,131.5,190.6,178,176,174.3,155.9,144,134.7,134.5,134.3,132.7,131.6,135.2,131.8,131.8,131.8,131.7,131.5,131.5 +300,131.5,190.7,178.1,176.1,174.4,156.3,144.1,134.8,134.6,134.4,132.7,131.6,135.3,131.8,131.8,131.8,131.8,131.6,131.5 +301,131.5,190.7,178.2,176.2,174.5,156.7,144.2,134.8,134.7,134.5,132.8,131.6,135.4,131.8,131.8,131.8,131.8,131.6,131.5 +302,131.6,190.8,178.3,176.3,174.6,157.1,144.3,134.9,134.7,134.5,132.8,131.6,135.4,131.8,131.8,131.8,131.8,131.6,131.6 +303,131.6,190.9,178.4,176.4,174.8,157.5,144.5,135,134.8,134.6,132.9,131.7,135.5,131.9,131.9,131.9,131.9,131.7,131.6 +304,131.6,190.9,178.5,176.5,174.9,157.9,144.6,135,134.9,134.7,132.9,131.7,135.6,131.9,131.9,131.9,131.9,131.7,131.6 +305,131.7,191,178.6,176.6,175,158.3,144.7,135.1,135,134.7,133,131.7,135.7,131.9,131.9,131.9,131.9,131.7,131.6 +306,131.7,191.1,178.7,176.8,175.1,158.6,144.8,135.2,135,134.8,133.1,131.8,135.7,132,132,132,131.9,131.7,131.7 +307,131.7,191.1,178.8,176.9,175.2,159,145,135.3,135.1,134.9,133.1,131.8,135.8,132,132,132,132,131.8,131.7 +308,131.7,191.2,178.9,177,175.3,159.3,145.1,135.3,135.2,134.9,133.2,131.8,135.9,132,132,132,132,131.8,131.7 +309,131.8,191.3,179,177.1,175.4,159.6,145.2,135.4,135.2,135,133.2,131.8,136,132,132,132,132,131.8,131.8 +310,131.8,191.3,179.1,177.2,175.5,160,145.3,135.5,135.3,135.1,133.3,131.9,136.1,132.1,132.1,132.1,132.1,131.9,131.8 +311,131.8,191.4,179.2,177.3,175.6,160.3,145.5,135.5,135.4,135.1,133.3,131.9,136.1,132.1,132.1,132.1,132.1,131.9,131.8 +312,131.8,191.5,179.3,177.4,175.7,160.6,145.6,135.6,135.4,135.2,133.4,131.9,136.2,132.1,132.1,132.1,132.1,131.9,131.8 +313,131.9,191.5,179.4,177.5,175.9,160.9,145.7,135.7,135.5,135.3,133.5,131.9,136.3,132.1,132.2,132.2,132.1,131.9,131.9 +314,131.9,191.6,179.5,177.6,176,161.2,145.9,135.7,135.6,135.3,133.5,132,136.4,132.2,132.2,132.2,132.2,132,131.9 +315,131.9,191.7,179.6,177.7,176.1,161.5,146,135.8,135.6,135.4,133.6,132,136.4,132.2,132.2,132.2,132.2,132,131.9 +316,132,191.7,179.7,177.8,176.2,161.7,146.1,135.9,135.7,135.5,133.6,132,136.5,132.2,132.2,132.2,132.2,132,131.9 +317,132,191.8,179.7,177.9,176.3,162,146.2,136,135.8,135.6,133.7,132.1,136.6,132.3,132.3,132.3,132.2,132,132 +318,132,191.9,179.8,178,176.4,162.3,146.4,136,135.9,135.6,133.7,132.1,136.7,132.3,132.3,132.3,132.3,132.1,132 +319,132,191.9,179.9,178.1,176.5,162.5,146.5,136.1,135.9,135.7,133.8,132.1,136.7,132.3,132.3,132.3,132.3,132.1,132 +320,132.1,192,180,178.2,176.6,162.8,146.6,136.2,136,135.8,133.9,132.1,136.8,132.3,132.3,132.3,132.3,132.1,132.1 +321,132.1,192.1,180.1,178.3,176.7,163,146.8,136.2,136.1,135.8,133.9,132.2,136.9,132.4,132.4,132.4,132.3,132.2,132.1 +322,132.1,192.1,180.2,178.4,176.8,163.2,146.9,136.3,136.1,135.9,134,132.2,137,132.4,132.4,132.4,132.4,132.2,132.1 +323,132.1,192.2,180.3,178.5,176.9,163.5,147.1,136.4,136.2,136,134,132.2,137,132.4,132.4,132.4,132.4,132.2,132.1 +324,132.2,192.3,180.4,178.6,177.1,163.7,147.2,136.4,136.3,136,134.1,132.2,137.1,132.4,132.4,132.4,132.4,132.2,132.2 +325,132.2,192.3,180.5,178.7,177.2,163.9,147.3,136.5,136.3,136.1,134.1,132.3,137.2,132.5,132.5,132.5,132.4,132.3,132.2 +326,132.2,192.4,180.6,178.8,177.3,164.1,147.5,136.6,136.4,136.2,134.2,132.3,137.3,132.5,132.5,132.5,132.5,132.3,132.2 +327,132.3,192.5,180.7,178.9,177.4,164.4,147.6,136.7,136.5,136.2,134.3,132.3,137.3,132.5,132.5,132.5,132.5,132.3,132.2 +328,132.3,192.5,180.8,179,177.5,164.6,147.8,136.7,136.5,136.3,134.3,132.3,137.4,132.5,132.5,132.5,132.5,132.3,132.3 +329,132.3,192.6,180.9,179.2,177.6,164.8,147.9,136.8,136.6,136.4,134.4,132.4,137.5,132.6,132.6,132.6,132.5,132.4,132.3 +330,132.3,192.7,181,179.3,177.7,165,148.1,136.9,136.7,136.4,134.4,132.4,137.6,132.6,132.6,132.6,132.5,132.4,132.3 +331,132.4,192.7,181.1,179.4,177.8,165.2,148.2,136.9,136.7,136.5,134.5,132.4,137.6,132.6,132.6,132.6,132.6,132.4,132.3 +332,132.4,192.8,181.2,179.5,177.9,165.4,148.3,137,136.8,136.6,134.5,132.4,137.7,132.6,132.6,132.6,132.6,132.4,132.4 +333,132.4,192.9,181.3,179.6,178,165.6,148.5,137.1,136.9,136.6,134.6,132.5,137.8,132.6,132.6,132.6,132.6,132.5,132.4 +334,132.4,193,181.4,179.7,178.1,165.8,148.6,137.1,136.9,136.7,134.7,132.5,137.9,132.7,132.7,132.7,132.6,132.5,132.4 +335,132.5,193,181.5,179.8,178.3,166,148.8,137.2,137,136.8,134.7,132.5,137.9,132.7,132.7,132.7,132.7,132.5,132.4 +336,132.5,193.1,181.6,179.9,178.4,166.2,149,137.3,137.1,136.8,134.8,132.5,138,132.7,132.7,132.7,132.7,132.5,132.5 +337,132.5,193.2,181.7,180,178.5,166.3,149.1,137.3,137.1,136.9,134.8,132.6,138.1,132.7,132.7,132.7,132.7,132.6,132.5 +338,132.5,193.2,181.8,180.1,178.6,166.5,149.3,137.4,137.2,137,134.9,132.6,138.2,132.7,132.7,132.8,132.7,132.6,132.5 +339,132.6,193.3,181.9,180.2,178.7,166.7,149.4,137.5,137.3,137,134.9,132.6,138.2,132.8,132.8,132.8,132.7,132.6,132.5 +340,132.6,193.4,182,180.3,178.8,166.9,149.6,137.5,137.3,137.1,135,132.6,138.3,132.8,132.8,132.8,132.8,132.6,132.6 +341,132.6,193.4,182.1,180.4,178.9,167.1,149.7,137.6,137.4,137.2,135,132.7,138.4,132.8,132.8,132.8,132.8,132.7,132.6 +342,132.6,193.5,182.2,180.5,179,167.2,149.9,137.7,137.5,137.2,135.1,132.7,138.4,132.8,132.8,132.8,132.8,132.7,132.6 +343,132.7,193.6,182.3,180.6,179.1,167.4,150.1,137.7,137.6,137.3,135.2,132.7,138.5,132.8,132.8,132.8,132.8,132.7,132.6 +344,132.7,193.7,182.4,180.7,179.2,167.6,150.2,137.8,137.6,137.4,135.2,132.7,138.6,132.9,132.9,132.9,132.8,132.7,132.7 +345,132.7,193.7,182.5,180.8,179.3,167.7,150.4,137.9,137.7,137.4,135.3,132.8,138.6,132.9,132.9,132.9,132.9,132.8,132.7 +346,132.7,193.8,182.6,180.9,179.5,167.9,150.6,137.9,137.8,137.5,135.3,132.8,138.7,132.9,132.9,132.9,132.9,132.8,132.7 +347,132.8,193.9,182.7,181,179.6,168.1,150.7,138,137.8,137.6,135.4,132.8,138.8,132.9,132.9,132.9,132.9,132.8,132.7 +348,132.8,193.9,182.8,181.2,179.7,168.2,150.9,138.1,137.9,137.6,135.4,132.8,138.9,132.9,132.9,132.9,132.9,132.8,132.8 +349,132.8,194,182.9,181.3,179.8,168.4,151.1,138.1,138,137.7,135.5,132.9,138.9,132.9,132.9,133,133,132.9,132.8 +350,132.8,194.1,183,181.4,179.9,168.5,151.3,138.2,138,137.8,135.6,132.9,139,133,133,133,133,132.9,132.8 +351,132.9,194.1,183.1,181.5,180,168.7,151.5,138.3,138.1,137.8,135.6,132.9,139.1,133,133,133,133,132.9,132.8 +352,132.9,194.2,183.2,181.6,180.1,168.8,151.6,138.3,138.2,137.9,135.7,132.9,139.1,133.1,133.1,133,133,132.9,132.9 +353,132.9,194.3,183.3,181.7,180.2,169,151.8,138.4,138.2,137.9,135.7,133,139.2,133.3,133.2,133.2,133,133,132.9 +354,132.9,194.4,183.4,181.8,180.3,169.1,152,138.5,138.3,138,135.8,133,139.3,133.4,133.3,133.3,133.1,133,132.9 +355,133,194.4,183.5,181.9,180.4,169.3,152.2,138.5,138.4,138.1,135.8,133,139.4,133.5,133.4,133.4,133.1,133,132.9 +356,133,194.5,183.6,182,180.5,169.4,152.4,138.6,138.4,138.1,135.9,133,139.4,133.6,133.5,133.5,133.1,133,133 +357,133,194.6,183.7,182.1,180.7,169.6,152.6,138.7,138.5,138.2,136,133.1,139.5,133.7,133.7,133.6,133.2,133.1,133 +358,133,194.6,183.8,182.2,180.8,169.7,152.8,138.7,138.5,138.3,136,133.1,139.6,133.8,133.8,133.7,133.2,133.1,133 +359,133.1,194.7,183.9,182.3,180.9,169.9,153,138.8,138.6,138.3,136.1,133.1,139.6,133.9,133.9,133.8,133.3,133.1,133 +360,133.1,194.8,184,182.4,181,170,153.2,138.9,138.7,138.4,136.1,133.1,139.7,134,134,133.9,133.4,133.1,133.1 +361,133.1,194.9,184.1,182.5,181.1,170.1,153.4,138.9,138.7,138.5,136.2,133.2,139.8,134.1,134.1,134,133.4,133.2,133.1 +362,133.1,194.9,184.2,182.6,181.2,170.3,153.6,139,138.8,138.5,136.2,133.2,139.9,134.2,134.1,134.1,133.5,133.2,133.1 +363,133.2,195,184.3,182.7,181.3,170.4,153.9,139.1,138.9,138.6,136.3,133.2,139.9,134.3,134.2,134.1,133.5,133.2,133.1 +364,133.2,195.1,184.4,182.8,181.4,170.6,154.1,139.1,138.9,138.7,136.4,133.2,140,134.4,134.3,134.2,133.6,133.2,133.1 +365,133.2,195.1,184.5,182.9,181.5,170.7,154.3,139.2,139,138.7,136.4,133.2,140.1,134.5,134.4,134.3,133.6,133.2,133.2 +366,133.2,195.2,184.6,183,181.6,170.8,154.5,139.3,139.1,138.8,136.5,133.3,140.2,134.6,134.5,134.4,133.7,133.3,133.2 +367,133.3,195.3,184.7,183.1,181.7,171,154.7,139.3,139.1,138.9,136.5,133.3,140.2,134.7,134.6,134.5,133.8,133.3,133.2 +368,133.3,195.4,184.8,183.2,181.8,171.1,154.9,139.4,139.2,138.9,136.6,133.3,140.3,134.7,134.7,134.6,133.8,133.3,133.2 +369,133.3,195.4,184.9,183.4,182,171.2,155.1,139.5,139.3,139,136.6,133.3,140.4,134.8,134.8,134.6,133.9,133.3,133.3 +370,133.3,195.5,185,183.5,182.1,171.4,155.3,139.5,139.3,139.1,136.7,133.4,140.5,134.9,134.8,134.7,133.9,133.4,133.3 +371,133.3,195.6,185.1,183.6,182.2,171.5,155.5,139.6,139.4,139.1,136.7,133.4,140.5,135,134.9,134.8,134,133.4,133.3 +372,133.4,195.7,185.2,183.7,182.3,171.6,155.8,139.7,139.5,139.2,136.8,133.4,140.6,135.1,135,134.9,134,133.4,133.3 +373,133.4,195.7,185.3,183.8,182.4,171.8,156,139.7,139.5,139.2,136.9,133.5,140.7,135.1,135.1,134.9,134.1,133.4,133.4 +374,133.4,195.8,185.4,183.9,182.5,171.9,156.2,139.8,139.6,139.3,136.9,133.5,140.8,135.2,135.1,135,134.1,133.5,133.4 +375,133.4,195.9,185.5,184,182.6,172,156.4,139.9,139.7,139.4,137,133.5,140.8,135.3,135.2,135.1,134.2,133.5,133.4 +376,133.5,195.9,185.6,184.1,182.7,172.1,156.6,139.9,139.7,139.4,137,133.6,140.9,135.4,135.3,135.2,134.2,133.5,133.4 +377,133.5,196,185.7,184.2,182.8,172.3,156.8,140,139.8,139.5,137.1,133.6,141,135.4,135.4,135.2,134.3,133.5,133.4 +378,133.5,196.1,185.8,184.3,182.9,172.4,157,140.1,139.9,139.6,137.1,133.7,141.1,135.5,135.4,135.3,134.3,133.5,133.5 +379,133.5,196.2,185.9,184.4,183,172.5,157.2,140.1,139.9,139.6,137.2,133.7,141.1,135.6,135.5,135.4,134.4,133.6,133.5 +380,133.6,196.2,186,184.5,183.1,172.6,157.4,140.2,140,139.7,137.3,133.7,141.2,135.7,135.6,135.4,134.4,133.6,133.5 +381,133.6,196.3,186.1,184.6,183.2,172.8,157.6,140.3,140,139.8,137.3,133.8,141.3,135.7,135.6,135.5,134.5,133.6,133.5 +382,133.6,196.4,186.2,184.7,183.4,172.9,157.9,140.3,140.1,139.8,137.4,133.8,141.4,135.8,135.7,135.6,134.5,133.6,133.6 +383,133.6,196.5,186.3,184.8,183.5,173,158.1,140.4,140.2,139.9,137.4,133.9,141.5,135.9,135.8,135.6,134.6,133.7,133.6 +384,133.6,196.5,186.3,184.9,183.6,173.1,158.3,140.4,140.2,139.9,137.5,133.9,141.5,135.9,135.8,135.7,134.6,133.7,133.6 +385,133.7,196.6,186.4,185,183.7,173.2,158.5,140.5,140.3,140,137.6,133.9,141.6,136,135.9,135.8,134.7,133.7,133.6 +386,133.7,196.7,186.5,185.1,183.8,173.4,158.7,140.6,140.4,140.1,137.6,134,141.7,136.1,136,135.8,134.7,133.7,133.6 +387,133.7,196.7,186.6,185.2,183.9,173.5,158.9,140.6,140.4,140.1,137.7,134,141.8,136.1,136,135.9,134.8,133.7,133.7 +388,133.7,196.8,186.7,185.3,184,173.6,159.1,140.7,140.5,140.2,137.8,134.1,141.8,136.2,136.1,136,134.8,133.8,133.7 +389,133.8,196.9,186.8,185.4,184.1,173.7,159.3,140.8,140.6,140.3,137.8,134.1,141.9,136.3,136.2,136,134.9,133.8,133.7 +390,133.8,197,186.9,185.5,184.2,173.8,159.5,140.8,140.6,140.3,137.9,134.1,142,136.3,136.2,136.1,134.9,133.8,133.7 +391,133.8,197,187,185.6,184.3,174,159.7,141.1,140.7,140.4,137.9,134.2,142.1,136.4,136.3,136.1,135,133.8,133.7 +392,133.8,197.1,187.1,185.7,184.4,174.1,160,141.4,140.7,140.5,138,134.2,142.2,136.4,136.3,136.2,135,133.9,133.8 +393,133.8,197.2,187.2,185.8,184.5,174.2,160.2,141.7,140.8,140.5,138,134.2,142.2,136.5,136.4,136.3,135.1,133.9,133.8 +394,133.9,197.3,187.3,185.9,184.6,174.3,160.4,142,140.9,140.6,138.1,134.3,142.3,136.6,136.5,136.3,135.1,133.9,133.8 +395,133.9,197.3,187.4,186,184.7,174.4,160.6,142.2,140.9,140.6,138.1,134.3,142.4,136.6,136.5,136.4,135.2,133.9,133.8 +396,133.9,197.4,187.5,186.1,184.8,174.6,160.8,142.4,141,140.7,138.2,134.4,142.5,136.7,136.6,136.4,135.2,133.9,133.9 +397,133.9,197.5,187.6,186.2,184.9,174.7,161,142.6,141.1,140.8,138.2,134.4,142.6,136.8,136.6,136.5,135.3,134,133.9 +398,134,197.5,187.7,186.3,185,174.8,161.2,142.9,141.1,140.8,138.3,134.4,142.7,136.8,136.7,136.6,135.3,134,133.9 +399,134,197.6,187.8,186.4,185.2,174.9,161.4,143.2,141.2,140.9,138.4,134.5,142.7,136.9,136.8,136.6,135.4,134,133.9 +400,134,197.7,187.9,186.5,185.3,175,161.6,143.5,141.3,141,138.4,134.5,142.8,136.9,136.8,136.7,135.4,134,133.9 +401,134,197.8,188,186.6,185.4,175.1,161.8,143.8,141.3,141,138.5,134.6,142.9,137,136.9,136.7,135.5,134,134 +402,134,197.8,188.1,186.7,185.5,175.3,162,144.1,141.4,141.1,138.5,134.6,143,137.1,136.9,136.8,135.5,134.1,134 +403,134.1,197.9,188.2,186.8,185.6,175.4,162.2,144.4,141.4,141.1,138.6,134.6,143.1,137.1,137,136.8,135.6,134.1,134 +404,134.1,198,188.3,186.9,185.7,175.5,162.5,144.7,141.5,141.2,138.6,134.7,143.1,137.2,137.1,136.9,135.6,134.1,134 +405,134.1,198.1,188.4,187,185.8,175.6,162.7,145,141.6,141.3,138.7,134.7,143.2,137.2,137.1,137,135.7,134.1,134 +406,134.1,198.1,188.5,187.1,185.9,175.7,162.9,145.3,141.6,141.3,138.7,134.8,143.3,137.3,137.2,137,135.7,134.1,134.1 +407,134.1,198.2,188.6,187.2,186,175.8,163.1,145.6,141.7,141.4,138.8,134.8,143.4,137.3,137.2,137.1,135.8,134.2,134.1 +408,134.2,198.3,188.7,187.3,186.1,175.9,163.3,145.9,141.8,141.5,138.8,134.8,143.5,137.4,137.3,137.1,135.8,134.2,134.1 +409,134.2,198.4,188.8,187.5,186.2,176.1,163.5,146.2,141.9,141.6,138.9,134.9,143.6,137.5,137.3,137.2,135.9,134.2,134.1 +410,134.2,198.4,188.9,187.6,186.3,176.2,163.7,146.5,141.9,141.6,139,134.9,143.6,137.5,137.4,137.2,135.9,134.2,134.1 +411,134.2,198.5,189,187.7,186.4,176.3,163.9,146.8,142,141.7,139,135,143.7,137.6,137.5,137.3,136,134.2,134.2 +412,134.3,198.6,189.1,187.8,186.5,176.4,164.1,147,142.1,141.8,139.1,135,143.8,137.6,137.5,137.4,136,134.3,134.2 +413,134.3,198.7,189.2,187.9,186.6,176.5,164.3,147.3,142.1,141.8,139.1,135,143.9,137.7,137.6,137.4,136.1,134.3,134.2 +414,134.3,198.7,189.3,188,186.7,176.6,164.8,147.6,142.2,141.9,139.2,135.1,144,137.8,137.6,137.5,136.1,134.3,134.2 +415,134.3,198.8,189.4,188.1,186.8,176.7,165.4,147.9,142.4,141.9,139.2,135.1,144.1,137.8,137.7,137.5,136.1,134.3,134.2 +416,134.3,198.9,189.5,188.2,186.9,176.9,166,148.2,142.8,142,139.3,135.1,144.2,137.9,137.7,137.6,136.2,134.4,134.3 +417,134.4,199,189.5,188.3,187,177,166.6,148.5,143.2,142.1,139.3,135.2,144.2,137.9,137.8,137.6,136.2,134.4,134.3 +418,134.4,199,189.6,188.4,187.1,177.1,167.3,148.8,143.6,142.1,139.4,135.2,144.3,138,137.9,137.7,136.3,134.4,134.3 +419,134.4,199.1,189.7,188.5,187.2,177.2,167.9,149.1,143.9,142.2,139.4,135.3,144.4,138,137.9,137.7,136.3,134.4,134.3 +420,134.4,199.2,189.8,188.6,187.3,177.3,168.5,149.4,144.3,142.2,139.5,135.3,144.5,138.1,138,137.8,136.4,134.4,134.3 +421,134.4,199.3,189.9,188.7,187.4,177.4,169.1,149.7,144.7,142.3,139.5,135.3,144.6,138.1,138,137.9,136.4,134.5,134.4 +422,134.5,199.3,190,188.8,187.5,177.5,169.8,150,145,142.3,139.6,135.4,144.7,138.2,138.1,137.9,136.5,134.5,134.4 +423,134.5,199.4,190.1,188.9,187.6,177.6,170.4,150.3,145.4,142.4,139.6,135.4,144.8,138.3,138.1,138,136.5,134.5,134.4 +424,134.5,199.5,190.2,189,187.7,177.8,171,150.6,145.8,142.5,139.7,135.5,144.9,138.3,138.2,138,136.6,134.5,134.4 +425,134.5,199.6,190.3,189.1,187.8,177.9,171.6,151,146.1,142.5,139.8,135.5,145,138.4,138.2,138.1,136.6,134.5,134.4 +426,134.5,199.6,190.4,189.2,188,178,172.3,151.6,146.5,142.6,139.8,135.5,145,138.4,138.3,138.1,136.7,134.6,134.5 +427,134.6,199.7,190.5,189.3,188.1,178.1,172.9,152.3,146.9,142.6,139.9,135.6,145.1,138.5,138.4,138.2,136.7,134.6,134.5 +428,134.6,199.8,190.6,189.4,188.2,178.2,173.5,152.9,147.3,142.7,139.9,135.6,145.2,138.5,138.4,138.2,136.8,134.6,134.5 +429,134.6,199.9,190.7,189.5,188.3,178.3,174.1,153.5,147.6,142.7,140,135.7,145.3,138.6,138.5,138.3,136.8,134.6,134.5 +430,134.6,199.9,190.8,189.6,188.4,178.4,174.7,154.1,148,142.8,140,135.7,145.4,138.6,138.5,138.3,136.8,134.6,134.5 +431,134.6,200,190.9,189.7,188.5,178.5,175.4,154.7,148.4,142.9,140.1,135.7,145.5,138.7,138.6,138.4,136.9,134.6,134.6 +432,134.7,200.1,191,189.8,188.6,178.7,176,155.4,148.8,143.2,140.1,135.8,145.6,138.8,138.6,138.4,136.9,134.7,134.6 +433,134.7,200.2,191.1,189.9,188.7,178.8,176.6,156,149.5,143.6,140.2,135.8,145.7,138.8,138.7,138.5,137,134.7,134.6 +434,134.7,200.3,191.2,190,188.8,178.9,177.2,156.6,150.1,144,140.2,135.8,145.8,138.9,138.7,138.6,137,134.7,134.6 +435,134.7,200.3,191.3,190.1,188.9,179,177.9,157.2,150.7,144.4,140.3,135.9,145.9,138.9,138.8,138.6,137.1,134.7,134.6 +436,134.7,200.4,191.4,190.2,189,179.1,178.5,157.9,151.3,144.9,140.3,135.9,146,139,138.8,138.7,137.1,134.7,134.7 +437,134.8,200.5,191.5,190.3,189.1,179.2,179.1,158.5,151.9,145.3,140.4,136,146.1,139,138.9,138.7,137.2,134.8,134.7 +438,134.8,200.6,191.6,190.4,189.2,179.3,179.7,159.1,152.6,145.7,140.4,136,146.1,139.1,138.9,138.8,137.2,134.8,134.7 +439,134.8,200.6,191.7,190.4,189.3,179.4,180.4,159.7,153.2,146.2,140.5,136,146.2,139.1,139,138.8,137.3,134.8,134.7 +440,134.8,200.7,191.8,190.5,189.4,179.6,181,160.3,153.8,146.6,140.6,136.1,146.3,139.2,139.1,138.9,137.3,134.8,134.7 +441,134.8,200.8,191.9,190.6,189.5,179.7,181.6,161,154.4,147,140.6,136.1,146.4,139.2,139.1,138.9,137.3,134.9,134.8 +442,134.9,200.9,192,190.7,189.6,179.8,182.2,161.6,155.1,147.5,140.7,136.2,146.5,139.3,139.2,139,137.4,134.9,134.8 +443,134.9,201,192,190.8,189.7,179.9,182.8,162.2,155.7,148,140.7,136.2,146.6,139.3,139.2,139,137.4,134.9,134.8 +444,134.9,201,192.1,190.9,189.8,180,183.5,162.8,156.3,148.6,140.8,136.2,146.7,139.4,139.3,139.1,137.5,135,134.8 +445,134.9,201.1,192.2,191,189.9,180.1,184.1,163.5,156.9,149.1,140.8,136.3,146.8,139.5,139.3,139.1,137.5,135,134.8 +446,134.9,201.2,192.3,191.1,190,180.2,184.7,164.1,157.5,149.6,140.9,136.3,146.9,139.5,139.4,139.2,137.6,135,134.8 +447,135,201.3,192.4,191.2,190.1,180.3,185.3,164.7,158.2,150.1,140.9,136.4,147,139.6,139.4,139.2,137.6,135.1,134.9 +448,135,201.3,192.5,191.3,190.2,180.5,186,165.3,158.8,150.7,141,136.4,147.1,139.6,139.5,139.3,137.7,135.1,134.9 +449,135,201.4,192.6,191.4,190.3,180.6,186.6,166,159.4,151.2,141,136.4,147.2,139.7,139.5,139.3,137.7,135.1,134.9 +450,135,201.5,192.7,191.5,190.4,180.7,186.7,166.6,160,151.7,141.1,136.5,147.3,139.7,139.6,139.4,137.8,135.2,134.9 +451,135,201.6,192.8,191.6,190.5,180.8,186.8,167,160.6,152.2,141.1,136.5,147.4,139.8,139.6,139.4,137.8,135.2,134.9 +452,135.1,201.7,192.9,191.7,190.6,180.9,187,167.2,161,152.8,141.2,136.5,147.5,139.8,139.7,139.5,137.9,135.2,135 +453,135.1,201.7,193,191.8,190.7,181,187.1,167.5,161.4,153.3,141.2,136.6,147.6,139.9,139.7,139.5,137.9,135.3,135 +454,135.1,201.8,193.1,191.9,190.8,181.1,187.2,167.7,161.8,153.8,141.3,136.6,147.7,139.9,139.8,139.6,137.9,135.3,135 +455,135.1,201.9,193.2,192,190.9,181.2,187.3,168,162.1,154.3,141.3,136.7,147.8,140,139.8,139.7,138,135.3,135 +456,135.1,202,193.3,192.1,191,181.3,187.5,168.2,162.4,154.9,141.4,136.7,147.9,140,139.9,139.7,138,135.4,135 +457,135.1,202.1,193.4,192.2,191.1,181.5,187.6,168.4,162.8,155.5,141.4,136.7,148,140.1,139.9,139.8,138.1,135.4,135.1 +458,135.2,202.1,193.5,192.3,191.2,181.6,187.7,168.6,163.1,156,141.5,136.8,148.1,140.1,140,139.8,138.1,135.4,135.1 +459,135.2,202.2,193.6,192.4,191.3,181.7,187.8,168.9,163.4,156.5,141.5,136.8,148.2,140.2,140.1,139.9,138.2,135.5,135.1 +460,135.2,202.3,193.7,192.5,191.4,181.8,187.9,169.1,163.7,157,141.6,136.9,148.4,140.2,140.1,139.9,138.2,135.5,135.1 +461,135.2,202.4,193.8,192.6,191.5,181.9,188,169.3,164,157.5,141.6,136.9,148.5,140.3,140.2,140,138.3,135.5,135.1 +462,135.2,202.5,193.9,192.7,191.6,182,188,169.5,164.3,157.9,141.7,136.9,148.6,140.4,140.2,140,138.3,135.6,135.1 +463,135.3,202.5,194,192.8,191.7,182.1,188.1,169.7,164.6,158.4,141.8,137,148.7,140.4,140.3,140.1,138.4,135.6,135.2 +464,135.3,202.6,194.1,192.9,191.8,182.2,188.2,169.9,164.8,158.8,141.8,137,148.8,140.5,140.3,140.1,138.4,135.6,135.2 +465,135.3,202.7,194.2,193,191.9,182.3,188.3,170.1,165.1,159.2,141.9,137,148.9,140.5,140.4,140.2,138.4,135.7,135.2 +466,135.3,202.8,194.3,193.1,192,182.5,188.4,170.3,165.4,159.6,141.9,137.1,149,140.6,140.4,140.2,138.5,135.7,135.2 +467,135.3,202.9,194.4,193.2,192.1,182.6,188.4,170.5,165.6,160,142,137.1,149.1,140.6,140.5,140.3,138.5,135.7,135.2 +468,135.4,203,194.5,193.3,192.2,182.7,188.5,170.6,165.9,160.4,142,137.2,149.2,140.7,140.5,140.3,138.6,135.8,135.2 +469,135.4,203,194.6,193.4,192.3,182.8,188.6,170.8,166.1,160.7,142.1,137.2,149.3,140.7,140.6,140.4,138.6,135.8,135.3 +470,135.4,203.1,194.7,193.5,192.4,182.9,188.7,171,166.4,161.1,142.1,137.2,149.5,140.8,140.6,140.4,138.7,135.8,135.3 +471,135.4,203.2,194.7,193.6,192.5,183,188.7,171.2,166.6,161.4,142.2,137.3,149.6,140.8,140.7,140.5,138.7,135.9,135.3 +472,135.4,203.3,194.8,193.7,192.6,183.1,188.8,171.3,166.8,161.8,142.2,137.3,149.7,140.9,140.7,140.5,138.8,135.9,135.3 +473,135.4,203.4,194.9,193.8,192.7,183.2,188.9,171.5,167.1,162.1,142.3,137.4,149.8,140.9,140.8,140.6,138.8,135.9,135.3 +474,135.5,203.4,195,193.9,192.8,183.3,188.9,171.6,167.3,162.4,142.3,137.4,149.9,141,140.8,140.6,138.8,136,135.4 +475,135.5,203.5,195.1,194,192.9,183.5,189,171.8,167.5,162.7,142.4,137.4,150,141,140.9,140.7,138.9,136,135.4 +476,135.5,203.6,195.2,194.1,193,183.6,189.1,171.9,167.8,163.1,142.4,137.5,150.2,141.1,140.9,140.7,138.9,136,135.4 +477,135.5,203.7,195.3,194.2,193.1,183.7,189.1,172,168,163.4,142.5,137.5,150.3,141.1,141,140.8,139,136.1,135.4 +478,135.5,203.8,195.4,194.3,193.2,183.8,189.2,172.2,168.2,163.7,142.5,137.6,150.4,141.2,141,140.8,139,136.1,135.4 +479,135.6,203.9,195.5,194.4,193.3,183.9,189.2,172.3,168.3,163.9,142.6,137.6,150.5,141.2,141.1,140.9,139.1,136.1,135.4 +480,135.6,203.9,195.6,194.5,193.4,184,189.3,172.5,168.5,164.2,142.6,137.6,150.7,141.3,141.1,140.9,139.1,136.2,135.5 +481,135.6,204,195.7,194.6,193.5,184.1,189.4,172.6,168.7,164.5,142.7,137.7,150.8,141.3,141.2,141,139.2,136.2,135.5 +482,135.6,204.1,195.8,194.7,193.6,184.2,189.4,172.7,168.9,164.8,142.7,137.7,150.9,141.4,141.2,141,139.2,136.2,135.5 +483,135.6,204.2,195.9,194.8,193.7,184.3,189.5,172.9,169.1,165,142.8,137.7,151,141.4,141.3,141.1,139.3,136.3,135.5 +484,135.6,204.3,196,194.9,193.8,184.4,189.5,173,169.2,165.3,142.8,137.8,151.2,141.5,141.3,141.1,139.3,136.3,135.5 +485,135.7,204.4,196.1,195,193.9,184.5,189.6,173.1,169.4,165.6,142.9,137.8,151.3,141.5,141.4,141.2,139.3,136.3,135.5 +486,135.7,204.5,196.2,195.1,194,184.7,189.6,173.2,169.6,165.8,142.9,137.9,151.4,141.6,141.4,141.2,139.4,136.4,135.6 +487,135.7,204.5,196.3,195.2,194.1,184.8,189.7,173.4,169.7,166.1,143,137.9,151.6,141.6,141.5,141.3,139.4,136.4,135.6 +488,135.7,204.6,196.4,195.3,194.2,184.9,189.7,173.5,169.9,166.3,143,137.9,151.7,141.7,141.5,141.3,139.5,136.4,135.6 +489,135.7,204.7,196.5,195.4,194.3,185,189.8,173.6,170.1,166.5,143.1,138,151.8,141.7,141.6,141.4,139.5,136.5,135.6 +490,135.7,204.8,196.6,195.5,194.4,185.1,189.8,173.7,170.2,166.7,143.1,138,152,141.8,141.6,141.4,139.6,136.5,135.6 +491,135.8,204.9,196.7,195.6,194.5,185.2,189.9,173.8,170.4,166.9,143.2,138,152.1,141.8,141.7,141.5,139.6,136.5,135.6 +492,135.8,205,196.8,195.7,194.6,185.3,189.9,174,170.5,167.1,143.2,138.1,152.2,141.9,141.7,141.5,139.7,136.6,135.7 +493,135.8,205,196.9,195.8,194.7,185.4,190,174.1,170.7,167.3,143.3,138.1,152.4,141.9,141.8,141.6,139.7,136.6,135.7 +494,135.8,205.1,197,195.9,194.8,185.5,190,174.2,170.9,167.5,143.3,138.2,152.5,142,141.8,141.6,139.7,136.6,135.7 +495,135.8,205.2,197.1,196,194.9,185.6,190.1,174.3,171,167.7,143.4,138.2,152.7,142,141.9,141.7,139.8,136.7,135.7 +496,135.9,205.3,197.2,196.1,195,185.7,190.1,174.4,171.1,167.9,143.4,138.2,152.8,142.1,141.9,141.7,139.8,136.7,135.7 +497,135.9,205.4,197.3,196.2,195.1,185.8,190.2,174.5,171.3,168.1,143.5,138.3,153,142.1,142,141.8,139.9,136.7,135.7 +498,135.9,205.5,197.4,196.3,195.2,185.9,190.2,174.6,171.4,168.3,143.5,138.3,153.1,142.2,142,141.8,139.9,136.8,135.8 +499,135.9,205.6,197.5,196.4,195.3,186.1,190.3,174.7,171.6,168.5,143.6,138.4,153.3,142.2,142.1,141.9,140,136.8,135.8 +500,135.9,205.6,197.6,196.5,195.4,186.2,190.3,174.9,171.7,168.7,143.6,138.4,153.4,142.3,142.1,141.9,140,136.8,135.8 +501,135.9,205.7,197.7,196.6,195.5,186.3,190.4,175,171.9,168.9,143.7,138.4,153.6,142.3,142.2,142,140.1,136.9,135.8 +502,136,205.8,197.8,196.7,195.6,186.4,190.4,175.1,172,169,143.7,138.5,153.7,142.4,142.2,142,140.1,136.9,135.8 +503,136,205.9,197.9,196.8,195.7,186.5,190.5,175.2,172.1,169.2,143.8,138.5,153.9,142.4,142.3,142.1,140.1,136.9,135.8 +504,136,206,198,196.9,195.8,186.6,190.5,175.3,172.3,169.4,143.8,138.5,154.1,142.5,142.3,142.1,140.2,137,135.9 +505,136,206.1,198,197,195.9,186.7,190.6,175.4,172.4,169.6,143.8,138.6,154.2,142.5,142.4,142.2,140.2,137,135.9 +506,136,206.2,198.1,197.1,196,186.8,190.6,175.5,172.5,169.7,143.9,138.6,154.4,142.6,142.4,142.2,140.3,137,135.9 +507,136,206.3,198.2,197.2,196.1,186.9,190.6,175.6,172.7,169.9,143.9,138.7,154.5,142.6,142.5,142.3,140.3,137.1,135.9 +508,136.1,206.3,198.3,197.3,196.2,187,190.7,175.7,172.8,170.1,144,138.7,154.7,142.7,142.5,142.3,140.4,137.1,135.9 +509,136.1,206.4,198.4,197.4,196.3,187.1,190.7,175.8,172.9,170.2,144,138.7,154.9,142.7,142.6,142.4,140.4,137.1,136 +510,136.1,206.5,198.5,197.5,196.4,187.2,190.8,175.9,173,170.4,144.1,138.8,155.1,142.8,142.6,142.4,140.5,137.2,136 +511,136.1,206.6,198.6,197.6,196.5,187.3,190.8,176,173.2,170.5,144.1,138.8,155.2,142.8,142.7,142.5,140.5,137.2,136 +512,136.1,206.7,198.7,197.7,196.6,187.4,190.9,176.1,173.3,170.7,144.2,138.9,155.4,142.9,142.7,142.5,140.5,137.2,136.1 +513,136.1,206.8,198.8,197.8,196.7,187.5,190.9,176.2,173.4,170.8,144.2,138.9,155.6,142.9,142.8,142.6,140.6,137.3,136.1 +514,136.2,206.9,198.9,197.9,196.8,187.6,191,176.3,173.5,171,144.3,138.9,155.8,143,142.8,142.6,140.6,137.3,136.1 +515,136.2,207,199,198,196.9,187.7,191,176.4,173.7,171.2,144.3,139,156,143,142.9,142.6,140.7,137.3,136.1 +516,136.2,207,199.1,198.1,197,187.8,191.1,176.5,173.8,171.3,144.4,139,156.2,143.1,142.9,142.7,140.7,137.4,136.2 +517,136.2,207.1,199.2,198.2,197.1,188,191.1,176.6,173.9,171.4,144.4,139,156.4,143.1,143,142.7,140.8,137.4,136.2 +518,136.2,207.2,199.3,198.3,197.2,188.1,191.1,176.7,174,171.6,144.5,139.1,156.6,143.2,143,142.8,140.8,137.4,136.2 +519,136.2,207.3,199.4,198.4,197.3,188.2,191.2,176.8,174.1,171.7,144.5,139.1,156.8,143.2,143.1,142.8,140.9,137.4,136.3 +520,136.3,207.4,199.5,198.5,197.4,188.3,191.2,176.9,174.3,171.9,144.6,139.2,157,143.3,143.1,142.9,140.9,137.5,136.3 +521,136.3,207.5,199.6,198.6,197.5,188.4,191.3,177,174.4,172,144.6,139.2,157.2,143.3,143.2,142.9,140.9,137.5,136.3 +522,136.3,207.6,199.7,198.7,197.6,188.5,191.3,177.1,174.5,172.2,144.7,139.2,157.4,143.4,143.2,143,141,137.5,136.3 +523,136.3,207.7,199.8,198.8,197.7,188.6,191.4,177.1,174.6,172.3,144.7,139.3,157.6,143.4,143.3,143,141,137.6,136.4 +524,136.3,207.7,199.9,198.9,197.8,188.7,191.4,177.2,174.7,172.4,144.8,139.3,157.8,143.5,143.3,143.1,141.1,137.6,136.4 +525,136.3,207.8,200,199,197.9,188.8,191.4,177.3,174.8,172.6,144.8,139.3,158,143.5,143.3,143.1,141.1,137.6,136.4 +526,136.4,207.9,200.1,199.1,198,188.9,191.5,177.4,174.9,172.7,144.8,139.4,158.2,143.6,143.4,143.2,141.2,137.7,136.5 +527,136.4,208,200.2,199.2,198.1,189,191.5,177.5,175.1,172.8,144.9,139.4,158.4,143.6,143.4,143.2,141.2,137.7,136.5 +528,136.4,208.1,200.3,199.3,198.2,189.1,191.6,177.6,175.2,173,144.9,139.5,158.6,143.6,143.5,143.3,141.3,137.7,136.5 +529,136.4,208.2,200.4,199.4,198.3,189.2,191.6,177.7,175.3,173.1,145,139.5,158.8,143.7,143.5,143.3,141.3,137.8,136.5 +530,136.4,208.3,200.5,199.5,198.4,189.3,191.7,177.8,175.4,173.2,145,139.5,159,143.7,143.6,143.4,141.3,137.8,136.6 +531,136.4,208.4,200.6,199.6,198.5,189.4,191.7,177.9,175.5,173.4,145.1,139.6,159.2,143.8,143.6,143.4,141.4,137.8,136.6 +532,136.5,208.5,200.7,199.7,198.6,189.5,191.8,178,175.6,173.5,145.1,139.6,159.4,143.8,143.7,143.5,141.4,137.9,136.6 +533,136.5,208.5,200.8,199.8,198.7,189.6,191.8,178.1,175.7,173.6,145.2,139.7,159.6,143.9,143.7,143.5,141.5,137.9,136.6 +534,136.5,208.6,200.9,199.9,198.8,189.7,191.9,178.2,175.8,173.7,145.2,139.7,159.8,143.9,143.8,143.6,141.5,137.9,136.7 +535,136.5,208.7,201,200,198.9,189.8,191.9,178.3,175.9,173.9,145.3,139.7,160,144,143.8,143.6,141.6,138,136.7 +536,136.5,208.8,201.1,200.1,199,189.9,191.9,178.3,176,174,145.3,139.8,160.2,144,143.9,143.6,141.6,138,136.7 +537,136.5,208.9,201.2,200.2,199.1,190,192,178.4,176.1,174.1,145.3,139.8,160.4,144.1,143.9,143.7,141.6,138,136.8 +538,136.6,209,201.2,200.3,199.2,190.1,192,178.5,176.3,174.2,145.4,139.8,160.6,144.1,144,143.7,141.7,138.1,136.8 +539,136.6,209.1,201.3,200.4,199.3,190.2,192.1,178.6,176.4,174.4,145.4,139.9,160.8,144.2,144,143.8,141.7,138.1,136.8 +540,136.6,209.2,201.4,200.5,199.4,190.3,192.1,178.7,176.5,174.5,145.5,139.9,161,144.2,144.1,143.8,141.8,138.1,136.8 +541,136.6,209.3,201.5,200.6,199.5,190.4,192.2,178.8,176.6,174.6,145.7,140,161.2,144.3,144.1,143.9,141.8,138.2,136.9 +542,136.6,209.4,201.6,200.7,199.6,190.5,192.2,178.9,176.7,174.7,146.3,140,161.4,144.3,144.2,143.9,141.9,138.2,136.9 +543,136.6,209.4,201.7,200.7,199.7,190.6,192.3,179,176.8,174.8,146.9,140,161.6,144.4,144.2,144,141.9,138.2,136.9 +544,136.6,209.5,201.8,200.8,199.8,190.7,192.3,179.1,176.9,175,147.3,140.1,161.8,144.4,144.2,144,142,138.3,137 +545,136.7,209.6,201.9,200.9,199.9,190.9,192.4,179.2,177,175.1,147.7,140.1,162,144.5,144.3,144.1,142,138.3,137 +546,136.7,209.7,202,201,200,191,192.4,179.2,177.1,175.2,148.1,140.1,162.2,144.5,144.3,144.1,142.1,138.3,137 +547,136.7,209.8,202.1,201.1,200.1,191.1,192.5,179.3,177.2,175.3,148.5,140.2,162.4,144.5,144.4,144.2,142.1,138.4,137 +548,136.7,209.9,202.2,201.2,200.2,191.2,192.5,179.4,177.3,175.4,148.9,140.2,162.6,144.6,144.4,144.2,142.1,138.4,137.1 +549,136.7,210,202.3,201.3,200.3,191.3,192.6,179.5,177.4,175.5,149.3,140.3,162.8,144.6,144.5,144.3,142.2,138.4,137.1 +550,136.7,210.1,202.4,201.4,200.4,191.4,192.6,179.6,177.5,175.7,149.6,140.3,163.1,144.7,144.5,144.3,142.3,138.5,137.1 +551,136.8,210.2,202.5,201.5,200.5,191.5,192.7,179.7,177.6,175.8,150,140.3,163.3,144.7,144.6,144.4,142.3,138.5,137.2 +552,136.8,210.3,202.6,201.6,200.6,191.6,192.7,179.8,177.7,175.9,150.4,140.4,163.5,145,144.6,144.4,142.4,138.5,137.2 +553,136.8,210.3,202.7,201.7,200.7,191.7,192.8,179.9,177.8,176,150.8,140.4,163.7,145.1,144.7,144.4,142.4,138.6,137.2 +554,136.8,210.4,202.8,201.8,200.8,191.8,192.8,180,177.9,176.1,151.2,140.5,163.9,145.3,144.7,144.5,142.5,138.6,137.2 +555,136.8,210.5,202.9,201.9,200.9,191.9,192.9,180.1,178,176.2,151.6,140.5,164.1,145.6,144.8,144.5,142.5,138.6,137.3 +556,136.8,210.6,203,202,201,192,192.9,180.2,178.1,176.3,152,140.5,164.3,145.9,144.8,144.6,142.5,138.7,137.3 +557,136.9,210.7,203.1,202.1,201.1,192.1,193,180.2,178.2,176.5,152.4,140.6,164.5,146.2,144.9,144.6,142.6,138.7,137.3 +558,136.9,210.8,203.2,202.2,201.2,192.2,193,180.3,178.3,176.6,152.8,140.6,164.7,146.5,144.9,144.7,142.6,138.7,137.4 +559,136.9,210.9,203.3,202.3,201.3,192.3,193.1,180.4,178.4,176.7,153.2,140.6,164.9,146.8,145,144.7,142.7,138.8,137.4 +560,136.9,211,203.4,202.4,201.4,192.4,193.1,180.5,178.5,176.8,153.5,140.7,165.1,147.1,145,144.8,142.7,138.8,137.4 +561,136.9,211.1,203.4,202.5,201.5,192.5,193.2,180.6,178.6,176.9,153.9,140.7,165.3,147.4,145,144.8,142.7,138.8,137.4 +562,136.9,211.2,203.5,202.6,201.6,192.6,193.2,180.7,178.7,177,154.3,140.8,165.5,147.7,145.1,144.9,142.8,138.9,137.5 +563,136.9,211.3,203.6,202.7,201.7,192.7,193.3,180.8,178.8,177.1,154.7,140.8,165.7,148,145.1,144.9,142.8,138.9,137.5 +564,137,211.3,203.7,202.8,201.8,192.8,193.3,180.9,178.9,177.2,155.1,140.8,165.9,148.3,145.2,145,142.9,138.9,137.5 +565,137,211.4,203.8,202.9,201.9,192.9,193.4,181,179,177.3,155.5,140.9,166.1,148.6,145.3,145.1,142.9,139,137.6 +566,137,211.5,203.9,203,202,193,193.5,181.1,179.1,177.4,155.9,140.9,166.3,148.9,145.4,145.1,143,139,137.6 +567,137,211.6,204,203.1,202.1,193.1,193.5,181.2,179.2,177.6,156.3,140.9,166.5,149.2,145.4,145.2,143,139,137.6 +568,137,211.7,204.1,203.2,202.2,193.2,193.6,181.2,179.3,177.7,156.7,141,166.7,149.5,145.4,145.2,143,139,137.6 +569,137,211.8,204.2,203.3,202.3,193.3,193.6,181.3,179.5,177.8,157.2,141,166.9,149.8,145.5,145.3,143.1,139.1,137.7 +570,137.1,211.9,204.3,203.4,202.4,193.4,193.7,181.4,179.6,177.9,157.7,141.1,167.1,150.1,145.5,145.3,143.1,139.1,137.7 +571,137.1,212,204.4,203.5,202.5,193.5,193.7,181.5,179.7,178,158.2,141.1,167.5,150.4,145.6,145.3,143.2,139.1,137.7 +572,137.1,212.1,204.5,203.6,202.6,193.6,193.8,181.6,179.8,178.1,158.6,141.1,168.1,150.7,145.6,145.4,143.2,139.2,137.8 +573,137.1,212.2,204.6,203.7,202.7,193.7,193.8,181.7,179.9,178.2,159.1,141.2,168.7,151,145.7,145.4,143.2,139.2,137.8 +574,137.1,212.2,204.7,203.7,202.8,193.8,193.9,181.8,180,178.3,159.5,141.2,169.3,151.2,145.8,145.5,143.3,139.2,137.8 +575,137.1,212.3,204.8,203.8,202.9,193.9,194,181.9,180.1,178.4,159.9,141.2,169.9,151.5,146.2,145.5,143.3,139.3,137.8 +576,137.1,212.4,204.9,203.9,203,194,194,182,180.2,178.5,160.3,141.3,170.6,151.8,146.6,145.6,143.4,139.3,137.9 +577,137.2,212.5,204.9,204,203.1,194.1,194.1,182.1,180.3,178.6,160.7,141.3,171.2,152.1,147,145.6,143.4,139.3,137.9 +578,137.2,212.6,205,204.1,203.2,194.2,194.1,182.2,180.4,178.8,161.1,141.4,171.8,152.4,147.3,145.6,143.4,139.4,137.9 +579,137.2,212.7,205.1,204.2,203.3,194.3,194.2,182.3,180.5,178.9,161.5,141.4,172.4,152.7,147.7,145.7,143.5,139.4,137.9 +580,137.2,212.8,205.2,204.3,203.4,194.4,194.2,182.4,180.6,179,161.8,141.4,173,153,148.1,145.7,143.5,139.4,138 +581,137.2,212.9,205.3,204.4,203.5,194.5,194.3,182.5,180.7,179.1,162.2,141.5,173.7,153.3,148.4,145.8,143.6,139.5,138 +582,137.2,213,205.4,204.5,203.5,194.6,194.4,182.6,180.8,179.2,162.6,141.5,174.3,153.7,148.8,145.8,143.6,139.5,138 +583,137.2,213.1,205.5,204.6,203.6,194.7,194.4,182.6,180.9,179.3,162.9,141.5,174.9,154.3,149.2,145.8,143.7,139.5,138.1 +584,137.3,213.2,205.6,204.7,203.7,194.8,194.5,182.7,181,179.4,163.2,141.6,175.5,154.9,149.6,145.9,143.7,139.6,138.1 +585,137.3,213.2,205.7,204.8,203.8,194.9,194.5,182.8,181.1,179.5,163.5,141.6,176.2,155.5,149.9,145.9,143.7,139.6,138.1 +586,137.3,213.3,205.8,204.9,203.9,195,194.6,182.9,181.2,179.6,163.9,141.7,176.8,156.1,150.3,146,143.8,139.6,138.1 +587,137.3,213.4,205.9,205,204,195.1,194.7,183,181.3,179.7,164.2,141.7,177.4,156.8,150.7,146,143.8,139.7,138.2 +588,137.3,213.5,206,205.1,204.1,195.2,194.7,183.1,181.4,179.8,164.5,141.7,178,157.4,151,146.1,143.9,139.7,138.2 +589,137.3,213.6,206.1,205.2,204.2,195.3,194.8,183.2,181.5,179.9,164.8,141.8,178.6,158,151.5,146.1,143.9,139.7,138.2 +590,137.3,213.7,206.1,205.3,204.3,195.4,194.8,183.3,181.6,180,165,141.8,179.3,158.6,152.1,146.2,143.9,139.8,138.3 +591,137.4,213.8,206.2,205.4,204.4,195.5,194.9,183.4,181.7,180.1,165.3,141.8,179.9,159.2,152.7,146.6,144,139.8,138.3 +592,137.4,213.9,206.3,205.4,204.5,195.6,195,183.5,181.8,180.3,165.6,141.9,180.5,159.9,153.3,147.1,144,139.8,138.3 +593,137.4,214,206.4,205.5,204.6,195.7,195,183.6,181.9,180.4,165.8,141.9,181.1,160.5,153.9,147.5,144.1,139.9,138.3 +594,137.4,214.1,206.5,205.6,204.7,195.8,195.1,183.7,182,180.5,166.1,142,181.8,161.1,154.5,147.9,144.1,139.9,138.4 +595,137.4,214.2,206.6,205.7,204.8,195.9,195.1,183.8,182.1,180.6,166.3,142,182.4,161.7,155.1,148.4,144.1,139.9,138.4 +596,137.4,214.2,206.7,205.8,204.9,196,195.2,183.9,182.2,180.7,166.5,142,183,162.4,155.7,148.8,144.2,140,138.4 +597,137.5,214.3,206.8,205.9,205,196.1,195.3,184,182.3,180.8,166.8,142.1,183.6,163,156.3,149.2,144.2,140,138.5 +598,137.5,214.4,206.9,206,205.1,196.2,195.3,184.1,182.4,180.9,167,142.1,184.2,163.6,156.9,149.7,144.3,140,138.5 +599,137.5,214.5,207,206.1,205.2,196.3,195.4,184.2,182.5,181,167.2,142.1,184.9,164.2,157.5,150.1,144.3,140.1,138.5 +600,137.5,214.6,207.1,206.2,205.3,196.4,195.5,184.3,182.6,181.1,167.4,142.2,185.5,164.8,158.1,150.5,144.3,140.1,138.5 +601,137.5,214.7,207.1,206.3,205.4,196.5,195.5,184.4,182.7,181.2,167.7,142.2,186.1,165.5,158.7,151,144.4,140.1,138.6 +602,137.5,214.8,207.2,206.4,205.4,196.6,195.6,184.5,182.8,181.3,167.9,142.2,186.7,166.1,159.2,151.4,144.4,140.2,138.6 +603,137.5,214.9,207.3,206.5,205.5,196.7,195.6,184.6,182.9,181.4,168.1,142.3,187.3,166.7,159.7,151.9,144.5,140.2,138.6 +604,137.6,215,207.4,206.6,205.6,196.8,195.7,184.6,183,181.5,168.3,142.3,187.6,167.1,160.2,152.3,144.5,140.2,138.6 +605,137.6,215.1,207.5,206.6,205.7,196.9,195.8,184.7,183.1,181.7,168.5,142.4,187.8,167.4,160.6,152.7,144.5,140.2,138.7 +606,137.6,215.2,207.6,206.7,205.8,197,195.8,184.8,183.2,181.8,168.7,142.4,187.9,167.7,161.1,153.2,144.6,140.3,138.7 +607,137.6,215.2,207.7,206.8,205.9,197.1,195.9,184.9,183.3,181.9,168.9,142.4,188,168,161.5,153.6,144.6,140.3,138.7 +608,137.6,215.3,207.8,206.9,206,197.2,196,185,183.4,182,169.1,142.5,188.2,168.2,161.9,154.1,144.7,140.3,138.8 +609,137.6,215.4,207.9,207,206.1,197.3,196,185.1,183.5,182.1,169.3,142.5,188.3,168.5,162.3,154.5,144.7,140.4,138.8 +610,137.6,215.5,207.9,207.1,206.2,197.4,196.1,185.2,183.7,182.2,169.5,142.5,188.4,168.8,162.6,154.9,144.7,140.4,138.8 +611,137.7,215.6,208,207.2,206.3,197.5,196.2,185.3,183.8,182.3,169.6,142.6,188.5,169,163,155.4,144.8,140.4,138.8 +612,137.7,215.7,208.1,207.3,206.4,197.6,196.2,185.4,183.9,182.4,169.8,142.6,188.7,169.2,163.4,155.8,144.8,140.5,138.9 +613,137.7,215.8,208.2,207.4,206.5,197.7,196.3,185.5,184,182.5,170,142.7,188.8,169.5,163.7,156.3,144.9,140.5,138.9 +614,137.7,215.9,208.3,207.5,206.6,197.9,196.4,185.6,184.1,182.6,170.2,142.7,188.9,169.7,164,156.7,144.9,140.5,138.9 +615,137.7,216,208.4,207.5,206.6,198,196.4,185.7,184.2,182.7,170.4,142.7,189,169.9,164.3,157.1,144.9,140.6,139 +616,137.7,216.1,208.5,207.6,206.7,198.1,196.5,185.8,184.3,182.8,170.5,142.8,189.1,170.1,164.7,157.7,145,140.6,139 +617,137.7,216.1,208.6,207.7,206.8,198.2,196.5,185.9,184.4,182.9,170.7,142.8,189.2,170.4,165,158.2,145,140.6,139 +618,137.7,216.2,208.6,207.8,206.9,198.3,196.6,186,184.5,183,170.9,142.8,189.3,170.6,165.3,158.7,145.1,140.7,139 +619,137.8,216.3,208.7,207.9,207,198.4,196.7,186.1,184.6,183.2,171,142.9,189.4,170.8,165.6,159.1,145.1,140.7,139.1 +620,137.8,216.4,208.8,208,207.1,198.5,196.7,186.2,184.7,183.3,171.2,142.9,189.4,171,165.8,159.6,145.1,140.7,139.1 +621,137.8,216.5,208.9,208.1,207.2,198.6,196.8,186.3,184.8,183.4,171.4,143,189.5,171.2,166.1,160,145.2,140.8,139.1 +622,137.8,216.6,209,208.2,207.3,198.7,196.9,186.4,184.9,183.5,171.5,143,189.6,171.4,166.4,160.4,145.2,140.8,139.1 +623,137.8,216.7,209.1,208.3,207.4,198.8,196.9,186.5,185,183.6,171.7,143,189.7,171.6,166.7,160.8,145.3,140.8,139.2 +624,137.8,216.8,209.2,208.3,207.5,198.9,197,186.6,185.1,183.7,171.8,143.1,189.7,171.8,166.9,161.2,145.3,140.9,139.2 +625,137.8,216.9,209.3,208.4,207.6,199,197.1,186.7,185.2,183.8,172,143.1,189.8,172,167.2,161.6,145.3,140.9,139.2 +626,137.9,217,209.3,208.5,207.6,199.1,197.1,186.8,185.3,183.9,172.1,143.1,189.9,172.1,167.4,162,145.4,140.9,139.3 +627,137.9,217,209.4,208.6,207.7,199.2,197.2,186.9,185.4,184,172.3,143.2,190,172.3,167.7,162.4,145.4,141,139.3 +628,137.9,217.1,209.5,208.7,207.8,199.3,197.3,187,185.5,184.1,172.5,143.2,190,172.5,167.9,162.7,145.5,141,139.3 +629,137.9,217.2,209.6,208.8,207.9,199.4,197.3,187.1,185.6,184.2,172.6,143.2,190.1,172.6,168.2,163.1,145.5,141,139.3 +630,137.9,217.3,209.7,208.9,208,199.5,197.4,187.2,185.7,184.3,172.7,143.3,190.2,172.8,168.4,163.4,145.5,141.1,139.4 +631,137.9,217.4,209.8,209,208.1,199.6,197.5,187.3,185.8,184.4,172.9,143.3,190.2,172.9,168.6,163.7,145.6,141.1,139.4 +632,137.9,217.5,209.9,209,208.2,199.7,197.5,187.4,185.9,184.5,173,143.4,190.3,173.1,168.8,164,145.6,141.1,139.4 +633,138,217.6,209.9,209.1,208.3,199.8,197.6,187.5,186,184.7,173.2,143.4,190.3,173.2,169.1,164.3,145.6,141.2,139.5 +634,138,217.7,210,209.2,208.4,199.9,197.7,187.6,186.1,184.8,173.3,143.4,190.4,173.4,169.3,164.7,145.7,141.2,139.5 +635,138,217.8,210.1,209.3,208.4,200,197.7,187.7,186.2,184.9,173.5,143.5,190.5,173.5,169.5,165,145.7,141.2,139.5 +636,138,217.9,210.2,209.4,208.5,200.1,197.8,187.8,186.3,185,173.6,143.5,190.5,173.6,169.7,165.2,145.8,141.3,139.5 +637,138,217.9,210.3,209.5,208.6,200.2,197.9,187.9,186.4,185.1,173.7,143.5,190.6,173.8,169.9,165.5,145.8,141.3,139.6 +638,138,218,210.4,209.6,208.7,200.3,197.9,188,186.5,185.2,173.9,143.6,190.6,173.9,170,165.8,145.8,141.3,139.6 +639,138,218.1,210.4,209.6,208.8,200.4,198,188.1,186.6,185.3,174,143.6,190.7,174,170.2,166.1,145.9,141.3,139.6 +640,138,218.2,210.5,209.7,208.9,200.5,198.1,188.2,186.7,185.4,174.1,143.6,190.7,174.2,170.4,166.4,145.9,141.4,139.7 +641,138.1,218.3,210.6,209.8,209,200.6,198.1,188.2,186.8,185.5,174.3,143.7,190.8,174.3,170.6,166.6,146,141.4,139.7 +642,138.1,218.4,210.7,209.9,209.1,200.7,198.2,188.3,187,185.6,174.4,143.7,190.8,174.4,170.8,166.9,146,141.4,139.7 +643,138.1,218.5,210.8,210,209.1,200.8,198.3,188.4,187.1,185.7,174.5,143.8,190.9,174.6,170.9,167.2,146,141.5,139.7 +644,138.1,218.6,210.9,210.1,209.2,200.9,198.4,188.5,187.2,185.8,174.7,143.8,190.9,174.7,171.1,167.4,146.1,141.5,139.8 +645,138.1,218.7,210.9,210.1,209.3,201,198.4,188.6,187.3,185.9,174.8,143.8,191,174.8,171.3,167.6,146.1,141.5,139.8 +646,138.1,218.8,211,210.2,209.4,201.1,198.5,188.7,187.4,186,174.9,143.9,191,174.9,171.4,167.9,146.1,141.6,139.8 +647,138.1,218.8,211.1,210.3,209.5,201.2,198.6,188.8,187.5,186.1,175.1,143.9,191.1,175,171.6,168.1,146.2,141.6,139.8 +648,138.2,218.9,211.2,210.4,209.6,201.3,198.6,188.9,187.6,186.2,175.2,143.9,191.1,175.2,171.7,168.3,146.2,141.6,139.9 +649,138.2,219,211.3,210.5,209.7,201.4,198.7,189,187.7,186.4,175.3,144,191.2,175.3,171.9,168.5,146.3,141.7,139.9 +650,138.2,219.1,211.4,210.6,209.7,201.5,198.8,189.1,187.8,186.5,175.4,144,191.2,175.4,172,168.7,146.3,141.7,139.9 +651,138.2,219.2,211.4,210.7,209.8,201.6,198.8,189.2,187.9,186.6,175.6,144,191.3,175.5,172.2,168.9,146.3,141.7,140 +652,138.2,219.3,211.5,210.7,209.9,201.7,198.9,189.3,188,186.7,175.7,144.1,191.3,175.6,172.4,169.1,146.4,141.8,140 +653,138.2,219.4,211.6,210.8,210,201.8,199,189.4,188.1,186.8,175.8,144.1,191.4,175.7,172.5,169.3,146.4,141.8,140 +654,138.2,219.5,211.7,210.9,210.1,201.9,199,189.5,188.2,186.9,175.9,144.2,191.4,175.8,172.6,169.5,146.4,141.8,140 +655,138.2,219.6,211.8,211,210.2,202,199.1,189.6,188.3,187,176.1,144.2,191.5,176,172.8,169.7,146.5,141.9,140.1 +656,138.3,219.7,211.8,211.1,210.3,202.1,199.2,189.7,188.4,187.1,176.2,144.2,191.5,176.1,172.9,169.9,146.5,141.9,140.1 +657,138.3,219.7,211.9,211.1,210.3,202.2,199.2,189.8,188.5,187.2,176.3,144.3,191.6,176.2,173.1,170.1,146.6,141.9,140.1 +658,138.3,219.8,212,211.2,210.4,202.3,199.3,189.9,188.6,187.3,176.4,144.3,191.6,176.3,173.2,170.2,146.6,142,140.1 +659,138.3,219.9,212.1,211.3,210.5,202.4,199.4,190,188.7,187.4,176.6,144.3,191.7,176.4,173.4,170.4,146.6,142,140.2 +660,138.3,220,212.2,211.4,210.6,202.5,199.4,190.1,188.8,187.5,176.7,144.4,191.7,176.5,173.5,170.6,146.7,142,140.2 +661,138.3,220.1,212.2,211.5,210.7,202.6,199.5,190.2,188.9,187.6,176.8,144.4,191.7,176.6,173.6,170.8,146.7,142.1,140.2 +662,138.3,220.2,212.3,211.6,210.8,202.6,199.6,190.3,189,187.7,176.9,144.4,191.8,176.7,173.8,170.9,146.7,142.1,140.3 +663,138.4,220.3,212.4,211.6,210.8,202.7,199.6,190.4,189.1,187.8,177,144.5,191.8,176.8,173.9,171.1,146.8,142.1,140.3 +664,138.4,220.4,212.5,211.7,210.9,202.8,199.7,190.5,189.2,187.9,177.2,144.5,191.9,176.9,174,171.3,146.8,142.1,140.3 +665,138.4,220.5,212.6,211.8,211,202.9,199.8,190.6,189.3,188,177.3,144.5,191.9,177,174.2,171.4,146.9,142.2,140.3 +666,138.4,220.6,212.6,211.9,211.1,203,199.9,190.7,189.4,188.1,177.4,144.6,192,177.1,174.3,171.6,146.9,142.2,140.4 +667,138.4,220.7,212.7,212,211.2,203.1,199.9,190.8,189.5,188.2,177.5,144.6,192,177.2,174.4,171.8,146.9,142.2,140.4 +668,138.4,220.7,212.8,212,211.3,203.2,200,190.9,189.6,188.3,177.6,144.7,192,177.3,174.5,171.9,147,142.3,140.4 +669,138.4,220.8,212.9,212.1,211.3,203.3,200.1,191,189.7,188.4,177.7,144.7,192.1,177.4,174.7,172.1,147,142.3,140.5 +670,138.4,220.9,213,212.2,211.4,203.4,200.1,191,189.8,188.5,177.9,144.7,192.1,177.5,174.8,172.2,147,142.3,140.5 +671,138.5,221,213,212.3,211.5,203.5,200.2,191.1,189.9,188.7,178,144.8,192.2,177.6,174.9,172.4,147.1,142.4,140.5 +672,138.5,221.1,213.1,212.4,211.6,203.6,200.3,191.2,190,188.8,178.1,144.8,192.2,177.7,175,172.6,147.1,142.4,140.5 +673,138.5,221.2,213.2,212.4,211.7,203.7,200.3,191.3,190.1,188.9,178.2,144.8,192.3,177.8,175.2,172.7,147.2,142.4,140.6 +674,138.5,221.3,213.3,212.5,211.8,203.8,200.4,191.4,190.2,189,178.3,144.9,192.3,177.9,175.3,172.8,147.2,142.5,140.6 +675,138.5,221.4,213.4,212.6,211.8,203.9,200.5,191.5,190.3,189.1,178.4,144.9,192.3,178,175.4,173,147.2,142.5,140.6 +676,138.5,221.5,213.4,212.7,211.9,204,200.6,191.6,190.4,189.2,178.6,144.9,192.4,178.1,175.5,173.1,147.3,142.5,140.6 +677,138.5,221.6,213.5,212.8,212,204.1,200.6,191.7,190.5,189.3,178.7,145,192.4,178.2,175.6,173.3,147.3,142.6,140.7 +678,138.5,221.7,213.6,212.8,212.1,204.2,200.7,191.8,190.6,189.4,178.8,145,192.5,178.3,175.8,173.4,147.3,142.6,140.7 +679,138.6,221.7,213.7,212.9,212.2,204.3,200.8,191.9,190.7,189.5,178.9,145,192.5,178.4,175.9,173.6,147.4,142.6,140.7 +680,138.6,221.8,213.8,213,212.2,204.4,200.8,192,190.8,189.6,179,145.1,192.6,178.5,176,173.7,147.4,142.7,140.8 +681,138.6,221.9,213.8,213.1,212.3,204.5,200.9,192.1,190.9,189.7,179.1,145.1,192.6,178.6,176.1,173.8,147.4,142.7,140.8 +682,138.6,222,213.9,213.2,212.4,204.6,201,192.2,191,189.8,179.2,145.2,192.6,178.7,176.2,174,147.5,142.7,140.8 +683,138.6,222.1,214,213.2,212.5,204.7,201,192.3,191.1,189.9,179.4,145.2,192.7,178.8,176.3,174.1,147.5,142.8,140.8 +684,138.6,222.2,214.1,213.3,212.6,204.8,201.1,192.4,191.2,190,179.5,145.2,192.7,178.9,176.5,174.3,147.6,142.8,140.9 +685,138.6,222.3,214.2,213.4,212.6,204.9,201.2,192.5,191.3,190.1,179.6,145.3,192.8,178.9,176.6,174.4,147.6,142.8,140.9 +686,138.6,222.4,214.2,213.5,212.7,205,201.3,192.6,191.4,190.2,179.7,145.3,192.8,179,176.7,174.5,147.6,142.9,140.9 +687,138.7,222.5,214.3,213.6,212.8,205.1,201.3,192.7,191.5,190.3,179.8,145.3,192.9,179.1,176.8,174.7,147.7,142.9,141 +688,138.7,222.6,214.4,213.6,212.9,205.2,201.4,192.8,191.6,190.4,179.9,145.4,192.9,179.2,176.9,174.8,147.7,142.9,141 +689,138.7,222.7,214.5,213.7,213,205.3,201.5,192.9,191.7,190.5,180,145.4,192.9,179.3,177,174.9,147.7,142.9,141 +690,138.7,222.8,214.6,213.8,213,205.4,201.5,193,191.8,190.6,180.2,145.4,193,179.4,177.1,175,147.8,143,141 +691,138.7,222.8,214.6,213.9,213.1,205.5,201.6,193,191.9,190.7,180.3,145.5,193,179.5,177.2,175.2,147.8,143,141.1 +692,138.7,222.9,214.7,214,213.2,205.6,201.7,193.1,192,190.8,180.4,145.5,193.1,179.6,177.3,175.3,147.8,143,141.1 +693,138.7,223,214.8,214,213.3,205.7,201.8,193.2,192.1,190.9,180.5,145.5,193.1,179.7,177.4,175.4,147.9,143.1,141.1 +694,138.7,223.1,214.9,214.1,213.4,205.8,201.8,193.3,192.2,191,180.6,145.6,193.2,179.8,177.6,175.5,147.9,143.1,141.1 +695,138.8,223.2,215,214.2,213.4,205.8,201.9,193.4,192.3,191.1,180.7,145.6,193.2,179.9,177.7,175.7,147.9,143.1,141.2 +696,138.8,223.3,215,214.3,213.5,205.9,202,193.5,192.4,191.2,180.8,145.6,193.3,180,177.8,175.8,148,143.2,141.2 +697,138.8,223.4,215.1,214.4,213.6,206,202,193.6,192.5,191.3,180.9,145.7,193.3,180.1,177.9,175.9,148,143.2,141.2 +698,138.8,223.5,215.2,214.4,213.7,206.1,202.1,193.7,192.6,191.4,181.1,145.7,193.3,180.1,178,176,148.1,143.2,141.3 +699,138.8,223.6,215.3,214.5,213.8,206.2,202.2,193.8,192.7,191.5,181.2,145.7,193.4,180.2,178.1,176.2,148.7,143.3,141.3 +700,138.8,223.7,215.3,214.6,213.8,206.3,202.3,193.9,192.8,191.6,181.3,145.8,193.4,180.3,178.2,176.3,149.3,143.3,141.3 +701,138.8,223.8,215.4,214.7,213.9,206.4,202.3,194,192.9,191.7,181.4,145.8,193.5,180.4,178.3,176.4,149.7,143.3,141.3 +702,138.8,223.9,215.5,214.8,214,206.5,202.4,194.1,193,191.8,181.5,145.9,193.5,180.5,178.4,176.5,150.1,143.4,141.4 +703,138.9,224,215.6,214.8,214.1,206.6,202.5,194.2,193.1,191.9,181.6,145.9,193.6,180.6,178.5,176.6,150.4,143.4,141.4 +704,138.9,224.1,215.7,214.9,214.2,206.7,202.6,194.3,193.2,192,181.7,145.9,193.6,180.7,178.6,176.8,150.8,143.4,141.4 +705,138.9,224.1,215.7,215,214.2,206.8,202.6,194.4,193.3,192.1,181.8,146,193.7,180.8,178.7,176.9,151.1,143.5,141.4 +706,138.9,224.2,215.8,215.1,214.3,206.9,202.7,194.5,193.4,192.2,182,146,193.7,180.9,178.8,177,151.5,143.5,141.5 +707,138.9,224.3,215.9,215.1,214.4,207,202.8,194.6,193.4,192.3,182.1,146,193.8,181,178.9,177.1,151.8,143.5,141.5 +708,138.9,224.4,216,215.2,214.5,207.1,202.8,194.7,193.5,192.4,182.2,146.1,193.8,181.1,179,177.2,152.2,143.5,141.5 +709,138.9,224.5,216.1,215.3,214.5,207.2,202.9,194.8,193.6,192.5,182.3,146.1,193.9,181.1,179.1,177.3,152.5,143.6,141.6 +710,138.9,224.6,216.1,215.4,214.6,207.3,203,194.8,193.7,192.6,182.4,146.1,193.9,181.2,179.2,177.5,152.9,143.6,141.6 +711,139,224.7,216.2,215.5,214.7,207.4,203.1,194.9,193.8,192.7,182.5,146.2,194,181.3,179.3,177.6,153.2,143.6,141.6 +712,139,224.8,216.3,215.5,214.8,207.4,203.1,195,193.9,192.8,182.6,146.2,194,181.4,179.4,177.7,153.6,143.7,141.6 +713,139,224.9,216.4,215.6,214.9,207.5,203.2,195.1,194,192.9,182.7,146.2,194.1,181.5,179.6,177.8,153.9,143.7,141.7 +714,139,225,216.5,215.7,214.9,207.6,203.3,195.2,194.1,193,182.9,146.3,194.1,181.6,179.7,177.9,154.3,143.7,141.7 +715,139,225.1,216.5,215.8,215,207.7,203.4,195.3,194.2,193.1,183,146.3,194.2,181.7,179.8,178,154.6,143.8,141.7 +716,139,225.2,216.6,215.9,215.1,207.8,203.4,195.4,194.3,193.2,183.1,146.3,194.2,181.8,179.9,178.1,155,143.8,141.8 +717,139,225.3,216.7,215.9,215.2,207.9,203.5,195.5,194.4,193.3,183.2,146.4,194.3,181.9,180,178.2,155.3,143.8,141.8 +718,139,225.4,216.8,216,215.3,208,203.6,195.6,194.5,193.4,183.3,146.4,194.3,182,180.1,178.4,155.7,143.9,141.8 +719,139.1,225.5,216.9,216.1,215.3,208.1,203.7,195.7,194.6,193.5,183.4,146.4,194.4,182.1,180.2,178.5,156,143.9,141.8 +720,139.1,225.5,217,216.2,215.4,208.2,203.7,195.8,194.7,193.6,183.5,146.5,194.4,182.2,180.3,178.6,156.4,143.9,141.9 +721,139.1,225.6,217,216.3,215.5,208.3,203.8,195.9,194.8,193.7,183.6,146.5,194.5,182.2,180.4,178.7,156.7,144,141.9 +722,139.1,225.7,217.1,216.3,215.6,208.4,203.9,196,194.9,193.8,183.7,146.5,194.5,182.3,180.5,178.8,157,144,141.9 +723,139.1,225.8,217.2,216.4,215.7,208.5,204,196.1,195,193.9,183.9,146.6,194.6,182.4,180.6,178.9,157.4,144,141.9 +724,139.1,225.9,217.3,216.5,215.7,208.5,204,196.2,195.1,194,184,146.6,194.6,182.5,180.7,179,157.7,144.1,142 +725,139.1,226,217.4,216.6,215.8,208.6,204.1,196.3,195.2,194.1,184.1,146.6,194.7,182.6,180.8,179.1,158.1,144.1,142 +726,139.1,226.1,217.4,216.7,215.9,208.7,204.2,196.4,195.3,194.2,184.2,146.7,194.7,182.7,180.9,179.2,158.4,144.1,142 +727,139.1,226.2,217.5,216.7,216,208.8,204.3,196.5,195.4,194.3,184.3,146.7,194.8,182.8,181,179.4,158.8,144.1,142.1 +728,139.2,226.3,217.6,216.8,216.1,208.9,204.3,196.6,195.5,194.4,184.4,146.7,194.8,182.9,181.1,179.5,159.1,144.2,142.1 +729,139.2,226.4,217.7,216.9,216.1,209,204.4,196.6,195.6,194.5,184.5,146.8,194.9,183,181.2,179.6,159.7,144.2,142.1 +730,139.2,226.5,217.8,217,216.2,209.1,204.5,196.7,195.7,194.6,184.6,146.8,195,183.1,181.3,179.7,160.2,144.2,142.1 +731,139.2,226.6,217.8,217.1,216.3,209.2,204.6,196.8,195.8,194.7,184.7,146.8,195,183.2,181.4,179.8,160.6,144.3,142.2 +732,139.2,226.7,217.9,217.1,216.4,209.3,204.6,196.9,195.9,194.8,184.9,146.9,195.1,183.3,181.5,179.9,161.1,144.3,142.2 +733,139.2,226.8,218,217.2,216.5,209.3,204.7,197,196,194.9,185,146.9,195.1,183.4,181.6,180,161.5,144.3,142.2 +734,139.2,226.9,218.1,217.3,216.5,209.4,204.8,197.1,196.1,195,185.1,146.9,195.2,183.5,181.7,180.1,161.9,144.4,142.2 +735,139.2,226.9,218.2,217.4,216.6,209.5,204.9,197.2,196.2,195.1,185.2,147,195.2,183.6,181.8,180.2,162.3,144.4,142.3 +736,139.3,227,218.3,217.5,216.7,209.6,205,197.3,196.3,195.2,185.3,147,195.3,183.6,181.9,180.3,162.6,144.4,142.3 +737,139.3,227.1,218.3,217.6,216.8,209.7,205,197.4,196.4,195.3,185.4,147,195.4,183.7,182,180.4,163,144.5,142.3 +738,139.3,227.2,218.4,217.6,216.9,209.8,205.1,197.5,196.5,195.4,185.5,147.1,195.4,183.8,182.1,180.5,163.4,144.5,142.4 +739,139.3,227.3,218.5,217.7,216.9,209.9,205.2,197.6,196.6,195.5,185.6,147.1,195.5,183.9,182.2,180.7,163.7,144.5,142.4 +740,139.3,227.4,218.6,217.8,217,210,205.3,197.7,196.7,195.6,185.7,147.1,195.5,184,182.3,180.8,164.1,144.6,142.4 +741,139.3,227.5,218.7,217.9,217.1,210.1,205.3,197.8,196.8,195.7,185.8,147.2,195.6,184.1,182.4,180.9,164.4,144.6,142.4 +742,139.3,227.6,218.7,218,217.2,210.1,205.4,197.9,196.9,195.8,186,147.2,195.6,184.2,182.5,181,164.7,144.6,142.5 +743,139.3,227.7,218.8,218,217.3,210.2,205.5,198,197,195.9,186.1,147.2,195.7,184.3,182.6,181.1,165.1,144.6,142.5 +744,139.3,227.8,218.9,218.1,217.3,210.3,205.6,198.1,197.1,196,186.2,147.3,195.8,184.4,182.7,181.2,165.4,144.7,142.5 +745,139.4,227.9,219,218.2,217.4,210.4,205.7,198.2,197.2,196.1,186.3,147.3,195.8,184.5,182.8,181.3,165.7,144.7,142.5 +746,139.4,228,219.1,218.3,217.5,210.5,205.7,198.3,197.3,196.2,186.4,147.3,195.9,184.6,182.9,181.4,166,144.7,142.6 +747,139.4,228.1,219.2,218.4,217.6,210.6,205.8,198.4,197.3,196.3,186.5,147.4,195.9,184.7,183,181.5,166.2,144.8,142.6 +748,139.4,228.2,219.2,218.4,217.7,210.7,205.9,198.5,197.4,196.4,186.6,147.4,196,184.8,183.1,181.6,166.5,144.8,142.6 +749,139.4,228.2,219.3,218.5,217.8,210.7,206,198.6,197.5,196.5,186.7,147.4,196.1,184.9,183.2,181.7,166.8,144.8,142.7 +750,139.4,228.3,219.4,218.6,217.8,210.8,206.1,198.6,197.6,196.6,186.8,147.5,196.1,185,183.4,181.8,167,144.9,142.7 +751,139.4,228.4,219.5,218.7,217.9,210.9,206.1,198.7,197.7,196.7,186.9,147.5,196.2,185.1,183.5,182,167.3,144.9,142.7 +752,139.4,228.5,219.6,218.8,218,211,206.2,198.8,197.8,196.8,187,147.5,196.2,185.2,183.6,182.1,167.5,144.9,142.7 +753,139.5,228.6,219.6,218.9,218.1,211.1,206.3,198.9,197.9,196.9,187.2,147.6,196.3,185.3,183.7,182.2,167.8,145,142.8 +754,139.5,228.7,219.7,218.9,218.2,211.2,206.4,199,198,197,187.3,147.6,196.4,185.4,183.8,182.3,168,145,142.8 +755,139.5,228.8,219.8,219,218.2,211.3,206.5,199.1,198.1,197.1,187.4,147.6,196.4,185.5,183.9,182.4,168.2,145,142.8 +756,139.5,228.9,219.9,219.1,218.3,211.3,206.5,199.2,198.2,197.2,187.5,147.7,196.5,185.6,184,182.5,168.5,145.1,142.8 +757,139.5,229,220,219.2,218.4,211.4,206.6,199.3,198.3,197.3,187.6,147.7,196.5,185.7,184.1,182.6,168.7,145.1,142.9 +758,139.5,229.1,220.1,219.3,218.5,211.5,206.7,199.4,198.4,197.4,187.7,147.7,196.6,185.7,184.2,182.7,168.9,145.1,142.9 +759,139.5,229.2,220.1,219.3,218.6,211.6,206.8,199.5,198.5,197.5,187.8,147.8,196.7,185.8,184.3,182.8,169.1,145.1,142.9 +760,139.5,229.3,220.2,219.4,218.7,211.7,206.9,199.6,198.6,197.6,187.9,147.8,196.7,185.9,184.4,182.9,169.3,145.2,143 +761,139.5,229.4,220.3,219.5,218.7,211.8,206.9,199.7,198.7,197.7,188,147.8,196.8,186,184.5,183,169.5,145.2,143 +762,139.6,229.5,220.4,219.6,218.8,211.9,207,199.8,198.8,197.8,188.1,147.9,196.9,186.1,184.6,183.1,169.8,145.2,143 +763,139.6,229.5,220.5,219.7,218.9,211.9,207.1,199.9,198.9,197.9,188.2,147.9,196.9,186.2,184.7,183.2,170,145.3,143 +764,139.6,229.6,220.5,219.8,219,212,207.2,200,199,198,188.3,147.9,197,186.3,184.8,183.4,170.2,145.3,143.1 +765,139.6,229.7,220.6,219.8,219.1,212.1,207.3,200.1,199.1,198,188.4,148,197,186.4,184.9,183.5,170.3,145.3,143.1 +766,139.6,229.8,220.7,219.9,219.1,212.2,207.3,200.2,199.2,198.1,188.6,148,197.1,186.5,185,183.6,170.5,145.4,143.1 +767,139.6,229.9,220.8,220,219.2,212.3,207.4,200.3,199.3,198.2,188.7,148,197.2,186.6,185.1,183.7,170.7,145.4,143.1 +768,139.6,230,220.9,220.1,219.3,212.4,207.5,200.4,199.4,198.3,188.8,148.1,197.2,186.7,185.2,183.8,170.9,145.4,143.2 +769,139.6,230.1,221,220.2,219.4,212.4,207.6,200.5,199.5,198.4,188.9,148.1,197.3,186.8,185.3,183.9,171.1,145.5,143.2 +770,139.6,230.2,221,220.2,219.5,212.5,207.7,200.6,199.6,198.5,189,148.1,197.4,186.9,185.4,184,171.3,145.5,143.2 +771,139.7,230.3,221.1,220.3,219.6,212.6,207.8,200.7,199.7,198.6,189.1,148.2,197.4,187,185.5,184.1,171.5,145.5,143.3 +772,139.7,230.4,221.2,220.4,219.6,212.7,207.8,200.7,199.8,198.7,189.2,148.2,197.5,187.1,185.6,184.2,171.6,145.5,143.3 +773,139.7,230.5,221.3,220.5,219.7,212.8,207.9,200.8,199.9,198.8,189.3,148.2,197.6,187.2,185.7,184.3,171.8,145.6,143.3 +774,139.7,230.6,221.4,220.6,219.8,212.8,208,200.9,200,198.9,189.4,148.3,197.6,187.3,185.8,184.4,172,145.6,143.3 +775,139.7,230.6,221.4,220.7,219.9,212.9,208.1,201,200.1,199,189.5,148.3,197.7,187.4,185.9,184.5,172.2,145.6,143.4 +776,139.7,230.7,221.5,220.7,220,213,208.2,201.1,200.2,199.1,189.6,148.3,197.7,187.5,186,184.6,172.3,145.7,143.4 +777,139.7,230.8,221.6,220.8,220,213.1,208.3,201.2,200.3,199.2,189.7,148.4,197.8,187.6,186.1,184.8,172.5,145.7,143.4 +778,139.7,230.9,221.7,220.9,220.1,213.2,208.3,201.3,200.4,199.3,189.8,148.4,197.9,187.7,186.3,184.9,172.7,145.7,143.4 +779,139.7,231,221.8,221,220.2,213.3,208.4,201.4,200.5,199.4,189.9,148.4,197.9,187.8,186.4,185,172.8,145.8,143.5 +780,139.8,231.1,221.9,221.1,220.3,213.3,208.5,201.5,200.6,199.5,190,148.4,198,187.9,186.5,185.1,173,145.8,143.5 +781,139.8,231.2,221.9,221.1,220.4,213.4,208.6,201.6,200.7,199.6,190.1,148.5,198.1,188,186.6,185.2,173.1,145.8,143.5 +782,139.8,231.3,222,221.2,220.4,213.5,208.7,201.7,200.8,199.7,190.3,148.5,198.1,188.1,186.7,185.3,173.3,145.9,143.6 +783,139.8,231.4,222.1,221.3,220.5,213.6,208.8,201.8,200.9,199.8,190.4,148.5,198.2,188.2,186.8,185.4,173.5,145.9,143.6 +784,139.8,231.5,222.2,221.4,220.6,213.7,208.8,201.9,201,199.9,190.5,148.6,198.3,188.3,186.9,185.5,173.6,145.9,143.6 +785,139.8,231.6,222.3,221.5,220.7,213.7,208.9,202,201,200,190.6,148.6,198.3,188.4,187,185.6,173.8,145.9,143.6 +786,139.8,231.7,222.3,221.5,220.8,213.8,209,202.1,201.1,200.1,190.7,148.6,198.4,188.5,187.1,185.7,173.9,146,143.7 +787,139.8,231.7,222.4,221.6,220.9,213.9,209.1,202.2,201.2,200.2,190.8,148.7,198.5,188.6,187.2,185.8,174.1,146,143.7 +788,139.8,231.8,222.5,221.7,220.9,214,209.2,202.3,201.3,200.3,190.9,148.7,198.5,188.7,187.3,185.9,174.2,146,143.7 +789,139.9,231.9,222.6,221.8,221,214.1,209.3,202.4,201.4,200.4,191,148.7,198.6,188.8,187.4,186,174.3,146.1,143.7 +790,139.9,232,222.7,221.9,221.1,214.1,209.3,202.5,201.5,200.5,191.1,148.8,198.7,188.9,187.5,186.1,174.5,146.1,143.8 +791,139.9,232.1,222.7,221.9,221.2,214.2,209.4,202.6,201.6,200.6,191.2,148.8,198.7,189,187.6,186.3,174.6,146.1,143.8 +792,139.9,232.2,222.8,222,221.3,214.3,209.5,202.7,201.7,200.7,191.3,148.8,198.8,189.1,187.7,186.4,174.8,146.2,143.8 +793,139.9,232.3,222.9,222.1,221.3,214.4,209.6,202.8,201.8,200.8,191.4,148.9,198.9,189.2,187.8,186.5,174.9,146.2,143.9 +794,139.9,232.4,223,222.2,221.4,214.5,209.7,202.8,201.9,200.9,191.5,148.9,198.9,189.3,187.9,186.6,175.1,146.2,143.9 +795,139.9,232.5,223.1,222.3,221.5,214.5,209.8,202.9,202,201,191.6,148.9,199,189.4,188,186.7,175.2,146.2,143.9 +796,139.9,232.6,223.1,222.4,221.6,214.6,209.8,203,202.1,201.1,191.7,148.9,199.1,189.5,188.1,186.8,175.3,146.3,143.9 +797,139.9,232.7,223.2,222.4,221.7,214.7,209.9,203.1,202.2,201.2,191.8,149,199.1,189.6,188.2,186.9,175.5,146.3,144 +798,140,232.7,223.3,222.5,221.7,214.8,210,203.2,202.3,201.3,191.9,149,199.2,189.7,188.3,187,175.6,146.3,144 +799,140,232.8,223.4,222.6,221.8,214.9,210.1,203.3,202.4,201.4,192,149,199.3,189.8,188.4,187.1,175.7,146.4,144 +800,140,232.9,223.5,222.7,221.9,214.9,210.2,203.4,202.5,201.5,192.1,149.1,199.3,189.9,188.5,187.2,175.9,146.4,144 +801,140,233,223.6,222.8,222,215,210.3,203.5,202.6,201.6,192.2,149.1,199.4,189.9,188.6,187.3,176,146.4,144.1 +802,140,233.1,223.6,222.8,222.1,215.1,210.4,203.6,202.7,201.7,192.3,149.1,199.5,190,188.7,187.4,176.1,146.5,144.1 +803,140,233.2,223.7,222.9,222.1,215.2,210.4,203.7,202.8,201.8,192.4,149.2,199.5,190.1,188.8,187.5,176.3,146.5,144.1 +804,140,233.3,223.8,223,222.2,215.3,210.5,203.8,202.9,201.9,192.5,149.2,199.6,190.2,188.9,187.6,176.4,146.5,144.2 +805,140,233.4,223.9,223.1,222.3,215.3,210.6,203.9,203,202,192.6,149.2,199.7,190.3,189,187.7,176.5,146.6,144.2 +806,140,233.5,224,223.2,222.4,215.4,210.7,204,203.1,202.1,192.7,149.3,199.7,190.4,189.1,187.8,176.7,146.6,144.2 +807,140.1,233.6,224,223.2,222.5,215.5,210.8,204.1,203.2,202.2,192.8,149.3,199.8,190.5,189.2,188,176.8,146.6,144.2 +808,140.1,233.6,224.1,223.3,222.6,215.6,210.9,204.2,203.3,202.3,192.9,149.3,199.9,190.6,189.3,188.1,176.9,146.6,144.3 +809,140.1,233.7,224.2,223.4,222.6,215.7,211,204.3,203.4,202.4,193,149.3,199.9,190.7,189.4,188.2,177,146.7,144.3 +810,140.1,233.8,224.3,223.5,222.7,215.7,211,204.4,203.5,202.5,193.1,149.4,200,190.8,189.5,188.3,177.2,146.7,144.3 +811,140.1,233.9,224.4,223.6,222.8,215.8,211.1,204.5,203.6,202.6,193.2,149.4,200.1,190.9,189.6,188.4,177.3,146.7,144.3 +812,140.1,234,224.4,223.6,222.9,215.9,211.2,204.6,203.7,202.7,193.3,149.4,200.1,191,189.8,188.5,177.4,146.8,144.4 +813,140.1,234.1,224.5,223.7,223,216,211.3,204.7,203.8,202.8,193.4,149.5,200.2,191.1,189.9,188.6,177.5,146.8,144.4 +814,140.1,234.2,224.6,223.8,223,216.1,211.4,204.7,203.9,202.9,193.6,149.7,200.3,191.2,190,188.7,177.7,146.8,144.4 +815,140.1,234.3,224.7,223.9,223.1,216.1,211.5,204.8,204,203,193.7,150.8,200.3,191.3,190.1,188.8,177.8,146.9,144.4 +816,140.2,234.4,224.8,223.9,223.2,216.2,211.6,204.9,204,203.1,193.8,151.9,200.4,191.4,190.2,188.9,177.9,146.9,144.5 +817,140.2,234.5,224.8,224,223.3,216.3,211.6,205,204.1,203.2,193.9,153.2,200.5,191.5,190.3,189,178,146.9,144.5 +818,140.2,234.5,224.9,224.1,223.4,216.4,211.7,205.1,204.2,203.3,194,153.4,200.5,191.6,190.4,189.1,178.1,146.9,144.5 +819,140.2,234.6,225,224.2,223.4,216.4,211.8,205.2,204.3,203.3,194.1,153.7,200.6,191.7,190.5,189.2,178.3,147,144.6 +820,140.2,234.7,225.1,224.3,223.5,216.5,211.9,205.3,204.4,203.4,194.2,153.9,200.7,191.8,190.6,189.3,178.4,147,144.6 +821,140.2,234.8,225.1,224.3,223.6,216.6,212,205.4,204.5,203.5,194.3,154.2,200.7,191.9,190.7,189.4,178.5,147,144.6 +822,140.2,234.9,225.2,224.4,223.7,216.7,212.1,205.5,204.6,203.6,194.4,154.4,200.8,192,190.8,189.5,178.6,147.1,144.6 +823,140.2,235,225.3,224.5,223.7,216.8,212.2,205.6,204.7,203.7,194.5,154.7,200.9,192.1,190.9,189.6,178.7,147.1,144.7 +824,140.2,235.1,225.4,224.6,223.8,216.8,212.2,205.7,204.8,203.8,194.6,154.9,200.9,192.2,191,189.7,178.9,147.1,144.7 +825,140.2,235.2,225.5,224.7,223.9,216.9,212.3,205.8,204.9,203.9,194.7,155.2,201,192.3,191.1,189.8,179,147.1,144.7 +826,140.3,235.3,225.5,224.7,224,217,212.4,205.9,205,204,194.8,155.5,201.1,192.4,191.2,189.9,179.1,147.2,144.7 +827,140.3,235.4,225.6,224.8,224.1,217.1,212.5,206,205.1,204.1,194.9,155.7,201.2,192.5,191.3,190,179.2,147.2,144.8 +828,140.3,235.4,225.7,224.9,224.1,217.2,212.6,206.1,205.2,204.2,195,156,201.2,192.6,191.4,190.1,179.3,147.2,144.8 +829,140.3,235.5,225.8,225,224.2,217.2,212.7,206.2,205.3,204.3,195.1,156.2,201.3,192.7,191.5,190.3,179.5,147.3,144.8 +830,140.3,235.6,225.9,225.1,224.3,217.3,212.8,206.3,205.4,204.4,195.2,156.5,201.4,192.7,191.6,190.4,179.6,147.3,144.9 +831,140.3,235.7,225.9,225.1,224.4,217.4,212.8,206.3,205.5,204.5,195.3,156.7,201.4,192.8,191.7,190.5,179.7,147.3,144.9 +832,140.3,235.8,226,225.2,224.5,217.5,212.9,206.4,205.6,204.6,195.4,157,201.5,192.9,191.8,190.6,179.8,147.4,144.9 +833,140.3,235.9,226.1,225.3,224.5,217.6,213,206.5,205.7,204.7,195.5,157.2,201.6,193,191.9,190.7,179.9,147.4,144.9 +834,140.3,236,226.2,225.4,224.6,217.6,213.1,206.6,205.8,204.8,195.6,157.5,201.6,193.1,192,190.8,180,147.4,145 +835,140.4,236.1,226.3,225.4,224.7,217.7,213.2,206.7,205.9,204.9,195.7,157.7,201.7,193.2,192.1,190.9,180.1,147.4,145 +836,140.4,236.2,226.3,225.5,224.8,217.8,213.3,206.8,206,205,195.8,158,201.8,193.3,192.2,191,180.3,147.5,145 +837,140.4,236.2,226.4,225.6,224.9,217.9,213.4,206.9,206.1,205.1,195.9,158.2,201.8,193.4,192.3,191.1,180.4,147.5,145 +838,140.4,236.3,226.5,225.7,224.9,218,213.5,207,206.1,205.2,196,158.5,201.9,193.5,192.4,191.2,180.5,147.5,145.1 +839,140.4,236.4,226.6,225.8,225,218,213.5,207.1,206.2,205.3,196.1,158.7,202,193.6,192.5,191.3,180.6,147.6,145.1 +840,140.4,236.5,226.7,225.8,225.1,218.1,213.6,207.2,206.3,205.4,196.2,159,202.1,193.7,192.6,191.4,180.7,147.6,145.1 +841,140.4,236.6,226.7,225.9,225.2,218.2,213.7,207.3,206.4,205.5,196.3,159.2,202.1,193.8,192.7,191.5,180.8,147.6,145.1 +842,140.4,236.7,226.8,226,225.2,218.3,213.8,207.4,206.5,205.6,196.4,159.5,202.2,193.9,192.8,191.6,181,147.7,145.2 +843,140.4,236.8,226.9,226.1,225.3,218.4,213.9,207.5,206.6,205.7,196.5,159.7,202.3,194,192.9,191.7,181.1,147.7,145.2 +844,140.4,236.9,227,226.2,225.4,218.5,214,207.5,206.7,205.8,196.6,160,202.3,194.1,193,191.8,181.2,147.7,145.2 +845,140.5,237,227,226.2,225.5,218.5,214.1,207.6,206.8,205.9,196.7,160.2,202.4,194.2,193.1,191.9,181.3,147.7,145.3 +846,140.5,237,227.1,226.3,225.6,218.6,214.1,207.7,206.9,206,196.8,160.5,202.5,194.3,193.2,192,181.4,147.8,145.3 +847,140.5,237.1,227.2,226.4,225.6,218.7,214.2,207.8,207,206,196.9,161,202.5,194.4,193.3,192.1,181.5,147.8,145.3 +848,140.5,237.2,227.3,226.5,225.7,218.8,214.3,207.9,207.1,206.1,197,161.4,202.6,194.5,193.3,192.2,181.6,147.8,145.3 +849,140.5,237.3,227.4,226.5,225.8,218.9,214.4,208,207.2,206.2,197.1,161.8,202.7,194.6,193.4,192.3,181.7,147.9,145.4 +850,140.5,237.4,227.4,226.6,225.9,218.9,214.5,208.1,207.3,206.3,197.2,162.3,202.8,194.7,193.5,192.4,181.9,147.9,145.4 +851,140.5,237.5,227.5,226.7,226,219,214.6,208.2,207.4,206.4,197.3,162.7,202.8,194.8,193.6,192.5,182,147.9,145.4 +852,140.5,237.6,227.6,226.8,226,219.1,214.7,208.3,207.5,206.5,197.4,163.1,202.9,194.8,193.7,192.6,182.1,147.9,145.4 +853,140.5,237.7,227.7,226.9,226.1,219.2,214.8,208.4,207.6,206.6,197.5,163.4,203,194.9,193.8,192.7,182.2,148,145.5 +854,140.5,237.7,227.7,226.9,226.2,219.3,214.8,208.5,207.6,206.7,197.6,163.8,203,195,193.9,192.8,182.3,148,145.5 +855,140.6,237.8,227.8,227,226.3,219.3,214.9,208.6,207.7,206.8,197.7,164.2,203.1,195.1,194,192.9,182.4,148,145.5 +856,140.6,237.9,227.9,227.1,226.3,219.4,215,208.6,207.8,206.9,197.8,164.5,203.2,195.2,194.1,193,182.5,148.1,145.5 +857,140.6,238,228,227.2,226.4,219.5,215.1,208.7,207.9,207,197.9,164.9,203.3,195.3,194.2,193.1,182.7,148.1,145.6 +858,140.6,238.1,228.1,227.2,226.5,219.6,215.2,208.8,208,207.1,198,165.2,203.3,195.4,194.3,193.2,182.8,148.1,145.6 +859,140.6,238.2,228.1,227.3,226.6,219.7,215.3,208.9,208.1,207.2,198.1,165.6,203.4,195.5,194.4,193.3,182.9,148.1,145.6 +860,140.6,238.3,228.2,227.4,226.7,219.8,215.4,209,208.2,207.3,198.2,165.9,203.5,195.6,194.5,193.4,183,148.2,145.7 +861,140.6,238.4,228.3,227.5,226.7,219.8,215.4,209.1,208.3,207.4,198.3,166.2,203.5,195.7,194.6,193.5,183.1,148.2,145.7 +862,140.6,238.5,228.4,227.6,226.8,219.9,215.5,209.2,208.4,207.5,198.4,166.5,203.6,195.8,194.7,193.6,183.2,148.2,145.7 +863,140.6,238.5,228.5,227.6,226.9,220,215.6,209.3,208.5,207.6,198.5,166.8,203.7,195.9,194.8,193.7,183.3,148.3,145.7 +864,140.6,238.6,228.5,227.7,227,220.1,215.7,209.4,208.6,207.6,198.6,167.1,203.8,196,194.9,193.8,183.4,148.3,145.8 +865,140.7,238.7,228.6,227.8,227,220.2,215.8,209.5,208.7,207.7,198.7,167.3,203.8,196.1,195,193.9,183.6,148.3,145.8 +866,140.7,238.8,228.7,227.9,227.1,220.2,215.9,209.5,208.7,207.8,198.8,167.6,203.9,196.2,195.1,194,183.7,148.3,145.8 +867,140.7,238.9,228.8,227.9,227.2,220.3,216,209.6,208.8,207.9,198.9,167.8,204,196.3,195.2,194.1,183.8,148.4,145.8 +868,140.7,239,228.8,228,227.3,220.4,216.1,209.7,208.9,208,199,168.1,204.1,196.4,195.3,194.2,183.9,148.4,145.9 +869,140.7,239.1,228.9,228.1,227.4,220.5,216.1,209.8,209,208.1,199.1,168.3,204.1,196.5,195.4,194.3,184,148.4,145.9 +870,140.7,239.2,229,228.2,227.4,220.6,216.2,209.9,209.1,208.2,199.2,168.6,204.2,196.5,195.5,194.4,184.1,148.5,145.9 +871,140.7,239.2,229.1,228.3,227.5,220.6,216.3,210,209.2,208.3,199.3,168.8,204.3,196.6,195.6,194.5,184.2,148.5,145.9 +872,140.7,239.3,229.2,228.3,227.6,220.7,216.4,210.1,209.3,208.4,199.4,169.1,204.3,196.7,195.7,194.6,184.3,148.5,146 +873,140.7,239.4,229.2,228.4,227.7,220.8,216.5,210.2,209.4,208.5,199.5,169.3,204.4,196.8,195.8,194.7,184.5,148.6,146 +874,140.7,239.5,229.3,228.5,227.7,220.9,216.6,210.3,209.5,208.6,199.6,169.5,204.5,196.9,195.9,194.8,184.6,148.6,146 +875,140.8,239.6,229.4,228.6,227.8,221,216.7,210.3,209.6,208.7,199.7,169.7,204.6,197,196,194.9,184.7,148.6,146.1 +876,140.8,239.7,229.5,228.6,227.9,221.1,216.7,210.4,209.7,208.8,199.8,169.9,204.6,197.1,196.1,195,184.8,148.6,146.1 +877,140.8,239.8,229.5,228.7,228,221.1,216.8,210.5,209.7,208.8,199.9,170.2,204.7,197.2,196.2,195.1,184.9,148.7,146.1 +878,140.8,239.9,229.6,228.8,228.1,221.2,216.9,210.6,209.8,208.9,200,170.4,204.8,197.3,196.3,195.2,185,148.7,146.1 +879,140.8,239.9,229.7,228.9,228.1,221.3,217,210.7,209.9,209,200.1,170.6,204.9,197.4,196.4,195.3,185.1,148.7,146.2 +880,140.8,240,229.8,228.9,228.2,221.4,217.1,210.8,210,209.1,200.2,170.8,204.9,197.5,196.5,195.4,185.2,148.7,146.2 +881,140.8,240.1,229.9,229,228.3,221.5,217.2,210.9,210.1,209.2,200.3,171,205,197.6,196.6,195.5,185.3,148.8,146.2 +882,140.8,240.2,229.9,229.1,228.4,221.5,217.3,211,210.2,209.3,200.4,171.2,205.1,197.7,196.7,195.6,185.5,148.8,146.2 +883,140.8,240.3,230,229.2,228.4,221.6,217.3,211,210.3,209.4,200.5,171.4,205.2,197.8,196.8,195.7,185.6,148.8,146.3 +884,140.8,240.4,230.1,229.3,228.5,221.7,217.4,211.1,210.4,209.5,200.6,171.6,205.2,197.9,196.9,195.8,185.7,148.9,146.3 +885,140.9,240.5,230.2,229.3,228.6,221.8,217.5,211.2,210.5,209.6,200.7,171.7,205.3,198,197,195.9,185.8,148.9,146.3 +886,140.9,240.6,230.2,229.4,228.7,221.9,217.6,211.3,210.5,209.7,200.8,171.9,205.4,198.1,197.1,196,185.9,148.9,146.3 +887,140.9,240.6,230.3,229.5,228.7,221.9,217.7,211.4,210.6,209.8,200.9,172.1,205.5,198.2,197.2,196.1,186,148.9,146.4 +888,140.9,240.7,230.4,229.6,228.8,222,217.8,211.5,210.7,209.8,201,172.3,205.5,198.3,197.3,196.2,186.1,149,146.4 +889,140.9,240.8,230.5,229.6,228.9,222.1,217.9,211.6,210.8,209.9,201.1,172.5,205.6,198.3,197.3,196.3,186.2,149,146.4 +890,140.9,240.9,230.5,229.7,229,222.2,217.9,211.6,210.9,210,201.2,172.6,205.7,198.4,197.4,196.4,186.3,149,146.4 +891,140.9,241,230.6,229.8,229.1,222.3,218,211.7,211,210.1,201.3,172.8,205.8,198.5,197.5,196.5,186.5,149.1,146.5 +892,140.9,241.1,230.7,229.9,229.1,222.3,218.1,211.8,211.1,210.2,201.4,173,205.8,198.6,197.6,196.6,186.6,149.1,146.5 +893,140.9,241.2,230.8,229.9,229.2,222.4,218.2,211.9,211.2,210.3,201.5,173.2,205.9,198.7,197.7,196.7,186.7,149.1,146.5 +894,140.9,241.3,230.9,230,229.3,222.5,218.3,212,211.2,210.4,201.6,173.3,206,198.8,197.8,196.8,186.8,149.1,146.6 +895,141,241.3,230.9,230.1,229.4,222.6,218.4,212.1,211.3,210.5,201.7,173.5,206.1,198.9,197.9,196.9,186.9,149.2,146.6 +896,141,241.4,231,230.2,229.4,222.7,218.5,212.2,211.4,210.6,201.8,173.7,206.2,199,198,197,187,149.2,146.6 +897,141,241.5,231.1,230.3,229.5,222.8,218.5,212.2,211.5,210.6,201.9,173.8,206.2,199.1,198.1,197.1,187.1,149.2,146.6 +898,141,241.6,231.2,230.3,229.6,222.8,218.6,212.3,211.6,210.7,202,174,206.3,199.2,198.2,197.2,187.2,149.3,146.7 +899,141,241.7,231.2,230.4,229.7,222.9,218.7,212.4,211.7,210.8,202.1,174.1,206.4,199.3,198.3,197.3,187.3,149.3,146.7 +900,141,241.8,231.3,230.5,229.7,223,218.8,212.5,211.8,210.9,202.2,174.3,206.5,199.4,198.4,197.4,187.4,149.3,146.7 +901,141,241.9,231.4,230.6,229.8,223.1,218.9,212.6,211.8,211,202.3,174.4,206.5,199.5,198.5,197.5,187.6,149.3,146.7 +902,141,241.9,231.5,230.6,229.9,223.2,219,212.7,211.9,211.1,202.4,174.6,206.6,199.6,198.6,197.6,187.7,149.4,146.8 +903,141,242,231.5,230.7,230,223.2,219.1,212.7,212,211.2,202.5,174.7,206.7,199.7,198.7,197.6,187.8,149.4,146.8 +904,141,242.1,231.6,230.8,230,223.3,219.1,212.8,212.1,211.3,202.6,174.9,206.8,199.8,198.8,197.7,187.9,149.4,146.8 +905,141.1,242.2,231.7,230.9,230.1,223.4,219.2,212.9,212.2,211.3,202.7,175,206.9,199.9,198.9,197.8,188,149.5,146.8 +906,141.1,242.3,231.8,230.9,230.2,223.5,219.3,213,212.3,211.4,202.8,175.2,206.9,200,199,197.9,188.1,149.5,146.9 +907,141.1,242.4,231.9,231,230.3,223.6,219.4,213.1,212.4,211.5,202.9,175.3,207,200.1,199.1,198,188.2,149.5,146.9 +908,141.1,242.5,231.9,231.1,230.4,223.6,219.5,213.2,212.4,211.6,203,175.5,207.1,200.2,199.2,198.1,188.3,149.5,146.9 +909,141.1,242.6,232,231.2,230.4,223.7,219.6,213.2,212.5,211.7,203.1,175.6,207.2,200.2,199.3,198.2,188.4,149.6,146.9 +910,141.1,242.6,232.1,231.2,230.5,223.8,219.6,213.3,212.6,211.8,203.2,175.8,207.2,200.3,199.4,198.3,188.5,149.6,147 +911,141.1,242.7,232.2,231.3,230.6,223.9,219.7,213.4,212.7,211.9,203.3,175.9,207.3,200.4,199.5,198.4,188.6,149.6,147 +912,141.1,242.8,232.2,231.4,230.7,224,219.8,213.5,212.8,212,203.4,176,207.4,200.5,199.6,198.5,188.8,149.6,147 +913,141.1,242.9,232.3,231.5,230.7,224,219.9,213.6,212.9,212,203.5,176.2,207.5,200.6,199.7,198.6,188.9,149.7,147.1 +914,141.1,243,232.4,231.6,230.8,224.1,220,213.7,212.9,212.1,203.6,176.3,207.6,200.7,199.8,198.7,189,149.7,147.1 +915,141.1,243.1,232.5,231.6,230.9,224.2,220.1,213.7,213,212.2,203.7,176.4,207.6,200.8,199.9,198.8,189.1,149.7,147.1 +916,141.2,243.2,232.5,231.7,231,224.3,220.2,213.8,213.1,212.3,203.8,176.6,207.7,200.9,200,198.9,189.2,149.8,147.1 +917,141.2,243.2,232.6,231.8,231,224.4,220.2,213.9,213.2,212.4,203.9,176.7,207.8,201,200.1,199,189.3,149.8,147.2 +918,141.2,243.3,232.7,231.9,231.1,224.4,220.3,214,213.3,212.5,204,176.8,207.9,201.1,200.2,199.1,189.4,149.8,147.2 +919,141.2,243.4,232.8,231.9,231.2,224.5,220.4,214.1,213.4,212.6,204.1,177,208,201.2,200.3,199.2,189.5,149.8,147.2 +920,141.2,243.5,232.9,232,231.3,224.6,220.5,214.1,213.4,212.6,204.2,177.1,208,201.3,200.4,199.3,189.6,149.9,147.2 +921,141.2,243.6,232.9,232.1,231.3,224.7,220.6,214.2,213.5,212.7,204.3,177.2,208.1,201.4,200.5,199.4,189.7,149.9,147.3 +922,141.2,243.7,233,232.2,231.4,224.7,220.7,214.3,213.6,212.8,204.4,177.4,208.2,201.5,200.5,199.5,189.8,149.9,147.3 +923,141.2,243.8,233.1,232.2,231.5,224.8,220.8,214.4,213.7,212.9,204.5,177.5,208.3,201.6,200.6,199.6,189.9,149.9,147.3 +924,141.2,243.8,233.2,232.3,231.6,224.9,220.8,214.5,213.8,213,204.6,177.6,208.4,201.7,200.7,199.7,190,150,147.3 +925,141.2,243.9,233.2,232.4,231.6,225,220.9,214.5,213.8,213.1,204.7,177.8,208.4,201.8,200.8,199.8,190.2,150,147.4 +926,141.3,244,233.3,232.5,231.7,225.1,221,214.6,213.9,213.1,204.8,177.9,208.5,201.9,200.9,199.9,190.3,150,147.4 +927,141.3,244.1,233.4,232.5,231.8,225.1,221.1,214.7,214,213.2,204.8,178,208.6,202,201,200,190.4,150.1,147.4 +928,141.3,244.2,233.5,232.6,231.9,225.2,221.2,214.8,214.1,213.3,204.9,178.1,208.7,202.1,201.1,200.1,190.5,150.1,147.4 +929,141.3,244.3,233.5,232.7,232,225.3,221.3,214.9,214.2,213.4,205,178.3,208.8,202.1,201.2,200.2,190.6,150.1,147.5 +930,141.3,244.4,233.6,232.8,232,225.4,221.4,214.9,214.3,213.5,205.1,178.4,208.9,202.2,201.3,200.3,190.7,150.1,147.5 +931,141.3,244.4,233.7,232.8,232.1,225.5,221.4,215,214.3,213.6,205.2,178.5,208.9,202.3,201.4,200.4,190.8,150.2,147.5 +932,141.3,244.5,233.8,232.9,232.2,225.5,221.5,215.1,214.4,213.6,205.3,178.6,209,202.4,201.5,200.5,190.9,150.2,147.5 +933,141.3,244.6,233.8,233,232.3,225.6,221.6,215.2,214.5,213.7,205.4,178.8,209.1,202.5,201.6,200.6,191,150.2,147.6 +934,141.3,244.7,233.9,233.1,232.3,225.7,221.7,215.3,214.6,213.8,205.5,178.9,209.2,202.6,201.7,200.7,191.1,150.2,147.6 +935,141.3,244.8,234,233.1,232.4,225.8,221.8,215.3,214.7,213.9,205.6,179,209.3,202.7,201.8,200.8,191.2,150.3,147.6 +936,141.3,244.9,234.1,233.2,232.5,225.9,221.9,215.4,214.7,214,205.7,179.1,209.3,202.8,201.9,200.9,191.3,150.3,147.6 +937,141.4,245,234.2,233.3,232.6,225.9,222,215.5,214.8,214,205.8,179.2,209.4,202.9,202,201,191.4,150.3,147.7 +938,141.4,245,234.2,233.4,232.6,226,222,215.6,214.9,214.1,205.9,179.4,209.5,203,202.1,201.1,191.5,150.3,147.7 +939,141.4,245.1,234.3,233.4,232.7,226.1,222.1,215.7,215,214.2,206,179.5,209.6,203.1,202.2,201.2,191.6,150.4,147.7 +940,141.4,245.2,234.4,233.5,232.8,226.2,222.2,215.7,215.1,214.3,206.1,179.6,209.7,203.2,202.3,201.3,191.7,150.4,147.8 +941,141.4,245.3,234.5,233.6,232.9,226.2,222.3,215.8,215.1,214.4,206.2,179.7,209.8,203.3,202.4,201.4,191.8,150.4,147.8 +942,141.4,245.4,234.5,233.7,232.9,226.3,222.4,215.9,215.2,214.5,206.3,179.8,209.8,203.4,202.5,201.5,191.9,150.5,147.8 +943,141.4,245.5,234.6,233.8,233,226.4,222.5,216,215.3,214.5,206.4,180,209.9,203.5,202.6,201.6,192,150.5,147.8 +944,141.4,245.6,234.7,233.8,233.1,226.5,222.6,216,215.4,214.6,206.5,180.1,210,203.6,202.7,201.7,192.2,150.5,147.9 +945,141.4,245.6,234.8,233.9,233.2,226.6,222.6,216.1,215.4,214.7,206.6,180.2,210.1,203.7,202.8,201.8,192.3,150.5,147.9 +946,141.4,245.7,234.8,234,233.2,226.6,222.7,216.2,215.5,214.8,206.7,180.3,210.2,203.8,202.9,201.9,192.4,150.6,147.9 +947,141.4,245.8,234.9,234.1,233.3,226.7,222.8,216.3,215.6,214.9,206.8,180.4,210.3,203.9,203,202,192.5,150.6,147.9 +948,141.5,245.9,235,234.1,233.4,226.8,222.9,216.4,215.7,214.9,206.9,180.6,210.3,204,203.1,202.1,192.6,150.6,148 +949,141.5,246,235.1,234.2,233.5,226.9,223,216.4,215.8,215,207,180.7,210.4,204,203.2,202.2,192.7,150.6,148 +950,141.5,246.1,235.1,234.3,233.5,226.9,223.1,216.5,215.8,215.1,207.1,180.8,210.5,204.1,203.3,202.3,192.8,150.7,148 +951,141.5,246.2,235.2,234.4,233.6,227,223.2,216.6,215.9,215.2,207.2,180.9,210.6,204.2,203.4,202.3,192.9,150.7,148 +952,141.5,246.2,235.3,234.4,233.7,227.1,223.2,216.7,216,215.3,207.3,181,210.7,204.3,203.4,202.4,193,150.7,148.1 +953,141.5,246.3,235.4,234.5,233.8,227.2,223.3,216.7,216.1,215.3,207.4,181.1,210.8,204.4,203.5,202.5,193.1,150.7,148.1 +954,141.5,246.4,235.5,234.6,233.8,227.3,223.4,216.8,216.2,215.4,207.5,181.3,210.8,204.5,203.6,202.6,193.2,150.8,148.1 +955,141.5,246.5,235.5,234.7,233.9,227.3,223.5,216.9,216.2,215.5,207.6,181.4,210.9,204.6,203.7,202.7,193.3,150.8,148.1 +956,141.5,246.6,235.6,234.7,234,227.4,223.6,217,216.3,215.6,207.7,181.5,211,204.7,203.8,202.8,193.4,150.8,148.2 +957,141.5,246.7,235.7,234.8,234.1,227.5,223.7,217,216.4,215.6,207.8,181.6,211.1,204.8,203.9,202.9,193.5,150.8,148.2 +958,141.6,246.8,235.8,234.9,234.1,227.6,223.8,217.1,216.5,215.7,207.8,181.7,211.2,204.9,204,203,193.6,150.9,148.2 +959,141.6,246.8,235.8,235,234.2,227.6,223.8,217.2,216.5,215.8,207.9,181.8,211.3,205,204.1,203.1,193.7,150.9,148.2 +960,141.6,246.9,235.9,235,234.3,227.7,223.9,217.3,216.6,215.9,208,181.9,211.3,205.1,204.2,203.2,193.8,150.9,148.3 +961,141.6,247,236,235.1,234.4,227.8,224,217.4,216.7,216,208.1,182.1,211.4,205.2,204.3,203.3,193.9,151,148.3 +962,141.6,247.1,236.1,235.2,234.4,227.9,224.1,217.4,216.8,216,208.2,182.2,211.5,205.3,204.4,203.4,194,151,148.3 +963,141.6,247.2,236.1,235.3,234.5,228,224.2,217.5,216.9,216.1,208.3,182.3,211.6,205.4,204.5,203.5,194.1,151,148.3 +964,141.6,247.3,236.2,235.3,234.6,228,224.3,217.6,216.9,216.2,208.4,182.4,211.7,205.5,204.6,203.6,194.2,151,148.4 +965,141.6,247.4,236.3,235.4,234.7,228.1,224.4,217.7,217,216.3,208.5,182.5,211.8,205.6,204.7,203.7,194.3,151.1,148.4 +966,141.6,247.4,236.4,235.5,234.7,228.2,224.5,217.7,217.1,216.4,208.6,182.6,211.8,205.7,204.8,203.8,194.4,151.1,148.4 +967,141.6,247.5,236.4,235.6,234.8,228.3,224.5,217.8,217.2,216.4,208.7,182.7,211.9,205.8,204.9,203.9,194.5,151.1,148.4 +968,141.6,247.6,236.5,235.6,234.9,228.3,224.6,217.9,217.2,216.5,208.8,182.9,212,205.8,205,204,194.6,151.1,148.5 +969,141.7,247.7,236.6,235.7,235,228.4,224.7,218,217.3,216.6,208.9,183,212.1,205.9,205.1,204.1,194.7,151.2,148.5 +970,141.7,247.8,236.7,235.8,235,228.5,224.8,218.1,217.4,216.7,209,183.1,212.2,206,205.2,204.2,194.8,151.2,148.5 +971,141.7,247.9,236.7,235.9,235.1,228.6,224.9,218.1,217.5,216.7,209.1,183.2,212.3,206.1,205.3,204.3,194.9,151.3,148.5 +972,141.7,248,236.8,235.9,235.2,228.6,225,218.2,217.5,216.8,209.2,183.3,212.4,206.2,205.4,204.4,195,152.5,148.6 +973,141.7,248,236.9,236,235.3,228.7,225.1,218.3,217.6,216.9,209.3,183.4,212.4,206.3,205.5,204.5,195.1,153.8,148.6 +974,141.7,248.1,237,236.1,235.3,228.8,225.2,218.4,217.7,217,209.4,183.5,212.5,206.4,205.6,204.6,195.2,155,148.6 +975,141.7,248.2,237,236.2,235.4,228.9,225.3,218.4,217.8,217.1,209.4,183.7,212.6,206.5,205.7,204.7,195.3,155.6,148.6 +976,141.7,248.3,237.1,236.2,235.5,229,225.3,218.5,217.9,217.1,209.5,183.8,212.7,206.6,205.8,204.8,195.4,155.8,148.7 +977,141.7,248.4,237.2,236.3,235.6,229,225.4,218.6,217.9,217.2,209.6,183.9,212.8,206.7,205.8,204.9,195.5,156,148.7 +978,141.7,248.5,237.3,236.4,235.6,229.1,225.5,218.7,218,217.3,209.7,184,212.9,206.8,205.9,205,195.6,156.2,148.7 +979,141.7,248.5,237.4,236.5,235.7,229.2,225.6,218.8,218.1,217.4,209.8,184.1,212.9,206.9,206,205.1,195.7,156.4,148.7 +980,141.7,248.6,237.4,236.5,235.8,229.3,225.7,218.8,218.2,217.4,209.9,184.2,213,207,206.1,205.2,195.8,156.6,148.8 +981,141.8,248.7,237.5,236.6,235.9,229.3,225.8,218.9,218.2,217.5,210,184.3,213.1,207.1,206.2,205.3,195.9,156.8,148.8 +982,141.8,248.8,237.6,236.7,235.9,229.4,225.9,219,218.3,217.6,210.1,184.5,213.2,207.2,206.3,205.4,196,157.1,148.8 +983,141.8,248.9,237.7,236.8,236,229.5,226,219.1,218.4,217.7,210.2,184.6,213.3,207.3,206.4,205.5,196.1,157.3,148.8 +984,141.8,249,237.7,236.8,236.1,229.6,226.1,219.1,218.5,217.8,210.3,184.7,213.4,207.3,206.5,205.5,196.2,157.5,148.9 +985,141.8,249.1,237.8,236.9,236.2,229.6,226.1,219.2,218.6,217.8,210.4,184.8,213.5,207.4,206.6,205.6,196.3,157.7,148.9 +986,141.8,249.1,237.9,237,236.2,229.7,226.2,219.3,218.6,217.9,210.5,184.9,213.5,207.5,206.7,205.7,196.4,157.9,148.9 +987,141.8,249.2,238,237.1,236.3,229.8,226.3,219.4,218.7,218,210.6,185,213.6,207.6,206.8,205.8,196.5,158.1,148.9 +988,141.8,249.3,238,237.1,236.4,229.9,226.4,219.5,218.8,218.1,210.6,185.1,213.7,207.7,206.9,205.9,196.6,158.3,149 +989,141.8,249.4,238.1,237.2,236.5,230,226.5,219.5,218.9,218.1,210.7,185.2,213.8,207.8,207,206,196.7,158.5,149 +990,141.8,249.5,238.2,237.3,236.5,230,226.6,219.6,218.9,218.2,210.8,185.4,213.9,207.9,207.1,206.1,196.8,158.8,149 +991,141.8,249.6,238.3,237.4,236.6,230.1,226.7,219.7,219,218.3,210.9,185.5,214,208,207.2,206.2,196.9,159,149 +992,141.9,249.7,238.3,237.4,236.7,230.2,226.8,219.8,219.1,218.4,211,185.6,214.1,208.1,207.3,206.3,197,159.2,149.1 +993,141.9,249.7,238.4,237.5,236.8,230.3,226.9,219.8,219.2,218.4,211.1,185.7,214.1,208.2,207.4,206.4,197.1,159.4,149.1 +994,141.9,249.8,238.5,237.6,236.8,230.3,226.9,219.9,219.3,218.5,211.2,185.8,214.2,208.3,207.5,206.5,197.2,159.6,149.1 +995,141.9,249.9,238.6,237.7,236.9,230.4,227,220,219.3,218.6,211.3,185.9,214.3,208.4,207.5,206.6,197.3,159.8,149.1 +996,141.9,250,238.6,237.7,237,230.5,227.1,220.1,219.4,218.7,211.4,186,214.4,208.5,207.6,206.7,197.4,160,149.2 +997,141.9,250.1,238.7,237.8,237.1,230.6,227.2,220.2,219.5,218.8,211.5,186.2,214.5,208.5,207.7,206.8,197.5,160.3,149.2 +998,141.9,250.2,238.8,237.9,237.1,230.6,227.3,220.2,219.6,218.8,211.5,186.3,214.6,208.6,207.8,206.9,197.6,160.5,149.2 +999,141.9,250.2,238.9,238,237.2,230.7,227.4,220.3,219.6,218.9,211.6,186.4,214.7,208.7,207.9,207,197.7,160.7,149.2 +1000,141.9,250.3,238.9,238,237.3,230.8,227.5,220.4,219.7,219,211.7,186.5,214.7,208.8,208,207.1,197.8,160.9,149.3 diff --git a/test/Data Tables/5,100 MHz - Lb(0.10)_P528.csv b/test/Data Tables/5,100 MHz - Lb(0.10)_P528.csv new file mode 100644 index 0000000..7ba928a --- /dev/null +++ b/test/Data Tables/5,100 MHz - Lb(0.10)_P528.csv @@ -0,0 +1,1005 @@ +5100MHz / Lb(0.10) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,106.6,103.2,103.1,103,102.7,0,123.2,123.2,123.2,123.2,122.3,0,129.3,129.3,129.3,129.2,128.8,123.2,0 +1,109.5,105.8,105.8,105.8,105.7,104.7,123.2,123.2,123.2,123.2,122.7,106.3,129.2,129.2,129.2,129.2,129,125.2,106.4 +2,113.6,109.5,109.5,109.5,109.5,109.7,123.3,123.3,123.3,123.3,122.8,112.2,129.2,129.2,129.2,129.2,129,125.3,112.3 +3,116.6,112.4,112.4,112.4,112.4,112.7,123.4,123.4,123.4,123.4,123,115.5,129.2,129.2,129.2,129.2,129,125.4,115.8 +4,118.9,114.7,114.7,114.7,114.7,114.9,123.6,123.6,123.6,123.6,123.2,117.8,129.3,129.3,129.2,129.2,129,125.6,118.2 +5,120.7,116.5,116.5,116.5,116.5,116.7,123.8,123.8,123.8,123.8,123.5,119.5,129.3,129.3,129.3,129.3,129.1,125.9,120 +6,122.3,118,118,118,118,118.2,124.1,124.1,124.1,124.1,123.8,120.9,129.4,129.4,129.3,129.3,129.2,126.2,121.5 +7,123.6,119.3,119.3,119.3,119.3,119.4,124.5,124.5,124.5,124.5,124.2,122.1,129.4,129.4,129.4,129.4,129.2,126.5,122.7 +8,124.7,120.4,120.4,120.4,120.4,120.6,124.8,124.8,124.8,124.8,124.6,123,129.5,129.5,129.5,129.5,129.3,126.8,123.8 +9,125.7,121.4,121.4,121.4,121.4,121.5,125.2,125.2,125.2,125.2,125.1,123.9,129.6,129.6,129.6,129.6,129.5,127.2,124.7 +10,126.6,122.3,122.3,122.3,122.3,122.4,125.6,125.6,125.6,125.6,125.5,124.7,129.8,129.8,129.8,129.8,129.6,127.6,125.5 +11,127.5,123.2,123.2,123.2,123.2,123.2,126,126,126,126,125.9,125.3,129.9,129.9,129.9,129.9,129.7,127.9,126.3 +12,128.2,123.9,123.9,123.9,123.9,124,126.5,126.5,126.5,126.4,126.3,126,130.1,130,130,130,129.9,128.3,126.9 +13,128.9,124.6,124.6,124.6,124.6,124.6,126.9,126.9,126.9,126.9,126.8,126.5,130.2,130.2,130.2,130.2,130.1,128.6,127.5 +14,129.5,125.3,125.3,125.3,125.3,125.3,127.3,127.3,127.3,127.3,127.2,127,130.4,130.4,130.4,130.4,130.3,129,128.1 +15,130.1,125.8,125.9,125.9,125.9,125.9,127.7,127.7,127.7,127.6,127.6,127.5,130.6,130.6,130.6,130.6,130.5,129.3,128.6 +16,130.7,126.4,126.4,126.4,126.4,126.4,128,128,128,128,128,128,130.8,130.8,130.7,130.7,130.6,129.6,129 +17,131.2,126.9,126.9,126.9,126.9,127,128.4,128.4,128.4,128.4,128.4,128.4,130.9,130.9,130.9,130.9,130.8,129.9,129.5 +18,131.7,127.4,127.4,127.4,127.4,127.4,128.8,128.8,128.8,128.8,128.7,128.8,131.1,131.1,131.1,131.1,131.1,130.2,129.9 +19,132.2,127.9,127.9,127.9,127.9,127.9,129.1,129.1,129.1,129.1,129.1,129.2,131.3,131.3,131.3,131.3,131.3,130.6,130.3 +20,132.6,128.4,128.4,128.4,128.4,128.4,129.5,129.5,129.5,129.5,129.4,129.6,131.5,131.5,131.5,131.5,131.5,130.8,130.6 +21,133.1,128.8,128.8,128.8,128.8,128.8,129.8,129.8,129.8,129.8,129.8,129.9,131.8,131.8,131.8,131.7,131.7,131.1,131 +22,133.5,129.2,129.2,129.2,129.2,129.2,130.1,130.1,130.1,130.1,130.1,130.3,132,132,132,132,131.9,131.4,131.3 +23,133.8,129.6,129.6,129.6,129.6,129.6,130.5,130.5,130.5,130.5,130.4,130.6,132.2,132.2,132.2,132.2,132.1,131.7,131.6 +24,134.2,130,130,130,130,130,130.8,130.8,130.8,130.8,130.7,130.9,132.4,132.4,132.4,132.4,132.3,131.9,131.9 +25,134.6,130.3,130.3,130.3,130.3,130.3,131.1,131.1,131.1,131.1,131,131.2,132.6,132.6,132.6,132.6,132.5,132.2,132.2 +26,134.9,130.7,130.7,130.7,130.7,130.7,131.4,131.4,131.4,131.4,131.3,131.5,132.8,132.8,132.8,132.8,132.7,132.4,132.5 +27,135.2,131,131,131,131,131,131.7,131.7,131.7,131.7,131.6,131.8,133,133,133,133,132.9,132.7,132.8 +28,135.6,131.3,131.3,131.3,131.3,131.3,131.9,131.9,131.9,131.9,131.9,132.1,133.2,133.2,133.2,133.2,133.1,132.9,133 +29,135.9,131.6,131.6,131.6,131.6,131.6,132.2,132.2,132.2,132.2,132.2,132.3,133.4,133.4,133.4,133.4,133.3,133.1,133.3 +30,136.1,131.9,131.9,131.9,131.9,131.9,132.5,132.5,132.5,132.5,132.4,132.6,133.6,133.6,133.6,133.6,133.5,133.4,133.5 +31,136.4,132.2,132.2,132.2,132.2,132.2,132.7,132.7,132.7,132.7,132.7,132.8,133.8,133.8,133.8,133.8,133.7,133.6,133.7 +32,136.7,132.5,132.5,132.5,132.5,132.5,133,133,133,133,133,133.1,134,134,134,134,133.9,133.8,134 +33,137,132.7,132.8,132.8,132.8,132.8,133.2,133.2,133.2,133.2,133.2,133.3,134.2,134.2,134.2,134.2,134.1,134,134.2 +34,137.2,133,133,133,133,133,133.5,133.5,133.5,133.5,133.4,133.6,134.3,134.3,134.3,134.3,134.3,134.2,134.4 +35,137.5,133.3,133.3,133.3,133.3,133.3,133.7,133.7,133.7,133.7,133.7,133.8,134.5,134.5,134.5,134.5,134.5,134.4,134.6 +36,137.7,133.5,133.5,133.5,133.5,133.5,133.9,133.9,133.9,133.9,133.9,134,134.7,134.7,134.7,134.7,134.7,134.6,134.8 +37,138,133.7,133.8,133.8,133.8,133.8,134.1,134.1,134.1,134.1,134.1,134.2,134.9,134.9,134.9,134.9,134.8,134.7,135 +38,138.2,134,134,134,134,134,134.3,134.3,134.3,134.3,134.3,134.4,135,135,135,135,135,134.9,135.2 +39,138.4,134.2,134.2,134.2,134.2,134.3,134.5,134.5,134.5,134.5,134.5,134.6,135.2,135.2,135.2,135.2,135.2,135.1,135.4 +40,138.6,134.4,134.4,134.4,134.5,134.5,134.7,134.7,134.7,134.7,134.7,134.8,135.4,135.4,135.4,135.4,135.3,135.3,135.6 +41,138.9,134.6,134.6,134.7,134.7,134.7,134.9,134.9,134.9,134.9,134.9,135,135.6,135.6,135.6,135.5,135.5,135.4,135.7 +42,139.1,134.8,134.9,134.9,134.9,134.9,135.1,135.1,135.1,135.1,135.1,135.2,135.7,135.7,135.7,135.7,135.7,135.6,135.9 +43,139.3,135,135.1,135.1,135.1,135.1,135.3,135.3,135.3,135.3,135.3,135.4,135.9,135.9,135.9,135.9,135.8,135.7,136.1 +44,139.5,135.2,135.2,135.3,135.3,135.3,135.5,135.5,135.5,135.5,135.5,135.6,136,136,136,136,136,135.9,136.2 +45,139.7,135.4,135.4,135.5,135.5,135.5,135.7,135.7,135.7,135.7,135.7,135.8,136.2,136.2,136.2,136.2,136.2,136.1,136.4 +46,139.9,135.6,135.6,135.6,135.7,135.7,135.9,135.9,135.9,135.9,135.8,135.9,136.3,136.3,136.3,136.3,136.3,136.2,136.6 +47,140,135.8,135.8,135.8,135.9,135.9,136,136,136,136,136,136.1,136.5,136.5,136.5,136.5,136.5,136.4,136.7 +48,140.2,135.9,136,136,136,136.1,136.2,136.2,136.2,136.2,136.2,136.3,136.6,136.6,136.6,136.6,136.6,136.5,136.9 +49,140.4,136.1,136.2,136.2,136.2,136.3,136.4,136.4,136.4,136.4,136.4,136.5,136.8,136.8,136.8,136.8,136.8,136.7,137 +50,140.6,136.3,136.3,136.3,136.4,136.5,136.5,136.5,136.5,136.5,136.5,136.6,136.9,136.9,136.9,136.9,136.9,136.8,137.2 +51,140.8,136.4,136.5,136.5,136.5,136.6,136.7,136.7,136.7,136.7,136.7,136.8,137.1,137.1,137.1,137.1,137,136.9,137.3 +52,140.9,136.6,136.6,136.7,136.7,136.8,136.9,136.9,136.9,136.9,136.8,136.9,137.2,137.2,137.2,137.2,137.2,137.1,137.5 +53,141.1,136.7,136.8,136.8,136.9,137,137,137,137,137,137,137.1,137.4,137.4,137.4,137.4,137.3,137.2,137.6 +54,141.3,136.9,137,137,137,137.1,137.2,137.2,137.2,137.2,137.1,137.2,137.5,137.5,137.5,137.5,137.5,137.3,137.8 +55,141.4,137,137.1,137.1,137.2,137.3,137.3,137.3,137.3,137.3,137.3,137.4,137.6,137.6,137.6,137.6,137.6,137.5,137.9 +56,141.6,137.2,137.2,137.3,137.3,137.5,137.5,137.5,137.5,137.5,137.4,137.5,137.8,137.8,137.8,137.8,137.7,137.6,138 +57,141.7,137.3,137.4,137.4,137.5,137.6,137.6,137.6,137.6,137.6,137.6,137.7,137.9,137.9,137.9,137.9,137.9,137.7,138.1 +58,141.9,137.4,137.5,137.6,137.6,137.8,137.8,137.8,137.8,137.8,137.7,137.8,138,138,138,138,138,137.9,138.3 +59,142,137.6,137.7,137.7,137.8,137.9,137.9,137.9,137.9,137.9,137.9,138,138.2,138.2,138.2,138.1,138.1,138,138.4 +60,142.2,137.7,137.8,137.8,137.9,138.1,138,138,138,138,138,138.1,138.3,138.3,138.3,138.3,138.2,138.1,138.5 +61,142.3,137.8,137.9,138,138,138.2,138.2,138.2,138.2,138.2,138.1,138.2,138.4,138.4,138.4,138.4,138.4,138.3,138.6 +62,142.5,137.9,138,138.1,138.2,138.3,138.3,138.3,138.3,138.3,138.3,138.4,138.5,138.5,138.5,138.5,138.5,138.4,138.7 +63,142.6,138.1,138.2,138.2,138.3,138.5,138.4,138.4,138.4,138.4,138.4,138.5,138.6,138.6,138.6,138.6,138.6,138.5,138.9 +64,142.7,138.2,138.3,138.4,138.4,138.6,138.6,138.6,138.6,138.6,138.5,138.6,138.8,138.8,138.8,138.8,138.7,138.6,139 +65,142.9,138.3,138.4,138.5,138.6,138.8,138.7,138.7,138.7,138.7,138.7,138.7,138.9,138.9,138.9,138.9,138.9,138.7,139.1 +66,143,138.4,138.5,138.6,138.7,138.9,138.8,138.8,138.8,138.8,138.8,138.9,139,139,139,139,139,138.9,139.2 +67,143.1,138.5,138.6,138.7,138.8,139,139,139,139,139,138.9,139,139.1,139.1,139.1,139.1,139.1,139,139.3 +68,143.3,138.6,138.7,138.8,138.9,139.1,139.1,139.1,139.1,139.1,139.1,139.1,139.2,139.2,139.2,139.2,139.2,139.1,139.4 +69,143.4,138.7,138.8,138.9,139,139.3,139.2,139.2,139.2,139.2,139.2,139.2,139.3,139.3,139.3,139.3,139.3,139.2,139.5 +70,143.5,138.8,139,139,139.1,139.4,139.3,139.3,139.3,139.3,139.3,139.3,139.5,139.5,139.5,139.5,139.4,139.3,139.6 +71,143.6,138.9,139.1,139.1,139.2,139.5,139.5,139.5,139.5,139.5,139.4,139.4,139.6,139.6,139.6,139.6,139.5,139.4,139.7 +72,143.7,139.1,139.2,139.2,139.4,139.6,139.6,139.6,139.6,139.6,139.5,139.6,139.7,139.7,139.7,139.7,139.6,139.5,139.8 +73,143.9,139.2,139.2,139.3,139.5,139.8,139.7,139.7,139.7,139.7,139.7,139.7,139.8,139.8,139.8,139.8,139.8,139.6,139.9 +74,144,139.3,139.3,139.4,139.6,139.9,139.8,139.8,139.8,139.8,139.8,139.8,139.9,139.9,139.9,139.9,139.9,139.7,140.1 +75,144.1,139.4,139.4,139.5,139.7,140,139.9,139.9,139.9,139.9,139.9,139.9,140,140,140,140,140,139.8,140.1 +76,144.2,139.6,139.5,139.6,139.8,140.1,140,140,140,140,140,140,140.1,140.1,140.1,140.1,140.1,139.9,140.2 +77,144.3,139.7,139.6,139.7,139.9,140.2,140.1,140.1,140.1,140.1,140.1,140.1,140.2,140.2,140.2,140.2,140.2,140,140.3 +78,144.4,139.8,139.7,139.8,139.9,140.3,140.3,140.3,140.3,140.3,140.2,140.2,140.3,140.3,140.3,140.3,140.3,140.1,140.4 +79,144.6,140,139.8,139.9,140,140.4,140.4,140.4,140.4,140.4,140.3,140.3,140.4,140.4,140.4,140.4,140.4,140.2,140.5 +80,144.7,140.2,139.8,140,140.1,140.5,140.5,140.5,140.5,140.5,140.4,140.4,140.5,140.5,140.5,140.5,140.5,140.3,140.6 +81,144.8,140.4,139.9,140.1,140.2,140.7,140.6,140.6,140.6,140.6,140.5,140.5,140.6,140.6,140.6,140.6,140.6,140.4,140.7 +82,144.9,140.6,140,140.1,140.3,140.8,140.7,140.7,140.7,140.7,140.6,140.6,140.7,140.7,140.7,140.7,140.7,140.5,140.8 +83,145,140.8,140.1,140.2,140.4,140.9,140.8,140.8,140.8,140.8,140.7,140.7,140.8,140.8,140.8,140.8,140.8,140.6,140.9 +84,145.1,141,140.1,140.3,140.5,141,140.9,140.9,140.9,140.9,140.8,140.8,140.9,140.9,140.9,140.9,140.9,140.7,141 +85,145.2,141.2,140.3,140.4,140.5,141.1,141,141,141,141,140.9,140.9,141,141,141,141,141,140.8,141.1 +86,145.3,141.4,140.4,140.4,140.6,141.2,141.1,141.1,141.1,141.1,141,141,141.1,141.1,141.1,141.1,141.1,140.9,141.2 +87,145.4,141.6,140.5,140.5,140.7,141.3,141.2,141.2,141.2,141.2,141.1,141.1,141.2,141.2,141.2,141.2,141.2,141,141.3 +88,145.5,141.7,140.7,140.6,140.8,141.4,141.3,141.3,141.3,141.3,141.2,141.2,141.3,141.3,141.3,141.3,141.2,141.1,141.4 +89,145.6,141.9,140.8,140.7,140.8,141.5,141.4,141.4,141.4,141.4,141.3,141.3,141.4,141.4,141.4,141.4,141.3,141.2,141.5 +90,145.7,142,140.9,140.9,140.9,141.6,141.5,141.5,141.5,141.5,141.4,141.4,141.5,141.5,141.5,141.5,141.4,141.3,141.5 +91,145.8,142.2,141.1,141,141,141.6,141.6,141.6,141.6,141.6,141.5,141.5,141.6,141.6,141.6,141.6,141.5,141.4,141.6 +92,145.9,142.3,141.2,141.1,141,141.7,141.7,141.7,141.7,141.7,141.6,141.5,141.6,141.6,141.6,141.6,141.6,141.4,141.7 +93,146,142.5,141.4,141.3,141.1,141.8,141.8,141.8,141.8,141.8,141.7,141.6,141.7,141.7,141.7,141.7,141.7,141.5,141.8 +94,146.1,142.6,141.5,141.4,141.3,141.9,141.8,141.8,141.8,141.8,141.8,141.7,141.8,141.8,141.8,141.8,141.8,141.6,141.9 +95,146.2,142.7,141.6,141.5,141.4,142,141.9,141.9,141.9,141.9,141.9,141.8,141.9,141.9,141.9,141.9,141.9,141.7,142 +96,146.2,142.8,141.7,141.6,141.5,142.1,142,142,142,142,142,141.9,142,142,142,142,142,141.8,142 +97,146.3,142.9,141.9,141.8,141.7,142.2,142.1,142.1,142.1,142.1,142.1,142,142.1,142.1,142.1,142.1,142,141.9,142.1 +98,146.4,143,142,141.9,141.8,142.3,142.2,142.2,142.2,142.2,142.2,142.1,142.2,142.2,142.2,142.2,142.1,141.9,142.2 +99,146.5,143.2,142.1,142,141.9,142.3,142.3,142.3,142.3,142.3,142.3,142.1,142.2,142.2,142.2,142.2,142.2,142,142.3 +100,146.6,143.3,142.3,142.2,142,142.4,142.4,142.4,142.4,142.4,142.3,142.2,142.3,142.3,142.3,142.3,142.3,142.1,142.4 +101,146.7,143.4,142.4,142.3,142.2,142.5,142.5,142.5,142.5,142.5,142.4,142.3,142.4,142.4,142.4,142.4,142.4,142.2,142.4 +102,146.8,143.5,142.5,142.4,142.3,142.6,142.5,142.5,142.5,142.5,142.5,142.4,142.5,142.5,142.5,142.5,142.4,142.3,142.5 +103,146.9,143.6,142.6,142.5,142.4,142.7,142.6,142.6,142.6,142.6,142.6,142.5,142.6,142.6,142.6,142.6,142.5,142.3,142.6 +104,146.9,143.7,142.8,142.7,142.5,142.7,142.7,142.7,142.7,142.7,142.7,142.5,142.6,142.6,142.6,142.6,142.6,142.4,142.7 +105,147,143.8,142.9,142.8,142.6,142.8,142.8,142.8,142.8,142.8,142.7,142.6,142.7,142.7,142.7,142.7,142.7,142.5,142.7 +106,147.1,143.9,143,142.9,142.8,142.9,142.9,142.9,142.9,142.9,142.8,142.7,142.8,142.8,142.8,142.8,142.7,142.6,142.8 +107,147.2,143.9,143.1,143,142.9,143,142.9,142.9,142.9,142.9,142.9,142.8,142.9,142.9,142.9,142.9,142.8,142.6,142.9 +108,147.3,144,143.2,143.1,143,143.1,143,143,143,143,143,142.9,142.9,142.9,142.9,142.9,142.9,142.7,143 +109,147.4,144.1,143.4,143.3,143.1,143.1,143.1,143.1,143.1,143.1,143.1,142.9,143,143,143,143,143,142.8,143 +110,147.4,144.2,143.5,143.4,143.2,143.2,143.2,143.2,143.2,143.2,143.1,143,143.1,143.1,143.1,143.1,143,142.8,143.1 +111,147.5,144.3,143.6,143.5,143.4,143.3,143.3,143.3,143.3,143.3,143.2,143.1,143.1,143.1,143.1,143.1,143.1,142.9,143.2 +112,147.6,144.4,143.7,143.6,143.5,143.3,143.3,143.3,143.3,143.3,143.3,143.2,143.2,143.2,143.2,143.2,143.2,143,143.2 +113,147.7,144.5,143.8,143.7,143.6,143.4,143.4,143.4,143.4,143.4,143.4,143.2,143.3,143.3,143.3,143.3,143.2,143,143.3 +114,147.7,144.7,143.9,143.8,143.7,143.5,143.5,143.5,143.5,143.5,143.4,143.3,143.4,143.4,143.4,143.4,143.3,143.1,143.4 +115,147.8,145.1,144.1,144,143.8,143.5,143.6,143.6,143.6,143.6,143.5,143.4,143.4,143.4,143.4,143.4,143.4,143.2,143.5 +116,147.9,145.6,144.2,144.1,143.9,143.6,143.6,143.6,143.6,143.6,143.6,143.4,143.5,143.5,143.5,143.5,143.4,143.2,143.5 +117,148,146.1,144.3,144.2,144,143.7,143.7,143.7,143.7,143.7,143.6,143.5,143.5,143.5,143.5,143.5,143.5,143.3,143.6 +118,148,146.6,144.4,144.3,144.1,143.7,143.8,143.8,143.8,143.8,143.7,143.6,143.6,143.6,143.6,143.6,143.6,143.4,143.7 +119,148.1,147.1,144.5,144.4,144.3,143.8,143.8,143.8,143.8,143.8,143.8,143.7,143.7,143.7,143.7,143.7,143.6,143.4,143.7 +120,148.2,147.7,144.6,144.5,144.4,143.9,143.9,143.9,143.9,143.9,143.9,143.7,143.7,143.7,143.7,143.7,143.7,143.5,143.8 +121,148.3,148.3,144.7,144.6,144.5,143.9,144,144,144,144,143.9,143.8,143.8,143.8,143.8,143.8,143.7,143.5,143.9 +122,148.3,148.9,144.8,144.7,144.6,144,144,144,144,144,144,143.9,143.9,143.9,143.9,143.9,143.8,143.6,143.9 +123,148.4,149.6,144.9,144.8,144.7,144,144.1,144.1,144.1,144.1,144.1,143.9,143.9,143.9,143.9,143.9,143.9,143.7,144 +124,148.5,150.3,145,144.9,144.8,144.1,144.2,144.2,144.2,144.2,144.1,144,144,144,144,144,143.9,143.7,144.1 +125,148.5,151,145.1,145,144.9,144.1,144.2,144.2,144.2,144.2,144.2,144.1,144,144,144,144,144,143.8,144.1 +126,148.6,151.7,145.2,145.1,145,144.2,144.3,144.3,144.3,144.3,144.2,144.1,144.1,144.1,144.1,144.1,144.1,143.8,144.2 +127,148.7,152.4,145.3,145.2,145.1,144.3,144.4,144.4,144.4,144.4,144.3,144.2,144.2,144.2,144.2,144.2,144.1,143.9,144.2 +128,148.7,153,145.4,145.3,145.2,144.3,144.4,144.4,144.4,144.4,144.4,144.3,144.2,144.2,144.2,144.2,144.1,143.9,144.3 +129,148.8,153.6,145.5,145.4,145.3,144.4,144.5,144.5,144.5,144.5,144.4,144.3,144.2,144.2,144.2,144.2,144.2,144,144.4 +130,148.9,154.2,145.6,145.5,145.4,144.4,144.6,144.6,144.6,144.6,144.5,144.4,144.3,144.3,144.3,144.3,144.2,144,144.4 +131,148.9,154.8,145.7,145.6,145.5,144.5,144.6,144.6,144.6,144.6,144.6,144.5,144.3,144.3,144.3,144.3,144.3,144.1,144.5 +132,149,155.3,145.8,145.7,145.6,144.5,144.7,144.7,144.7,144.7,144.6,144.5,144.4,144.4,144.4,144.4,144.3,144.1,144.5 +133,149.1,155.9,145.9,145.8,145.6,144.6,144.7,144.7,144.7,144.7,144.7,144.6,144.4,144.4,144.4,144.4,144.3,144.1,144.6 +134,149.1,156.5,146,145.9,145.7,144.6,144.8,144.8,144.8,144.8,144.7,144.6,144.4,144.4,144.4,144.4,144.3,144.1,144.7 +135,149.2,157,146.1,145.9,145.8,144.6,144.8,144.8,144.8,144.8,144.8,144.7,144.4,144.4,144.4,144.4,144.3,144.2,144.7 +136,149.3,157.6,146.2,146,145.9,144.7,144.9,144.9,144.9,144.9,144.8,144.8,144.5,144.5,144.5,144.5,144.4,144.1,144.8 +137,149.3,158.2,146.2,146.1,146,144.7,144.9,144.9,144.9,144.9,144.9,144.8,144.5,144.5,144.5,144.5,144.5,144.2,144.8 +138,149.4,158.8,146.3,146.2,146,144.8,145,145,145,145,144.9,144.9,144.6,144.6,144.6,144.6,144.5,144.3,144.9 +139,149.5,159.4,146.4,146.3,146.1,144.8,145,145,145,145,144.9,144.9,144.6,144.6,144.6,144.6,144.6,144.3,145 +140,149.5,160.5,146.4,146.3,146.2,144.9,145.1,145.1,145.1,145,145,145,144.7,144.7,144.7,144.7,144.7,144.4,145 +141,149.6,162.1,146.5,146.4,146.3,144.9,145.1,145.1,145.1,145.1,145,145.1,144.8,144.8,144.8,144.8,144.7,144.5,145.1 +142,149.6,163.6,146.6,146.5,146.3,145,145.1,145.1,145.1,145.1,145,145.1,144.8,144.8,144.8,144.8,144.8,144.5,145.1 +143,149.7,165.1,146.6,146.5,146.4,145,145.1,145.1,145.1,145.1,145,145.2,144.9,144.9,144.9,144.9,144.8,144.6,145.2 +144,149.7,166.7,146.7,146.6,146.5,145.1,145.2,145.2,145.2,145.2,145.1,145.2,145,145,145,145,144.9,144.6,145.2 +145,149.8,168.2,146.9,146.7,146.5,145.2,145.2,145.2,145.2,145.2,145.1,145.3,145,145,145,145,145,144.7,145.3 +146,149.9,169.7,148,146.7,146.6,145.3,145.3,145.3,145.3,145.3,145.2,145.3,145.1,145.1,145.1,145.1,145,144.8,145.4 +147,149.9,171.3,149.1,146.8,146.7,145.4,145.3,145.3,145.3,145.3,145.3,145.4,145.1,145.1,145.1,145.1,145.1,144.8,145.4 +148,150,172.8,150.2,146.8,146.7,145.4,145.4,145.4,145.4,145.4,145.3,145.5,145.2,145.2,145.2,145.2,145.1,144.9,145.5 +149,150,174.3,151.3,146.9,146.8,145.5,145.5,145.5,145.5,145.5,145.4,145.5,145.3,145.3,145.3,145.3,145.2,144.9,145.5 +150,150.1,175.9,152.4,146.9,146.8,145.6,145.5,145.5,145.5,145.5,145.5,145.6,145.3,145.3,145.3,145.3,145.3,145,145.6 +151,150.1,177.4,153.7,147,146.9,145.7,145.6,145.6,145.6,145.6,145.5,145.6,145.4,145.4,145.4,145.4,145.3,145.1,145.6 +152,150.2,178.9,155.2,147,146.9,145.7,145.7,145.7,145.7,145.7,145.6,145.7,145.4,145.4,145.4,145.4,145.4,145.1,145.7 +153,150.3,180.5,156.7,147.2,146.9,145.8,145.7,145.7,145.7,145.7,145.6,145.7,145.5,145.5,145.5,145.5,145.4,145.2,145.7 +154,150.3,182,158.3,148.4,146.9,145.9,145.8,145.8,145.8,145.8,145.7,145.8,145.6,145.6,145.6,145.6,145.5,145.2,145.8 +155,150.4,183.5,159.8,149.7,147,146,145.8,145.8,145.8,145.8,145.8,145.8,145.6,145.6,145.6,145.6,145.6,145.3,145.8 +156,150.4,183.8,161.4,150.9,147,146,145.9,145.9,145.9,145.9,145.8,145.9,145.7,145.7,145.7,145.7,145.6,145.3,145.9 +157,150.5,184.2,162.9,152.2,147.1,146.1,146,146,146,145.9,145.9,145.9,145.7,145.7,145.7,145.7,145.7,145.4,145.9 +158,150.5,184.5,164.5,153.6,147.2,146.2,146,146,146,146,145.9,146,145.8,145.8,145.8,145.8,145.7,145.4,146 +159,150.6,184.8,166,155.1,147.3,146.2,146.1,146.1,146.1,146.1,146,146,145.8,145.8,145.8,145.8,145.8,145.5,146 +160,150.6,185.1,167.6,156.7,147.3,146.3,146.1,146.1,146.1,146.1,146,146.1,145.9,145.9,145.9,145.9,145.8,145.6,146.1 +161,150.7,185.4,169.1,158.2,147.4,146.3,146.2,146.2,146.2,146.2,146.1,146.1,146,146,146,146,145.9,145.6,146.1 +162,150.8,185.6,170.5,159.8,147.5,146.4,146.2,146.2,146.2,146.2,146.2,146.2,146,146,146,146,146,145.7,146.2 +163,150.8,185.9,171.3,161.3,147.6,146.5,146.3,146.3,146.3,146.3,146.2,146.2,146.1,146.1,146.1,146.1,146,145.7,146.2 +164,150.9,186.1,172.2,162.9,148.3,146.5,146.4,146.4,146.4,146.4,146.3,146.3,146.1,146.1,146.1,146.1,146.1,145.8,146.3 +165,150.9,186.4,172.9,164.4,149.6,146.6,146.4,146.4,146.4,146.4,146.3,146.3,146.2,146.2,146.2,146.2,146.1,145.8,146.3 +166,151,186.6,173.6,165.9,151,146.6,146.5,146.5,146.5,146.5,146.4,146.4,146.2,146.2,146.2,146.2,146.2,145.9,146.4 +167,151,186.8,174.3,167.2,152.3,146.7,146.5,146.5,146.5,146.5,146.4,146.4,146.3,146.3,146.3,146.3,146.2,145.9,146.4 +168,151.1,187.1,174.9,168.3,153.8,146.7,146.6,146.6,146.6,146.6,146.5,146.5,146.3,146.3,146.3,146.3,146.3,146,146.5 +169,151.1,187.3,175.5,169.3,155.3,146.7,146.6,146.6,146.6,146.6,146.5,146.5,146.4,146.4,146.4,146.4,146.3,146,146.5 +170,151.2,187.5,176.1,170.3,156.7,146.7,146.7,146.7,146.7,146.7,146.6,146.6,146.5,146.5,146.4,146.4,146.4,146.1,146.6 +171,151.2,187.7,176.6,171.2,158.2,146.8,146.7,146.7,146.7,146.7,146.7,146.6,146.5,146.5,146.5,146.5,146.4,146.1,146.6 +172,151.3,187.9,177.1,172,159.7,146.9,146.8,146.8,146.8,146.8,146.7,146.7,146.6,146.6,146.6,146.6,146.5,146.2,146.7 +173,151.3,188.1,177.6,172.8,161.2,146.9,146.9,146.9,146.9,146.8,146.8,146.7,146.6,146.6,146.6,146.6,146.5,146.2,146.7 +174,151.4,188.3,178,173.5,162.7,147,146.9,146.9,146.9,146.9,146.8,146.8,146.7,146.7,146.7,146.7,146.6,146.3,146.7 +175,151.4,188.5,178.5,174.2,164.2,147.1,147,147,147,147,146.9,146.8,146.7,146.7,146.7,146.7,146.6,146.3,146.8 +176,151.5,188.7,178.9,174.8,165.7,147.2,147,147,147,147,146.9,146.9,146.8,146.8,146.8,146.8,146.7,146.4,146.8 +177,151.5,188.9,179.3,175.4,166.9,147.2,147.1,147.1,147.1,147.1,147,146.9,146.8,146.8,146.8,146.8,146.7,146.4,146.9 +178,151.6,189,179.7,176,168.1,147.3,147.1,147.1,147.1,147.1,147,147,146.9,146.9,146.9,146.9,146.8,146.5,146.9 +179,151.6,189.2,180.1,176.5,169.2,147.4,147.2,147.2,147.2,147.2,147.1,147,146.9,146.9,146.9,146.9,146.8,146.5,147 +180,151.7,189.4,180.5,177,170.2,147.5,147.2,147.2,147.2,147.2,147.1,147.1,147,147,147,147,146.9,146.6,147 +181,151.7,189.6,180.8,177.5,171.1,147.5,147.3,147.3,147.3,147.3,147.2,147.1,147,147,147,147,146.9,146.6,147 +182,151.8,189.8,181.2,178,172,147.6,147.3,147.3,147.3,147.3,147.2,147.1,147.1,147.1,147.1,147.1,147,146.7,147.1 +183,151.8,189.9,181.5,178.4,172.8,147.7,147.4,147.4,147.4,147.4,147.3,147.2,147.1,147.1,147.1,147.1,147,146.7,147.1 +184,151.9,190.1,181.9,178.9,173.5,147.7,147.4,147.4,147.4,147.4,147.3,147.2,147.2,147.2,147.2,147.2,147.1,146.8,147.2 +185,151.9,190.3,182.2,179.3,174.2,147.8,147.5,147.5,147.5,147.5,147.4,147.2,147.2,147.2,147.2,147.2,147.1,146.8,147.2 +186,152,190.4,182.5,179.7,174.9,147.9,147.5,147.5,147.5,147.5,147.4,147.3,147.3,147.3,147.3,147.3,147.2,146.9,147.3 +187,152,190.6,182.8,180.1,175.5,148,147.6,147.6,147.6,147.6,147.4,147.3,147.3,147.3,147.3,147.3,147.2,146.9,147.3 +188,152.1,190.8,183.1,180.5,176,148,147.6,147.6,147.6,147.6,147.5,147.4,147.4,147.4,147.4,147.4,147.3,147,147.3 +189,152.1,190.9,183.4,180.8,176.6,148.1,147.7,147.7,147.7,147.7,147.5,147.4,147.4,147.4,147.4,147.4,147.3,147,147.4 +190,152.1,191.1,183.7,181.2,177.1,148.2,147.7,147.7,147.7,147.7,147.6,147.4,147.5,147.5,147.5,147.5,147.4,147.1,147.4 +191,152.2,191.3,184,181.5,177.6,148.2,147.8,147.8,147.8,147.8,147.6,147.5,147.5,147.5,147.5,147.5,147.4,147.1,147.4 +192,152.2,191.4,184.2,181.9,178.1,148.3,147.8,147.8,147.8,147.8,147.7,147.5,147.6,147.6,147.6,147.5,147.5,147.1,147.5 +193,152.3,191.6,184.5,182.2,178.5,148.4,147.8,147.8,147.8,147.8,147.7,147.6,147.6,147.6,147.6,147.6,147.5,147.2,147.5 +194,152.3,191.7,184.8,182.5,179,148.4,147.9,147.9,147.9,147.9,147.7,147.6,147.6,147.6,147.6,147.6,147.6,147.2,147.5 +195,152.4,191.9,185,182.8,179.4,148.5,147.9,147.9,147.9,147.9,147.8,147.6,147.7,147.7,147.7,147.7,147.6,147.3,147.6 +196,152.4,192.1,185.3,183.1,179.8,148.6,148,148,148,148,147.8,147.7,147.7,147.7,147.7,147.7,147.7,147.3,147.6 +197,152.5,192.2,185.5,183.4,180.2,148.6,148,148,148,148,147.9,147.7,147.8,147.8,147.8,147.8,147.7,147.4,147.7 +198,152.5,192.4,185.8,183.7,180.6,148.7,148.1,148.1,148.1,148.1,147.9,147.7,147.8,147.8,147.8,147.8,147.8,147.4,147.7 +199,152.5,192.5,186,184,181,148.8,148.1,148.1,148.1,148.1,147.9,147.8,147.9,147.9,147.9,147.9,147.8,147.4,147.7 +200,152.6,192.7,186.3,184.3,181.3,148.8,148.1,148.1,148.1,148.1,148,147.8,147.9,147.9,147.9,147.9,147.9,147.5,147.8 +201,152.6,192.9,186.5,184.6,181.7,148.9,148.2,148.2,148.2,148.2,148,147.8,148,148,148,148,147.9,147.5,147.8 +202,152.7,193,186.7,184.8,182,149,148.2,148.2,148.2,148.2,148,147.8,148,148,148,148,147.9,147.6,147.8 +203,152.7,193.2,187,185.1,182.3,149,148.2,148.2,148.3,148.3,148.1,147.9,148.1,148.1,148.1,148.1,148,147.6,147.9 +204,152.8,193.3,187.2,185.4,182.7,149.1,148.3,148.3,148.3,148.3,148.1,147.9,148.1,148.1,148.1,148.1,148,147.7,147.9 +205,152.8,193.5,187.4,185.6,183,149.2,148.3,148.3,148.3,148.3,148.2,147.9,148.2,148.2,148.1,148.1,148.1,147.7,147.9 +206,152.8,193.6,187.7,185.9,183.3,149.2,148.3,148.3,148.3,148.4,148.2,147.9,148.2,148.2,148.2,148.2,148.1,147.7,148 +207,152.9,193.8,187.9,186.1,183.6,149.3,148.4,148.4,148.4,148.4,148.2,147.9,148.2,148.2,148.2,148.2,148.2,147.8,148 +208,152.9,194,188.1,186.4,183.9,149.4,148.4,148.4,148.4,148.4,148.3,147.9,148.3,148.3,148.3,148.3,148.2,147.8,148 +209,153,194.1,188.3,186.6,184.2,149.4,148.4,148.4,148.4,148.4,148.3,147.9,148.3,148.3,148.3,148.3,148.3,147.9,148.1 +210,153,194.3,188.5,186.8,184.5,149.5,148.4,148.4,148.5,148.5,148.3,147.9,148.4,148.4,148.4,148.4,148.3,147.9,148.1 +211,153.1,194.4,188.8,187.1,184.7,149.5,148.5,148.5,148.5,148.5,148.4,148,148.4,148.4,148.4,148.4,148.3,147.9,148.1 +212,153.1,194.6,189,187.3,185,149.6,148.5,148.5,148.5,148.5,148.4,148,148.5,148.5,148.5,148.5,148.4,148,148.1 +213,153.1,194.7,189.2,187.5,185.3,149.7,148.5,148.5,148.5,148.5,148.5,148,148.5,148.5,148.5,148.5,148.4,148,148.1 +214,153.2,194.9,189.4,187.8,185.5,149.7,148.5,148.5,148.5,148.6,148.5,148.1,148.5,148.5,148.5,148.5,148.5,148.1,148.2 +215,153.2,195,189.6,188,185.8,149.8,148.5,148.5,148.6,148.6,148.5,148.1,148.6,148.6,148.6,148.6,148.5,148.1,148.2 +216,153.3,195.2,189.8,188.2,186,149.9,148.5,148.6,148.6,148.6,148.6,148.2,148.6,148.6,148.6,148.6,148.6,148.1,148.2 +217,153.3,195.4,190,188.4,186.3,149.9,148.5,148.6,148.6,148.6,148.6,148.2,148.7,148.7,148.7,148.7,148.6,148.2,148.2 +218,153.3,195.5,190.2,188.7,186.5,150,148.6,148.6,148.6,148.6,148.6,148.2,148.7,148.7,148.7,148.7,148.6,148.2,148.1 +219,153.4,195.7,190.4,188.9,186.8,150,148.6,148.6,148.6,148.7,148.7,148.3,148.8,148.8,148.8,148.8,148.7,148.3,148.2 +220,153.4,195.8,190.6,189.1,187,150.1,148.6,148.6,148.6,148.7,148.7,148.3,148.8,148.8,148.8,148.8,148.7,148.3,148.2 +221,153.5,196,190.8,189.3,187.3,150.2,148.6,148.6,148.7,148.7,148.7,148.3,148.8,148.8,148.8,148.8,148.8,148.3,148.3 +222,153.5,196.1,191,189.5,187.5,150.2,148.6,148.7,148.7,148.7,148.8,148.4,148.9,148.9,148.9,148.9,148.8,148.4,148.3 +223,153.5,196.3,191.2,189.7,187.7,150.3,148.6,148.7,148.7,148.7,148.8,148.4,148.9,148.9,148.9,148.9,148.8,148.4,148.3 +224,153.6,196.4,191.4,190,188,150.3,148.6,148.7,148.7,148.8,148.8,148.5,149,149,149,149,148.9,148.5,148.4 +225,153.6,196.6,191.6,190.2,188.2,150.4,148.7,148.7,148.7,148.8,148.9,148.5,149,149,149,149,148.9,148.5,148.4 +226,153.7,196.8,191.8,190.4,188.4,150.4,148.7,148.7,148.8,148.8,148.9,148.5,149,149,149,149,149,148.5,148.4 +227,153.7,196.9,192,190.6,188.6,150.5,148.7,148.7,148.8,148.8,148.9,148.6,149.1,149.1,149.1,149.1,149,148.6,148.5 +228,153.7,197.1,192.2,190.8,188.9,150.6,148.7,148.8,148.8,148.8,149,148.6,149.1,149.1,149.1,149.1,149,148.6,148.5 +229,153.8,197.2,192.4,191,189.1,150.6,148.7,148.8,148.8,148.9,149,148.6,149.2,149.2,149.2,149.2,149.1,148.6,148.6 +230,153.8,197.4,192.6,191.2,189.3,150.7,148.7,148.8,148.8,148.9,149,148.7,149.2,149.2,149.2,149.2,149.1,148.7,148.6 +231,153.8,197.5,192.8,191.4,189.5,150.7,148.7,148.8,148.9,148.9,149.1,148.7,149.2,149.2,149.2,149.2,149.2,148.7,148.6 +232,153.9,197.7,193,191.6,189.7,150.8,148.8,148.8,148.9,148.9,149.1,148.8,149.3,149.3,149.3,149.3,149.2,148.7,148.7 +233,153.9,197.8,193.2,191.8,189.9,150.9,148.8,148.9,148.9,148.9,149.1,148.8,149.3,149.3,149.3,149.3,149.2,148.8,148.7 +234,154,198,193.4,192,190.2,150.9,148.8,148.9,148.9,149,149.2,148.8,149.4,149.4,149.4,149.4,149.3,148.8,148.7 +235,154,198.1,193.6,192.2,190.4,151,148.9,148.9,148.9,149,149.2,148.9,149.4,149.4,149.4,149.4,149.3,148.9,148.8 +236,154,198.3,193.7,192.4,190.6,151,148.9,148.9,149,149,149.2,148.9,149.4,149.4,149.4,149.4,149.4,148.9,148.8 +237,154.1,198.5,193.9,192.6,190.8,151.1,149,148.9,149,149,149.3,148.9,149.5,149.5,149.5,149.5,149.4,148.9,148.9 +238,154.1,198.6,194.1,192.8,191,151.1,149.1,149,149,149,149.3,149,149.5,149.5,149.5,149.5,149.4,149,148.9 +239,154.1,198.8,194.3,193,191.2,151.2,149.1,149,149,149.1,149.3,149,149.6,149.6,149.6,149.6,149.5,149,148.9 +240,154.2,198.9,194.5,193.1,191.4,151.2,149.2,149.1,149.1,149.1,149.4,149,149.6,149.6,149.6,149.6,149.5,149,149 +241,154.2,199.1,194.7,193.3,191.6,151.3,149.2,149.2,149.1,149.1,149.4,149.1,149.6,149.6,149.6,149.6,149.6,149.1,149 +242,154.2,199.2,194.9,193.5,191.8,151.4,149.3,149.2,149.2,149.1,149.4,149.1,149.7,149.7,149.7,149.7,149.6,149.1,149 +243,154.3,199.4,195,193.7,192,151.4,149.4,149.3,149.2,149.2,149.5,149.1,149.7,149.7,149.7,149.7,149.6,149.1,149.1 +244,154.3,199.5,195.2,193.9,192.2,151.5,149.4,149.3,149.3,149.2,149.5,149.2,149.8,149.8,149.8,149.8,149.7,149.2,149.1 +245,154.4,199.7,195.4,194.1,192.4,151.5,149.5,149.4,149.4,149.3,149.5,149.2,149.8,149.8,149.8,149.8,149.7,149.2,149.1 +246,154.4,199.8,195.6,194.3,192.6,151.6,149.5,149.5,149.4,149.3,149.6,149.3,149.8,149.8,149.8,149.8,149.7,149.2,149.2 +247,154.4,200,195.8,194.5,192.8,151.6,149.6,149.5,149.5,149.4,149.6,149.3,149.9,149.9,149.9,149.9,149.8,149.3,149.2 +248,154.5,200.1,195.9,194.7,193,151.7,149.7,149.6,149.5,149.5,149.6,149.3,149.9,149.9,149.9,149.9,149.8,149.3,149.2 +249,154.5,200.3,196.1,194.8,193.2,151.7,149.7,149.6,149.6,149.5,149.6,149.4,149.9,149.9,149.9,149.9,149.9,149.3,149.3 +250,154.5,200.4,196.3,195,193.4,151.8,149.8,149.7,149.6,149.6,149.7,149.4,150,150,150,150,149.9,149.4,149.3 +251,154.6,200.6,196.5,195.2,193.6,151.8,149.8,149.7,149.7,149.6,149.7,149.4,150,150,150,150,149.9,149.4,149.3 +252,154.6,200.7,196.7,195.4,193.7,151.9,149.9,149.8,149.8,149.7,149.7,149.5,150.1,150.1,150.1,150.1,150,149.5,149.4 +253,154.6,200.9,196.8,195.6,193.9,151.9,149.9,149.9,149.8,149.7,149.8,149.5,150.1,150.1,150.1,150.1,150,149.5,149.4 +254,154.7,201,197,195.8,194.1,152,150,149.9,149.9,149.8,149.8,149.5,150.1,150.1,150.1,150.1,150,149.5,149.4 +255,154.7,201.2,197.2,195.9,194.3,152,150,150,149.9,149.9,149.8,149.6,150.2,150.2,150.2,150.2,150.1,149.6,149.5 +256,154.7,201.3,197.4,196.1,194.5,152.1,150.1,150,150,149.9,149.8,149.6,150.2,150.2,150.2,150.2,150.1,149.6,149.5 +257,154.8,201.5,197.5,196.3,194.7,152.1,150.2,150.1,150,150,149.9,149.6,150.2,150.2,150.2,150.2,150.1,149.6,149.5 +258,154.8,201.6,197.7,196.5,194.9,152.2,150.2,150.1,150.1,150,149.9,149.7,150.3,150.3,150.3,150.3,150.2,149.7,149.6 +259,154.8,201.8,197.9,196.7,195.1,152.3,150.3,150.2,150.1,150.1,149.9,149.7,150.3,150.3,150.3,150.3,150.2,149.7,149.6 +260,154.9,201.9,198.1,196.8,195.2,152.3,150.3,150.2,150.2,150.1,150,149.7,150.3,150.3,150.3,150.3,150.3,149.7,149.6 +261,154.9,202.1,198.2,197,195.4,152.4,150.4,150.3,150.2,150.2,150,149.7,150.4,150.4,150.4,150.4,150.3,149.7,149.7 +262,154.9,202.2,198.4,197.2,195.6,152.4,150.4,150.3,150.3,150.2,150,149.8,150.4,150.4,150.4,150.4,150.3,149.8,149.7 +263,155,202.4,198.6,197.4,195.8,152.5,150.5,150.4,150.3,150.3,150,149.8,150.5,150.5,150.5,150.4,150.4,149.8,149.7 +264,155,202.5,198.7,197.6,196,152.5,150.5,150.4,150.4,150.3,150.1,149.8,150.5,150.5,150.5,150.5,150.4,149.8,149.8 +265,155,202.6,198.9,197.7,196.2,152.6,150.6,150.5,150.4,150.4,150.1,149.9,150.5,150.5,150.5,150.5,150.4,149.9,149.8 +266,155.1,202.8,199.1,197.9,196.3,152.6,150.6,150.5,150.5,150.4,150.1,149.9,150.6,150.6,150.6,150.6,150.5,149.9,149.8 +267,155.1,202.9,199.2,198.1,196.5,153.8,150.7,150.6,150.6,150.5,150.1,149.9,150.6,150.6,150.6,150.6,150.5,149.9,149.9 +268,155.1,203.1,199.4,198.2,196.7,156.3,150.7,150.7,150.6,150.5,150.2,150,150.6,150.6,150.6,150.6,150.5,150,149.9 +269,155.2,203.2,199.6,198.4,196.9,158.8,150.8,150.7,150.7,150.6,150.2,150,150.7,150.7,150.7,150.7,150.6,150,149.9 +270,155.2,203.4,199.7,198.6,197.1,159.7,150.8,150.8,150.7,150.6,150.2,150,150.7,150.7,150.7,150.7,150.6,150,150 +271,155.2,203.5,199.9,198.8,197.2,160.7,150.9,150.8,150.8,150.7,150.2,150.1,150.7,150.7,150.7,150.7,150.6,150.1,150 +272,155.3,203.7,200.1,198.9,197.4,161.7,150.9,150.9,150.8,150.7,150.3,150.1,150.8,150.8,150.8,150.8,150.7,150.1,150 +273,155.3,203.8,200.2,199.1,197.6,162.6,151,150.9,150.9,150.8,150.3,150.1,150.8,150.8,150.8,150.8,150.7,150.1,150.1 +274,155.3,203.9,200.4,199.3,197.8,163.6,151,151,150.9,150.8,150.3,150.1,150.8,150.8,150.8,150.8,150.7,150.2,150.1 +275,155.4,204.1,200.6,199.4,197.9,164.5,151.1,151,151,150.9,150.3,150.2,150.9,150.9,150.9,150.9,150.8,150.2,150.1 +276,155.4,204.2,200.7,199.6,198.1,165.5,151.1,151.1,151,150.9,150.4,150.2,150.9,150.9,150.9,150.9,150.8,150.2,150.1 +277,155.4,204.4,200.9,199.8,198.3,166.5,151.2,151.1,151.1,151,150.4,150.2,150.9,150.9,150.9,150.9,150.8,150.2,150.2 +278,155.5,204.5,201.1,199.9,198.5,168,151.2,151.2,151.1,151,150.4,150.3,151,151,151,151,150.9,150.3,150.2 +279,155.5,204.6,201.2,200.1,198.6,169.4,151.3,151.2,151.2,151.1,150.4,150.3,151,151,151,151,150.9,150.3,150.2 +280,155.5,204.8,201.4,200.3,198.8,170.6,151.3,151.3,151.2,151.1,150.5,150.3,151,151,151,151,150.9,150.3,150.3 +281,155.5,204.9,201.5,200.4,199,171.7,151.4,151.3,151.3,151.2,150.5,150.4,151.1,151.1,151.1,151.1,151,150.4,150.3 +282,155.6,205.1,201.7,200.6,199.2,172.7,151.4,151.3,151.3,151.2,150.5,150.4,151.1,151.1,151.1,151.1,151,150.4,150.3 +283,155.6,205.2,201.9,200.8,199.3,173.6,151.5,151.4,151.3,151.3,150.5,150.4,151.1,151.1,151.1,151.1,151,150.4,150.4 +284,155.6,205.3,202,200.9,199.5,174.5,151.5,151.4,151.4,151.3,150.6,150.4,151.2,151.2,151.2,151.2,151.1,150.5,150.4 +285,155.7,205.5,202.2,201.1,199.7,175.3,151.6,151.5,151.4,151.4,150.6,150.5,151.2,151.2,151.2,151.2,151.1,150.5,150.4 +286,155.7,205.6,202.3,201.3,199.8,176.1,151.6,151.5,151.5,151.4,150.7,150.5,151.2,151.2,151.2,151.2,151.1,150.5,150.4 +287,155.7,205.8,202.5,201.4,200,176.8,151.7,151.6,151.5,151.5,150.7,150.5,151.3,151.3,151.3,151.3,151.2,150.5,150.5 +288,155.8,205.9,202.6,201.6,200.2,177.5,151.7,151.6,151.6,151.5,150.8,150.6,151.3,151.3,151.3,151.3,151.2,150.6,150.5 +289,155.8,206,202.8,201.7,200.3,178.1,151.8,151.7,151.6,151.6,150.8,150.6,151.3,151.3,151.3,151.3,151.2,150.6,150.5 +290,155.8,206.2,203,201.9,200.5,178.6,151.8,151.7,151.7,151.6,150.9,150.6,151.4,151.4,151.4,151.4,151.3,150.6,150.6 +291,155.9,206.3,203.1,202.1,200.7,179.2,151.9,151.8,151.7,151.7,150.9,150.6,151.4,151.4,151.4,151.4,151.3,150.7,150.6 +292,155.9,206.4,203.3,202.2,200.8,179.7,151.9,151.8,151.8,151.7,150.9,150.7,151.4,151.4,151.4,151.4,151.3,150.7,150.6 +293,155.9,206.6,203.4,202.4,201,180.2,151.9,151.9,151.8,151.8,151,150.7,151.5,151.5,151.5,151.5,151.3,150.7,150.6 +294,155.9,206.7,203.6,202.5,201.2,180.7,152,151.9,151.9,151.8,151,150.7,151.5,151.5,151.5,151.5,151.4,150.7,150.7 +295,156,206.8,203.7,202.7,201.3,181.1,152,152,151.9,151.8,151.1,150.7,151.5,151.5,151.5,151.5,151.4,150.8,150.7 +296,156,207,203.9,202.9,201.5,181.6,152.1,152,152,151.9,151.1,150.8,151.6,151.6,151.6,151.5,151.4,150.8,150.7 +297,156,207.1,204,203,201.6,182,152.1,152.1,152,151.9,151.2,150.8,151.6,151.6,151.6,151.6,151.5,150.8,150.8 +298,156.1,207.3,204.2,203.2,201.8,182.4,152.2,152.1,152,152,151.2,150.8,151.6,151.6,151.6,151.6,151.5,150.9,150.8 +299,156.1,207.4,204.3,203.3,202,182.8,152.2,152.1,152.1,152,151.3,150.9,151.6,151.6,151.6,151.6,151.5,150.9,150.8 +300,156.1,207.5,204.5,203.5,202.1,183.2,152.3,152.2,152.1,152.1,151.3,150.9,151.7,151.7,151.7,151.7,151.6,150.9,150.8 +301,156.1,207.7,204.6,203.6,202.3,183.5,152.3,152.2,152.2,152.1,151.3,150.9,151.7,151.7,151.7,151.7,151.6,150.9,150.9 +302,156.2,207.8,204.8,203.8,202.4,183.9,152.4,152.3,152.2,152.2,151.4,150.9,151.7,151.7,151.7,151.7,151.6,151,150.9 +303,156.2,207.9,204.9,203.9,202.6,184.2,152.4,152.3,152.3,152.2,151.4,151,151.8,151.8,151.8,151.8,151.7,151,150.9 +304,156.2,208,205.1,204.1,202.8,184.6,152.4,152.4,152.3,152.3,151.5,151,151.8,151.8,151.8,151.8,151.7,151,151 +305,156.3,208.2,205.2,204.2,202.9,184.9,152.5,152.4,152.4,152.3,151.5,151,151.8,151.8,151.8,151.8,151.7,151,151 +306,156.3,208.3,205.4,204.4,203.1,185.2,152.5,152.5,152.4,152.3,151.6,151,151.9,151.9,151.9,151.9,151.7,151.1,151 +307,156.3,208.4,205.5,204.5,203.2,185.5,152.6,152.5,152.5,152.4,151.6,151.1,151.9,151.9,151.9,151.9,151.8,151.1,151 +308,156.3,208.6,205.7,204.7,203.4,185.8,152.6,152.5,152.5,152.4,151.7,151.1,151.9,151.9,151.9,151.9,151.8,151.1,151.1 +309,156.4,208.7,205.8,204.8,203.5,186.1,152.7,152.6,152.5,152.5,151.7,151.1,151.9,151.9,151.9,151.9,151.8,151.2,151.1 +310,156.4,208.8,206,205,203.7,186.4,152.7,152.6,152.6,152.5,151.7,151.1,152,152,152,152,151.8,151.2,151.1 +311,156.4,209,206.1,205.1,203.9,186.7,152.7,152.7,152.6,152.6,151.8,151.2,152,152,152,152,151.9,151.2,151.1 +312,156.5,209.1,206.2,205.3,204,187,152.8,152.7,152.7,152.6,151.8,151.2,152,152,152,152,151.9,151.2,151.2 +313,156.5,209.2,206.4,205.4,204.2,187.3,152.8,152.8,152.7,152.6,151.9,151.2,152.1,152.1,152.1,152.1,151.9,151.3,151.2 +314,156.5,209.4,206.5,205.6,204.3,187.5,152.9,152.8,152.8,152.7,151.9,151.2,152.1,152.1,152.1,152.1,152,151.3,151.2 +315,156.5,209.5,206.7,205.7,204.5,187.8,152.9,152.8,152.8,152.7,152,151.3,152.1,152.1,152.1,152.1,152,151.3,151.3 +316,156.6,209.6,206.8,205.9,204.6,188.1,153,152.9,152.8,152.8,152,151.3,152.1,152.1,152.1,152.1,152,151.3,151.3 +317,156.6,209.7,207,206,204.8,188.3,153,152.9,152.9,152.8,152,151.3,152.2,152.2,152.2,152.2,152,151.4,151.3 +318,156.6,209.9,207.1,206.2,204.9,188.6,153,153,152.9,152.9,152.1,151.3,152.2,152.2,152.2,152.2,152.1,151.4,151.3 +319,156.6,210,207.3,206.3,205.1,188.8,153.1,153,153,152.9,152.1,151.4,152.2,152.2,152.2,152.2,152.1,151.4,151.4 +320,156.7,210.1,207.4,206.5,205.2,189,153.1,153.1,153,153,152.2,151.4,152.2,152.2,152.2,152.2,152.1,151.4,151.4 +321,156.7,210.3,207.5,206.6,205.4,189.3,153.2,153.1,153.1,153,152.2,151.4,152.3,152.3,152.3,152.3,152.1,151.5,151.4 +322,156.7,210.4,207.7,206.8,205.5,189.5,153.2,153.1,153.1,153,152.3,151.4,152.3,152.3,152.3,152.3,152.1,151.5,151.4 +323,156.8,210.5,207.8,206.9,205.7,189.8,153.3,153.2,153.1,153.1,152.3,151.5,152.3,152.3,152.3,152.3,152.2,151.5,151.5 +324,156.8,210.6,208,207,205.8,190,153.3,153.2,153.2,153.1,152.3,151.5,152.3,152.3,152.3,152.3,152.2,151.5,151.5 +325,156.8,210.8,208.1,207.2,206,190.2,153.3,153.3,153.2,153.2,152.4,151.5,152.4,152.4,152.4,152.4,152.2,151.6,151.5 +326,156.8,210.9,208.2,207.3,206.1,190.5,153.4,153.3,153.3,153.2,152.4,151.5,152.4,152.4,152.4,152.4,152.2,151.6,151.5 +327,156.9,211,208.4,207.5,206.2,190.7,153.4,153.4,153.3,153.2,152.5,151.5,152.4,152.4,152.4,152.4,152.2,151.6,151.6 +328,156.9,211.1,208.5,207.6,206.4,190.9,153.5,153.4,153.4,153.3,152.5,151.6,152.4,152.4,152.4,152.4,152.3,151.6,151.6 +329,156.9,211.3,208.6,207.8,206.5,191.1,153.5,153.4,153.4,153.3,152.5,151.6,152.4,152.4,152.4,152.4,152.3,151.7,151.6 +330,156.9,211.4,208.8,207.9,206.7,191.3,153.5,153.5,153.4,153.4,152.6,151.6,152.5,152.5,152.5,152.5,152.3,151.7,151.6 +331,157,211.5,208.9,208,206.8,191.6,153.6,153.5,153.5,153.4,152.6,151.6,152.5,152.5,152.5,152.5,152.3,151.7,151.7 +332,157,211.6,209.1,208.2,207,191.8,153.6,153.6,153.5,153.5,152.7,151.7,152.5,152.5,152.5,152.5,152.3,151.7,151.7 +333,157,211.8,209.2,208.3,207.1,192,153.7,153.6,153.6,153.5,152.7,151.7,152.5,152.5,152.5,152.5,152.3,151.8,151.7 +334,157,211.9,209.3,208.5,207.3,192.2,153.7,153.6,153.6,153.5,152.8,151.7,152.5,152.5,152.5,152.5,152.3,151.8,151.7 +335,157.1,212,209.5,208.6,207.4,192.4,153.7,153.7,153.6,153.6,152.8,151.7,152.5,152.5,152.5,152.5,152.3,151.8,151.8 +336,157.1,212.1,209.6,208.7,207.5,192.6,153.8,153.7,153.7,153.6,152.8,151.8,152.5,152.5,152.6,152.6,152.3,151.8,151.8 +337,157.1,212.3,209.7,208.9,207.7,192.8,153.8,153.8,153.7,153.7,152.9,151.8,152.5,152.6,152.6,152.6,152.4,151.9,151.8 +338,157.2,212.4,209.9,209,207.8,193,153.9,153.8,153.8,153.7,152.9,151.8,152.5,152.6,152.6,152.6,152.4,151.9,151.8 +339,157.2,212.5,210,209.1,208,193.2,153.9,153.8,153.8,153.7,153,151.8,152.6,152.6,152.6,152.6,152.4,151.9,151.9 +340,157.2,212.6,210.1,209.3,208.1,193.4,153.9,153.9,153.8,153.8,153,151.8,152.6,152.6,152.6,152.6,152.4,151.9,151.9 +341,157.2,212.7,210.3,209.4,208.3,193.6,154,153.9,153.9,153.8,153,151.9,152.6,152.6,152.6,152.6,152.4,152,151.9 +342,157.3,212.9,210.4,209.6,208.4,193.8,154,154,153.9,153.9,153.1,151.9,152.6,152.6,152.6,152.6,152.4,152,151.9 +343,157.3,213,210.5,209.7,208.5,194,154.1,154,154,153.9,153.1,151.9,152.6,152.6,152.6,152.6,152.4,152,151.9 +344,157.3,213.1,210.7,209.8,208.7,194.2,154.1,154,154,153.9,153.2,151.9,152.6,152.6,152.6,152.6,152.4,152,152 +345,157.3,213.2,210.8,210,208.8,194.4,154.1,154.1,154,154,153.2,151.9,152.5,152.6,152.6,152.6,152.4,152,152 +346,157.4,213.4,210.9,210.1,209,194.6,154.2,154.1,154.1,154,153.2,152,152.5,152.6,152.6,152.6,152.4,152.1,152 +347,157.4,213.5,211.1,210.2,209.1,194.8,154.2,154.2,154.1,154.1,153.3,152,152.5,152.6,152.6,152.6,152.5,152.1,152 +348,157.4,213.6,211.2,210.4,209.2,195,154.3,154.2,154.2,154.1,153.3,152,152.5,152.6,152.6,152.6,152.5,152.1,152.1 +349,157.4,213.7,211.3,210.5,209.4,195.2,154.3,154.2,154.2,154.1,153.4,152,152.5,152.5,152.6,152.6,152.5,152.1,152.1 +350,157.5,213.8,211.5,210.6,209.5,195.4,154.3,154.3,154.2,154.2,153.4,152.1,152.5,152.5,152.6,152.6,152.5,152.2,152.1 +351,157.5,214,211.6,210.8,209.6,195.6,154.4,154.3,154.3,154.2,153.4,152.1,152.5,152.5,152.5,152.6,152.5,152.2,152.1 +352,157.5,214.1,211.7,210.9,209.8,195.8,154.4,154.4,154.3,154.3,153.5,152.1,152.5,152.5,152.5,152.6,152.5,152.2,152.2 +353,157.5,214.2,211.9,211,209.9,196,154.5,154.4,154.3,154.3,153.5,152.1,152.5,152.5,152.5,152.5,152.5,152.2,152.2 +354,157.6,214.3,212,211.2,210,196.1,154.5,154.4,154.4,154.3,153.5,152.1,152.4,152.5,152.5,152.5,152.5,152.2,152.2 +355,157.6,214.4,212.1,211.3,210.2,196.3,154.5,154.5,154.4,154.4,153.6,152.2,152.4,152.5,152.5,152.5,152.5,152.3,152.2 +356,157.6,214.6,212.2,211.4,210.3,196.5,154.6,154.5,154.5,154.4,153.6,152.2,152.4,152.5,152.5,152.5,152.6,152.3,152.3 +357,157.6,214.7,212.4,211.6,210.5,196.7,154.6,154.5,154.5,154.4,153.7,152.2,152.5,152.5,152.5,152.5,152.6,152.3,152.3 +358,157.6,214.8,212.5,211.7,210.6,196.9,154.6,154.6,154.5,154.5,153.7,152.2,152.6,152.5,152.5,152.5,152.6,152.3,152.3 +359,157.7,214.9,212.6,211.8,210.7,197.1,154.7,154.6,154.6,154.5,153.7,152.2,152.6,152.6,152.5,152.5,152.6,152.4,152.3 +360,157.7,215,212.8,212,210.9,197.3,154.7,154.7,154.6,154.6,153.8,152.3,152.7,152.6,152.6,152.6,152.6,152.4,152.3 +361,157.7,215.1,212.9,212.1,211,197.4,154.8,154.7,154.7,154.6,153.8,152.3,152.7,152.7,152.7,152.6,152.6,152.4,152.4 +362,157.7,215.3,213,212.2,211.1,197.6,154.8,154.7,154.7,154.6,153.9,152.3,152.8,152.7,152.7,152.7,152.6,152.4,152.4 +363,157.8,215.4,213.1,212.3,211.3,197.8,154.8,154.8,154.7,154.7,153.9,152.3,152.8,152.8,152.8,152.7,152.7,152.4,152.4 +364,157.8,215.5,213.3,212.5,211.4,198,154.9,154.8,154.8,154.7,153.9,152.3,152.9,152.8,152.8,152.8,152.7,152.5,152.4 +365,157.8,215.6,213.4,212.6,211.5,198.2,154.9,154.8,154.8,154.7,154,152.3,153,152.9,152.9,152.8,152.7,152.5,152.5 +366,157.8,215.7,213.5,212.7,211.6,198.4,154.9,154.9,154.8,154.8,154,152.4,153,153,152.9,152.9,152.7,152.5,152.5 +367,157.9,215.9,213.6,212.9,211.8,198.5,155,154.9,154.9,154.8,154,152.4,153.1,153,153,152.9,152.7,152.5,152.5 +368,157.9,216,213.8,213,211.9,198.7,155,155,154.9,154.9,154.1,152.4,153.1,153.1,153,153,152.7,152.5,152.5 +369,157.9,216.1,213.9,213.1,212,198.9,155.1,155,155,154.9,154.1,152.4,153.2,153.1,153.1,153,152.7,152.6,152.5 +370,157.9,216.2,214,213.2,212.2,199.1,155.1,155,155,154.9,154.2,152.4,153.2,153.2,153.1,153.1,152.7,152.6,152.6 +371,158,216.3,214.1,213.4,212.3,199.2,155.1,155.1,155,155,154.2,152.5,153.3,153.2,153.2,153.1,152.8,152.6,152.6 +372,158,216.4,214.3,213.5,212.4,199.4,155.2,155.1,155.1,155,154.2,152.5,153.3,153.2,153.2,153.2,152.8,152.6,152.6 +373,158,216.5,214.4,213.6,212.6,199.6,155.2,155.1,155.1,155,154.3,152.5,153.3,153.3,153.3,153.2,152.8,152.7,152.6 +374,158,216.7,214.5,213.7,212.7,199.8,155.2,155.2,155.1,155.1,154.3,152.5,153.4,153.3,153.3,153.3,152.8,152.7,152.6 +375,158,216.8,214.6,213.9,212.8,199.9,155.3,155.2,155.2,155.1,154.3,152.5,153.4,153.4,153.3,153.3,152.8,152.7,152.7 +376,158.1,216.9,214.8,214,213,200.1,155.3,155.3,155.2,155.2,154.4,152.6,153.5,153.4,153.4,153.3,152.8,152.7,152.7 +377,158.1,217,214.9,214.1,213.1,200.3,155.3,155.3,155.2,155.2,154.4,152.6,153.5,153.5,153.4,153.4,152.9,152.7,152.7 +378,158.1,217.1,215,214.3,213.2,200.5,155.4,155.3,155.3,155.2,154.5,152.6,153.6,153.5,153.5,153.4,152.9,152.8,152.7 +379,158.1,217.2,215.1,214.4,213.3,200.6,155.4,155.4,155.3,155.3,154.5,152.6,153.6,153.6,153.5,153.5,152.9,152.8,152.8 +380,158.2,217.4,215.3,214.5,213.5,200.8,155.5,155.4,155.4,155.3,154.5,152.6,153.7,153.6,153.6,153.5,153,152.8,152.8 +381,158.2,217.5,215.4,214.6,213.6,201,155.5,155.4,155.4,155.3,154.6,152.6,153.7,153.6,153.6,153.6,153,152.8,152.8 +382,158.2,217.6,215.5,214.8,213.7,201.1,155.5,155.5,155.4,155.4,154.6,152.7,153.7,153.7,153.6,153.6,153,152.8,152.8 +383,158.2,217.7,215.6,214.9,213.8,201.3,155.6,155.5,155.5,155.4,154.6,152.7,153.8,153.7,153.7,153.6,153.1,152.9,152.8 +384,158.3,217.8,215.8,215,214,201.5,155.6,155.5,155.5,155.4,154.7,152.7,153.8,153.8,153.7,153.7,153.1,152.9,152.9 +385,158.3,217.9,215.9,215.1,214.1,201.7,155.6,155.6,155.5,155.5,154.7,152.7,153.9,153.8,153.8,153.7,153.2,152.9,152.9 +386,158.3,218,216,215.3,214.2,201.8,155.7,155.6,155.6,155.5,154.8,152.7,153.9,153.8,153.8,153.8,153.2,152.9,152.9 +387,158.3,218.2,216.1,215.4,214.3,202,155.7,155.6,155.6,155.6,154.8,152.7,153.9,153.9,153.8,153.8,153.2,152.9,152.9 +388,158.3,218.3,216.2,215.5,214.5,202.2,155.7,155.7,155.6,155.6,154.8,152.8,154,153.9,153.9,153.8,153.3,152.9,152.9 +389,158.4,218.4,216.4,215.6,214.6,202.3,155.8,155.7,155.7,155.6,154.9,152.8,154,154,153.9,153.9,153.3,153,153 +390,158.4,218.5,216.5,215.7,214.7,202.5,155.8,155.8,155.7,155.7,154.9,152.8,154.1,154,154,153.9,153.3,153,153 +391,158.4,218.6,216.6,215.9,214.9,202.6,155.8,155.8,155.8,155.7,154.9,152.8,154.1,154,154,153.9,153.4,153,153 +392,158.4,218.7,216.7,216,215,202.8,155.9,155.8,155.8,155.7,155,152.8,154.1,154.1,154,154,153.4,153,153 +393,158.5,218.8,216.8,216.1,215.1,203,156,155.9,155.8,155.8,155,152.8,154.2,154.1,154.1,154,153.4,153,153 +394,158.5,219,217,216.2,215.2,203.1,156.6,155.9,155.9,155.8,155,152.9,154.2,154.1,154.1,154.1,153.5,153.1,153.1 +395,158.5,219.1,217.1,216.4,215.3,203.3,157.1,155.9,155.9,155.8,155.1,152.9,154.2,154.2,154.2,154.1,153.5,153.1,153.1 +396,158.5,219.2,217.2,216.5,215.5,203.5,157.8,156,155.9,155.9,155.1,152.9,154.3,154.2,154.2,154.1,153.5,153.1,153.1 +397,158.5,219.3,217.3,216.6,215.6,203.6,158.4,156,156,155.9,155.1,152.9,154.3,154.3,154.2,154.2,153.6,153.1,153.1 +398,158.6,219.4,217.4,216.7,215.7,203.8,159.1,156,156,155.9,155.2,152.9,154.4,154.3,154.3,154.2,153.6,153.1,153.1 +399,158.6,219.5,217.6,216.8,215.8,203.9,159.8,156.1,156,156,155.2,152.9,154.4,154.3,154.3,154.2,153.7,153.1,153.2 +400,158.6,219.6,217.7,217,216,204.1,160.5,156.1,156.1,156,155.2,153,154.4,154.4,154.3,154.3,153.7,153.2,153.2 +401,158.6,219.8,217.8,217.1,216.1,204.3,161.2,156.1,156.1,156.1,155.3,153,154.5,154.4,154.4,154.3,153.7,153.2,153.2 +402,158.7,219.9,217.9,217.2,216.2,204.4,161.8,156.2,156.1,156.1,155.3,153,154.5,154.4,154.4,154.4,153.8,153.2,153.2 +403,158.7,220,218,217.3,216.3,204.6,162.4,156.2,156.2,156.1,155.3,153,154.5,154.5,154.4,154.4,153.8,153.2,153.2 +404,158.7,220.1,218.2,217.4,216.5,204.7,163,156.2,156.2,156.2,155.4,153,154.6,154.5,154.5,154.4,153.8,153.2,153.2 +405,158.7,220.2,218.3,217.6,216.6,204.9,163.6,156.3,156.2,156.2,155.4,153,154.6,154.6,154.5,154.5,153.9,153.3,153.3 +406,158.7,220.3,218.4,217.7,216.7,205,164.3,156.3,156.3,156.2,155.4,153.1,154.6,154.6,154.6,154.5,153.9,153.3,153.3 +407,158.8,220.4,218.5,217.8,216.8,205.2,164.9,156.3,156.3,156.3,155.5,153.1,154.7,154.6,154.6,154.5,153.9,153.3,153.3 +408,158.8,220.5,218.6,217.9,216.9,205.4,165.5,156.4,156.4,156.3,155.5,153.1,154.7,154.7,154.6,154.6,154,153.3,153.3 +409,158.8,220.7,218.8,218,217.1,205.5,166.1,156.4,156.4,156.4,155.6,153.1,154.7,154.7,154.7,154.6,154,153.3,153.3 +410,158.8,220.8,218.9,218.2,217.2,205.7,166.7,156.5,156.4,156.4,155.6,153.1,154.8,154.7,154.7,154.6,154,153.3,153.4 +411,158.8,220.9,219,218.3,217.3,205.8,167.4,156.5,156.5,156.4,155.6,153.1,154.8,154.8,154.7,154.7,154.1,153.4,153.4 +412,158.9,221,219.1,218.4,217.4,206,168,156.5,156.5,156.4,155.7,153.1,154.9,154.8,154.8,154.7,154.1,153.4,153.4 +413,158.9,221.1,219.2,218.5,217.5,206.1,168.6,156.6,156.5,156.5,155.7,153.2,154.9,154.8,154.8,154.7,154.1,153.4,153.4 +414,158.9,221.2,219.3,218.6,217.7,206.3,169.8,156.6,156.6,156.5,155.7,153.2,154.9,154.9,154.8,154.8,154.2,153.4,153.4 +415,158.9,221.3,219.5,218.8,217.8,206.4,171.4,156.6,156.6,156.5,155.8,153.2,155,154.9,154.9,154.8,154.2,153.4,153.5 +416,158.9,221.4,219.6,218.9,217.9,206.6,173,156.7,156.6,156.6,155.8,153.2,155,154.9,154.9,154.8,154.2,153.4,153.5 +417,159,221.5,219.7,219,218,206.7,174.6,156.7,156.7,156.6,155.8,153.3,155,155,154.9,154.9,154.3,153.5,153.5 +418,159,221.7,219.8,219.1,218.1,206.9,176.1,156.7,156.7,156.6,155.9,153.3,155.1,155,155,154.9,154.3,153.5,153.5 +419,159,221.8,219.9,219.2,218.3,207,177.7,156.8,156.7,156.7,155.9,153.3,155.1,155,155,154.9,154.3,153.5,153.5 +420,159,221.9,220,219.3,218.4,207.2,179.3,156.9,156.8,156.7,155.9,153.4,155.1,155.1,155,155,154.4,153.5,153.5 +421,159,222,220.2,219.5,218.5,207.3,180.9,158.1,156.8,156.7,156,153.4,155.2,155.1,155.1,155,154.4,153.5,153.6 +422,159.1,222.1,220.3,219.6,218.6,207.5,182.5,159.4,156.8,156.8,156,153.4,155.2,155.1,155.1,155,154.4,153.6,153.6 +423,159.1,222.2,220.4,219.7,218.7,207.6,184,160.6,156.9,156.8,156,153.5,155.2,155.2,155.1,155.1,154.5,153.6,153.6 +424,159.1,222.3,220.5,219.8,218.9,207.8,185.6,161.8,156.9,156.8,156.1,153.5,155.3,155.2,155.2,155.1,154.5,153.6,153.6 +425,159.1,222.4,220.6,219.9,219,207.9,186.7,163,156.9,156.9,156.1,153.5,155.3,155.2,155.2,155.1,154.5,153.6,153.6 +426,159.2,222.5,220.7,220.1,219.1,208.1,187.2,164.1,157,156.9,156.1,153.5,155.3,155.3,155.2,155.2,154.6,153.6,153.7 +427,159.2,222.7,220.9,220.2,219.2,208.2,187.7,165.2,157,156.9,156.2,153.6,155.4,155.3,155.3,155.2,154.6,153.6,153.7 +428,159.2,222.8,221,220.3,219.3,208.3,188.1,166.4,157.6,157,156.2,153.6,155.4,155.3,155.3,155.2,154.6,153.7,153.7 +429,159.2,222.9,221.1,220.4,219.5,208.5,188.6,167.5,159,157,156.2,153.6,155.4,155.4,155.3,155.3,154.7,153.7,153.7 +430,159.2,223,221.2,220.5,219.6,208.6,189,168.6,160.3,157,156.3,153.7,155.5,155.4,155.4,155.3,154.7,153.7,153.7 +431,159.3,223.1,221.3,220.6,219.7,208.8,189.3,169.8,161.7,157.1,156.3,153.7,155.5,155.4,155.4,155.3,154.7,153.7,153.7 +432,159.3,223.2,221.4,220.8,219.8,208.9,189.6,170.9,162.9,157.1,156.3,153.7,155.5,155.5,155.4,155.4,154.8,153.7,153.8 +433,159.3,223.3,221.6,220.9,219.9,209.1,189.9,172.3,163.9,157.1,156.4,153.7,155.6,155.5,155.5,155.4,154.8,153.7,153.8 +434,159.3,223.4,221.7,221,220,209.2,190.2,173.4,164.9,157.2,156.4,153.8,155.6,155.5,155.5,155.4,154.8,153.7,153.8 +435,159.3,223.5,221.8,221.1,220.2,209.3,190.5,174.5,165.8,157.2,156.4,153.8,155.6,155.6,155.5,155.5,154.9,153.8,153.8 +436,159.4,223.7,221.9,221.2,220.3,209.5,190.7,175.5,166.8,157.2,156.5,153.8,155.6,155.6,155.6,155.5,154.9,153.8,153.8 +437,159.4,223.8,222,221.3,220.4,209.6,191,176.4,167.8,157.3,156.5,153.9,155.7,155.6,155.6,155.5,154.9,153.8,153.8 +438,159.4,223.9,222.1,221.4,220.5,209.8,191.2,177.2,168.8,157.3,156.5,153.9,155.7,155.7,155.6,155.6,154.9,153.8,153.9 +439,159.4,224,222.2,221.6,220.6,209.9,191.5,178,169.8,158.8,156.6,153.9,155.7,155.7,155.7,155.6,155,153.8,153.9 +440,159.4,224.1,222.4,221.7,220.7,210.1,191.7,178.8,170.8,160.3,156.6,153.9,155.8,155.7,155.7,155.6,155,153.8,153.9 +441,159.4,224.2,222.5,221.8,220.9,210.2,191.9,179.5,172.2,161.7,156.6,154,155.8,155.8,155.7,155.7,155,153.9,153.9 +442,159.5,224.3,222.6,221.9,221,210.3,192.1,180.2,173.4,162.9,156.7,154,155.8,155.8,155.8,155.7,155.1,153.9,153.9 +443,159.5,224.4,222.7,222,221.1,210.5,192.3,180.8,174.4,163.9,156.7,154,155.9,155.8,155.8,155.7,155.1,153.9,153.9 +444,159.5,224.5,222.8,222.1,221.2,210.6,192.5,181.3,175.4,164.8,156.7,154.1,155.9,155.8,155.8,155.8,155.1,153.9,154 +445,159.5,224.6,222.9,222.3,221.3,210.7,192.7,181.8,176.3,165.8,156.8,154.1,155.9,155.9,155.8,155.8,155.2,153.9,154 +446,159.5,224.7,223,222.4,221.4,210.9,192.9,182.3,177.2,166.8,156.8,154.1,156,155.9,155.9,155.8,155.2,153.9,154 +447,159.6,224.9,223.2,222.5,221.6,211,193.1,182.8,178,167.7,156.8,154.1,156,155.9,155.9,155.9,155.2,153.9,154 +448,159.6,225,223.3,222.6,221.7,211.2,193.3,183.3,178.8,168.7,156.9,154.2,156,156,155.9,155.9,155.3,154,154 +449,159.6,225.1,223.4,222.7,221.8,211.3,193.5,183.7,179.5,169.7,156.9,154.2,156.1,156,156,155.9,155.3,154,154 +450,159.6,225.2,223.5,222.8,221.9,211.4,193.7,184.1,180.1,170.7,156.9,154.2,156.1,156,156,156,155.3,154,154.1 +451,159.6,225.3,223.6,222.9,222,211.6,193.9,184.5,180.7,171.6,157,154.3,156.1,156.1,156,156,155.4,154,154.1 +452,159.7,225.4,223.7,223.1,222.1,211.7,194,184.9,181.3,173.1,157,154.3,156.1,156.1,156.1,156,155.4,154,154.1 +453,159.7,225.5,223.8,223.2,222.2,211.8,194.2,185.3,181.8,174.2,157,154.3,156.2,156.1,156.1,156,155.4,154,154.1 +454,159.7,225.6,224,223.3,222.4,212,194.4,185.7,182.3,175.2,157.1,154.3,156.2,156.2,156.1,156.1,155.4,154,154.1 +455,159.7,225.7,224.1,223.4,222.5,212.1,194.6,186,182.8,176.2,157.1,154.4,156.2,156.2,156.2,156.1,155.5,154.1,154.1 +456,159.7,225.8,224.2,223.5,222.6,212.2,194.7,186.4,183.2,177,157.1,154.4,156.3,156.2,156.2,156.1,155.5,154.1,154.2 +457,159.8,226,224.3,223.6,222.7,212.4,194.9,186.7,183.7,177.9,157.2,154.4,156.3,156.2,156.2,156.2,155.5,154.1,154.2 +458,159.8,226.1,224.4,223.7,222.8,212.5,195.1,187,184.1,178.6,157.2,154.4,156.3,156.3,156.2,156.2,155.6,154.1,154.2 +459,159.8,226.2,224.5,223.9,222.9,212.6,195.2,187.3,184.5,179.4,157.2,154.5,156.4,156.3,156.3,156.2,155.6,154.1,154.2 +460,159.8,226.3,224.6,224,223,212.8,195.4,187.7,184.9,180,157.2,154.5,156.4,156.3,156.3,156.3,155.6,154.1,154.2 +461,159.8,226.4,224.7,224.1,223.2,212.9,195.6,188,185.3,180.6,157.3,154.5,156.4,156.4,156.3,156.3,155.7,154.1,154.2 +462,159.9,226.5,224.9,224.2,223.3,213,195.7,188.3,185.7,181.2,157.3,154.6,156.5,156.4,156.4,156.3,155.7,154.2,154.2 +463,159.9,226.6,225,224.3,223.4,213.2,195.9,188.5,186,181.7,157.3,154.6,156.5,156.4,156.4,156.4,155.7,154.2,154.3 +464,159.9,226.7,225.1,224.4,223.5,213.3,196,188.8,186.4,182.2,157.4,154.6,156.5,156.5,156.4,156.4,155.7,154.2,154.3 +465,159.9,226.8,225.2,224.5,223.6,213.4,196.2,189.1,186.7,182.7,157.4,154.6,156.5,156.5,156.5,156.4,155.8,154.2,154.3 +466,159.9,226.9,225.3,224.6,223.7,213.6,196.4,189.4,187,183.2,157.4,154.7,156.6,156.5,156.5,156.4,155.8,154.2,154.3 +467,159.9,227,225.4,224.8,223.8,213.7,196.5,189.6,187.4,183.6,157.5,154.7,156.6,156.6,156.5,156.5,155.8,154.2,154.3 +468,160,227.1,225.5,224.9,224,213.8,196.7,189.9,187.7,184.1,157.5,154.7,156.6,156.6,156.6,156.5,155.9,154.2,154.3 +469,160,227.3,225.6,225,224.1,214,196.8,190.2,188,184.5,157.5,154.7,156.7,156.6,156.6,156.5,155.9,154.3,154.4 +470,160,227.4,225.8,225.1,224.2,214.1,197,190.4,188.3,184.9,157.6,154.8,156.7,156.6,156.6,156.6,155.9,154.3,154.4 +471,160,227.5,225.9,225.2,224.3,214.2,197.1,190.7,188.6,185.3,157.6,154.8,156.7,156.7,156.6,156.6,156,154.3,154.4 +472,160,227.6,226,225.3,224.4,214.4,197.3,190.9,188.9,185.7,157.6,154.8,156.7,156.7,156.7,156.6,156,154.3,154.4 +473,160.1,227.7,226.1,225.4,224.5,214.5,197.4,191.1,189.1,186,157.7,154.9,156.8,156.7,156.7,156.7,156,154.3,154.4 +474,160.1,227.8,226.2,225.5,224.6,214.6,197.6,191.4,189.4,186.4,157.7,154.9,156.8,156.8,156.7,156.7,156,154.3,154.4 +475,160.1,227.9,226.3,225.7,224.8,214.7,197.7,191.6,189.7,186.7,157.7,154.9,156.8,156.8,156.8,156.7,156.1,154.3,154.4 +476,160.1,228,226.4,225.8,224.9,214.9,197.9,191.8,190,187.1,157.8,154.9,156.9,156.8,156.8,156.7,156.1,154.3,154.5 +477,160.1,228.1,226.5,225.9,225,215,198,192.1,190.2,187.4,157.8,155,156.9,156.8,156.8,156.8,156.1,154.4,154.5 +478,160.1,228.2,226.6,226,225.1,215.1,198.2,192.3,190.5,187.7,157.8,155,156.9,156.9,156.8,156.8,156.2,154.4,154.5 +479,160.2,228.3,226.8,226.1,225.2,215.3,198.4,192.5,190.7,188,157.9,155,157,156.9,156.9,156.8,156.2,154.4,154.5 +480,160.2,228.4,226.9,226.2,225.3,215.4,198.5,192.7,191,188.3,157.9,155,157,156.9,156.9,156.9,156.2,154.4,154.5 +481,160.2,228.5,227,226.3,225.4,215.5,198.7,193,191.2,188.6,157.9,155.1,157,157,156.9,156.9,156.3,154.4,154.5 +482,160.2,228.7,227.1,226.4,225.5,215.6,198.8,193.2,191.5,188.9,158,155.1,157,157,157,156.9,156.3,154.4,154.5 +483,160.2,228.8,227.2,226.6,225.7,215.8,199,193.4,191.7,189.2,158,155.1,157.1,157,157,156.9,156.3,154.4,154.6 +484,160.3,228.9,227.3,226.7,225.8,215.9,199.1,193.6,191.9,189.5,158,155.1,157.1,157.1,157,157,156.3,154.5,154.6 +485,160.3,229,227.4,226.8,225.9,216,199.3,193.8,192.2,189.7,158.1,155.2,157.1,157.1,157.1,157,156.4,154.5,154.6 +486,160.3,229.1,227.5,226.9,226,216.1,199.4,194,192.4,190,158.1,155.2,157.2,157.1,157.1,157,156.4,154.5,154.6 +487,160.3,229.2,227.6,227,226.1,216.3,199.6,194.2,192.6,190.3,158.1,155.2,157.2,157.1,157.1,157.1,156.4,154.5,154.6 +488,160.3,229.3,227.8,227.1,226.2,216.4,199.7,194.4,192.8,190.5,158.1,155.2,157.2,157.2,157.1,157.1,156.5,154.5,154.6 +489,160.3,229.4,227.9,227.2,226.3,216.5,199.9,194.6,193.1,190.8,158.2,155.3,157.2,157.2,157.2,157.1,156.5,154.5,154.6 +490,160.4,229.5,228,227.3,226.4,216.6,200,194.9,193.3,191,158.2,155.3,157.3,157.2,157.2,157.2,156.5,154.5,154.7 +491,160.4,229.6,228.1,227.4,226.6,216.8,200.2,195.1,193.5,191.3,158.2,155.3,157.3,157.3,157.2,157.2,156.5,154.5,154.7 +492,160.4,229.7,228.2,227.6,226.7,216.9,200.3,195.3,193.7,191.5,158.3,155.4,157.3,157.3,157.3,157.2,156.6,154.6,154.7 +493,160.4,229.8,228.3,227.7,226.8,217,200.5,195.5,193.9,191.8,158.3,155.4,157.4,157.3,157.3,157.2,156.6,154.6,154.7 +494,160.4,229.9,228.4,227.8,226.9,217.1,200.6,195.7,194.1,192,158.3,155.4,157.4,157.3,157.3,157.3,156.6,154.6,154.7 +495,160.4,230,228.5,227.9,227,217.3,200.8,195.9,194.3,192.2,158.4,155.4,157.4,157.4,157.3,157.3,156.7,154.6,154.7 +496,160.5,230.1,228.6,228,227.1,217.4,200.9,196,194.6,192.5,158.4,155.5,157.4,157.4,157.4,157.3,156.7,154.7,154.7 +497,160.5,230.2,228.7,228.1,227.2,217.5,201.1,196.2,194.8,192.7,158.4,155.5,157.5,157.4,157.4,157.4,156.7,154.7,154.7 +498,160.5,230.4,228.9,228.2,227.3,217.6,201.2,196.4,195,192.9,158.5,155.5,157.5,157.5,157.4,157.4,156.7,154.7,154.8 +499,160.5,230.5,229,228.3,227.4,217.7,201.4,196.6,195.2,193.1,158.5,155.5,157.5,157.5,157.5,157.4,156.8,154.7,154.8 +500,160.5,230.6,229.1,228.4,227.6,217.9,201.5,196.8,195.4,193.4,158.5,155.6,157.6,157.5,157.5,157.4,156.8,154.8,154.8 +501,160.5,230.7,229.2,228.6,227.7,218,201.7,197,195.6,193.6,158.6,155.6,157.6,157.5,157.5,157.5,156.8,154.8,154.8 +502,160.6,230.8,229.3,228.7,227.8,218.1,201.8,197.2,195.8,193.8,158.6,155.6,157.6,157.6,157.5,157.5,156.9,154.8,154.8 +503,160.6,230.9,229.4,228.8,227.9,218.2,202,197.4,196,194,158.6,155.6,157.6,157.6,157.6,157.5,156.9,154.8,154.8 +504,160.6,231,229.5,228.9,228,218.4,202.1,197.6,196.2,194.2,158.7,155.7,157.7,157.6,157.6,157.6,156.9,154.9,154.8 +505,160.6,231.1,229.6,229,228.1,218.5,202.3,197.8,196.4,194.4,158.7,155.7,157.7,157.7,157.6,157.6,156.9,154.9,154.9 +506,160.6,231.2,229.7,229.1,228.2,218.6,202.4,198,196.6,194.7,158.7,155.7,157.7,157.7,157.7,157.6,157,154.9,154.9 +507,160.7,231.3,229.8,229.2,228.3,218.7,202.6,198.1,196.8,194.9,158.8,155.7,157.8,157.7,157.7,157.6,157,154.9,154.9 +508,160.7,231.4,229.9,229.3,228.4,218.8,202.7,198.3,197,195.1,158.8,155.8,157.8,157.7,157.7,157.7,157,155,154.9 +509,160.7,231.5,230.1,229.4,228.6,219,202.9,198.5,197.2,195.3,158.8,155.8,157.8,157.8,157.7,157.7,157.1,155,154.9 +510,160.7,231.6,230.2,229.5,228.7,219.1,203,198.7,197.3,195.5,158.9,155.8,157.8,157.8,157.8,157.7,157.1,155,154.9 +511,160.7,231.7,230.3,229.6,228.8,219.2,203.2,198.9,197.5,195.7,158.9,155.8,157.9,157.8,157.8,157.8,157.1,155,154.9 +512,160.7,231.8,230.4,229.8,228.9,219.3,203.3,199.1,197.7,195.9,158.9,155.9,157.9,157.9,157.8,157.8,157.1,155.1,154.9 +513,160.8,231.9,230.5,229.9,229,219.4,203.5,199.2,197.9,196.1,159,155.9,157.9,157.9,157.9,157.8,157.2,155.1,155 +514,160.8,232,230.6,230,229.1,219.6,203.6,199.4,198.1,196.3,159,155.9,157.9,157.9,157.9,157.8,157.2,155.1,155 +515,160.8,232.1,230.7,230.1,229.2,219.7,203.8,199.6,198.3,196.5,159,155.9,158,157.9,157.9,157.9,157.2,155.1,155 +516,160.8,232.2,230.8,230.2,229.3,219.8,203.9,199.8,198.5,196.7,159,156,158,158,157.9,157.9,157.2,155.2,155 +517,160.8,232.3,230.9,230.3,229.4,219.9,204.1,200,198.7,196.9,159.1,156,158,158,158,157.9,157.3,155.2,155 +518,160.8,232.5,231,230.4,229.5,220,204.2,200.1,198.9,197.1,159.1,156,158.1,158,158,157.9,157.3,155.2,155 +519,160.9,232.6,231.1,230.5,229.6,220.2,204.4,200.3,199,197.3,159.1,156,158.1,158,158,158,157.3,155.2,155 +520,160.9,232.7,231.2,230.6,229.8,220.3,204.5,200.5,199.2,197.5,159.2,156.1,158.1,158.1,158,158,157.4,155.2,155 +521,160.9,232.8,231.3,230.7,229.9,220.4,204.7,200.7,199.4,197.7,159.2,156.1,158.1,158.1,158.1,158,157.4,155.3,155.1 +522,160.9,232.9,231.5,230.8,230,220.5,204.8,200.9,199.6,197.8,159.2,156.1,158.2,158.1,158.1,158.1,157.4,155.3,155.1 +523,160.9,233,231.6,230.9,230.1,220.6,205,201,199.8,198,159.3,156.1,158.2,158.2,158.1,158.1,157.4,155.3,155.1 +524,160.9,233.1,231.7,231.1,230.2,220.8,205.1,201.2,200,198.2,159.3,156.2,158.2,158.2,158.2,158.1,157.5,155.3,155.1 +525,161,233.2,231.8,231.2,230.3,220.9,205.2,201.4,200.1,198.4,159.3,156.2,158.3,158.2,158.2,158.1,157.5,155.4,155.1 +526,161,233.3,231.9,231.3,230.4,221,205.4,201.6,200.3,198.6,159.4,156.2,158.3,158.2,158.2,158.2,157.5,155.4,155.1 +527,161,233.4,232,231.4,230.5,221.1,205.5,201.7,200.5,198.8,159.4,156.2,158.3,158.3,158.2,158.2,157.6,155.4,155.1 +528,161,233.5,232.1,231.5,230.6,221.2,205.7,201.9,200.7,199,159.4,156.3,158.3,158.3,158.3,158.2,157.6,155.4,155.1 +529,161,233.6,232.2,231.6,230.7,221.3,205.8,202.1,200.8,199.2,159.5,156.3,158.4,158.3,158.3,158.3,157.6,155.5,155.1 +530,161,233.7,232.3,231.7,230.8,221.5,206,202.2,201,199.3,159.5,156.3,158.4,158.4,158.3,158.3,157.6,155.5,155.2 +531,161.1,233.8,232.4,231.8,231,221.6,206.1,202.4,201.2,199.5,159.5,156.3,158.4,158.4,158.4,158.3,157.7,155.5,155.2 +532,161.1,233.9,232.5,231.9,231.1,221.7,206.3,202.6,201.4,199.7,159.6,156.4,158.4,158.4,158.4,158.3,157.7,155.5,155.2 +533,161.1,234,232.6,232,231.2,221.8,206.4,202.8,201.6,199.9,159.6,156.4,158.5,158.4,158.4,158.4,157.7,155.6,155.2 +534,161.1,234.1,232.7,232.1,231.3,221.9,206.6,202.9,201.7,200.1,159.6,156.4,158.5,158.5,158.4,158.4,157.7,155.6,155.2 +535,161.1,234.2,232.8,232.2,231.4,222,206.7,203.1,201.9,200.3,159.7,156.4,158.5,158.5,158.5,158.4,157.8,155.6,155.2 +536,161.1,234.3,232.9,232.3,231.5,222.2,206.8,203.3,202.1,200.4,159.7,156.5,158.6,158.5,158.5,158.4,157.8,155.6,155.2 +537,161.1,234.4,233,232.4,231.6,222.3,207,203.4,202.3,200.6,159.7,156.5,158.6,158.5,158.5,158.5,157.8,155.6,155.2 +538,161.2,234.5,233.1,232.5,231.7,222.4,207.1,203.6,202.4,200.8,159.8,156.5,158.6,158.6,158.5,158.5,157.8,155.7,155.2 +539,161.2,234.6,233.3,232.7,231.8,222.5,207.3,203.8,202.6,201,159.8,156.5,158.6,158.6,158.6,158.5,157.9,155.7,155.3 +540,161.2,234.7,233.4,232.8,231.9,222.6,207.4,203.9,202.8,201.2,159.8,156.5,158.7,158.6,158.6,158.6,157.9,155.7,155.3 +541,161.2,234.8,233.5,232.9,232,222.7,207.6,204.1,202.9,201.3,160.6,156.6,158.7,158.7,158.6,158.6,157.9,155.7,155.3 +542,161.2,234.9,233.6,233,232.1,222.9,207.7,204.3,203.1,201.5,164,156.6,158.7,158.7,158.7,158.6,158,155.8,155.3 +543,161.2,235,233.7,233.1,232.2,223,207.8,204.4,203.3,201.7,167.3,156.6,158.7,158.7,158.7,158.6,158,155.8,155.3 +544,161.3,235.1,233.8,233.2,232.3,223.1,208,204.6,203.4,201.9,167.9,156.6,158.8,158.7,158.7,158.7,158,155.8,155.3 +545,161.3,235.2,233.9,233.3,232.4,223.2,208.1,204.8,203.6,202,168.5,156.7,158.8,158.8,158.7,158.7,158,155.8,155.3 +546,161.3,235.3,234,233.4,232.6,223.3,208.3,204.9,203.8,202.2,169.1,156.7,158.8,158.8,158.8,158.7,158.1,155.9,155.3 +547,161.3,235.4,234.1,233.5,232.7,223.4,208.4,205.1,203.9,202.4,169.7,156.7,158.9,158.8,158.8,158.7,158.1,155.9,155.3 +548,161.3,235.5,234.2,233.6,232.8,223.6,208.5,205.2,204.1,202.6,170.3,156.7,158.9,158.8,158.8,158.8,158.1,155.9,155.4 +549,161.3,235.6,234.3,233.7,232.9,223.7,208.7,205.4,204.3,202.7,170.9,156.8,158.9,158.9,158.8,158.8,158.1,155.9,155.4 +550,161.4,235.7,234.4,233.8,233,223.8,208.8,205.6,204.4,202.9,171.5,156.8,158.9,158.9,158.9,158.8,158.2,155.9,155.4 +551,161.4,235.8,234.5,233.9,233.1,223.9,209,205.7,204.6,203.1,172.1,156.8,159.2,158.9,158.9,158.9,158.2,156,155.4 +552,161.4,235.9,234.6,234,233.2,224,209.1,205.9,204.8,203.2,172.6,156.8,159.7,159,158.9,158.9,158.2,156,155.4 +553,161.4,236,234.7,234.1,233.3,224.1,209.2,206,204.9,203.4,173.2,156.9,160.4,159,159,158.9,158.3,156,155.4 +554,161.4,236.1,234.8,234.2,233.4,224.2,209.4,206.2,205.1,203.6,174.5,156.9,161,159,159,158.9,158.3,156,155.4 +555,161.4,236.2,234.9,234.3,233.5,224.4,209.5,206.4,205.3,203.8,175.7,156.9,161.7,159,159,159,158.3,156.1,155.4 +556,161.4,236.3,235,234.4,233.6,224.5,209.6,206.5,205.4,203.9,176.7,156.9,162.4,159.1,159,159,158.3,156.1,155.4 +557,161.5,236.4,235.1,234.5,233.7,224.6,209.8,206.7,205.6,204.1,177.7,156.9,163.1,159.1,159.1,159,158.4,156.1,155.5 +558,161.5,236.5,235.2,234.6,233.8,224.7,209.9,206.8,205.7,204.3,178.6,157,163.7,159.1,159.1,159.1,158.4,156.1,155.5 +559,161.5,236.6,235.3,234.7,233.9,224.8,210,207,205.9,204.4,179.4,157,164.4,159.1,159.1,159.1,158.4,156.1,155.5 +560,161.5,236.7,235.4,234.8,234,224.9,210.2,207.1,206.1,204.6,180.2,157,165,159.2,159.1,159.1,158.4,156.2,155.5 +561,161.5,236.8,235.5,234.9,234.1,225,210.3,207.3,206.2,204.8,180.9,157,165.6,159.2,159.2,159.1,158.5,156.2,155.5 +562,161.5,236.9,235.6,235,234.2,225.2,210.5,207.4,206.4,204.9,181.6,157.1,166.2,159.2,159.2,159.2,158.5,156.2,155.5 +563,161.6,237,235.7,235.1,234.3,225.3,210.6,207.6,206.5,205.1,182.2,157.1,166.9,159.3,159.2,159.2,158.5,156.2,155.5 +564,161.6,237.1,235.8,235.2,234.4,225.4,210.7,207.7,206.7,205.2,182.7,157.1,167.5,159.3,159.3,159.2,158.5,156.3,155.5 +565,161.6,237.2,235.9,235.4,234.5,225.5,210.9,207.9,206.9,205.4,183.3,157.1,168.1,159.3,159.3,159.3,158.6,156.3,155.5 +566,161.6,237.3,236,235.5,234.6,225.6,211,208,207,205.6,183.8,157.2,168.7,159.4,159.3,159.3,158.6,156.3,155.5 +567,161.6,237.4,236.1,235.6,234.8,225.7,211.1,208.2,207.2,205.7,184.3,157.2,169.3,159.4,159.4,159.3,158.6,156.3,155.5 +568,161.6,237.5,236.2,235.7,234.9,225.8,211.3,208.3,207.3,205.9,184.8,157.2,170,159.4,159.4,159.3,158.6,156.3,155.6 +569,161.6,237.6,236.3,235.8,235,225.9,211.4,208.5,207.5,206.1,185.2,157.2,170.6,159.4,159.4,159.4,158.7,156.4,155.6 +570,161.7,237.7,236.4,235.9,235.1,226.1,211.5,208.6,207.6,206.2,185.6,157.2,171.2,159.5,159.4,159.4,158.7,156.4,155.6 +571,161.7,237.8,236.5,236,235.2,226.2,211.7,208.8,207.8,206.4,186.1,157.3,172.3,159.5,159.4,159.4,158.7,156.4,155.6 +572,161.7,237.9,236.6,236.1,235.3,226.3,211.8,208.9,207.9,206.5,186.5,157.3,173.8,159.5,159.5,159.4,158.7,156.4,155.6 +573,161.7,238,236.7,236.2,235.4,226.4,211.9,209.1,208.1,206.7,186.9,157.3,175.4,159.5,159.5,159.5,158.8,156.5,155.7 +574,161.7,238.1,236.8,236.3,235.5,226.5,212.1,209.2,208.2,206.8,187.2,157.3,177,159.5,159.5,159.5,158.8,156.5,155.7 +575,161.7,238.2,236.9,236.4,235.6,226.6,212.2,209.4,208.4,207,187.6,157.4,178.6,159.6,159.5,159.5,158.8,156.5,155.7 +576,161.8,238.2,237,236.5,235.7,226.7,212.3,209.5,208.5,207.2,188,157.4,180.2,159.6,159.6,159.5,158.8,156.5,155.7 +577,161.8,238.3,237.1,236.6,235.8,226.9,212.4,209.7,208.7,207.3,188.3,157.4,181.8,159.6,159.6,159.6,158.9,156.5,155.7 +578,161.8,238.4,237.2,236.7,235.9,227,212.6,209.8,208.8,207.5,188.6,157.4,183.4,160.6,159.6,159.6,158.9,156.6,155.8 +579,161.8,238.5,237.3,236.8,236,227.1,212.7,210,209,207.6,189,157.5,184.9,161.8,159.7,159.6,158.9,156.6,155.8 +580,161.8,238.6,237.4,236.9,236.1,227.2,212.8,210.1,209.1,207.8,189.3,157.5,186.5,163,159.7,159.6,159,156.6,155.8 +581,161.8,238.7,237.5,237,236.2,227.3,213,210.3,209.3,207.9,189.6,157.5,187.5,164.2,159.7,159.7,159,156.6,155.8 +582,161.8,238.8,237.6,237.1,236.3,227.4,213.1,210.4,209.4,208.1,189.9,157.5,188,165.4,159.7,159.7,159,156.7,155.8 +583,161.9,238.9,237.7,237.2,236.4,227.5,213.2,210.6,209.6,208.2,190.2,157.5,188.5,166.4,159.8,159.7,159,156.7,155.9 +584,161.9,239,237.8,237.3,236.5,227.6,213.3,210.7,209.7,208.4,190.5,157.6,189,167.4,159.8,159.8,159.1,156.7,155.9 +585,161.9,239.1,237.9,237.4,236.6,227.7,213.5,210.8,209.9,208.5,190.8,157.6,189.5,168.4,160,159.8,159.1,156.7,155.9 +586,161.9,239.2,238,237.5,236.7,227.9,213.6,211,210,208.7,191.1,157.6,189.9,169.4,161.4,159.8,159.1,156.7,155.9 +587,161.9,239.3,238.1,237.6,236.8,228,213.7,211.1,210.2,208.8,191.3,157.6,190.3,170.4,162.7,159.8,159.1,156.8,155.9 +588,161.9,239.4,238.2,237.7,236.9,228.1,213.9,211.3,210.3,209,191.6,157.7,190.7,171.4,164.1,159.9,159.2,156.8,156 +589,161.9,239.5,238.3,237.8,237,228.2,214,211.4,210.5,209.1,191.9,157.7,191,172.4,165.4,159.9,159.2,156.8,156 +590,162,239.6,238.4,237.8,237.1,228.3,214.1,211.5,210.6,209.3,192.1,157.7,191.3,173.4,166.3,159.9,159.2,156.8,156 +591,162,239.7,238.5,237.9,237.2,228.4,214.2,211.7,210.7,209.4,192.4,157.7,191.6,174.6,167.1,159.9,159.2,156.8,156 +592,162,239.8,238.6,238,237.3,228.5,214.4,211.8,210.9,209.6,192.6,157.7,191.9,175.7,168,160,159.3,156.9,156 +593,162,239.8,238.7,238.1,237.4,228.6,214.5,212,211,209.7,192.9,157.8,192.1,176.7,168.9,160,159.3,156.9,156.1 +594,162,239.9,238.8,238.2,237.5,228.8,214.6,212.1,211.2,209.9,193.1,157.8,192.4,177.6,169.7,160,159.3,156.9,156.1 +595,162,240,238.9,238.3,237.6,228.9,214.7,212.2,211.3,210,193.4,157.8,192.6,178.5,170.6,160.1,159.3,156.9,156.1 +596,162,240.1,239,238.4,237.7,229,214.9,212.4,211.5,210.2,193.6,157.8,192.8,179.3,171.5,161.1,159.4,157,156.1 +597,162.1,240.2,239.1,238.5,237.8,229.1,215,212.5,211.6,210.3,193.8,157.9,193.1,180.1,172.4,162.6,159.4,157,156.1 +598,162.1,240.3,239.2,238.6,237.9,229.2,215.1,212.7,211.7,210.5,194.1,157.9,193.3,180.8,173.2,164.1,159.4,157,156.2 +599,162.1,240.4,239.3,238.7,238,229.3,215.2,212.8,211.9,210.6,194.3,157.9,193.5,181.5,174.5,165.3,159.4,157,156.2 +600,162.1,240.5,239.3,238.8,238.1,229.4,215.4,212.9,212,210.8,194.5,157.9,193.7,182.1,175.6,166.2,159.5,157,156.2 +601,162.1,240.6,239.4,238.9,238.2,229.5,215.5,213.1,212.2,210.9,194.7,157.9,193.9,182.7,176.6,167.1,159.5,157.1,156.2 +602,162.1,240.7,239.5,239,238.3,229.6,215.6,213.2,212.3,211,195,158,194.1,183.2,177.6,167.9,159.5,157.1,156.2 +603,162.1,240.8,239.6,239.1,238.4,229.7,215.7,213.3,212.4,211.2,195.2,158,194.3,183.7,178.4,168.8,159.5,157.1,156.3 +604,162.2,240.9,239.7,239.2,238.5,229.9,215.9,213.5,212.6,211.3,195.4,158,194.5,184.2,179.3,169.7,159.6,157.1,156.3 +605,162.2,240.9,239.8,239.3,238.6,230,216,213.6,212.7,211.5,195.6,158,194.7,184.6,180.1,170.6,159.6,157.1,156.3 +606,162.2,241,239.9,239.4,238.7,230.1,216.1,213.7,212.9,211.6,195.8,158.1,194.9,185.1,180.8,171.4,159.6,157.2,156.3 +607,162.2,241.1,240,239.5,238.7,230.2,216.2,213.9,213,211.8,196,158.1,195.1,185.5,181.4,172.3,159.7,157.2,156.3 +608,162.2,241.2,240.1,239.6,238.8,230.3,216.4,214,213.1,211.9,196.2,158.1,195.2,185.9,182,173.2,159.7,157.2,156.4 +609,162.2,241.3,240.2,239.7,238.9,230.4,216.5,214.1,213.3,212,196.5,158.1,195.4,186.3,182.6,174.1,159.7,157.2,156.4 +610,162.2,241.4,240.3,239.8,239,230.5,216.6,214.3,213.4,212.2,196.7,158.1,195.6,186.7,183.1,175.3,159.7,157.2,156.4 +611,162.3,241.5,240.4,239.9,239.1,230.6,216.7,214.4,213.5,212.3,196.9,158.2,195.8,187.1,183.6,176.4,159.8,157.3,156.4 +612,162.3,241.6,240.5,240,239.2,230.7,216.8,214.5,213.7,212.5,197.1,158.2,195.9,187.4,184.1,177.4,159.8,157.3,156.4 +613,162.3,241.7,240.6,240,239.3,230.8,217,214.7,213.8,212.6,197.3,158.2,196.1,187.8,184.6,178.3,159.8,157.3,156.5 +614,162.3,241.7,240.6,240.1,239.4,231,217.1,214.8,213.9,212.7,197.5,158.2,196.3,188.1,185.1,179.1,159.8,157.3,156.5 +615,162.3,241.8,240.7,240.2,239.5,231.1,217.2,214.9,214.1,212.9,197.7,158.2,196.4,188.4,185.5,179.9,159.9,157.3,156.5 +616,162.3,241.9,240.8,240.3,239.6,231.2,217.3,215.1,214.2,213,197.9,158.3,196.6,188.8,185.9,180.7,159.9,157.4,156.5 +617,162.3,242,240.9,240.4,239.7,231.3,217.4,215.2,214.3,213.1,198.1,158.3,196.8,189.1,186.3,181.3,159.9,157.4,156.5 +618,162.4,242.1,241,240.5,239.8,231.4,217.6,215.3,214.5,213.3,198.3,158.3,196.9,189.4,186.7,181.9,159.9,157.4,156.6 +619,162.4,242.2,241.1,240.6,239.9,231.5,217.7,215.5,214.6,213.4,198.5,158.3,197.1,189.7,187.1,182.5,160,157.4,156.6 +620,162.4,242.3,241.2,240.7,240,231.6,217.8,215.6,214.7,213.6,198.7,158.4,197.3,190,187.4,183,160,157.5,156.6 +621,162.4,242.4,241.3,240.8,240.1,231.7,217.9,215.7,214.9,213.7,198.9,158.4,197.4,190.3,187.8,183.6,160,157.5,156.6 +622,162.4,242.4,241.4,240.9,240.2,231.8,218,215.8,215,213.8,199.1,158.4,197.6,190.5,188.1,184.1,160,157.5,156.6 +623,162.4,242.5,241.5,241,240.3,231.9,218.2,216,215.1,214,199.2,158.4,197.7,190.8,188.5,184.5,160.1,157.5,156.6 +624,162.4,242.6,241.6,241.1,240.4,232,218.3,216.1,215.3,214.1,199.4,158.4,197.9,191.1,188.8,185,160.1,157.5,156.7 +625,162.5,242.7,241.6,241.2,240.5,232.2,218.4,216.2,215.4,214.2,199.6,158.5,198,191.3,189.1,185.4,160.1,157.6,156.7 +626,162.5,242.8,241.7,241.2,240.5,232.3,218.5,216.4,215.5,214.4,199.8,158.5,198.2,191.6,189.4,185.9,160.2,157.6,156.7 +627,162.5,242.9,241.8,241.3,240.6,232.4,218.6,216.5,215.7,214.5,200,158.5,198.4,191.9,189.7,186.3,160.2,157.6,156.7 +628,162.5,243,241.9,241.4,240.7,232.5,218.8,216.6,215.8,214.6,200.2,158.5,198.5,192.1,190,186.7,160.2,157.6,156.7 +629,162.5,243,242,241.5,240.8,232.6,218.9,216.7,215.9,214.8,200.4,158.5,198.7,192.4,190.3,187.1,160.2,157.6,156.8 +630,162.5,243.1,242.1,241.6,240.9,232.7,219,216.9,216,214.9,200.6,158.6,198.8,192.6,190.6,187.4,160.3,157.7,156.8 +631,162.5,243.2,242.2,241.7,241,232.8,219.1,217,216.2,215,200.8,158.6,199,192.8,190.9,187.8,160.3,157.7,156.8 +632,162.6,243.3,242.3,241.8,241.1,232.9,219.2,217.1,216.3,215.2,200.9,158.6,199.1,193.1,191.1,188.1,160.3,157.7,156.8 +633,162.6,243.4,242.4,241.9,241.2,233,219.3,217.2,216.4,215.3,201.1,158.6,199.3,193.3,191.4,188.5,160.3,157.7,156.8 +634,162.6,243.5,242.4,242,241.3,233.1,219.5,217.4,216.6,215.4,201.3,158.7,199.4,193.5,191.7,188.8,160.4,157.7,156.9 +635,162.6,243.6,242.5,242.1,241.4,233.2,219.6,217.5,216.7,215.6,201.5,158.7,199.6,193.8,191.9,189.1,160.4,157.8,156.9 +636,162.6,243.6,242.6,242.1,241.5,233.3,219.7,217.6,216.8,215.7,201.7,158.7,199.7,194,192.2,189.4,160.4,157.8,156.9 +637,162.6,243.7,242.7,242.2,241.6,233.4,219.8,217.7,216.9,215.8,201.9,158.7,199.9,194.2,192.4,189.7,160.4,157.8,156.9 +638,162.6,243.8,242.8,242.3,241.6,233.6,219.9,217.9,217.1,215.9,202,158.7,200,194.4,192.7,190,160.5,157.8,156.9 +639,162.6,243.9,242.9,242.4,241.7,233.7,220,218,217.2,216.1,202.2,158.8,200.2,194.7,192.9,190.3,160.5,157.8,157 +640,162.7,244,243,242.5,241.8,233.8,220.2,218.1,217.3,216.2,202.4,158.8,200.3,194.9,193.2,190.6,160.5,157.9,157 +641,162.7,244.1,243.1,242.6,241.9,233.9,220.3,218.2,217.4,216.3,202.6,158.8,200.5,195.1,193.4,190.9,160.5,157.9,157 +642,162.7,244.1,243.1,242.7,242,234,220.4,218.4,217.6,216.5,202.8,158.8,200.6,195.3,193.6,191.2,160.6,157.9,157 +643,162.7,244.2,243.2,242.8,242.1,234.1,220.5,218.5,217.7,216.6,202.9,158.8,200.8,195.5,193.9,191.4,160.6,157.9,157 +644,162.7,244.3,243.3,242.8,242.2,234.2,220.6,218.6,217.8,216.7,203.1,158.9,201,195.7,194.1,191.7,160.6,157.9,157 +645,162.7,244.4,243.4,242.9,242.3,234.3,220.7,218.7,217.9,216.8,203.3,158.9,201.1,195.9,194.3,192,160.7,158,157.1 +646,162.7,244.5,243.5,243,242.4,234.4,220.8,218.9,218.1,217,203.5,158.9,201.3,196.1,194.5,192.2,160.7,158,157.1 +647,162.8,244.6,243.6,243.1,242.5,234.5,221,219,218.2,217.1,203.6,158.9,201.4,196.3,194.8,192.5,160.7,158,157.1 +648,162.8,244.6,243.7,243.2,242.5,234.6,221.1,219.1,218.3,217.2,203.8,158.9,201.6,196.5,195,192.7,160.7,158,157.1 +649,162.8,244.7,243.7,243.3,242.6,234.7,221.2,219.2,218.4,217.4,204,159,201.7,196.7,195.2,193,160.8,158,157.1 +650,162.8,244.8,243.8,243.4,242.7,234.8,221.3,219.3,218.6,217.5,204.2,159,201.9,197,195.4,193.2,160.8,158.1,157.2 +651,162.8,244.9,243.9,243.5,242.8,234.9,221.4,219.5,218.7,217.6,204.3,159,202,197.2,195.6,193.5,160.8,158.1,157.2 +652,162.8,245,244,243.5,242.9,235,221.5,219.6,218.8,217.7,204.5,159,202.2,197.3,195.8,193.7,160.8,158.1,157.2 +653,162.8,245.1,244.1,243.6,243,235.1,221.6,219.7,218.9,217.9,204.7,159,202.3,197.5,196,193.9,160.9,158.1,157.2 +654,162.8,245.1,244.2,243.7,243.1,235.2,221.8,219.8,219.1,218,204.8,159.1,202.5,197.7,196.3,194.2,160.9,158.1,157.2 +655,162.9,245.2,244.3,243.8,243.2,235.3,221.9,220,219.2,218.1,205,159.1,202.6,197.9,196.5,194.4,160.9,158.2,157.2 +656,162.9,245.3,244.3,243.9,243.2,235.5,222,220.1,219.3,218.2,205.2,159.1,202.8,198.1,196.7,194.6,161,158.2,157.3 +657,162.9,245.4,244.4,244,243.3,235.6,222.1,220.2,219.4,218.4,205.3,159.1,202.9,198.3,196.9,194.8,161,158.2,157.3 +658,162.9,245.5,244.5,244.1,243.4,235.7,222.2,220.3,219.6,218.5,205.5,159.2,203.1,198.5,197.1,195.1,161,158.2,157.3 +659,162.9,245.6,244.6,244.1,243.5,235.8,222.3,220.4,219.7,218.6,205.7,159.2,203.2,198.7,197.3,195.3,161,158.2,157.3 +660,162.9,245.6,244.7,244.2,243.6,235.9,222.4,220.6,219.8,218.7,205.9,159.2,203.4,198.9,197.5,195.5,161.1,158.3,157.3 +661,162.9,245.7,244.8,244.3,243.7,236,222.5,220.7,219.9,218.9,206,159.2,203.5,199.1,197.7,195.7,161.1,158.3,157.4 +662,162.9,245.8,244.8,244.4,243.8,236.1,222.7,220.8,220,219,206.2,159.2,203.7,199.3,197.9,195.9,161.1,158.3,157.4 +663,163,245.9,244.9,244.5,243.8,236.2,222.8,220.9,220.2,219.1,206.3,159.3,203.8,199.5,198.1,196.1,161.1,158.3,157.4 +664,163,246,245,244.6,243.9,236.3,222.9,221,220.3,219.2,206.5,159.3,204,199.7,198.3,196.3,161.2,158.3,157.4 +665,163,246,245.1,244.6,244,236.4,223,221.1,220.4,219.4,206.7,159.3,204.1,199.8,198.5,196.5,161.2,158.4,157.4 +666,163,246.1,245.2,244.7,244.1,236.5,223.1,221.3,220.5,219.5,206.8,159.3,204.3,200,198.7,196.8,161.2,158.4,157.4 +667,163,246.2,245.3,244.8,244.2,236.6,223.2,221.4,220.6,219.6,207,159.3,204.4,200.2,198.9,197,161.3,158.4,157.5 +668,163,246.3,245.3,244.9,244.3,236.7,223.3,221.5,220.8,219.7,207.2,159.4,204.6,200.4,199,197.2,161.3,158.4,157.5 +669,163,246.4,245.4,245,244.4,236.8,223.4,221.6,220.9,219.8,207.3,159.4,204.7,200.6,199.2,197.4,161.3,158.4,157.5 +670,163.1,246.4,245.5,245.1,244.4,236.9,223.6,221.7,221,220,207.5,159.4,204.9,200.8,199.4,197.6,161.3,158.4,157.5 +671,163.1,246.5,245.6,245.1,244.5,237,223.7,221.9,221.1,220.1,207.6,159.4,205,201,199.6,197.8,161.4,158.5,157.5 +672,163.1,246.6,245.7,245.2,244.6,237.1,223.8,222,221.2,220.2,207.8,159.4,205.2,201.1,199.8,198,161.4,158.5,157.6 +673,163.1,246.7,245.7,245.3,244.7,237.2,223.9,222.1,221.4,220.3,208,159.5,205.3,201.3,200,198.2,161.4,158.5,157.6 +674,163.1,246.8,245.8,245.4,244.8,237.3,224,222.2,221.5,220.4,208.1,159.5,205.5,201.5,200.2,198.4,161.5,158.5,157.6 +675,163.1,246.9,245.9,245.5,244.9,237.4,224.1,222.3,221.6,220.6,208.3,159.5,205.6,201.7,200.4,198.6,161.5,158.5,157.6 +676,163.1,246.9,246,245.6,244.9,237.5,224.2,222.4,221.7,220.7,208.4,159.5,205.8,201.9,200.6,198.8,161.5,158.6,157.6 +677,163.1,247,246.1,245.6,245,237.6,224.3,222.6,221.8,220.8,208.6,159.5,205.9,202,200.7,199,161.5,158.6,157.6 +678,163.2,247.1,246.2,245.7,245.1,237.7,224.4,222.7,221.9,220.9,208.8,159.6,206.1,202.2,200.9,199.1,161.6,158.6,157.7 +679,163.2,247.2,246.2,245.8,245.2,237.8,224.6,222.8,222.1,221,208.9,159.6,206.2,202.4,201.1,199.3,161.6,158.6,157.7 +680,163.2,247.3,246.3,245.9,245.3,237.9,224.7,222.9,222.2,221.2,209.1,159.6,206.4,202.6,201.3,199.5,161.6,158.6,157.7 +681,163.2,247.3,246.4,246,245.4,238,224.8,223,222.3,221.3,209.2,159.6,206.5,202.7,201.5,199.7,161.7,158.7,157.7 +682,163.2,247.4,246.5,246.1,245.4,238.1,224.9,223.1,222.4,221.4,209.4,159.6,206.7,202.9,201.7,199.9,161.7,158.7,157.7 +683,163.2,247.5,246.6,246.1,245.5,238.2,225,223.3,222.5,221.5,209.5,159.7,206.8,203.1,201.8,200.1,161.7,158.7,157.7 +684,163.2,247.6,246.6,246.2,245.6,238.3,225.1,223.4,222.6,221.6,209.7,159.7,207,203.3,202,200.3,161.7,158.7,157.8 +685,163.2,247.7,246.7,246.3,245.7,238.4,225.2,223.5,222.8,221.8,209.8,159.7,207.1,203.4,202.2,200.5,161.8,158.7,157.8 +686,163.3,247.7,246.8,246.4,245.8,238.5,225.3,223.6,222.9,221.9,210,159.7,207.3,203.6,202.4,200.7,161.8,158.8,157.8 +687,163.3,247.8,246.9,246.5,245.9,238.6,225.4,223.7,223,222,210.1,159.7,207.4,203.8,202.6,200.9,161.8,158.8,157.8 +688,163.3,247.9,247,246.5,245.9,238.7,225.5,223.8,223.1,222.1,210.3,159.8,207.5,204,202.7,201,161.9,158.8,157.8 +689,163.3,248,247.1,246.6,246,238.8,225.7,223.9,223.2,222.2,210.4,159.8,207.7,204.1,202.9,201.2,161.9,158.8,157.8 +690,163.3,248.1,247.1,246.7,246.1,238.9,225.8,224.1,223.3,222.3,210.6,159.8,207.8,204.3,203.1,201.4,161.9,158.8,157.9 +691,163.3,248.1,247.2,246.8,246.2,239,225.9,224.2,223.5,222.5,210.7,159.8,208,204.5,203.3,201.6,161.9,158.8,157.9 +692,163.3,248.2,247.3,246.9,246.3,239.1,226,224.3,223.6,222.6,210.9,159.8,208.1,204.6,203.4,201.8,162,158.9,157.9 +693,163.3,248.3,247.4,246.9,246.4,239.2,226.1,224.4,223.7,222.7,211,159.9,208.3,204.8,203.6,202,162,158.9,157.9 +694,163.4,248.4,247.5,247,246.4,239.3,226.2,224.5,223.8,222.8,211.2,159.9,208.4,205,203.8,202.1,162,158.9,157.9 +695,163.4,248.5,247.5,247.1,246.5,239.4,226.3,224.6,223.9,222.9,211.3,159.9,208.6,205.1,204,202.3,162.1,158.9,158 +696,163.4,248.6,247.6,247.2,246.6,239.5,226.4,224.7,224,223,211.5,159.9,208.7,205.3,204.1,202.5,162.1,158.9,158 +697,163.4,248.6,247.7,247.3,246.7,239.6,226.5,224.9,224.2,223.2,211.6,159.9,208.8,205.5,204.3,202.7,162.1,159,158 +698,163.4,248.7,247.8,247.4,246.8,239.7,226.6,225,224.3,223.3,211.8,160,209,205.6,204.5,202.9,162.2,159,158 +699,163.4,248.8,247.9,247.4,246.8,239.8,226.7,225.1,224.4,223.4,211.9,160,209.1,205.8,204.6,203,165.6,159,158 +700,163.4,248.9,247.9,247.5,246.9,239.9,226.9,225.2,224.5,223.5,212.1,160,209.3,206,204.8,203.2,169.3,159,158 +701,163.4,249,248,247.6,247,240,227,225.3,224.6,223.6,212.2,160,209.4,206.1,205,203.4,170.2,159,158.1 +702,163.5,249,248.1,247.7,247.1,240.1,227.1,225.4,224.7,223.7,212.4,160,209.6,206.3,205.2,203.6,170.8,159.1,158.1 +703,163.5,249.1,248.2,247.8,247.2,240.2,227.2,225.5,224.8,223.9,212.5,160.1,209.7,206.5,205.3,203.7,171.3,159.1,158.1 +704,163.5,249.2,248.3,247.8,247.2,240.3,227.3,225.7,225,224,212.6,160.1,209.8,206.6,205.5,203.9,171.8,159.1,158.1 +705,163.5,249.3,248.4,247.9,247.3,240.4,227.4,225.8,225.1,224.1,212.8,160.1,210,206.8,205.7,204.1,172.4,159.1,158.1 +706,163.5,249.4,248.4,248,247.4,240.5,227.5,225.9,225.2,224.2,212.9,160.1,210.1,207,205.8,204.3,172.9,159.1,158.1 +707,163.5,249.5,248.5,248.1,247.5,240.6,227.6,226,225.3,224.3,213.1,160.1,210.3,207.1,206,204.4,173.4,159.1,158.2 +708,163.5,249.5,248.6,248.2,247.6,240.7,227.7,226.1,225.4,224.4,213.2,160.2,210.4,207.3,206.2,204.6,174,159.2,158.2 +709,163.5,249.6,248.7,248.3,247.7,240.8,227.8,226.2,225.5,224.6,213.4,160.2,210.5,207.4,206.3,204.8,174.5,159.2,158.2 +710,163.6,249.7,248.8,248.3,247.7,240.9,227.9,226.3,225.6,224.7,213.5,160.2,210.7,207.6,206.5,204.9,175,159.2,158.2 +711,163.6,249.8,248.8,248.4,247.8,241,228.1,226.4,225.8,224.8,213.6,160.2,210.8,207.7,206.6,205.1,175.5,159.2,158.2 +712,163.6,249.9,248.9,248.5,247.9,241.1,228.2,226.6,225.9,224.9,213.8,160.2,211,207.9,206.8,205.3,176.1,159.2,158.2 +713,163.6,249.9,249,248.6,248,241.2,228.3,226.7,226,225,213.9,160.3,211.1,208.1,207,205.5,177.7,159.3,158.3 +714,163.6,250,249.1,248.7,248.1,241.3,228.4,226.8,226.1,225.1,214.1,160.3,211.2,208.2,207.1,205.6,178.7,159.3,158.3 +715,163.6,250.1,249.2,248.7,248.1,241.4,228.5,226.9,226.2,225.2,214.2,160.3,211.4,208.4,207.3,205.8,179.6,159.3,158.3 +716,163.6,250.2,249.3,248.8,248.2,241.4,228.6,227,226.3,225.4,214.3,160.3,211.5,208.5,207.5,206,180.5,159.3,158.3 +717,163.6,250.3,249.3,248.9,248.3,241.5,228.7,227.1,226.4,225.5,214.5,160.3,211.6,208.7,207.6,206.1,181.3,159.3,158.3 +718,163.7,250.4,249.4,249,248.4,241.6,228.8,227.2,226.5,225.6,214.6,160.4,211.8,208.8,207.8,206.3,182,159.4,158.3 +719,163.7,250.4,249.5,249.1,248.5,241.7,228.9,227.3,226.7,225.7,214.7,160.4,211.9,209,207.9,206.5,182.7,159.4,158.4 +720,163.7,250.5,249.6,249.2,248.6,241.8,229,227.5,226.8,225.8,214.9,160.4,212,209.2,208.1,206.6,183.3,159.4,158.4 +721,163.7,250.6,249.7,249.2,248.6,241.9,229.1,227.6,226.9,225.9,215,160.4,212.2,209.3,208.3,206.8,183.8,159.4,158.4 +722,163.7,250.7,249.7,249.3,248.7,242,229.2,227.7,227,226,215.2,160.4,212.3,209.5,208.4,206.9,184.4,159.4,158.4 +723,163.7,250.8,249.8,249.4,248.8,242.1,229.3,227.8,227.1,226.1,215.3,160.5,212.4,209.6,208.6,207.1,184.9,159.4,158.4 +724,163.7,250.9,249.9,249.5,248.9,242.2,229.5,227.9,227.2,226.3,215.4,160.5,212.6,209.8,208.7,207.3,185.4,159.5,158.4 +725,163.7,250.9,250,249.6,249,242.3,229.6,228,227.3,226.4,215.6,160.5,212.7,209.9,208.9,207.4,185.9,159.5,158.5 +726,163.7,251,250.1,249.6,249,242.4,229.7,228.1,227.4,226.5,215.7,160.5,212.9,210.1,209,207.6,186.4,159.5,158.5 +727,163.8,251.1,250.2,249.7,249.1,242.5,229.8,228.2,227.6,226.6,215.8,160.5,213,210.2,209.2,207.8,186.8,159.5,158.5 +728,163.8,251.2,250.2,249.8,249.2,242.6,229.9,228.3,227.7,226.7,216,160.6,213.1,210.4,209.3,207.9,187.2,159.5,158.5 +729,163.8,251.3,250.3,249.9,249.3,242.7,230,228.5,227.8,226.8,216.1,160.6,213.2,210.5,209.5,208.1,187.6,159.6,158.5 +730,163.8,251.4,250.4,250,249.4,242.8,230.1,228.6,227.9,226.9,216.2,160.6,213.4,210.7,209.6,208.2,188,159.6,158.5 +731,163.8,251.4,250.5,250.1,249.5,242.8,230.2,228.7,228,227.1,216.4,160.6,213.5,210.8,209.8,208.4,188.4,159.6,158.6 +732,163.8,251.5,250.6,250.1,249.5,242.9,230.3,228.8,228.1,227.2,216.5,160.6,213.6,211,209.9,208.5,188.8,159.6,158.6 +733,163.8,251.6,250.7,250.2,249.6,243,230.4,228.9,228.2,227.3,216.6,160.7,213.8,211.1,210.1,208.7,189.2,159.6,158.6 +734,163.8,251.7,250.7,250.3,249.7,243.1,230.5,229,228.3,227.4,216.8,160.7,213.9,211.2,210.2,208.9,189.5,159.6,158.6 +735,163.9,251.8,250.8,250.4,249.8,243.2,230.6,229.1,228.4,227.5,216.9,160.7,214,211.4,210.4,209,189.8,159.7,158.6 +736,163.9,251.9,250.9,250.5,249.9,243.3,230.7,229.2,228.6,227.6,217,160.7,214.2,211.5,210.5,209.2,190.2,159.7,158.6 +737,163.9,251.9,251,250.6,249.9,243.4,230.8,229.3,228.7,227.7,217.2,160.7,214.3,211.7,210.7,209.3,190.5,159.7,158.7 +738,163.9,252,251.1,250.6,250,243.5,231,229.4,228.8,227.8,217.3,160.8,214.4,211.8,210.8,209.5,190.8,159.7,158.7 +739,163.9,252.1,251.2,250.7,250.1,243.6,231.1,229.6,228.9,227.9,217.4,160.8,214.6,212,211,209.6,191.1,159.7,158.7 +740,163.9,252.2,251.2,250.8,250.2,243.7,231.2,229.7,229,228.1,217.6,160.8,214.7,212.1,211.1,209.8,191.4,159.8,158.7 +741,163.9,252.3,251.3,250.9,250.3,243.8,231.3,229.8,229.1,228.2,217.7,160.8,214.8,212.3,211.3,209.9,191.7,159.8,158.7 +742,163.9,252.4,251.4,251,250.4,243.8,231.4,229.9,229.2,228.3,217.8,160.8,214.9,212.4,211.4,210.1,192,159.8,158.7 +743,163.9,252.4,251.5,251.1,250.4,243.9,231.5,230,229.3,228.4,217.9,160.9,215.1,212.5,211.6,210.2,192.3,159.8,158.8 +744,164,252.5,251.6,251.1,250.5,244,231.6,230.1,229.4,228.5,218.1,160.9,215.2,212.7,211.7,210.4,192.6,159.8,158.8 +745,164,252.6,251.7,251.2,250.6,244.1,231.7,230.2,229.5,228.6,218.2,160.9,215.3,212.8,211.9,210.5,192.8,159.8,158.8 +746,164,252.7,251.7,251.3,250.7,244.2,231.8,230.3,229.7,228.7,218.3,160.9,215.5,213,212,210.7,193.1,159.9,158.8 +747,164,252.8,251.8,251.4,250.8,244.3,231.9,230.4,229.8,228.8,218.5,160.9,215.6,213.1,212.2,210.8,193.4,159.9,158.8 +748,164,252.9,251.9,251.5,250.9,244.4,232,230.5,229.9,229,218.6,161,215.7,213.3,212.3,211,193.6,159.9,158.8 +749,164,252.9,252,251.6,250.9,244.5,232.1,230.7,230,229.1,218.7,161,215.8,213.4,212.5,211.1,193.9,159.9,158.8 +750,164,253,252.1,251.6,251,244.6,232.2,230.8,230.1,229.2,218.8,161,216,213.5,212.6,211.3,194.1,159.9,158.9 +751,164,253.1,252.2,251.7,251.1,244.6,232.3,230.9,230.2,229.3,219,161,216.1,213.7,212.7,211.4,194.4,159.9,158.9 +752,164.1,253.2,252.2,251.8,251.2,244.7,232.4,231,230.3,229.4,219.1,161,216.2,213.8,212.9,211.6,194.6,160,158.9 +753,164.1,253.3,252.3,251.9,251.3,244.8,232.5,231.1,230.4,229.5,219.2,161.1,216.3,213.9,213,211.7,194.8,160,158.9 +754,164.1,253.4,252.4,252,251.4,244.9,232.6,231.2,230.5,229.6,219.3,161.1,216.5,214.1,213.2,211.9,195.1,160,158.9 +755,164.1,253.4,252.5,252.1,251.4,245,232.8,231.3,230.6,229.7,219.5,161.1,216.6,214.2,213.3,212,195.3,160,158.9 +756,164.1,253.5,252.6,252.1,251.5,245.1,232.9,231.4,230.8,229.8,219.6,161.1,216.7,214.4,213.4,212.2,195.5,160,159 +757,164.1,253.6,252.7,252.2,251.6,245.2,233,231.5,230.9,229.9,219.7,161.1,216.8,214.5,213.6,212.3,195.8,160.1,159 +758,164.1,253.7,252.7,252.3,251.7,245.3,233.1,231.6,231,230.1,219.8,161.2,217,214.6,213.7,212.4,196,160.1,159 +759,164.1,253.8,252.8,252.4,251.8,245.3,233.2,231.7,231.1,230.2,220,161.2,217.1,214.8,213.9,212.6,196.2,160.1,159 +760,164.1,253.9,252.9,252.5,251.9,245.4,233.3,231.8,231.2,230.3,220.1,161.2,217.2,214.9,214,212.7,196.4,160.1,159 +761,164.2,253.9,253,252.6,251.9,245.5,233.4,232,231.3,230.4,220.2,161.2,217.3,215,214.1,212.9,196.7,160.1,159 +762,164.2,254,253.1,252.6,252,245.6,233.5,232.1,231.4,230.5,220.3,161.2,217.5,215.2,214.3,213,196.9,160.1,159.1 +763,164.2,254.1,253.2,252.7,252.1,245.7,233.6,232.2,231.5,230.6,220.5,161.3,217.6,215.3,214.4,213.2,197.1,160.2,159.1 +764,164.2,254.2,253.2,252.8,252.2,245.8,233.7,232.3,231.6,230.7,220.6,161.3,217.7,215.4,214.6,213.3,197.3,160.2,159.1 +765,164.2,254.3,253.3,252.9,252.3,245.9,233.8,232.4,231.7,230.8,220.7,161.3,217.8,215.6,214.7,213.4,197.5,160.2,159.1 +766,164.2,254.4,253.4,253,252.4,245.9,233.9,232.5,231.8,230.9,220.8,161.3,218,215.7,214.8,213.6,197.7,160.2,159.1 +767,164.2,254.4,253.5,253.1,252.4,246,234,232.6,232,231,221,161.3,218.1,215.8,215,213.7,197.9,160.2,159.1 +768,164.2,254.5,253.6,253.1,252.5,246.1,234.1,232.7,232.1,231.2,221.1,161.4,218.2,216,215.1,213.9,198.2,160.3,159.1 +769,164.2,254.6,253.7,253.2,252.6,246.2,234.2,232.8,232.2,231.3,221.2,161.4,218.3,216.1,215.2,214,198.4,160.3,159.2 +770,164.3,254.7,253.7,253.3,252.7,246.3,234.3,232.9,232.3,231.4,221.3,161.4,218.4,216.2,215.4,214.1,198.6,160.3,159.2 +771,164.3,254.8,253.8,253.4,252.8,246.4,234.4,233,232.4,231.5,221.5,161.4,218.6,216.4,215.5,214.3,198.8,160.3,159.2 +772,164.3,254.8,253.9,253.5,252.9,246.4,234.5,233.1,232.5,231.6,221.6,161.4,218.7,216.5,215.6,214.4,199,160.3,159.2 +773,164.3,254.9,254,253.6,252.9,246.5,234.6,233.2,232.6,231.7,221.7,161.5,218.8,216.6,215.8,214.6,199.2,160.3,159.2 +774,164.3,255,254.1,253.6,253,246.6,234.7,233.4,232.7,231.8,221.8,161.5,218.9,216.8,215.9,214.7,199.4,160.4,159.2 +775,164.3,255.1,254.2,253.7,253.1,246.7,234.8,233.5,232.8,231.9,221.9,161.5,219,216.9,216,214.8,199.6,160.4,159.3 +776,164.3,255.2,254.2,253.8,253.2,246.8,234.9,233.6,232.9,232,222.1,161.5,219.2,217,216.2,215,199.8,160.4,159.3 +777,164.3,255.3,254.3,253.9,253.3,246.9,235,233.7,233,232.1,222.2,161.5,219.3,217.2,216.3,215.1,200,160.4,159.3 +778,164.3,255.3,254.4,254,253.4,247,235.2,233.8,233.1,232.2,222.3,161.6,219.4,217.3,216.4,215.2,200.2,160.4,159.3 +779,164.4,255.4,254.5,254.1,253.4,247,235.3,233.9,233.2,232.4,222.4,161.6,219.5,217.4,216.6,215.4,200.4,160.4,159.3 +780,164.4,255.5,254.6,254.1,253.5,247.1,235.4,234,233.4,232.5,222.5,161.6,219.6,217.5,216.7,215.5,200.6,160.5,159.3 +781,164.4,255.6,254.7,254.2,253.6,247.2,235.5,234.1,233.5,232.6,222.7,161.6,219.8,217.7,216.8,215.6,200.7,160.5,159.3 +782,164.4,255.7,254.7,254.3,253.7,247.3,235.6,234.2,233.6,232.7,222.8,161.6,219.9,217.8,217,215.8,200.9,160.5,159.4 +783,164.4,255.7,254.8,254.4,253.8,247.4,235.7,234.3,233.7,232.8,222.9,161.7,220,217.9,217.1,215.9,201.1,160.5,159.4 +784,164.4,255.8,254.9,254.5,253.9,247.4,235.8,234.4,233.8,232.9,223,161.7,220.1,218.1,217.2,216.1,201.3,160.5,159.4 +785,164.4,255.9,255,254.6,253.9,247.5,235.9,234.5,233.9,233,223.1,161.7,220.2,218.2,217.3,216.2,201.5,160.6,159.4 +786,164.4,256,255.1,254.6,254,247.6,236,234.6,234,233.1,223.3,161.7,220.4,218.3,217.5,216.3,201.7,160.6,159.4 +787,164.4,256.1,255.1,254.7,254.1,247.7,236.1,234.7,234.1,233.2,223.4,161.7,220.5,218.4,217.6,216.4,201.9,160.6,159.4 +788,164.5,256.2,255.2,254.8,254.2,247.8,236.2,234.8,234.2,233.3,223.5,161.8,220.6,218.6,217.7,216.6,202.1,160.6,159.5 +789,164.5,256.2,255.3,254.9,254.3,247.9,236.3,234.9,234.3,233.4,223.6,161.8,220.7,218.7,217.9,216.7,202.3,160.6,159.5 +790,164.5,256.3,255.4,255,254.4,247.9,236.4,235.1,234.4,233.5,223.7,161.8,220.8,218.8,218,216.8,202.4,160.6,159.5 +791,164.5,256.4,255.5,255,254.4,248,236.5,235.2,234.5,233.6,223.9,161.8,220.9,218.9,218.1,217,202.6,160.7,159.5 +792,164.5,256.5,255.6,255.1,254.5,248.1,236.6,235.3,234.6,233.7,224,161.8,221.1,219.1,218.2,217.1,202.8,160.7,159.5 +793,164.5,256.6,255.6,255.2,254.6,248.2,236.7,235.4,234.7,233.9,224.1,161.9,221.2,219.2,218.4,217.2,203,160.7,159.5 +794,164.5,256.6,255.7,255.3,254.7,248.3,236.8,235.5,234.8,234,224.2,161.9,221.3,219.3,218.5,217.4,203.2,160.7,159.5 +795,164.5,256.7,255.8,255.4,254.8,248.4,236.9,235.6,235,234.1,224.3,161.9,221.4,219.4,218.6,217.5,203.4,160.7,159.6 +796,164.5,256.8,255.9,255.5,254.9,248.4,237,235.7,235.1,234.2,224.4,161.9,221.5,219.6,218.8,217.6,203.5,160.7,159.6 +797,164.6,256.9,256,255.5,254.9,248.5,237.1,235.8,235.2,234.3,224.6,161.9,221.6,219.7,218.9,217.8,203.7,160.8,159.6 +798,164.6,257,256,255.6,255,248.6,237.2,235.9,235.3,234.4,224.7,162,221.8,219.8,219,217.9,203.9,160.8,159.6 +799,164.6,257,256.1,255.7,255.1,248.7,237.3,236,235.4,234.5,224.8,162,221.9,219.9,219.1,218,204.1,160.8,159.6 +800,164.6,257.1,256.2,255.8,255.2,248.8,237.4,236.1,235.5,234.6,224.9,162,222,220.1,219.3,218.1,204.3,160.8,159.6 +801,164.6,257.2,256.3,255.9,255.3,248.8,237.5,236.2,235.6,234.7,225,162,222.1,220.2,219.4,218.3,204.4,160.8,159.6 +802,164.6,257.3,256.4,255.9,255.3,248.9,237.6,236.3,235.7,234.8,225.1,162.1,222.2,220.3,219.5,218.4,204.6,160.8,159.7 +803,164.6,257.4,256.5,256,255.4,249,237.7,236.4,235.8,234.9,225.3,162.1,222.3,220.4,219.6,218.5,204.8,160.9,159.7 +804,164.6,257.4,256.5,256.1,255.5,249.1,237.8,236.5,235.9,235,225.4,162.1,222.4,220.5,219.8,218.7,205,160.9,159.7 +805,164.6,257.5,256.6,256.2,255.6,249.2,237.9,236.6,236,235.1,225.5,162.1,222.6,220.7,219.9,218.8,205.1,160.9,159.7 +806,164.7,257.6,256.7,256.3,255.7,249.2,238,236.7,236.1,235.2,225.6,162.1,222.7,220.8,220,218.9,205.3,160.9,159.7 +807,164.7,257.7,256.8,256.4,255.8,249.3,238.1,236.8,236.2,235.3,225.7,162.2,222.8,220.9,220.1,219,205.5,160.9,159.7 +808,164.7,257.8,256.9,256.4,255.8,249.4,238.2,236.9,236.3,235.4,225.8,162.2,222.9,221,220.3,219.2,205.7,161,159.8 +809,164.7,257.8,256.9,256.5,255.9,249.5,238.3,237,236.4,235.6,226,162.2,223,221.2,220.4,219.3,205.8,161,159.8 +810,164.7,257.9,257,256.6,256,249.6,238.4,237.1,236.5,235.7,226.1,162.2,223.1,221.3,220.5,219.4,206,161,159.8 +811,164.7,258,257.1,256.7,256.1,249.7,238.5,237.2,236.6,235.8,226.2,162.2,223.2,221.4,220.6,219.5,206.2,161,159.8 +812,164.7,258.1,257.2,256.8,256.2,249.7,238.6,237.3,236.7,235.9,226.3,162.3,223.4,221.5,220.7,219.7,206.4,161,159.8 +813,164.7,258.2,257.3,256.8,256.2,249.8,238.7,237.4,236.8,236,226.4,162.3,223.5,221.6,220.9,219.8,206.5,161,159.8 +814,164.7,258.2,257.3,256.9,256.3,249.9,238.8,237.5,236.9,236.1,226.5,162.3,223.6,221.8,221,219.9,206.7,161.1,159.8 +815,164.7,258.3,257.4,257,256.4,250,238.9,237.6,237,236.2,226.6,162.3,223.7,221.9,221.1,220,206.9,161.1,159.9 +816,164.8,258.4,257.5,257.1,256.5,250.1,239,237.7,237.1,236.3,226.8,167.4,223.8,222,221.2,220.2,207,161.1,159.9 +817,164.8,258.5,257.6,257.2,256.6,250.1,239.1,237.8,237.2,236.4,226.9,174.8,223.9,222.1,221.4,220.3,207.2,161.1,159.9 +818,164.8,258.6,257.7,257.2,256.7,250.2,239.2,237.9,237.3,236.5,227,175.1,224,222.2,221.5,220.4,207.4,161.1,159.9 +819,164.8,258.6,257.7,257.3,256.7,250.3,239.3,238.1,237.4,236.6,227.1,175.4,224.1,222.4,221.6,220.5,207.5,161.1,159.9 +820,164.8,258.7,257.8,257.4,256.8,250.4,239.4,238.2,237.6,236.7,227.2,175.7,224.3,222.5,221.7,220.7,207.7,161.2,159.9 +821,164.8,258.8,257.9,257.5,256.9,250.5,239.5,238.3,237.7,236.8,227.3,176,224.4,222.6,221.8,220.8,207.9,161.2,159.9 +822,164.8,258.9,258,257.6,257,250.5,239.6,238.4,237.8,236.9,227.4,176.3,224.5,222.7,222,220.9,208,161.2,160 +823,164.8,259,258.1,257.6,257.1,250.6,239.7,238.5,237.9,237,227.6,176.6,224.6,222.8,222.1,221,208.2,161.2,160 +824,164.8,259,258.1,257.7,257.1,250.7,239.8,238.6,238,237.1,227.7,176.9,224.7,222.9,222.2,221.1,208.4,161.2,160 +825,164.9,259.1,258.2,257.8,257.2,250.8,239.9,238.7,238.1,237.2,227.8,177.2,224.8,223.1,222.3,221.3,208.5,161.2,160 +826,164.9,259.2,258.3,257.9,257.3,250.9,240,238.8,238.2,237.3,227.9,177.4,224.9,223.2,222.4,221.4,208.7,161.3,160 +827,164.9,259.3,258.4,258,257.4,251,240.1,238.9,238.3,237.4,228,177.7,225,223.3,222.5,221.5,208.8,161.3,160 +828,164.9,259.4,258.5,258,257.5,251,240.2,239,238.4,237.5,228.1,178,225.2,223.4,222.7,221.6,209,161.3,160 +829,164.9,259.4,258.5,258.1,257.5,251.1,240.3,239.1,238.5,237.6,228.2,178.3,225.3,223.5,222.8,221.7,209.2,161.3,160.1 +830,164.9,259.5,258.6,258.2,257.6,251.2,240.4,239.2,238.6,237.7,228.4,179.5,225.4,223.6,222.9,221.9,209.3,161.3,160.1 +831,164.9,259.6,258.7,258.3,257.7,251.3,240.5,239.3,238.7,237.8,228.5,180.5,225.5,223.8,223,222,209.5,161.4,160.1 +832,164.9,259.7,258.8,258.4,257.8,251.4,240.6,239.4,238.8,237.9,228.6,181.4,225.6,223.9,223.1,222.1,209.6,161.4,160.1 +833,164.9,259.8,258.9,258.4,257.9,251.4,240.7,239.5,238.9,238,228.7,182.2,225.7,224,223.3,222.2,209.8,161.4,160.1 +834,164.9,259.8,258.9,258.5,257.9,251.5,240.8,239.6,239,238.1,228.8,183,225.8,224.1,223.4,222.3,210,161.4,160.1 +835,165,259.9,259,258.6,258,251.6,240.8,239.7,239.1,238.2,228.9,183.7,225.9,224.2,223.5,222.5,210.1,161.4,160.1 +836,165,260,259.1,258.7,258.1,251.7,240.9,239.8,239.2,238.3,229,184.4,226,224.3,223.6,222.6,210.3,161.4,160.2 +837,165,260.1,259.2,258.8,258.2,251.8,241,239.9,239.3,238.4,229.1,185,226.2,224.5,223.7,222.7,210.4,161.5,160.2 +838,165,260.2,259.3,258.8,258.3,251.9,241.1,240,239.4,238.6,229.3,185.5,226.3,224.6,223.8,222.8,210.6,161.5,160.2 +839,165,260.2,259.3,258.9,258.3,251.9,241.2,240.1,239.5,238.7,229.4,186.1,226.4,224.7,224,222.9,210.7,161.5,160.2 +840,165,260.3,259.4,259,258.4,252,241.3,240.1,239.6,238.8,229.5,186.6,226.5,224.8,224.1,223.1,210.9,161.5,160.2 +841,165,260.4,259.5,259.1,258.5,252.1,241.4,240.2,239.7,238.9,229.6,187.1,226.6,224.9,224.2,223.2,211.1,161.5,160.2 +842,165,260.5,259.6,259.2,258.6,252.2,241.5,240.3,239.8,239,229.7,187.6,226.7,225,224.3,223.3,211.2,161.5,160.2 +843,165,260.5,259.7,259.2,258.7,252.3,241.6,240.4,239.9,239.1,229.8,188,226.8,225.2,224.4,223.4,211.4,161.6,160.3 +844,165.1,260.6,259.7,259.3,258.7,252.4,241.7,240.5,240,239.2,229.9,188.5,226.9,225.3,224.5,223.5,211.5,161.6,160.3 +845,165.1,260.7,259.8,259.4,258.8,252.4,241.8,240.6,240.1,239.3,230,188.9,227,225.4,224.7,223.6,211.7,161.6,160.3 +846,165.1,260.8,259.9,259.5,258.9,252.5,241.9,240.7,240.2,239.4,230.2,189.3,227.1,225.5,224.8,223.8,211.8,161.6,160.3 +847,165.1,260.9,260,259.6,259,252.6,242,240.8,240.3,239.5,230.3,189.7,227.3,225.6,224.9,223.9,212,161.6,160.3 +848,165.1,260.9,260,259.6,259.1,252.7,242.1,240.9,240.4,239.6,230.4,190.1,227.4,225.7,225,224,212.1,161.6,160.3 +849,165.1,261,260.1,259.7,259.1,252.8,242.2,241,240.5,239.7,230.5,190.4,227.5,225.8,225.1,224.1,212.3,161.7,160.3 +850,165.1,261.1,260.2,259.8,259.2,252.8,242.3,241.1,240.6,239.8,230.6,190.8,227.6,226,225.2,224.2,212.4,161.7,160.4 +851,165.1,261.2,260.3,259.9,259.3,252.9,242.4,241.2,240.7,239.9,230.7,191.1,227.7,226.1,225.4,224.4,212.6,161.7,160.4 +852,165.1,261.3,260.4,260,259.4,253,242.5,241.3,240.8,240,230.8,191.5,227.8,226.2,225.5,224.5,212.7,161.7,160.4 +853,165.1,261.3,260.4,260,259.5,253.1,242.5,241.4,240.9,240.1,230.9,191.8,227.9,226.3,225.6,224.6,212.9,161.7,160.4 +854,165.2,261.4,260.5,260.1,259.5,253.2,242.6,241.5,241,240.2,231.1,192.1,228,226.4,225.7,224.7,213,161.8,160.4 +855,165.2,261.5,260.6,260.2,259.6,253.3,242.7,241.6,241,240.3,231.2,192.4,228.1,226.5,225.8,224.8,213.2,161.8,160.4 +856,165.2,261.6,260.7,260.3,259.7,253.3,242.8,241.7,241.1,240.4,231.3,192.7,228.2,226.6,225.9,224.9,213.3,161.8,160.4 +857,165.2,261.6,260.8,260.3,259.8,253.4,242.9,241.8,241.2,240.5,231.4,193,228.3,226.7,226,225,213.4,161.8,160.5 +858,165.2,261.7,260.8,260.4,259.9,253.5,243,241.9,241.3,240.5,231.5,193.3,228.5,226.9,226.2,225.2,213.6,161.8,160.5 +859,165.2,261.8,260.9,260.5,259.9,253.6,243.1,242,241.4,240.6,231.6,193.6,228.6,227,226.3,225.3,213.7,161.8,160.5 +860,165.2,261.9,261,260.6,260,253.7,243.2,242.1,241.5,240.7,231.7,193.9,228.7,227.1,226.4,225.4,213.9,161.9,160.5 +861,165.2,262,261.1,260.7,260.1,253.8,243.3,242.2,241.6,240.8,231.8,194.2,228.8,227.2,226.5,225.5,214,161.9,160.5 +862,165.2,262,261.1,260.7,260.2,253.8,243.4,242.3,241.7,240.9,231.9,194.4,228.9,227.3,226.6,225.6,214.2,161.9,160.5 +863,165.2,262.1,261.2,260.8,260.2,253.9,243.5,242.4,241.8,241,232,194.7,229,227.4,226.7,225.7,214.3,161.9,160.5 +864,165.3,262.2,261.3,260.9,260.3,254,243.6,242.5,241.9,241.1,232.2,195,229.1,227.5,226.8,225.9,214.5,161.9,160.6 +865,165.3,262.3,261.4,261,260.4,254.1,243.7,242.6,242,241.2,232.3,195.2,229.2,227.6,226.9,226,214.6,161.9,160.6 +866,165.3,262.3,261.5,261.1,260.5,254.2,243.7,242.7,242.1,241.3,232.4,195.5,229.3,227.8,227.1,226.1,214.7,162,160.6 +867,165.3,262.4,261.5,261.1,260.6,254.3,243.8,242.7,242.2,241.4,232.5,195.7,229.4,227.9,227.2,226.2,214.9,162,160.6 +868,165.3,262.5,261.6,261.2,260.6,254.3,243.9,242.8,242.3,241.5,232.6,196,229.5,228,227.3,226.3,215,162,160.6 +869,165.3,262.6,261.7,261.3,260.7,254.4,244,242.9,242.4,241.6,232.7,196.2,229.6,228.1,227.4,226.4,215.2,162,160.6 +870,165.3,262.7,261.8,261.4,260.8,254.5,244.1,243,242.5,241.7,232.8,196.4,229.7,228.2,227.5,226.5,215.3,162,160.6 +871,165.3,262.7,261.8,261.4,260.9,254.6,244.2,243.1,242.6,241.8,232.9,196.7,229.9,228.3,227.6,226.7,215.4,162,160.6 +872,165.3,262.8,261.9,261.5,261,254.7,244.3,243.2,242.7,241.9,233,196.9,230,228.4,227.7,226.8,215.6,162.1,160.7 +873,165.3,262.9,262,261.6,261,254.8,244.4,243.3,242.8,242,233.1,197.1,230.1,228.5,227.8,226.9,215.7,162.1,160.7 +874,165.4,263,262.1,261.7,261.1,254.8,244.5,243.4,242.9,242.1,233.3,197.4,230.2,228.7,228,227,215.9,162.1,160.7 +875,165.4,263,262.2,261.8,261.2,254.9,244.5,243.5,243,242.2,233.4,197.6,230.3,228.8,228.1,227.1,216,162.1,160.7 +876,165.4,263.1,262.2,261.8,261.3,255,244.6,243.6,243,242.3,233.5,197.8,230.4,228.9,228.2,227.2,216.1,162.1,160.7 +877,165.4,263.2,262.3,261.9,261.3,255.1,244.7,243.7,243.1,242.4,233.6,198,230.5,229,228.3,227.3,216.3,162.2,160.7 +878,165.4,263.3,262.4,262,261.4,255.2,244.8,243.8,243.2,242.5,233.7,198.3,230.6,229.1,228.4,227.4,216.4,162.2,160.7 +879,165.4,263.4,262.5,262.1,261.5,255.3,244.9,243.9,243.3,242.6,233.8,198.5,230.7,229.2,228.5,227.6,216.5,162.2,160.8 +880,165.4,263.4,262.5,262.1,261.6,255.3,245,243.9,243.4,242.7,233.9,198.7,230.8,229.3,228.6,227.7,216.7,162.2,160.8 +881,165.4,263.5,262.6,262.2,261.7,255.4,245.1,244,243.5,242.8,234,198.9,230.9,229.4,228.7,227.8,216.8,162.2,160.8 +882,165.4,263.6,262.7,262.3,261.7,255.5,245.2,244.1,243.6,242.9,234.1,199.1,231,229.5,228.9,227.9,217,162.2,160.8 +883,165.4,263.7,262.8,262.4,261.8,255.6,245.3,244.2,243.7,243,234.2,199.3,231.1,229.7,229,228,217.1,162.3,160.8 +884,165.5,263.7,262.9,262.5,261.9,255.7,245.3,244.3,243.8,243,234.3,199.5,231.3,229.8,229.1,228.1,217.2,162.3,160.8 +885,165.5,263.8,262.9,262.5,262,255.8,245.4,244.4,243.9,243.1,234.5,199.7,231.4,229.9,229.2,228.2,217.4,162.3,160.8 +886,165.5,263.9,263,262.6,262,255.8,245.5,244.5,244,243.2,234.6,199.9,231.5,230,229.3,228.3,217.5,162.3,160.9 +887,165.5,264,263.1,262.7,262.1,255.9,245.6,244.6,244.1,243.3,234.7,200.1,231.6,230.1,229.4,228.5,217.6,162.3,160.9 +888,165.5,264.1,263.2,262.8,262.2,256,245.7,244.7,244.2,243.4,234.8,200.3,231.7,230.2,229.5,228.6,217.8,162.3,160.9 +889,165.5,264.1,263.2,262.8,262.3,256.1,245.8,244.8,244.2,243.5,234.9,200.6,231.8,230.3,229.6,228.7,217.9,162.4,160.9 +890,165.5,264.2,263.3,262.9,262.4,256.2,245.9,244.8,244.3,243.6,235,200.8,231.9,230.4,229.7,228.8,218,162.4,160.9 +891,165.5,264.3,263.4,263,262.4,256.2,245.9,244.9,244.4,243.7,235.1,201,232,230.5,229.9,228.9,218.2,162.4,160.9 +892,165.5,264.4,263.5,263.1,262.5,256.3,246,245,244.5,243.8,235.2,201.1,232.1,230.6,230,229,218.3,162.4,160.9 +893,165.5,264.4,263.5,263.2,262.6,256.4,246.1,245.1,244.6,243.9,235.3,201.3,232.2,230.8,230.1,229.1,218.4,162.4,161 +894,165.6,264.5,263.6,263.2,262.7,256.5,246.2,245.2,244.7,244,235.4,201.5,232.3,230.9,230.2,229.2,218.5,162.5,161 +895,165.6,264.6,263.7,263.3,262.7,256.6,246.3,245.3,244.8,244.1,235.5,201.7,232.4,231,230.3,229.4,218.7,162.5,161 +896,165.6,264.7,263.8,263.4,262.8,256.7,246.4,245.4,244.9,244.2,235.6,201.9,232.5,231.1,230.4,229.5,218.8,162.5,161 +897,165.6,264.7,263.9,263.5,262.9,256.7,246.5,245.5,245,244.3,235.7,202.1,232.6,231.2,230.5,229.6,218.9,162.5,161 +898,165.6,264.8,263.9,263.5,263,256.8,246.5,245.6,245.1,244.3,235.9,202.3,232.7,231.3,230.6,229.7,219.1,162.5,161 +899,165.6,264.9,264,263.6,263.1,256.9,246.6,245.6,245.1,244.4,236,202.5,232.8,231.4,230.7,229.8,219.2,162.5,161 +900,165.6,265,264.1,263.7,263.1,257,246.7,245.7,245.2,244.5,236.1,202.7,233,231.5,230.8,229.9,219.3,162.6,161 +901,165.6,265.1,264.2,263.8,263.2,257.1,246.8,245.8,245.3,244.6,236.2,202.9,233.1,231.6,231,230,219.5,162.6,161.1 +902,165.6,265.1,264.2,263.8,263.3,257.1,246.9,245.9,245.4,244.7,236.3,203.1,233.2,231.7,231.1,230.1,219.6,162.6,161.1 +903,165.6,265.2,264.3,263.9,263.4,257.2,247,246,245.5,244.8,236.4,203.3,233.3,231.8,231.2,230.2,219.7,162.6,161.1 +904,165.7,265.3,264.4,264,263.4,257.3,247.1,246.1,245.6,244.9,236.5,203.5,233.4,232,231.3,230.3,219.8,162.6,161.1 +905,165.7,265.4,264.5,264.1,263.5,257.4,247.1,246.2,245.7,245,236.6,203.6,233.5,232.1,231.4,230.5,220,162.7,161.1 +906,165.7,265.4,264.5,264.2,263.6,257.5,247.2,246.3,245.8,245.1,236.7,203.8,233.6,232.2,231.5,230.6,220.1,162.7,161.1 +907,165.7,265.5,264.6,264.2,263.7,257.6,247.3,246.3,245.9,245.2,236.8,204,233.7,232.3,231.6,230.7,220.2,162.7,161.1 +908,165.7,265.6,264.7,264.3,263.7,257.6,247.4,246.4,245.9,245.2,236.9,204.2,233.8,232.4,231.7,230.8,220.4,162.7,161.2 +909,165.7,265.7,264.8,264.4,263.8,257.7,247.5,246.5,246,245.3,237,204.4,233.9,232.5,231.8,230.9,220.5,162.7,161.2 +910,165.7,265.7,264.9,264.5,263.9,257.8,247.5,246.6,246.1,245.4,237.1,204.6,234,232.6,231.9,231,220.6,162.7,161.2 +911,165.7,265.8,264.9,264.5,264,257.9,247.6,246.7,246.2,245.5,237.2,204.8,234.1,232.7,232,231.1,220.7,162.8,161.2 +912,165.7,265.9,265,264.6,264.1,258,247.7,246.8,246.3,245.6,237.3,204.9,234.2,232.8,232.2,231.2,220.9,162.8,161.2 +913,165.7,266,265.1,264.7,264.1,258,247.8,246.9,246.4,245.7,237.5,205.1,234.3,232.9,232.3,231.3,221,162.8,161.2 +914,165.7,266.1,265.2,264.8,264.2,258.1,247.9,246.9,246.5,245.8,237.6,205.3,234.4,233,232.4,231.4,221.1,162.8,161.2 +915,165.8,266.1,265.2,264.8,264.3,258.2,248,247,246.5,245.9,237.7,205.5,234.5,233.1,232.5,231.6,221.2,162.8,161.2 +916,165.8,266.2,265.3,264.9,264.4,258.3,248,247.1,246.6,246,237.8,205.7,234.6,233.2,232.6,231.7,221.4,162.9,161.3 +917,165.8,266.3,265.4,265,264.4,258.4,248.1,247.2,246.7,246,237.9,205.8,234.7,233.4,232.7,231.8,221.5,162.9,161.3 +918,165.8,266.4,265.5,265.1,264.5,258.4,248.2,247.3,246.8,246.1,238,206,234.8,233.5,232.8,231.9,221.6,162.9,161.3 +919,165.8,266.4,265.5,265.1,264.6,258.5,248.3,247.4,246.9,246.2,238.1,206.2,234.9,233.6,232.9,232,221.7,162.9,161.3 +920,165.8,266.5,265.6,265.2,264.7,258.6,248.4,247.4,247,246.3,238.2,206.4,235.1,233.7,233,232.1,221.9,162.9,161.3 +921,165.8,266.6,265.7,265.3,264.7,258.7,248.4,247.5,247.1,246.4,238.3,206.5,235.2,233.8,233.1,232.2,222,162.9,161.3 +922,165.8,266.7,265.8,265.4,264.8,258.8,248.5,247.6,247.1,246.5,238.4,206.7,235.3,233.9,233.2,232.3,222.1,163,161.3 +923,165.8,266.7,265.8,265.5,264.9,258.8,248.6,247.7,247.2,246.6,238.5,206.9,235.4,234,233.3,232.4,222.2,163,161.4 +924,165.8,266.8,265.9,265.5,265,258.9,248.7,247.8,247.3,246.6,238.6,207.1,235.5,234.1,233.5,232.5,222.4,163,161.4 +925,165.9,266.9,266,265.6,265.1,259,248.8,247.9,247.4,246.7,238.7,207.2,235.6,234.2,233.6,232.6,222.5,163,161.4 +926,165.9,267,266.1,265.7,265.1,259.1,248.9,247.9,247.5,246.8,238.8,207.4,235.7,234.3,233.7,232.8,222.6,163,161.4 +927,165.9,267,266.2,265.8,265.2,259.2,248.9,248,247.6,246.9,238.9,207.6,235.8,234.4,233.8,232.9,222.7,163.1,161.4 +928,165.9,267.1,266.2,265.8,265.3,259.2,249,248.1,247.6,247,239,207.8,235.9,234.5,233.9,233,222.8,163.1,161.4 +929,165.9,267.2,266.3,265.9,265.4,259.3,249.1,248.2,247.7,247.1,239.1,207.9,236,234.6,234,233.1,223,163.1,161.4 +930,165.9,267.3,266.4,266,265.4,259.4,249.2,248.3,247.8,247.2,239.2,208.1,236.1,234.7,234.1,233.2,223.1,163.1,161.4 +931,165.9,267.3,266.5,266.1,265.5,259.5,249.3,248.4,247.9,247.2,239.3,208.3,236.2,234.9,234.2,233.3,223.2,163.1,161.5 +932,165.9,267.4,266.5,266.1,265.6,259.6,249.3,248.4,248,247.3,239.4,208.4,236.3,235,234.3,233.4,223.3,163.1,161.5 +933,165.9,267.5,266.6,266.2,265.7,259.6,249.4,248.5,248.1,247.4,239.5,208.6,236.4,235.1,234.4,233.5,223.5,163.2,161.5 +934,165.9,267.6,266.7,266.3,265.7,259.7,249.5,248.6,248.1,247.5,239.6,208.8,236.5,235.2,234.5,233.6,223.6,163.2,161.5 +935,165.9,267.7,266.8,266.4,265.8,259.8,249.6,248.7,248.2,247.6,239.7,208.9,236.6,235.3,234.6,233.7,223.7,163.2,161.5 +936,166,267.7,266.8,266.4,265.9,259.9,249.7,248.8,248.3,247.7,239.8,209.1,236.7,235.4,234.7,233.8,223.8,163.2,161.5 +937,166,267.8,266.9,266.5,266,260,249.7,248.8,248.4,247.8,239.9,209.3,236.8,235.5,234.8,233.9,223.9,163.2,161.5 +938,166,267.9,267,266.6,266,260,249.8,248.9,248.5,247.8,240,209.4,236.9,235.6,235,234.1,224.1,163.3,161.6 +939,166,268,267.1,266.7,266.1,260.1,249.9,249,248.6,247.9,240.1,209.6,237,235.7,235.1,234.2,224.2,163.3,161.6 +940,166,268,267.1,266.7,266.2,260.2,250,249.1,248.6,248,240.3,209.8,237.1,235.8,235.2,234.3,224.3,163.3,161.6 +941,166,268.1,267.2,266.8,266.3,260.3,250,249.2,248.7,248.1,240.4,209.9,237.2,235.9,235.3,234.4,224.4,163.3,161.6 +942,166,268.2,267.3,266.9,266.4,260.4,250.1,249.2,248.8,248.2,240.5,210.1,237.3,236,235.4,234.5,224.5,163.3,161.6 +943,166,268.3,267.4,267,266.4,260.4,250.2,249.3,248.9,248.3,240.6,210.3,237.4,236.1,235.5,234.6,224.7,163.4,161.6 +944,166,268.3,267.4,267.1,266.5,260.5,250.3,249.4,249,248.3,240.7,210.4,237.5,236.2,235.6,234.7,224.8,163.4,161.6 +945,166,268.4,267.5,267.1,266.6,260.6,250.4,249.5,249,248.4,240.8,210.6,237.6,236.3,235.7,234.8,224.9,163.4,161.6 +946,166,268.5,267.6,267.2,266.7,260.7,250.4,249.6,249.1,248.5,240.9,210.7,237.7,236.4,235.8,234.9,225,163.4,161.7 +947,166.1,268.6,267.7,267.3,266.7,260.8,250.5,249.6,249.2,248.6,241,210.9,237.8,236.5,235.9,235,225.1,163.4,161.7 +948,166.1,268.6,267.7,267.4,266.8,260.8,250.6,249.7,249.3,248.7,241.1,211.1,237.9,236.6,236,235.1,225.2,163.5,161.7 +949,166.1,268.7,267.8,267.4,266.9,260.9,250.7,249.8,249.4,248.7,241.2,211.2,238,236.7,236.1,235.2,225.4,163.5,161.7 +950,166.1,268.8,267.9,267.5,267,261,250.8,249.9,249.5,248.8,241.3,211.4,238.1,236.8,236.2,235.3,225.5,163.5,161.7 +951,166.1,268.9,268,267.6,267,261.1,250.8,250,249.5,248.9,241.4,211.5,238.2,237,236.3,235.4,225.6,163.5,161.7 +952,166.1,268.9,268,267.7,267.1,261.2,250.9,250,249.6,249,241.5,211.7,238.3,237.1,236.4,235.5,225.7,163.5,161.7 +953,166.1,269,268.1,267.7,267.2,261.2,251,250.1,249.7,249.1,241.6,211.9,238.4,237.2,236.5,235.7,225.8,163.5,161.7 +954,166.1,269.1,268.2,267.8,267.3,261.3,251.1,250.2,249.8,249.2,241.7,212,238.5,237.3,236.6,235.8,225.9,163.6,161.8 +955,166.1,269.2,268.3,267.9,267.3,261.4,251.2,250.3,249.9,249.2,241.8,212.2,238.6,237.4,236.7,235.9,226.1,163.6,161.8 +956,166.1,269.2,268.4,268,267.4,261.5,251.2,250.4,249.9,249.3,241.9,212.3,238.7,237.5,236.8,236,226.2,163.6,161.8 +957,166.1,269.3,268.4,268,267.5,261.5,251.3,250.4,250,249.4,242,212.5,238.8,237.6,237,236.1,226.3,163.6,161.8 +958,166.2,269.4,268.5,268.1,267.6,261.6,251.4,250.5,250.1,249.5,242.1,212.6,238.9,237.7,237.1,236.2,226.4,163.6,161.8 +959,166.2,269.5,268.6,268.2,267.6,261.7,251.5,250.6,250.2,249.6,242.2,212.8,239,237.8,237.2,236.3,226.5,163.7,161.8 +960,166.2,269.6,268.7,268.3,267.7,261.8,251.6,250.7,250.3,249.6,242.3,212.9,239.1,237.9,237.3,236.4,226.6,163.7,161.8 +961,166.2,269.6,268.7,268.3,267.8,261.9,251.6,250.8,250.3,249.7,242.4,213.1,239.2,238,237.4,236.5,226.8,163.7,161.9 +962,166.2,269.7,268.8,268.4,267.9,261.9,251.7,250.8,250.4,249.8,242.5,213.2,239.3,238.1,237.5,236.6,226.9,163.7,161.9 +963,166.2,269.8,268.9,268.5,267.9,262,251.8,250.9,250.5,249.9,242.6,213.4,239.4,238.2,237.6,236.7,227,163.7,161.9 +964,166.2,269.9,269,268.6,268,262.1,251.9,251,250.6,250,242.7,213.5,239.5,238.3,237.7,236.8,227.1,163.8,161.9 +965,166.2,269.9,269,268.6,268.1,262.2,251.9,251.1,250.7,250,242.8,213.7,239.6,238.4,237.8,236.9,227.2,163.8,161.9 +966,166.2,270,269.1,268.7,268.2,262.3,252,251.2,250.7,250.1,242.8,213.9,239.7,238.5,237.9,237,227.3,163.8,161.9 +967,166.2,270.1,269.2,268.8,268.2,262.3,252.1,251.2,250.8,250.2,242.9,214,239.8,238.6,238,237.1,227.5,163.8,161.9 +968,166.3,270.2,269.3,268.9,268.3,262.4,252.2,251.3,250.9,250.3,243,214.1,239.9,238.7,238.1,237.2,227.6,163.8,161.9 +969,166.3,270.2,269.3,268.9,268.4,262.5,252.3,251.4,251,250.4,243.1,214.3,240,238.8,238.2,237.3,227.7,163.9,162 +970,166.3,270.3,269.4,269,268.5,262.6,252.3,251.5,251.1,250.4,243.2,214.4,240.1,238.9,238.3,237.4,227.8,163.9,162 +971,166.3,270.4,269.5,269.1,268.5,262.6,252.4,251.6,251.1,250.5,243.3,214.6,240.2,239,238.4,237.5,227.9,163.9,162 +972,166.3,270.5,269.6,269.2,268.6,262.7,252.5,251.6,251.2,250.6,243.4,214.7,240.3,239.1,238.5,237.6,228,163.9,162 +973,166.3,270.5,269.6,269.2,268.7,262.8,252.6,251.7,251.3,250.7,243.5,214.9,240.4,239.2,238.6,237.7,228.1,167.7,162 +974,166.3,270.6,269.7,269.3,268.8,262.9,252.7,251.8,251.4,250.8,243.6,215,240.5,239.3,238.7,237.8,228.3,174.4,162 +975,166.3,270.7,269.8,269.4,268.9,263,252.7,251.9,251.4,250.8,243.7,215.2,240.6,239.4,238.8,238,228.4,177.1,162 +976,166.3,270.8,269.9,269.5,268.9,263,252.8,252,251.5,250.9,243.8,215.3,240.7,239.5,238.9,238.1,228.5,177.3,162 +977,166.3,270.8,269.9,269.5,269,263.1,252.9,252,251.6,251,243.9,215.5,240.8,239.6,239,238.2,228.6,177.5,162.1 +978,166.3,270.9,270,269.6,269.1,263.2,253,252.1,251.7,251.1,244,215.6,240.9,239.7,239.1,238.3,228.7,177.7,162.1 +979,166.3,271,270.1,269.7,269.2,263.3,253.1,252.2,251.8,251.2,244.1,215.8,241,239.8,239.2,238.4,228.8,177.8,162.1 +980,166.4,271.1,270.2,269.8,269.2,263.3,253.1,252.3,251.8,251.2,244.2,215.9,241.1,239.9,239.3,238.5,228.9,178,162.1 +981,166.4,271.1,270.2,269.8,269.3,263.4,253.2,252.4,251.9,251.3,244.3,216,241.2,240,239.4,238.6,229.1,178.2,162.1 +982,166.4,271.2,270.3,269.9,269.4,263.5,253.3,252.4,252,251.4,244.4,216.2,241.3,240.1,239.5,238.7,229.2,178.4,162.1 +983,166.4,271.3,270.4,270,269.5,263.6,253.4,252.5,252.1,251.5,244.5,216.3,241.4,240.2,239.6,238.8,229.3,178.6,162.1 +984,166.4,271.4,270.5,270.1,269.5,263.7,253.5,252.6,252.2,251.6,244.6,216.5,241.5,240.3,239.7,238.9,229.4,178.8,162.1 +985,166.4,271.4,270.5,270.2,269.6,263.7,253.5,252.7,252.2,251.6,244.7,216.6,241.6,240.4,239.8,239,229.5,178.9,162.2 +986,166.4,271.5,270.6,270.2,269.7,263.8,253.6,252.8,252.3,251.7,244.8,216.8,241.7,240.5,239.9,239.1,229.6,179.1,162.2 +987,166.4,271.6,270.7,270.3,269.8,263.9,253.7,252.8,252.4,251.8,244.9,216.9,241.8,240.6,240,239.2,229.7,179.3,162.2 +988,166.4,271.7,270.8,270.4,269.8,264,253.8,252.9,252.5,251.9,245,217,241.9,240.7,240.1,239.3,229.8,181.2,162.2 +989,166.4,271.7,270.8,270.5,269.9,264,253.9,253,252.6,252,245.1,217.2,242,240.8,240.2,239.4,230,182.1,162.2 +990,166.4,271.8,270.9,270.5,270,264.1,253.9,253.1,252.6,252,245.1,217.3,242.1,240.9,240.3,239.5,230.1,182.9,162.2 +991,166.5,271.9,271,270.6,270.1,264.2,254,253.2,252.7,252.1,245.2,217.5,242.2,241,240.4,239.6,230.2,183.7,162.2 +992,166.5,272,271.1,270.7,270.1,264.3,254.1,253.2,252.8,252.2,245.3,217.6,242.3,241.1,240.5,239.7,230.3,184.5,162.3 +993,166.5,272,271.1,270.8,270.2,264.4,254.2,253.3,252.9,252.3,245.4,217.7,242.4,241.2,240.6,239.8,230.4,185.1,162.3 +994,166.5,272.1,271.2,270.8,270.3,264.4,254.3,253.4,253,252.4,245.5,217.9,242.5,241.3,240.7,239.9,230.5,185.7,162.3 +995,166.5,272.2,271.3,270.9,270.4,264.5,254.3,253.5,253,252.4,245.6,218,242.5,241.4,240.8,240,230.6,186.3,162.3 +996,166.5,272.3,271.4,271,270.4,264.6,254.4,253.6,253.1,252.5,245.7,218.2,242.6,241.5,240.9,240.1,230.7,186.9,162.3 +997,166.5,272.4,271.4,271.1,270.5,264.7,254.5,253.6,253.2,252.6,245.8,218.3,242.7,241.6,241,240.2,230.9,187.4,162.3 +998,166.5,272.4,271.5,271.1,270.6,264.7,254.6,253.7,253.3,252.7,245.9,218.4,242.8,241.7,241.1,240.3,231,187.9,162.3 +999,166.5,272.5,271.6,271.2,270.7,264.8,254.7,253.8,253.4,252.8,246,218.6,242.9,241.8,241.2,240.4,231.1,188.4,162.3 +1000,166.5,272.6,271.7,271.3,270.7,264.9,254.8,253.9,253.4,252.8,246.1,218.7,243,241.9,241.3,240.5,231.2,188.8,162.4 diff --git a/test/Data Tables/600 MHz - Lb(0.95)_P528.csv b/test/Data Tables/600 MHz - Lb(0.95)_P528.csv new file mode 100644 index 0000000..fed51b1 --- /dev/null +++ b/test/Data Tables/600 MHz - Lb(0.95)_P528.csv @@ -0,0 +1,1005 @@ +600MHz / Lb(0.95) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,88,95.6,95.5,95.4,95.1,0,115.7,115.6,115.6,115.6,114.7,0,121.7,121.7,121.7,121.7,121.2,115.6,0 +1,91,99.6,99.5,99.3,98.9,91.4,115.7,115.6,115.6,115.5,113.3,88.5,121.7,121.6,121.6,121.6,120.5,110.3,88.3 +2,95,104.6,104.5,104.4,104.3,100.3,115.8,115.7,115.7,115.6,113.5,94.7,121.7,121.6,121.6,121.6,120.5,110.4,94.5 +3,98,107.9,107.9,107.8,107.8,105.6,116,116,116,115.9,113.8,98.6,121.7,121.7,121.7,121.6,120.5,110.6,98.1 +4,100.3,110.4,110.3,110.3,110.3,109,116.4,116.3,116.3,116.2,114.3,101.4,121.8,121.7,121.7,121.7,120.6,110.9,100.7 +5,102.2,112.3,112.3,112.3,112.3,111.4,116.8,116.8,116.7,116.7,114.8,103.7,121.9,121.8,121.8,121.8,120.7,111.4,102.9 +6,103.7,113.9,113.9,113.9,113.9,113.3,117.3,117.3,117.2,117.2,115.5,105.6,122,122,121.9,121.9,120.9,111.8,104.6 +7,105,115.3,115.3,115.3,115.2,114.8,117.8,117.8,117.8,117.7,116.2,107.3,122.1,122.1,122.1,122.1,121,112.3,106.1 +8,106.1,116.5,116.5,116.4,116.4,116,118.4,118.4,118.3,118.3,116.9,108.8,122.3,122.3,122.3,122.3,121.3,112.9,107.4 +9,107.1,117.5,117.5,117.5,117.5,117.1,119,118.9,118.9,118.9,117.6,110.2,122.5,122.5,122.5,122.5,121.5,113.5,108.6 +10,108.1,118.4,118.4,118.4,118.4,118.1,119.5,119.5,119.5,119.5,118.3,111.5,122.7,122.7,122.7,122.7,121.7,114.1,109.7 +11,108.9,119.2,119.3,119.3,119.3,119,120.1,120.1,120.1,120.1,119,112.6,123,123,123,122.9,122,114.7,110.7 +12,109.6,119.6,120,120,120,119.8,120.7,120.7,120.7,120.6,119.7,113.8,123.2,123.2,123.2,123.2,122.3,115.3,111.6 +13,110.3,119.7,120.8,120.8,120.7,120.5,121.2,121.2,121.2,121.2,120.3,114.8,123.5,123.5,123.5,123.4,122.6,115.9,112.5 +14,111,119.4,121.4,121.4,121.4,121.2,121.8,121.8,121.7,121.7,120.9,115.8,123.8,123.7,123.7,123.7,122.9,116.5,113.3 +15,111.6,118.9,122,122,122,121.8,122.3,122.3,122.3,122.2,121.5,116.7,124,124,124,124,123.3,117.2,114.1 +16,112.1,118.2,122.6,122.6,122.6,122.4,122.8,122.8,122.8,122.7,122.1,117.6,124.3,124.3,124.3,124.3,123.6,117.8,114.9 +17,112.6,117.6,123.1,123.1,123.1,123,123.3,123.3,123.2,123.2,122.6,118.4,124.6,124.6,124.6,124.6,123.9,118.4,115.6 +18,113.1,117.2,123.6,123.6,123.6,123.5,123.7,123.7,123.7,123.7,123.1,119.2,124.9,124.9,124.9,124.9,124.3,118.9,116.3 +19,113.6,117,124.1,124.1,124.1,124,124.2,124.2,124.2,124.1,123.6,119.9,125.2,125.2,125.2,125.2,124.6,119.5,116.9 +20,114,116.8,124.6,124.6,124.6,124.4,124.6,124.6,124.6,124.6,124.1,120.6,125.5,125.5,125.5,125.5,124.9,120.1,117.5 +21,114.5,116.8,125,125,125,124.8,125,125,125,124.9,124.5,121.2,125.8,125.8,125.8,125.8,125.2,120.6,118.1 +22,114.9,116.9,125.4,125.4,125.4,125.2,125.3,125.3,125.3,125.3,125,121.9,126.1,126.1,126.1,126,125.5,121.1,118.7 +23,115.3,117,125.8,125.8,125.8,125.6,125.7,125.7,125.7,125.7,125.4,122.5,126.4,126.4,126.4,126.3,125.9,121.7,119.3 +24,115.6,117.2,126.2,126.2,126.2,126,126.1,126.1,126.1,126,125.8,123,126.7,126.6,126.6,126.6,126.2,122.2,119.9 +25,116,117.4,126.5,126.5,126.5,126.4,126.4,126.4,126.4,126.4,126.1,123.6,126.9,126.9,126.9,126.9,126.5,122.6,120.4 +26,116.3,117.6,126.9,126.9,126.9,126.7,126.7,126.7,126.7,126.7,126.5,124.1,127.2,127.2,127.2,127.2,126.8,123.1,120.9 +27,116.6,117.9,127.2,127.2,127.2,127.1,127.1,127,127,127,126.8,124.6,127.5,127.5,127.5,127.5,127.1,123.6,121.4 +28,117,118.1,127.5,127.5,127.5,127.4,127.4,127.4,127.4,127.3,127.1,125,127.8,127.8,127.7,127.7,127.3,124,121.9 +29,117.3,118.4,127.8,127.8,127.8,127.7,127.7,127.7,127.7,127.6,127.4,125.5,128,128,128,128,127.6,124.4,122.3 +30,117.6,118.9,128.1,128.1,128.1,128,128,127.9,127.9,127.9,127.7,125.9,128.3,128.3,128.3,128.3,127.9,124.9,122.8 +31,117.8,119.5,128.4,128.4,128.4,128.3,128.2,128.2,128.2,128.2,128,126.2,128.5,128.5,128.5,128.5,128.2,125.3,123.3 +32,118.1,120.1,128.7,128.7,128.7,128.6,128.5,128.5,128.5,128.5,128.3,126.6,128.8,128.8,128.8,128.8,128.4,125.7,123.7 +33,118.4,120.6,129,129,129,128.8,128.8,128.8,128.8,128.8,128.6,127,129,129,129,129,128.7,126,124.1 +34,118.6,121.2,129.2,129.2,129.2,129.1,129,129,129,129,128.9,127.3,129.3,129.3,129.3,129.3,129,126.4,124.5 +35,118.9,121.7,129.5,129.5,129.5,129.4,129.3,129.3,129.3,129.3,129.1,127.7,129.5,129.5,129.5,129.5,129.2,126.8,124.9 +36,119.1,122.2,129.7,129.7,129.7,129.6,129.5,129.5,129.5,129.5,129.4,128,129.7,129.7,129.7,129.7,129.4,127.1,125.3 +37,119.4,122.7,130,130,130,129.8,129.8,129.8,129.8,129.8,129.6,128.3,130,130,130,130,129.7,127.4,125.7 +38,119.6,123.2,130.2,130.2,130.2,130.1,130,130,130,130,129.9,128.6,130.2,130.2,130.2,130.2,129.9,127.8,126 +39,119.8,123.7,130.4,130.4,130.4,130.3,130.2,130.2,130.2,130.2,130.1,128.9,130.4,130.4,130.4,130.4,130.1,128.1,126.4 +40,120.1,124.2,130.7,130.7,130.6,130.5,130.5,130.5,130.5,130.5,130.3,129.2,130.6,130.6,130.6,130.6,130.4,128.4,126.7 +41,120.3,124.6,130.9,130.9,130.9,130.7,130.7,130.7,130.7,130.7,130.5,129.4,130.8,130.8,130.8,130.8,130.6,128.7,127.1 +42,120.5,125.1,131.1,131.1,131.1,130.9,130.9,130.9,130.9,130.9,130.8,129.7,131,131,131,131,130.8,128.9,127.4 +43,120.7,125.6,131.3,131.3,131.3,131.1,131.1,131.1,131.1,131.1,131,130,131.2,131.2,131.2,131.2,131,129.2,127.7 +44,120.9,126,131.5,131.5,131.5,131.3,131.3,131.3,131.3,131.3,131.2,130.2,131.4,131.4,131.4,131.4,131.2,129.5,128 +45,121.1,126.4,131.7,131.7,131.7,131.5,131.5,131.5,131.5,131.5,131.4,130.5,131.5,131.5,131.5,131.5,131.4,129.7,128.3 +46,121.3,126.9,131.9,131.9,131.9,131.7,131.7,131.7,131.7,131.7,131.6,130.7,131.7,131.7,131.7,131.7,131.6,130,128.6 +47,121.5,127.3,132.1,132.1,132,131.9,131.9,131.9,131.9,131.9,131.8,130.9,131.9,131.9,131.9,131.9,131.8,130.2,128.9 +48,121.6,127.7,132.3,132.3,132.2,132.1,132.1,132.1,132.1,132.1,132,131.1,132.1,132.1,132.1,132.1,131.9,130.5,129.2 +49,121.8,128.2,132.5,132.4,132.4,132.3,132.3,132.3,132.3,132.3,132.2,131.4,132.3,132.3,132.3,132.3,132.1,130.7,129.5 +50,122,128.6,132.6,132.6,132.6,132.5,132.4,132.4,132.4,132.4,132.3,131.6,132.4,132.4,132.4,132.4,132.3,130.9,129.7 +51,122.2,129,132.8,132.8,132.8,132.6,132.6,132.6,132.6,132.6,132.5,131.8,132.6,132.6,132.6,132.6,132.5,131.1,130 +52,122.3,129.4,133,133,132.9,132.8,132.8,132.8,132.8,132.8,132.7,132,132.8,132.8,132.8,132.8,132.6,131.3,130.2 +53,122.5,129.8,133.1,133.1,133.1,133,133,133,133,133,132.9,132.2,132.9,132.9,132.9,132.9,132.8,131.5,130.5 +54,122.7,130.2,133.3,133.3,133.2,133.1,133.1,133.1,133.1,133.1,133,132.4,133.1,133.1,133.1,133.1,133,131.8,130.7 +55,122.8,130.6,133.5,133.4,133.4,133.3,133.3,133.3,133.3,133.3,133.2,132.5,133.2,133.2,133.2,133.2,133.1,132,130.9 +56,123,131,133.6,133.6,133.6,133.4,133.5,133.4,133.4,133.4,133.4,132.7,133.4,133.4,133.4,133.4,133.3,132.1,131.2 +57,123.1,131.4,133.8,133.8,133.7,133.6,133.6,133.6,133.6,133.6,133.5,132.9,133.5,133.5,133.5,133.5,133.4,132.3,131.4 +58,123.3,131.8,133.9,133.9,133.9,133.7,133.8,133.8,133.8,133.8,133.7,133.1,133.7,133.7,133.7,133.7,133.6,132.5,131.6 +59,123.4,132.2,134.1,134.1,134,133.9,133.9,133.9,133.9,133.9,133.8,133.2,133.8,133.8,133.8,133.8,133.7,132.7,131.8 +60,123.6,132.6,134.2,134.2,134.2,134,134.1,134.1,134.1,134.1,134,133.4,134,134,134,134,133.9,132.9,132 +61,123.7,133,134.4,134.3,134.3,134.2,134.2,134.2,134.2,134.2,134.1,133.5,134.1,134.1,134.1,134.1,134,133.1,132.2 +62,123.9,133.4,134.5,134.5,134.4,134.3,134.4,134.4,134.4,134.4,134.3,133.7,134.3,134.3,134.3,134.3,134.2,133.2,132.4 +63,124,133.7,134.7,134.6,134.6,134.4,134.5,134.5,134.5,134.5,134.4,133.9,134.4,134.4,134.4,134.4,134.3,133.4,132.6 +64,124.1,134.1,134.8,134.8,134.7,134.6,134.6,134.6,134.6,134.6,134.6,134,134.5,134.5,134.5,134.5,134.4,133.6,132.7 +65,124.3,134.5,134.9,134.9,134.8,134.7,134.8,134.8,134.8,134.8,134.7,134.2,134.7,134.7,134.7,134.7,134.6,133.7,132.9 +66,124.4,134.9,135.1,135,135,134.8,134.9,134.9,134.9,134.9,134.8,134.3,134.8,134.8,134.8,134.8,134.7,133.9,133.1 +67,124.5,135.3,135.2,135.2,135.1,134.9,135.1,135.1,135.1,135.1,135,134.4,135,134.9,134.9,134.9,134.9,134.1,133.3 +68,124.7,135.6,135.3,135.3,135.2,135.1,135.2,135.2,135.2,135.2,135.1,134.6,135.1,135.1,135.1,135.1,135,134.2,133.4 +69,124.8,136,135.5,135.4,135.3,135.2,135.3,135.3,135.3,135.3,135.3,134.7,135.2,135.2,135.2,135.2,135.1,134.4,133.6 +70,124.9,136.4,135.6,135.5,135.5,135.3,135.5,135.5,135.4,135.4,135.4,134.9,135.3,135.3,135.3,135.3,135.3,134.5,133.8 +71,125,136.8,135.7,135.7,135.6,135.4,135.6,135.6,135.6,135.6,135.5,135,135.5,135.5,135.5,135.5,135.4,134.7,133.9 +72,125.2,137.1,135.8,135.8,135.7,135.5,135.7,135.7,135.7,135.7,135.6,135.1,135.6,135.6,135.6,135.6,135.5,134.9,134.1 +73,125.3,137.5,136,135.9,135.8,135.7,135.8,135.8,135.8,135.8,135.8,135.3,135.7,135.7,135.7,135.7,135.6,135,134.2 +74,125.4,137.9,136.1,136,135.9,135.8,136,136,136,136,135.9,135.4,135.9,135.8,135.8,135.8,135.8,135.1,134.4 +75,125.5,138.3,136.2,136.1,136.1,135.9,136.1,136.1,136.1,136.1,136,135.5,136,136,136,136,135.9,135.3,134.5 +76,125.6,138.7,136.3,136.3,136.2,136,136.2,136.2,136.2,136.2,136.1,135.6,136.1,136.1,136.1,136.1,136,135.4,134.7 +77,125.7,139,136.4,136.4,136.3,136.1,136.3,136.3,136.3,136.3,136.3,135.8,136.2,136.2,136.2,136.2,136.1,135.6,134.8 +78,125.9,139.4,136.5,136.5,136.4,136.2,136.4,136.4,136.4,136.4,136.4,135.9,136.3,136.3,136.3,136.3,136.3,135.7,135 +79,126,139.8,136.6,136.6,136.5,136.3,136.6,136.6,136.6,136.6,136.5,136,136.5,136.5,136.5,136.5,136.4,135.8,135.1 +80,126.1,140.2,136.6,136.7,136.6,136.4,136.7,136.7,136.7,136.7,136.6,136.1,136.6,136.6,136.6,136.6,136.5,135.9,135.3 +81,126.2,140.7,136.7,136.8,136.7,136.5,136.8,136.8,136.8,136.8,136.7,136.2,136.7,136.7,136.7,136.7,136.6,136.1,135.4 +82,126.3,141.1,136.7,136.9,136.8,136.6,136.9,136.9,136.9,136.9,136.9,136.4,136.8,136.8,136.8,136.8,136.7,136.2,135.5 +83,126.4,141.5,136.7,137,136.9,136.7,137,137,137,137,137,136.5,136.9,136.9,136.9,136.9,136.8,136.3,135.7 +84,126.5,141.9,136.8,137.1,137,136.8,137.1,137.1,137.1,137.1,137.1,136.6,137,137,137,137,137,136.4,135.8 +85,126.6,142.3,136.8,137.2,137.1,136.9,137.3,137.3,137.3,137.3,137.2,136.7,137.1,137.1,137.1,137.1,137.1,136.6,135.9 +86,126.7,142.8,136.7,137.4,137.2,137,137.4,137.4,137.4,137.4,137.3,136.8,137.3,137.3,137.3,137.3,137.2,136.7,136 +87,126.8,143.2,136.6,137.6,137.3,137.1,137.5,137.5,137.5,137.5,137.4,136.9,137.4,137.4,137.4,137.4,137.3,136.8,136.2 +88,126.9,143.6,136.4,137.7,137.4,137.2,137.6,137.6,137.6,137.6,137.5,137,137.5,137.5,137.5,137.5,137.4,136.9,136.3 +89,127,144.1,136.3,137.9,137.5,137.3,137.7,137.7,137.7,137.7,137.6,137.1,137.6,137.6,137.6,137.6,137.5,137,136.4 +90,127.1,144.5,136,138.1,137.6,137.4,137.8,137.8,137.8,137.8,137.8,137.2,137.7,137.7,137.7,137.7,137.6,137.1,136.5 +91,127.2,145,135.8,138.3,137.8,137.5,137.9,137.9,137.9,137.9,137.9,137.3,137.8,137.8,137.8,137.8,137.7,137.3,136.7 +92,127.3,145.4,135.5,138.4,138,137.6,138,138,138,138,138,137.4,137.9,137.9,137.9,137.9,137.8,137.4,136.8 +93,127.4,145.9,135.2,138.6,138.1,137.6,138.1,138.1,138.1,138.1,138.1,137.5,138,138,138,138,137.9,137.5,136.9 +94,127.5,146.3,135,138.8,138.3,137.7,138.2,138.2,138.2,138.2,138.2,137.6,138.1,138.1,138.1,138.1,138,137.6,137 +95,127.6,146.8,134.8,138.9,138.5,137.8,138.3,138.3,138.3,138.3,138.3,137.7,138.2,138.2,138.2,138.2,138.1,137.7,137.1 +96,127.7,147.2,134.6,139.1,138.6,137.9,138.3,138.4,138.4,138.4,138.3,137.8,138.3,138.3,138.3,138.3,138.2,137.8,137.2 +97,127.7,147.7,134.5,139.3,138.8,138,138.4,138.5,138.5,138.5,138.4,137.9,138.4,138.4,138.4,138.4,138.3,137.9,137.3 +98,127.8,148.2,134.4,139.4,138.9,138.1,138.5,138.6,138.6,138.6,138.5,138,138.5,138.5,138.5,138.5,138.4,138,137.4 +99,127.9,148.6,134.4,139.6,139.1,138.2,138.6,138.7,138.7,138.7,138.6,138.1,138.6,138.6,138.6,138.6,138.5,138.1,137.5 +100,128,149.1,134.4,139.7,139.2,138.2,138.6,138.8,138.8,138.8,138.7,138.2,138.7,138.7,138.7,138.7,138.6,138.2,137.6 +101,128.1,149.6,134.5,139.9,139.4,138.3,138.7,138.9,138.9,138.9,138.8,138.3,138.8,138.8,138.8,138.8,138.7,138.3,137.7 +102,128.2,150.1,134.6,140,139.5,138.4,138.7,139,139,139,138.9,138.4,138.9,138.9,138.9,138.9,138.8,138.4,137.8 +103,128.3,150.6,134.7,140.2,139.7,138.5,138.8,139.1,139.1,139.1,139,138.5,139,139,139,139,138.9,138.5,137.9 +104,128.4,151,134.9,140.3,139.8,138.6,138.8,139.2,139.2,139.2,139.1,138.6,139.1,139.1,139.1,139.1,139,138.6,138 +105,128.4,151.5,135.1,140.4,140,138.7,138.9,139.3,139.3,139.3,139.2,138.6,139.2,139.2,139.2,139.2,139.1,138.7,138.1 +106,128.5,151.9,135.3,140.4,140.1,138.7,138.9,139.4,139.4,139.4,139.3,138.7,139.3,139.3,139.2,139.2,139.2,138.8,138.2 +107,128.6,152.4,135.6,140.4,140.3,138.8,138.9,139.5,139.5,139.5,139.4,138.8,139.3,139.3,139.3,139.3,139.3,138.9,138.3 +108,128.7,152.9,135.8,140.3,140.4,138.9,139,139.5,139.5,139.5,139.5,138.9,139.4,139.4,139.4,139.4,139.4,139,138.4 +109,128.8,153.3,136,140.1,140.5,139,139,139.6,139.6,139.6,139.6,139,139.5,139.5,139.5,139.5,139.5,139.1,138.5 +110,128.8,153.7,136.3,139.9,140.7,139,139,139.7,139.7,139.7,139.6,139.1,139.6,139.6,139.6,139.6,139.6,139.2,138.6 +111,128.9,154.2,136.6,139.6,140.8,139.1,139.1,139.8,139.8,139.8,139.7,139.2,139.7,139.7,139.7,139.7,139.6,139.3,138.7 +112,129,154.6,136.8,139.3,140.9,139.2,139.1,139.9,139.9,139.9,139.8,139.2,139.8,139.8,139.8,139.8,139.7,139.3,138.8 +113,129.1,155.1,137.1,139,141,139.3,139.1,140,140,140,139.9,139.3,139.9,139.9,139.9,139.9,139.8,139.4,138.8 +114,129.2,155.5,137.4,138.8,141.1,139.4,139.1,140,140,140,140,139.4,139.9,139.9,139.9,139.9,139.9,139.5,138.9 +115,129.2,156,137.7,138.6,141.2,139.4,139.2,140.1,140.1,140.1,140.1,139.5,140,140,140,140,140,139.6,139 +116,129.3,156.4,137.9,138.4,141.3,139.5,139.1,140.2,140.2,140.2,140.2,139.6,140.1,140.1,140.1,140.1,140.1,139.7,139.1 +117,129.4,156.9,138.2,138.4,141.4,139.6,139.1,140.3,140.3,140.3,140.2,139.7,140.2,140.2,140.2,140.2,140.2,139.8,139.2 +118,129.5,157.3,138.5,138.4,141.5,139.6,139.1,140.4,140.4,140.4,140.3,139.7,140.3,140.3,140.3,140.3,140.2,139.9,139.3 +119,129.5,157.8,138.7,138.5,141.6,139.7,139.1,140.4,140.4,140.4,140.4,139.8,140.4,140.4,140.4,140.4,140.3,140,139.4 +120,129.6,158.2,139.1,138.6,141.7,139.8,139.1,140.5,140.5,140.5,140.5,139.9,140.4,140.4,140.4,140.4,140.4,140,139.4 +121,129.7,158.6,139.7,138.8,141.8,139.9,139.1,140.6,140.6,140.6,140.5,140,140.5,140.5,140.5,140.5,140.5,140.1,139.5 +122,129.7,159.1,140.3,139,141.9,139.9,139,140.7,140.7,140.7,140.6,140.1,140.6,140.6,140.6,140.6,140.6,140.2,139.6 +123,129.8,159.5,140.8,139.2,141.9,140,139,140.8,140.8,140.7,140.7,140.1,140.7,140.7,140.7,140.7,140.6,140.3,139.7 +124,129.9,160,141.4,139.4,142,140.1,139,140.8,140.8,140.8,140.8,140.2,140.7,140.7,140.7,140.7,140.7,140.4,139.8 +125,130,160.4,142,139.6,142.1,140.1,139,140.9,140.9,140.9,140.8,140.3,140.8,140.8,140.8,140.8,140.8,140.4,139.8 +126,130,160.8,142.5,139.9,142,140.2,139,141,141,141,140.9,140.4,140.9,140.9,140.9,140.9,140.8,140.5,139.9 +127,130.1,161.2,143,140.1,141.9,140.3,139,141.1,141,141,141,140.4,141,141,141,141,140.9,140.6,140 +128,130.2,161.7,143.5,140.4,141.8,140.3,139,141.1,141.1,141.1,141.1,140.5,141,141,141,141,141,140.7,140.1 +129,130.2,162.1,143.9,140.7,141.6,140.4,138.9,141.2,141.2,141.2,141.1,140.6,141.1,141.1,141.1,141.1,141.1,140.8,140.2 +130,130.3,162.5,144.2,140.9,141.4,140.5,138.9,141.3,141.3,141.3,141.2,140.7,141.2,141.2,141.2,141.2,141.1,140.8,140.2 +131,130.4,163,144.6,141.2,141.5,140.5,138.9,141.3,141.3,141.3,141.3,140.7,141.2,141.2,141.2,141.2,141.2,140.9,140.3 +132,130.4,163.4,145.1,141.5,141.4,140.6,138.9,141.4,141.4,141.4,141.3,140.8,141.3,141.3,141.3,141.3,141.3,141,140.4 +133,130.5,163.8,145.7,141.9,141.3,140.7,138.9,141.5,141.5,141.5,141.4,140.9,141.4,141.4,141.4,141.4,141.3,141.1,140.5 +134,130.6,164.2,146.3,142.1,141.4,140.8,138.9,141.6,141.6,141.5,141.5,141,141.4,141.4,141.4,141.4,141.4,141.1,140.5 +135,130.6,164.8,146.8,142.3,141.5,140.9,138.9,141.6,141.6,141.6,141.6,141,141.5,141.5,141.5,141.5,141.5,141.2,140.6 +136,130.7,165.2,147.4,142.6,141.6,141,138.9,141.7,141.7,141.7,141.6,141.1,141.6,141.6,141.6,141.6,141.5,141.3,140.7 +137,130.7,165.6,147.9,142.8,141.8,141.1,138.8,141.8,141.8,141.8,141.7,141.2,141.7,141.6,141.6,141.6,141.6,141.3,140.8 +138,130.8,166,148.4,143,142,141.2,138.8,141.8,141.8,141.8,141.8,141.2,141.7,141.7,141.7,141.7,141.7,141.4,140.8 +139,130.9,166.4,148.9,143.3,142.2,141.4,138.8,141.9,141.9,141.9,141.8,141.3,141.8,141.8,141.8,141.8,141.7,141.5,140.9 +140,130.9,167,149.5,143.6,142.4,141.5,138.8,142,142,142,141.9,141.4,141.8,141.8,141.8,141.8,141.8,141.6,141 +141,131,168,150,143.8,142.7,141.6,138.8,142,142,142,142,141.5,141.9,141.9,141.9,141.9,141.9,141.6,141.1 +142,131,168.9,150.6,144.4,143,141.7,138.8,142.1,142.1,142.1,142,141.5,142,142,142,142,141.9,141.7,141.1 +143,131.1,169.8,151.1,145,143.2,141.8,138.8,142.2,142.2,142.2,142.1,141.6,142,142,142,142,142,141.8,141.2 +144,131.1,170.7,151.6,145.7,143.4,141.9,138.8,142.2,142.2,142.2,142.2,141.7,142.1,142.1,142.1,142.1,142.1,141.8,141.3 +145,131.2,171.6,152.2,146.2,143.7,142,138.9,142.3,142.3,142.3,142.2,141.7,142.2,142.2,142.2,142.2,142.1,141.9,141.3 +146,131.3,172.6,152.7,146.9,143.9,142.1,138.9,142.4,142.3,142.3,142.3,141.8,142.2,142.2,142.2,142.2,142.2,142,141.4 +147,131.3,173.5,153.3,147.5,144.2,142.2,138.9,142.4,142.4,142.4,142.3,141.9,142.3,142.3,142.3,142.3,142.3,142,141.5 +148,131.4,174.4,153.8,148.1,144.4,142.3,138.9,142.5,142.5,142.5,142.4,141.9,142.4,142.4,142.4,142.4,142.3,142.1,141.5 +149,131.4,175.4,154.3,148.7,144.6,142.4,138.9,142.5,142.5,142.5,142.5,142,142.4,142.4,142.4,142.4,142.4,142.1,141.6 +150,131.5,176.3,154.9,149.3,144.9,142.5,139,142.6,142.6,142.6,142.5,142.1,142.5,142.5,142.5,142.5,142.5,142.2,141.7 +151,131.6,177.2,155.5,149.9,145.1,142.6,139,142.7,142.7,142.7,142.6,142.1,142.5,142.5,142.5,142.5,142.5,142.3,141.7 +152,131.6,178.1,156.4,150.5,145.4,142.7,139,142.7,142.7,142.7,142.7,142.2,142.6,142.6,142.6,142.6,142.6,142.3,141.8 +153,131.7,179.1,157.3,151.1,145.6,142.8,139,142.8,142.8,142.8,142.7,142.2,142.7,142.7,142.7,142.7,142.6,142.4,141.9 +154,131.7,180,158.2,151.7,145.8,142.9,139.1,142.9,142.8,142.8,142.8,142.3,142.7,142.7,142.7,142.7,142.7,142.4,141.9 +155,131.8,180.9,159.1,152.3,146.1,143,139.1,142.9,142.9,142.9,142.8,142.4,142.8,142.8,142.8,142.8,142.8,142.5,142 +156,131.8,181.8,160.1,153,146.3,143.1,139.2,143,143,143,142.9,142.4,142.9,142.9,142.9,142.8,142.8,142.6,142.1 +157,131.9,182.7,161,153.5,146.8,143.2,139.2,143,143,143,143,142.5,142.9,142.9,142.9,142.9,142.9,142.6,142.1 +158,131.9,183.7,161.9,154.2,147.5,143.3,139.3,143.1,143.1,143.1,143,142.6,143,143,143,143,142.9,142.7,142.2 +159,132,184.6,162.8,155.1,148.2,143.4,139.3,143.2,143.1,143.1,143.1,142.6,143,143,143,143,143,142.7,142.3 +160,132.1,185.5,163.7,156,148.8,143.5,139.4,143.2,143.2,143.2,143.1,142.7,143.1,143.1,143.1,143.1,143.1,142.8,142.3 +161,132.1,186.4,164.7,157,149.5,143.6,139.4,143.3,143.3,143.3,143.2,142.7,143.1,143.1,143.1,143.1,143.1,142.9,142.4 +162,132.2,187.4,165.6,157.9,150.1,143.7,139.5,143.3,143.3,143.3,143.2,142.8,143.2,143.2,143.2,143.2,143.2,142.9,142.4 +163,132.2,188.3,166.5,158.8,150.8,143.8,139.5,143.4,143.4,143.4,143.3,142.9,143.3,143.3,143.3,143.3,143.2,143,142.5 +164,132.3,189.2,167.4,159.7,151.5,143.9,139.6,143.4,143.4,143.4,143.4,142.9,143.3,143.3,143.3,143.3,143.3,143,142.6 +165,132.3,190.1,168.3,160.6,152.1,143.9,139.6,143.5,143.5,143.5,143.4,143,143.4,143.4,143.4,143.4,143.3,143.1,142.6 +166,132.4,191.1,169.3,161.5,152.8,144,139.7,143.6,143.6,143.6,143.5,143,143.4,143.4,143.4,143.4,143.4,143.1,142.7 +167,132.4,192,170.2,162.5,153.4,144.1,139.8,143.6,143.6,143.6,143.5,143.1,143.5,143.5,143.5,143.5,143.5,143.2,142.7 +168,132.5,192.9,171.1,163.4,154.2,144.2,139.8,143.7,143.7,143.7,143.6,143.2,143.5,143.5,143.5,143.5,143.5,143.3,142.8 +169,132.5,193.8,172,164.3,155.1,144.3,139.9,143.7,143.7,143.7,143.6,143.2,143.6,143.6,143.6,143.6,143.5,143.3,142.9 +170,132.6,194.8,172.9,165.2,156,144.4,140,143.8,143.8,143.8,143.7,143.3,143.6,143.7,143.7,143.6,143.6,143.4,142.9 +171,132.6,195.7,173.9,166.1,157,144.5,140,143.8,143.8,143.8,143.7,143.3,143.7,143.7,143.7,143.7,143.7,143.4,143 +172,132.7,196.6,174.8,167.1,157.9,144.6,140.1,143.9,143.9,143.9,143.8,143.4,143.8,143.8,143.8,143.8,143.7,143.5,143 +173,132.7,197.5,175.7,168,158.8,144.7,140.2,143.9,143.9,143.9,143.9,143.3,143.8,143.8,143.8,143.8,143.8,143.5,143.1 +174,132.8,198.4,176.6,168.9,159.7,144.7,140.2,144,144,144,143.9,143.3,143.9,143.9,143.9,143.9,143.8,143.6,143.2 +175,132.8,198.9,177.6,169.8,160.6,144.8,140.3,144.1,144.1,144,144,143.4,143.9,143.9,143.9,143.9,143.9,143.6,143.2 +176,132.9,199.2,178.5,170.7,161.5,144.9,140.4,144.1,144.1,144.1,144,143.4,143.9,144,144,144,143.9,143.7,143.3 +177,132.9,199.5,179.4,171.7,162.4,145,140.5,144.2,144.2,144.2,144.1,143.5,144,144,144,144,144,143.7,143.3 +178,133,199.8,180.3,172.6,163.4,145.1,140.5,144.2,144.2,144.2,144.1,143.5,144,144.1,144.1,144.1,144,143.8,143.4 +179,133,200,181.2,173.5,164.3,145.2,140.6,144.3,144.3,144.3,144.2,143.6,144.1,144.1,144.1,144.1,144.1,143.8,143.4 +180,133.1,200.3,181.6,174.4,165.2,145.3,140.7,144.3,144.3,144.3,144.2,143.6,144.1,144.2,144.2,144.2,144.1,143.9,143.5 +181,133.1,200.6,182,175.3,166.1,145.4,140.7,144.4,144.4,144.4,144.3,143.7,144.2,144.2,144.2,144.2,144.2,143.9,143.5 +182,133.2,200.8,182.4,176.2,167,145.5,140.8,144.4,144.4,144.4,144.3,143.8,144.2,144.3,144.3,144.3,144.2,144,143.6 +183,133.2,201.1,182.8,177.2,167.9,145.6,140.9,144.5,144.5,144.5,144.4,143.8,144.3,144.3,144.3,144.3,144.3,144,143.6 +184,133.3,201.3,183.2,177.7,168.9,145.7,141,144.5,144.5,144.5,144.4,143.9,144.3,144.4,144.4,144.4,144.3,144.1,143.7 +185,133.3,201.6,183.6,178.2,169.8,145.7,141,144.6,144.6,144.6,144.5,143.9,144.3,144.4,144.4,144.4,144.4,144.1,143.8 +186,133.4,201.8,184,178.7,170.7,145.8,141.1,144.6,144.6,144.6,144.5,144,144.4,144.5,144.5,144.5,144.4,144.2,143.8 +187,133.4,202.1,184.3,179.2,171.6,145.9,141.2,144.7,144.7,144.7,144.6,144,144.4,144.5,144.5,144.5,144.5,144.2,143.9 +188,133.5,202.3,184.7,179.6,172.5,146,141.3,144.7,144.7,144.7,144.6,144.1,144.5,144.6,144.6,144.6,144.5,144.3,143.9 +189,133.5,202.6,185.1,180.1,173.4,146.1,141.3,144.8,144.8,144.8,144.7,144.1,144.5,144.6,144.6,144.6,144.6,144.3,144 +190,133.6,202.8,185.5,180.5,174.2,146.2,141.4,144.8,144.8,144.8,144.7,144.2,144.6,144.7,144.7,144.7,144.6,144.4,144 +191,133.6,203,185.8,181,174.8,146.3,141.5,144.9,144.9,144.9,144.8,144.2,144.6,144.7,144.7,144.7,144.7,144.4,144.1 +192,133.6,203.3,186.2,181.4,175.4,146.4,141.6,144.9,144.9,144.9,144.8,144.3,144.6,144.8,144.8,144.8,144.7,144.5,144.1 +193,133.7,203.5,186.5,181.8,175.9,146.5,141.6,145,145,145,144.9,144.3,144.7,144.8,144.8,144.8,144.8,144.5,144.2 +194,133.7,203.7,186.9,182.2,176.5,146.6,141.7,145,145,145,144.9,144.4,144.7,144.9,144.9,144.9,144.8,144.6,144.2 +195,133.8,203.9,187.2,182.6,177,146.7,141.8,145.1,145.1,145.1,145,144.4,144.7,144.9,144.9,144.9,144.9,144.6,144.3 +196,133.8,204.1,187.6,183,177.5,146.8,141.9,145.1,145.1,145.1,145,144.5,144.8,145,145,145,144.9,144.7,144.3 +197,133.9,204.3,187.9,183.5,178,146.9,141.9,145.2,145.2,145.2,145,144.5,144.8,145,145,145,145,144.7,144.4 +198,133.9,204.5,188.2,183.9,178.5,147,142,145.2,145.2,145.2,145.1,144.5,144.8,145.1,145.1,145.1,145,144.8,144.4 +199,134,204.6,188.6,184.2,179,147.1,142.1,145.3,145.3,145.2,145.1,144.6,144.9,145.1,145.1,145.1,145.1,144.8,144.5 +200,134,204.8,188.9,184.6,179.5,147.3,142.2,145.3,145.3,145.3,145.2,144.6,144.9,145.2,145.2,145.2,145.1,144.9,144.5 +201,134,205,189.2,185,179.9,147.4,142.2,145.3,145.3,145.3,145.2,144.7,144.9,145.2,145.2,145.2,145.2,144.9,144.6 +202,134.1,205.2,189.5,185.4,180.4,147.5,142.3,145.4,145.4,145.4,145.3,144.7,145,145.3,145.3,145.3,145.2,145,144.6 +203,134.1,205.4,189.8,185.8,180.8,147.6,142.4,145.4,145.4,145.4,145.3,144.8,145,145.3,145.3,145.3,145.3,145,144.7 +204,134.2,205.5,190,186.1,181.3,147.7,142.5,145.5,145.5,145.5,145.4,144.8,145,145.4,145.4,145.4,145.3,145,144.7 +205,134.2,205.7,190.3,186.5,181.7,147.8,142.5,145.5,145.5,145.5,145.4,144.9,145,145.4,145.4,145.4,145.4,145.1,144.8 +206,134.3,205.9,190.6,186.8,182.2,147.9,142.6,145.6,145.6,145.6,145.5,144.9,145.1,145.5,145.5,145.5,145.4,145.1,144.8 +207,134.3,206,190.9,187.1,182.6,148,142.7,145.6,145.6,145.6,145.5,145,145.1,145.5,145.5,145.5,145.5,145.2,144.9 +208,134.3,206.2,191.1,187.4,183,148.2,142.8,145.7,145.7,145.7,145.5,145,145.1,145.6,145.6,145.6,145.5,145.2,144.9 +209,134.4,206.3,191.4,187.8,183.4,148.3,142.8,145.7,145.7,145.7,145.6,145.1,145.1,145.6,145.6,145.6,145.5,145.3,145 +210,134.4,206.5,191.7,188.1,183.8,148.4,142.9,145.8,145.7,145.7,145.6,145.1,145.2,145.7,145.6,145.6,145.6,145.3,145 +211,134.5,206.6,191.9,188.4,184.2,148.5,143.1,145.8,145.8,145.8,145.7,145.1,145.2,145.7,145.7,145.7,145.6,145.4,145.1 +212,134.5,206.8,192.2,188.7,184.6,148.7,143.2,145.8,145.8,145.8,145.7,145.2,145.2,145.7,145.7,145.7,145.7,145.4,145.1 +213,134.6,206.9,192.4,189,185,148.8,143.4,145.9,145.9,145.9,145.8,145.2,145.2,145.8,145.8,145.8,145.7,145.4,145.1 +214,134.6,207,192.7,189.3,185.3,148.9,143.5,145.9,145.9,145.9,145.8,145.3,145.3,145.8,145.8,145.8,145.8,145.5,145.2 +215,134.6,207.2,192.9,189.6,185.7,149.1,143.6,146,146,146,145.9,145.3,145.3,145.9,145.9,145.9,145.8,145.5,145.2 +216,134.7,207.3,193.1,189.9,186,149.2,143.8,146,146,146,145.9,145.4,145.3,145.9,145.9,145.9,145.9,145.6,145.3 +217,134.7,207.4,193.4,190.1,186.4,149.3,143.9,146.1,146.1,146.1,145.9,145.4,145.4,146,146,146,145.9,145.6,145.3 +218,134.8,207.5,193.6,190.4,186.7,149.4,144.1,146.1,146.1,146.1,146,145.4,145.4,146,146,146,146,145.7,145.4 +219,134.8,207.6,193.8,190.7,187,149.6,144.2,146.2,146.2,146.2,146,145.5,145.4,146.1,146.1,146.1,146,145.7,145.4 +220,134.8,207.8,194,191,187.4,149.7,144.3,146.2,146.2,146.2,146.1,145.5,145.4,146.1,146.1,146.1,146,145.7,145.4 +221,134.9,207.9,194.2,191.2,187.7,149.9,144.5,146.3,146.3,146.2,146.1,145.6,145.5,146.2,146.2,146.1,146.1,145.8,145.5 +222,134.9,208,194.4,191.5,188,150,144.6,146.3,146.3,146.3,146.2,145.6,145.5,146.2,146.2,146.2,146.1,145.8,145.5 +223,135,208.1,194.6,191.7,188.3,150.2,144.8,146.3,146.3,146.3,146.2,145.7,145.5,146.2,146.2,146.2,146.2,145.9,145.6 +224,135,208.2,194.8,192,188.6,150.3,144.9,146.4,146.4,146.4,146.3,145.7,145.6,146.3,146.3,146.3,146.2,145.9,145.6 +225,135,208.3,195,192.2,188.9,150.4,145.1,146.4,146.4,146.4,146.3,145.7,145.6,146.3,146.3,146.3,146.3,146,145.6 +226,135.1,208.4,195.2,192.4,189.2,150.6,145.2,146.5,146.5,146.5,146.3,145.8,145.6,146.4,146.4,146.4,146.3,146,145.7 +227,135.1,208.5,195.4,192.6,189.5,150.7,145.4,146.5,146.5,146.5,146.4,145.8,145.6,146.4,146.4,146.4,146.4,146,145.7 +228,135.1,208.6,195.5,192.9,189.8,150.9,145.5,146.6,146.6,146.6,146.4,145.9,145.7,146.5,146.5,146.5,146.4,146.1,145.8 +229,135.2,208.7,195.7,193.1,190.1,151,145.7,146.8,146.7,146.6,146.5,145.9,145.7,146.5,146.5,146.5,146.4,146.1,145.8 +230,135.2,208.8,195.9,193.3,190.4,151.2,145.8,146.9,146.8,146.7,146.5,145.9,145.7,146.5,146.5,146.5,146.5,146.2,145.8 +231,135.3,208.8,196.1,193.5,190.6,151.3,146,147,146.9,146.7,146.6,146,145.8,146.6,146.6,146.6,146.5,146.2,145.9 +232,135.3,208.9,196.3,193.7,190.9,151.5,146.1,147.1,147,146.8,146.6,146,145.8,146.6,146.6,146.6,146.6,146.3,145.9 +233,135.3,209,196.4,193.9,191.1,151.6,146.3,147.2,147.1,146.9,146.6,146.1,145.8,146.7,146.7,146.7,146.6,146.3,146 +234,135.4,209.1,196.6,194.1,191.4,151.8,146.4,147.3,147.2,147,146.7,146.1,145.9,146.7,146.7,146.7,146.7,146.3,146 +235,135.4,209.2,196.7,194.3,191.6,151.9,146.6,147.4,147.3,147.1,146.7,146.1,145.9,146.8,146.8,146.8,146.7,146.4,146 +236,135.4,209.2,196.9,194.5,191.8,152.1,146.7,147.5,147.4,147.2,146.8,146.2,145.9,146.8,146.8,146.8,146.7,146.4,146.1 +237,135.5,209.3,197.1,194.7,192.1,152.2,146.9,147.6,147.5,147.3,146.8,146.2,146,146.8,146.8,146.8,146.8,146.5,146.1 +238,135.5,209.4,197.2,194.9,192.3,152.4,147,147.7,147.6,147.4,146.9,146.2,146,146.9,146.9,146.9,146.8,146.5,146.2 +239,135.6,209.5,197.3,195.1,192.5,152.5,147.2,147.8,147.7,147.5,146.9,146.3,146,146.9,146.9,146.9,146.9,146.5,146.2 +240,135.6,209.5,197.5,195.2,192.8,152.7,147.3,147.9,147.7,147.6,146.9,146.3,146.1,147,147,147,146.9,146.6,146.2 +241,135.6,209.6,197.6,195.4,193,152.9,147.4,148,147.8,147.7,147,146.4,146.1,147,147,147,146.9,146.6,146.3 +242,135.7,209.7,197.8,195.6,193.2,153,147.6,148,147.9,147.8,147,146.4,146.1,147.1,147.1,147,147,146.7,146.3 +243,135.7,209.7,197.9,195.8,193.4,153.2,147.7,148.1,148,147.9,147.1,146.4,146.2,147.1,147.1,147.1,147,146.7,146.3 +244,135.7,209.8,198,195.9,193.6,153.3,147.9,148.2,148.1,148,147.1,146.5,146.2,147.1,147.1,147.1,147.1,146.7,146.4 +245,135.8,209.8,198.2,196.1,193.8,153.5,148,148.3,148.2,148,147.1,146.5,146.3,147.2,147.2,147.2,147.1,146.8,146.4 +246,135.8,209.9,198.3,196.2,194,153.7,148.2,148.4,148.3,148.1,147.2,146.5,146.3,147.2,147.2,147.2,147.2,146.7,146.5 +247,135.8,210,198.4,196.4,194.2,153.8,148.3,148.5,148.4,148.2,147.2,146.6,146.3,147.3,147.3,147.3,147.2,146.8,146.5 +248,135.9,210,198.5,196.5,194.4,154,148.5,148.6,148.5,148.3,147.3,146.6,146.4,147.3,147.3,147.3,147.2,146.8,146.5 +249,135.9,210.1,198.7,196.7,194.6,154.1,148.6,148.7,148.6,148.4,147.3,146.7,146.4,147.3,147.3,147.3,147.3,146.9,146.6 +250,135.9,210.1,198.8,196.8,194.8,154.3,148.8,148.8,148.6,148.5,147.4,146.7,146.5,147.4,147.4,147.4,147.3,146.9,146.6 +251,136,210.2,198.9,197,195,154.5,148.9,148.9,148.7,148.6,147.4,146.7,146.5,147.4,147.4,147.4,147.4,146.9,146.6 +252,136,210.2,199,197.1,195.1,154.6,149.1,148.9,148.8,148.6,147.4,146.8,146.6,147.5,147.5,147.5,147.4,147,146.7 +253,136,210.3,199.1,197.3,195.3,154.8,149.2,149,148.9,148.7,147.5,146.8,146.7,147.5,147.5,147.5,147.4,147,146.7 +254,136.1,210.3,199.3,197.4,195.5,154.9,149.4,149.1,149,148.8,147.5,146.8,146.7,147.5,147.5,147.5,147.5,147.1,146.8 +255,136.1,210.4,199.4,197.5,195.6,155.1,149.5,149.2,149.1,148.9,147.6,146.9,146.8,147.6,147.6,147.6,147.5,147.1,146.8 +256,136.2,210.4,199.5,197.7,195.8,155.3,149.6,149.3,149.2,149,147.6,146.9,146.8,147.6,147.6,147.6,147.6,147.1,146.8 +257,136.2,210.5,199.6,197.8,196,155.4,149.8,149.4,149.2,149.1,147.6,146.9,146.9,147.7,147.7,147.7,147.6,147.2,146.9 +258,136.2,210.5,199.7,197.9,196.1,155.6,149.9,149.5,149.3,149.1,147.7,147,146.9,147.7,147.7,147.7,147.6,147.2,146.9 +259,136.3,210.6,199.8,198.1,196.3,155.8,150.1,149.6,149.4,149.2,147.7,147,147,147.7,147.7,147.7,147.7,147.2,146.9 +260,136.3,210.6,199.9,198.2,196.4,155.9,150.2,149.6,149.5,149.3,147.8,147.1,147.1,147.8,147.8,147.8,147.7,147.3,147 +261,136.3,210.7,200,198.3,196.6,156.1,150.4,149.7,149.6,149.4,147.8,147.1,147.1,147.8,147.8,147.8,147.8,147.3,147 +262,136.4,210.7,200.1,198.4,196.7,156.2,150.5,149.8,149.7,149.5,147.9,147.1,147.2,147.8,147.8,147.8,147.8,147.3,147 +263,136.4,210.8,200.2,198.5,196.9,156.4,150.7,149.9,149.8,149.6,148,147.2,147.2,147.9,147.9,147.9,147.8,147.4,147.1 +264,136.4,210.8,200.3,198.6,197,156.6,150.8,150,149.8,149.6,148,147.2,147.3,147.9,147.9,147.9,147.9,147.4,147.1 +265,136.5,210.9,200.4,198.8,197.2,156.7,151,150.1,149.9,149.7,148.1,147.2,147.4,148,148,148,147.9,147.5,147.1 +266,136.5,210.9,200.5,198.9,197.3,156.9,151.1,150.2,150,149.8,148.2,147.3,147.4,148,148,148,147.9,147.5,147.2 +267,136.5,210.9,200.6,199,197.4,157.1,151.3,150.3,150.1,149.9,148.2,147.3,147.5,148,148,148,148,147.5,147.2 +268,136.5,211,200.7,199.1,197.6,157.9,151.4,150.3,150.2,150,148.3,147.3,147.5,148.1,148.1,148.1,148,147.6,147.3 +269,136.6,211,200.8,199.2,197.7,158.7,151.6,150.4,150.3,150.1,148.4,147.4,147.6,148.1,148.1,148.1,148.1,147.6,147.3 +270,136.6,211.1,200.8,199.3,197.8,159.4,151.7,150.5,150.4,150.2,148.4,147.4,147.6,148.1,148.1,148.1,148.1,147.7,147.3 +271,136.6,211.1,200.9,199.4,197.9,160.2,151.9,150.6,150.5,150.2,148.5,147.4,147.7,148.2,148.2,148.2,148.1,147.7,147.4 +272,136.7,211.1,201,199.5,198.1,161,152.1,150.7,150.5,150.3,148.6,147.5,147.7,148.2,148.2,148.2,148.2,147.7,147.4 +273,136.7,211.2,201.1,199.6,198.2,161.8,152.2,150.8,150.6,150.4,148.7,147.5,147.8,148.3,148.3,148.3,148.2,147.8,147.4 +274,136.7,211.2,201.2,199.7,198.3,162.5,152.4,150.9,150.7,150.5,148.7,147.5,147.9,148.3,148.3,148.3,148.2,147.8,147.5 +275,136.8,211.3,201.3,199.8,198.4,163.3,152.5,151,150.8,150.6,148.8,147.6,147.9,148.3,148.3,148.3,148.3,147.9,147.5 +276,136.8,211.3,201.4,199.9,198.5,164.1,152.7,151.1,150.9,150.7,148.9,147.6,148,148.4,148.4,148.4,148.3,147.9,147.5 +277,136.8,211.4,201.5,200,198.7,164.8,152.8,151.1,151,150.8,148.9,147.6,148.1,148.4,148.4,148.4,148.4,147.9,147.6 +278,136.9,211.4,201.5,200.1,198.8,165.6,153,151.2,151.1,150.8,149,147.7,148.1,148.5,148.5,148.5,148.4,148,147.6 +279,136.9,211.4,201.6,200.2,198.9,166.3,153.1,151.3,151.2,150.9,149.1,147.7,148.2,148.5,148.5,148.5,148.4,148,147.6 +280,136.9,211.5,201.7,200.3,199,167.1,153.3,151.4,151.2,151,149.1,147.7,148.3,148.5,148.5,148.5,148.5,148,147.7 +281,137,211.5,201.8,200.4,199.1,167.8,153.5,151.5,151.3,151.1,149.2,147.8,148.3,148.6,148.6,148.6,148.5,148.1,147.7 +282,137,211.6,201.9,200.5,199.2,168.6,153.6,151.6,151.4,151.2,149.3,147.8,148.4,148.6,148.6,148.6,148.6,148.1,147.7 +283,137,211.6,202,200.6,199.3,169.3,153.8,151.7,151.5,151.3,149.4,147.8,148.5,148.7,148.7,148.7,148.6,148.1,147.8 +284,137.1,211.7,202,200.7,199.4,170.1,153.9,151.8,151.6,151.3,149.4,147.9,148.5,148.7,148.7,148.7,148.7,148.2,147.8 +285,137.1,211.7,202.1,200.8,199.5,170.8,154.1,151.9,151.7,151.4,149.5,147.9,148.6,148.8,148.8,148.8,148.7,148.2,147.8 +286,137.1,211.7,202.2,200.9,199.6,171.7,154.2,151.9,151.8,151.5,149.6,147.9,148.6,148.8,148.8,148.8,148.7,148.2,147.8 +287,137.1,211.8,202.3,201,199.7,172.5,154.4,152,151.8,151.6,149.6,148,148.7,148.8,148.8,148.8,148.8,148.3,147.9 +288,137.2,211.8,202.4,201,199.8,173.2,154.6,152.1,151.9,151.7,149.7,148,148.8,148.9,148.9,148.9,148.8,148.3,147.9 +289,137.2,211.9,202.4,201.1,199.9,174,154.7,152.2,152,151.8,149.8,148,148.8,148.9,148.9,148.9,148.9,148.3,147.9 +290,137.2,211.9,202.5,201.2,200,174.7,154.9,152.3,152.1,151.9,149.8,148.1,148.9,149,149,149,148.9,148.4,148 +291,137.3,212,202.6,201.3,200.1,175.3,155,152.4,152.2,151.9,149.9,148.1,149,149,149,149,148.9,148.4,148 +292,137.3,212,202.7,201.4,200.2,176,155.2,152.5,152.3,152,150,148.1,149,149,149,149,149,148.4,148 +293,137.3,212.1,202.8,201.5,200.3,176.6,155.4,152.6,152.4,152.1,150,148.2,149.1,149.1,149.1,149.1,149,148.5,148.1 +294,137.4,212.1,202.8,201.6,200.4,177.2,155.5,152.7,152.5,152.2,150.1,148.2,149.1,149.1,149.1,149.1,149.1,148.5,148.1 +295,137.4,212.2,202.9,201.7,200.5,177.8,155.7,152.8,152.6,152.3,150.2,148.2,149.2,149.2,149.2,149.2,149.1,148.6,148.1 +296,137.4,212.2,203,201.8,200.6,178.4,155.9,152.9,152.7,152.4,150.2,148.2,149.2,149.2,149.2,149.2,149.2,148.6,148.2 +297,137.4,212.2,203.1,201.8,200.7,178.9,156,153,152.8,152.5,150.3,148.3,149.2,149.2,149.2,149.2,149.2,148.6,148.2 +298,137.5,212.3,203.2,201.9,200.8,179.4,156.2,153.1,152.8,152.6,150.4,148.3,149.3,149.3,149.3,149.3,149.2,148.7,148.2 +299,137.5,212.3,203.3,202,200.9,179.9,156.4,153.1,152.9,152.7,150.5,148.3,149.3,149.3,149.3,149.3,149.3,148.7,148.3 +300,137.5,212.4,203.3,202.1,201,180.4,156.5,153.2,153,152.7,150.5,148.4,149.3,149.3,149.3,149.3,149.3,148.7,148.3 +301,137.6,212.4,203.4,202.2,201.1,180.9,156.7,153.4,153.1,152.9,150.6,148.4,149.4,149.4,149.4,149.4,149.3,148.8,148.3 +302,137.6,212.5,203.5,202.3,201.2,181.3,156.9,153.5,153.2,153,150.7,148.4,149.4,149.4,149.4,149.4,149.4,148.8,148.4 +303,137.6,212.5,203.6,202.4,201.3,181.8,157,153.6,153.4,153.1,150.8,148.5,149.4,149.4,149.4,149.4,149.4,148.9,148.4 +304,137.6,212.6,203.7,202.4,201.3,182.2,157.2,153.7,153.4,153.2,150.8,148.5,149.4,149.4,149.4,149.4,149.4,148.9,148.4 +305,137.7,212.6,203.7,202.5,201.4,182.6,157.4,153.8,153.5,153.2,150.9,148.5,149.5,149.5,149.5,149.5,149.4,148.9,148.4 +306,137.7,212.7,203.8,202.6,201.5,183.1,157.6,153.9,153.7,153.3,151,148.6,149.5,149.5,149.5,149.5,149.5,149,148.5 +307,137.7,212.7,203.9,202.7,201.6,183.5,157.7,154,153.8,153.5,151.1,148.6,149.5,149.5,149.5,149.5,149.5,149,148.5 +308,137.8,212.8,204,202.8,201.7,183.9,157.9,154.1,153.9,153.6,151.2,148.6,149.6,149.6,149.6,149.6,149.5,149.1,148.5 +309,137.8,212.8,204.1,202.9,201.8,184.3,158,154.2,154,153.7,151.2,148.6,149.6,149.6,149.6,149.6,149.6,149.1,148.6 +310,137.8,212.9,204.1,203,201.9,184.8,158.2,154.3,154,153.7,151.3,148.7,149.6,149.6,149.6,149.6,149.6,149.1,148.6 +311,137.8,213,204.2,203,202,185.1,158.3,154.4,154.1,153.8,151.4,148.7,149.7,149.7,149.7,149.7,149.6,149.2,148.6 +312,137.9,213,204.3,203.1,202.1,185.5,158.5,154.4,154.2,153.9,151.5,148.7,149.7,149.7,149.7,149.7,149.6,149.2,148.7 +313,137.9,213.1,204.4,203.2,202.2,185.9,158.6,154.5,154.3,154,151.6,148.8,149.7,149.7,149.7,149.7,149.7,149.2,148.7 +314,137.9,213.1,204.5,203.3,202.2,186.3,158.8,154.6,154.4,154.1,151.6,148.8,149.7,149.7,149.7,149.7,149.7,149.3,148.7 +315,138,213.2,204.6,203.4,202.3,186.7,158.9,154.7,154.5,154.2,151.7,148.8,149.8,149.8,149.8,149.8,149.7,149.3,148.7 +316,138,213.2,204.6,203.5,202.4,187,159.1,154.8,154.6,154.2,151.8,148.9,149.8,149.8,149.8,149.8,149.7,149.4,148.8 +317,138,213.3,204.7,203.6,202.5,187.4,159.2,154.9,154.6,154.3,151.8,148.9,149.8,149.8,149.8,149.8,149.8,149.4,148.8 +318,138,213.3,204.8,203.7,202.6,187.7,159.4,155,154.7,154.4,151.9,148.9,149.8,149.8,149.9,149.8,149.8,149.5,148.8 +319,138.1,213.4,204.9,203.7,202.7,188.1,159.5,155,154.8,154.5,152,149,149.9,149.9,149.9,149.9,149.8,149.5,148.8 +320,138.1,213.4,205,203.8,202.8,188.4,159.7,155.1,154.9,154.6,152,149,149.9,149.9,149.9,149.9,149.9,149.5,148.8 +321,138.1,213.5,205.1,203.9,202.9,188.7,159.8,155.2,155,154.6,152.1,149,149.9,149.9,149.9,149.9,149.9,149.5,148.8 +322,138.1,213.6,205.1,204,203,189,160,155.3,155.1,154.7,152.2,149,150,150,150,150,149.9,149.6,148.8 +323,138.2,213.6,205.2,204.1,203,189.3,160.1,155.4,155.1,154.8,152.2,149.1,150,150,150,150,149.9,149.6,148.9 +324,138.2,213.7,205.3,204.2,203.1,189.6,160.3,155.5,155.2,154.9,152.3,149.1,150,150,150,150,150,149.6,148.9 +325,138.2,213.7,205.4,204.3,203.2,189.9,160.4,155.6,155.3,155,152.4,149.1,150,150,150,150,150,149.7,148.9 +326,138.2,213.8,205.5,204.4,203.3,190.2,160.6,155.6,155.4,155.1,152.4,149.2,150.1,150.1,150.1,150.1,150,149.7,149 +327,138.3,213.8,205.6,204.5,203.4,190.5,160.8,155.7,155.5,155.1,152.5,149.2,150.1,150.1,150.1,150.1,150,149.7,149 +328,138.3,213.9,205.7,204.5,203.5,190.8,160.9,155.8,155.6,155.2,152.6,149.2,150.1,150.1,150.1,150.1,150.1,149.7,149 +329,138.3,214,205.7,204.6,203.6,191.1,161.1,155.9,155.7,155.3,152.6,149.3,150.1,150.1,150.1,150.1,150.1,149.8,149 +330,138.4,214,205.8,204.7,203.7,191.3,161.2,156,155.7,155.4,152.7,149.3,150.2,150.2,150.2,150.2,150.1,149.8,149.1 +331,138.4,214.1,205.9,204.8,203.8,191.6,161.4,156.1,155.8,155.5,152.8,149.3,150.2,150.2,150.2,150.2,150.2,149.8,149.1 +332,138.4,214.1,206,204.9,203.9,191.9,161.6,156.2,155.9,155.6,152.8,149.3,150.2,150.2,150.2,150.2,150.2,149.8,149.1 +333,138.4,214.2,206.1,205,203.9,192.1,161.7,156.3,156,155.6,152.9,149.4,150.3,150.3,150.3,150.3,150.2,149.9,149.2 +334,138.5,214.2,206.2,205.1,204,192.4,161.9,156.3,156.1,155.7,153,149.4,150.3,150.3,150.3,150.3,150.2,149.9,149.2 +335,138.5,214.3,206.3,205.2,204.1,192.6,162.1,156.4,156.2,155.8,153,149.4,150.3,150.3,150.3,150.3,150.3,149.9,149.2 +336,138.5,214.4,206.3,205.3,204.2,192.9,162.2,156.5,156.2,155.9,153.1,149.5,150.3,150.3,150.3,150.3,150.3,149.9,149.2 +337,138.5,214.4,206.4,205.3,204.3,193.1,162.4,156.6,156.3,156,153.1,149.5,150.4,150.4,150.4,150.4,150.3,150,149.3 +338,138.6,214.5,206.5,205.4,204.4,193.3,162.6,156.7,156.4,156.1,153.2,149.5,150.4,150.4,150.4,150.4,150.3,150,149.3 +339,138.6,214.5,206.6,205.5,204.5,193.6,162.8,156.8,156.5,156.1,153.3,149.6,150.4,150.4,150.4,150.4,150.4,150,149.3 +340,138.6,214.6,206.7,205.6,204.6,193.8,163,156.9,156.6,156.2,153.3,149.6,150.4,150.4,150.4,150.4,150.4,150,149.4 +341,138.6,214.7,206.8,205.7,204.7,194,163.1,156.9,156.7,156.3,153.4,149.6,150.5,150.5,150.5,150.5,150.4,150.1,149.4 +342,138.7,214.7,206.9,205.8,204.8,194.2,163.3,157,156.8,156.4,153.5,149.6,150.5,150.5,150.5,150.5,150.5,150.1,149.4 +343,138.7,214.8,207,205.9,204.9,194.5,163.5,157.1,156.8,156.5,153.5,149.7,150.5,150.5,150.5,150.5,150.5,150.1,149.4 +344,138.7,214.8,207,206,205,194.7,163.7,157.2,156.9,156.6,153.6,149.7,150.6,150.5,150.5,150.5,150.5,150.2,149.5 +345,138.7,214.9,207.1,206.1,205,194.9,163.9,157.3,157,156.6,153.7,149.7,150.6,150.6,150.6,150.6,150.5,150.2,149.5 +346,138.8,215,207.2,206.2,205.1,195.1,164.1,157.4,157.1,156.7,153.7,149.8,150.7,150.6,150.6,150.6,150.6,150.2,149.5 +347,138.8,215,207.3,206.2,205.2,195.3,164.3,157.5,157.2,156.8,153.8,149.8,150.8,150.6,150.6,150.6,150.6,150.2,149.5 +348,138.8,215.1,207.4,206.3,205.3,195.5,164.5,157.5,157.3,156.9,153.9,149.8,150.9,150.7,150.7,150.7,150.6,150.3,149.6 +349,138.8,215.2,207.5,206.4,205.4,195.6,164.7,157.6,157.4,157,153.9,149.8,151,150.7,150.7,150.7,150.6,150.3,149.6 +350,138.9,215.2,207.6,206.5,205.5,195.8,164.9,157.7,157.4,157.1,154,149.9,151,150.7,150.7,150.7,150.7,150.3,149.6 +351,138.9,215.3,207.7,206.6,205.6,196,165.1,157.8,157.5,157.1,154.1,149.9,151.1,150.8,150.8,150.7,150.7,150.3,149.7 +352,138.9,215.3,207.7,206.7,205.7,196.2,165.3,157.9,157.6,157.2,154.1,149.9,151.2,151,150.9,150.8,150.7,150.4,149.7 +353,138.9,215.4,207.8,206.8,205.8,196.4,165.5,158,157.7,157.3,154.2,150,151.3,151.1,151,151,150.8,150.4,149.7 +354,139,215.5,207.9,206.9,205.9,196.6,165.7,158.1,157.8,157.4,154.3,150,151.4,151.2,151.2,151.1,150.8,150.4,149.7 +355,139,215.5,208,207,206,196.7,165.9,158.2,157.9,157.5,154.3,150,151.5,151.3,151.3,151.2,150.8,150.4,149.8 +356,139,215.6,208.1,207.1,206.1,196.9,166.1,158.2,157.9,157.6,154.4,150,151.6,151.5,151.4,151.3,150.8,150.5,149.8 +357,139,215.7,208.2,207.2,206.2,197.1,166.3,158.3,158,157.6,154.5,150.1,151.7,151.6,151.5,151.4,150.9,150.5,149.8 +358,139.1,215.7,208.3,207.3,206.2,197.2,166.6,158.4,158.1,157.7,154.5,150.1,151.8,151.7,151.6,151.5,151,150.5,149.8 +359,139.1,215.8,208.4,207.3,206.3,197.4,166.8,158.5,158.2,157.8,154.6,150.1,152,151.8,151.8,151.7,151,150.5,149.9 +360,139.1,215.8,208.5,207.4,206.4,197.5,167,158.6,158.3,157.9,154.7,150.2,152.1,151.9,151.9,151.8,151.1,150.6,149.9 +361,139.1,215.9,208.5,207.5,206.5,197.7,167.2,158.7,158.4,158,154.7,150.2,152.2,152.1,152,151.9,151.2,150.6,149.9 +362,139.2,216,208.6,207.6,206.6,197.8,167.5,158.8,158.5,158.1,154.8,150.2,152.3,152.2,152.1,152,151.2,150.6,150 +363,139.2,216,208.7,207.7,206.7,198,167.7,158.8,158.5,158.1,154.9,150.2,152.4,152.3,152.2,152.1,151.3,150.6,150 +364,139.2,216.1,208.8,207.8,206.8,198.1,168,158.9,158.6,158.2,154.9,150.3,152.5,152.4,152.3,152.2,151.4,150.7,150 +365,139.2,216.2,208.9,207.9,206.9,198.3,168.2,159,158.7,158.3,155,150.3,152.7,152.5,152.4,152.3,151.4,150.7,150 +366,139.3,216.2,209,208,207,198.4,168.5,159.1,158.8,158.4,155.1,150.3,152.8,152.6,152.5,152.4,151.5,150.7,150.1 +367,139.3,216.3,209.1,208.1,207.1,198.6,168.7,159.2,158.9,158.5,155.2,150.4,152.9,152.7,152.6,152.5,151.6,150.7,150.1 +368,139.3,216.3,209.2,208.2,207.2,198.7,169,159.3,159,158.6,155.2,150.4,153,152.8,152.7,152.6,151.6,150.7,150.1 +369,139.3,216.4,209.2,208.3,207.3,198.8,169.3,159.4,159.1,158.6,155.3,150.4,153.1,152.9,152.8,152.7,151.7,150.8,150.1 +370,139.3,216.5,209.3,208.3,207.4,199,169.5,159.5,159.1,158.7,155.4,150.5,153.2,153,152.9,152.7,151.7,150.8,150.2 +371,139.4,216.5,209.4,208.4,207.5,199.1,169.8,159.5,159.2,158.8,155.4,150.5,153.3,153.1,153,152.8,151.8,150.8,150.2 +372,139.4,216.6,209.5,208.5,207.5,199.2,170.1,159.6,159.3,158.9,155.5,150.5,153.3,153.2,153.1,152.9,151.9,150.8,150.2 +373,139.4,216.7,209.6,208.6,207.6,199.3,170.4,159.7,159.4,159,155.6,150.6,153.4,153.3,153.1,153,151.9,150.9,150.2 +374,139.4,216.7,209.7,208.7,207.7,199.5,170.7,159.8,159.5,159.1,155.6,150.6,153.5,153.3,153.2,153.1,152,150.9,150.3 +375,139.5,216.8,209.8,208.8,207.8,199.6,171,159.9,159.6,159.1,155.7,150.7,153.6,153.4,153.3,153.2,152,150.9,150.3 +376,139.5,216.9,209.9,208.9,207.9,199.7,171.3,160,159.7,159.2,155.8,150.7,153.7,153.5,153.4,153.2,152.1,150.9,150.3 +377,139.5,216.9,209.9,209,208,199.8,171.6,160.1,159.7,159.3,155.8,150.8,153.8,153.6,153.5,153.3,152.1,151,150.3 +378,139.5,217,210,209.1,208.1,200,171.9,160.1,159.8,159.4,155.9,150.8,153.9,153.7,153.6,153.4,152.2,151,150.4 +379,139.6,217.1,210.1,209.2,208.2,200.1,172.2,160.2,159.9,159.5,156,150.9,154,153.8,153.6,153.5,152.3,151,150.4 +380,139.6,217.1,210.2,209.3,208.3,200.2,172.5,160.3,160,159.6,156,150.9,154.1,153.8,153.7,153.6,152.3,151,150.4 +381,139.6,217.2,210.3,209.3,208.4,200.3,172.8,160.4,160.1,159.7,156.1,151,154.1,153.9,153.8,153.6,152.4,151.1,150.4 +382,139.6,217.2,210.4,209.4,208.5,200.4,173.1,160.5,160.2,159.7,156.2,151,154.2,154,153.9,153.7,152.4,151.1,150.5 +383,139.6,217.3,210.5,209.5,208.6,200.5,173.4,160.6,160.3,159.8,156.3,151.1,154.3,154.1,154,153.8,152.5,151.1,150.5 +384,139.7,217.4,210.6,209.6,208.7,200.6,173.7,160.7,160.3,159.9,156.3,151.1,154.4,154.2,154,153.9,152.5,151.1,150.5 +385,139.7,217.4,210.6,209.7,208.8,200.7,174,160.8,160.4,160,156.4,151.2,154.5,154.2,154.1,153.9,152.6,151.2,150.6 +386,139.7,217.5,210.7,209.8,208.8,200.8,174.3,160.8,160.5,160.1,156.5,151.2,154.5,154.3,154.2,154,152.7,151.2,150.6 +387,139.7,217.6,210.8,209.9,208.9,200.9,174.6,160.9,160.6,160.2,156.6,151.3,154.6,154.4,154.3,154.1,152.7,151.2,150.6 +388,139.8,217.6,210.9,210,209,201,174.8,161,160.7,160.2,156.7,151.3,154.7,154.5,154.3,154.2,152.8,151.2,150.6 +389,139.8,217.7,211,210.1,209.1,201.2,175.1,161.1,160.8,160.3,156.7,151.4,154.8,154.6,154.4,154.2,152.8,151.2,150.7 +390,139.8,217.8,211.1,210.2,209.2,201.3,175.4,161.2,160.9,160.4,156.8,151.4,154.9,154.6,154.5,154.3,152.9,151.3,150.7 +391,139.8,217.8,211.2,210.2,209.3,201.4,175.7,161.3,160.9,160.5,156.9,151.5,154.9,154.7,154.6,154.4,152.9,151.3,150.7 +392,139.8,217.9,211.3,210.3,209.4,201.5,176,161.4,161,160.6,156.9,151.5,155,154.8,154.6,154.5,153,151.3,150.8 +393,139.9,218,211.3,210.4,209.5,201.6,176.3,161.5,161.1,160.7,157,151.6,155.1,154.9,154.7,154.5,153,151.3,150.8 +394,139.9,218,211.4,210.5,209.6,201.7,176.6,161.5,161.2,160.8,157.1,151.6,155.2,154.9,154.8,154.6,153.1,151.4,150.8 +395,139.9,218.1,211.5,210.6,209.7,201.8,176.9,161.6,161.3,160.8,157.1,151.7,155.2,155,154.9,154.7,153.2,151.4,150.8 +396,139.9,218.2,211.6,210.7,209.8,201.8,177.2,161.7,161.4,160.9,157.2,151.7,155.3,155.1,154.9,154.7,153.2,151.4,150.9 +397,140,218.2,211.7,210.8,209.9,201.9,177.5,161.8,161.5,161,157.3,151.7,155.4,155.1,155,154.8,153.3,151.4,150.9 +398,140,218.3,211.8,210.9,209.9,202,177.8,161.9,161.5,161.1,157.3,151.8,155.5,155.2,155.1,154.9,153.3,151.4,150.9 +399,140,218.3,211.9,211,210,202.1,178.1,162,161.6,161.2,157.4,151.8,155.5,155.3,155.1,155,153.4,151.5,151 +400,140,218.4,211.9,211,210.1,202.2,178.4,162.1,161.7,161.3,157.5,151.9,155.6,155.4,155.2,155,153.4,151.5,151 +401,140,218.5,212,211.1,210.2,202.3,178.7,162.1,161.8,161.3,157.5,151.9,155.7,155.4,155.3,155.1,153.5,151.5,151 +402,140.1,218.5,212.1,211.2,210.3,202.4,178.9,162.2,161.9,161.4,157.6,152,155.8,155.5,155.4,155.2,153.5,151.5,151 +403,140.1,218.6,212.2,211.3,210.4,202.5,179.2,162.3,162,161.5,157.7,152,155.8,155.6,155.4,155.2,153.6,151.6,151.1 +404,140.1,218.7,212.3,211.4,210.5,202.6,179.5,162.4,162.1,161.6,157.7,152.1,155.9,155.7,155.5,155.3,153.6,151.6,151.1 +405,140.1,218.7,212.4,211.5,210.6,202.7,179.8,162.5,162.2,161.7,157.8,152.1,156,155.7,155.6,155.4,153.7,151.6,151.1 +406,140.1,218.8,212.5,211.6,210.7,202.8,180.1,162.6,162.3,161.8,157.9,152.2,156.1,155.8,155.6,155.4,153.7,151.6,151.1 +407,140.2,218.9,212.5,211.7,210.8,202.9,180.4,162.7,162.4,161.9,157.9,152.2,156.1,155.9,155.7,155.5,153.8,151.7,151.2 +408,140.2,218.9,212.6,211.8,210.9,203,180.7,162.8,162.5,162.1,158,152.3,156.2,155.9,155.8,155.6,153.9,151.7,151.2 +409,140.2,219,212.7,211.8,210.9,203.1,181,163.2,162.6,162.1,158.1,152.4,156.3,156,155.8,155.6,153.9,151.7,151.2 +410,140.2,219.1,212.8,211.9,211,203.2,181.3,163.6,162.7,162.2,158.1,152.4,156.3,156.1,155.9,155.7,154,151.7,151.2 +411,140.3,219.1,212.9,212,211.1,203.3,181.6,164.1,162.8,162.3,158.2,152.5,156.4,156.1,156,155.8,154,151.7,151.3 +412,140.3,219.2,213,212.1,211.2,203.3,181.9,164.6,162.9,162.4,158.3,152.5,156.5,156.2,156.1,155.8,154.1,151.8,151.3 +413,140.3,219.3,213.1,212.2,211.3,203.4,182.2,165,162.9,162.4,158.3,152.6,156.6,156.3,156.1,155.9,154.1,151.8,151.3 +414,140.3,219.3,213.1,212.3,211.4,203.5,182.8,165.5,163,162.5,158.4,152.6,156.7,156.4,156.2,156,154.2,151.8,151.3 +415,140.3,219.4,213.2,212.4,211.5,203.6,183.6,165.9,163.1,162.6,158.5,152.7,156.8,156.4,156.3,156,154.2,151.8,151.4 +416,140.4,219.5,213.3,212.5,211.6,203.7,184.4,166.4,163.2,162.7,158.5,152.7,156.9,156.5,156.3,156.1,154.3,151.8,151.4 +417,140.4,219.6,213.4,212.6,211.7,203.8,185.2,166.8,163.3,162.8,158.6,152.8,157,156.6,156.4,156.2,154.3,151.9,151.4 +418,140.4,219.6,213.5,212.6,211.7,203.9,186,167.3,163.3,162.9,158.7,152.9,157.1,156.6,156.5,156.2,154.4,151.9,151.4 +419,140.4,219.7,213.6,212.7,211.8,204,186.8,167.8,163.4,162.9,158.8,152.9,157.2,156.7,156.5,156.3,154.4,151.9,151.5 +420,140.4,219.8,213.7,212.8,211.9,204.1,187.7,168.2,163.5,163,158.8,153,157.3,156.8,156.6,156.4,154.5,151.9,151.5 +421,140.5,219.8,213.8,212.9,212,204.2,188.5,168.7,163.6,163.1,158.9,153,157.4,156.8,156.7,156.4,154.6,152,151.5 +422,140.5,219.9,213.8,213,212.1,204.2,189.3,169.1,163.7,163.2,159,153.1,157.5,156.9,156.7,156.5,154.6,152,151.6 +423,140.5,220,213.9,213.1,212.2,204.3,190.1,169.6,164,163.2,159,153.1,157.6,157,156.8,156.6,154.7,152,151.6 +424,140.5,220,214,213.2,212.3,204.4,190.9,170,164.6,163.3,159.1,153.2,157.7,157,156.9,156.6,154.7,152,151.6 +425,140.5,220.1,214.1,213.3,212.4,204.5,191.7,170.6,165.1,163.4,159.2,153.2,157.8,157.1,156.9,156.7,154.8,152,151.6 +426,140.6,220.2,214.2,213.3,212.5,204.6,192.5,171.4,165.6,163.5,159.2,153.3,157.9,157.2,157,156.8,154.8,152.1,151.7 +427,140.6,220.2,214.3,213.4,212.6,204.7,193.3,172.2,166.2,163.6,159.3,153.3,158,157.2,157.1,156.8,154.9,152.1,151.7 +428,140.6,220.3,214.4,213.5,212.6,204.8,194.1,173,166.7,163.6,159.4,153.4,158.1,157.3,157.1,156.9,154.9,152.1,151.7 +429,140.6,220.4,214.4,213.6,212.7,204.9,194.9,173.8,167.3,163.7,159.4,153.4,158.2,157.4,157.2,157,155,152.1,151.7 +430,140.6,220.4,214.5,213.7,212.8,205,195.7,174.6,167.8,163.8,159.5,153.4,158.3,157.4,157.3,157,155,152.2,151.8 +431,140.7,220.5,214.6,213.8,212.9,205.1,196.5,175.4,168.4,163.9,159.6,153.5,158.4,157.5,157.3,157.1,155.1,152.2,151.8 +432,140.7,220.6,214.7,213.9,213,205.2,197.4,176.3,169,164,159.6,153.5,158.5,157.6,157.4,157.2,155.1,152.2,151.8 +433,140.7,220.7,214.8,214,213.1,205.2,198.2,177.1,169.7,164,159.7,153.6,158.6,157.6,157.5,157.2,155.2,152.2,151.9 +434,140.7,220.7,214.9,214.1,213.2,205.3,199,177.9,170.5,164.1,159.8,153.6,158.8,157.7,157.5,157.3,155.2,152.2,151.9 +435,140.7,220.8,215,214.1,213.3,205.4,199.8,178.7,171.2,164.2,159.8,153.7,158.9,157.8,157.6,157.4,155.3,152.3,151.9 +436,140.8,220.9,215,214.2,213.4,205.5,200.6,179.5,172,164.7,159.9,153.7,159,157.8,157.7,157.4,155.4,152.3,152 +437,140.8,220.9,215.1,214.3,213.4,205.6,201.4,180.3,172.7,165.3,160,153.7,159.1,157.9,157.7,157.5,155.4,152.3,152 +438,140.8,221,215.2,214.4,213.5,205.7,202.2,181.1,173.5,165.9,160.1,153.8,159.2,158,157.8,157.5,155.5,152.3,152 +439,140.8,221.1,215.3,214.5,213.6,205.8,203,181.9,174.2,166.5,160.1,153.8,159.3,158.1,157.9,157.6,155.5,152.3,152.1 +440,140.8,221.2,215.4,214.6,213.7,205.9,203.8,182.7,175,167.1,160.2,153.9,159.4,158.1,157.9,157.7,155.6,152.4,152.1 +441,140.9,221.2,215.5,214.7,213.8,206,204.4,183.5,175.7,167.7,160.3,153.9,159.5,158.2,158,157.7,155.6,152.4,152.1 +442,140.9,221.3,215.6,214.8,213.9,206.1,204.6,184.3,176.5,168.3,160.3,154,159.6,158.3,158.1,157.8,155.7,152.4,152.2 +443,140.9,221.4,215.7,214.8,214,206.2,204.8,184.8,177.3,168.9,160.4,154,159.7,158.3,158.1,157.9,155.7,152.5,152.2 +444,140.9,221.4,215.7,214.9,214.1,206.3,205,185.2,177.9,169.5,160.5,154,159.8,158.4,158.2,157.9,155.8,152.5,152.2 +445,140.9,221.5,215.8,215,214.2,206.3,205.2,185.6,178.6,170.1,160.5,154.1,159.9,158.5,158.3,158,155.8,152.5,152.3 +446,141,221.6,215.9,215.1,214.2,206.4,205.4,186,179.2,170.7,160.6,154.1,160.1,158.5,158.3,158.1,155.9,152.6,152.3 +447,141,221.7,216,215.2,214.3,206.5,205.6,186.4,179.8,171.3,160.7,154.2,160.2,158.6,158.4,158.1,155.9,152.6,152.3 +448,141,221.7,216.1,215.3,214.4,206.6,205.8,186.8,180.4,171.9,160.7,154.2,160.3,158.7,158.5,158.2,156,152.6,152.3 +449,141,221.8,216.2,215.4,214.5,206.7,205.9,187.2,180.9,172.5,160.8,154.2,160.4,158.7,158.5,158.3,156,152.7,152.3 +450,141,221.9,216.3,215.5,214.6,206.8,206.1,187.5,181.4,173.1,160.9,154.3,160.5,158.8,158.6,158.3,156.1,152.7,152.4 +451,141.1,222,216.4,215.6,214.7,206.9,206.3,187.9,181.9,173.7,160.9,154.3,160.6,158.9,158.7,158.4,156.2,152.7,152.4 +452,141.1,222,216.4,215.6,214.8,207,206.5,188.2,182.4,174.3,161,154.4,160.7,158.9,158.7,158.5,156.2,152.8,152.4 +453,141.1,222.1,216.5,215.7,214.9,207.1,206.7,188.5,182.9,174.9,161.1,154.4,160.9,159,158.8,158.5,156.3,152.8,152.4 +454,141.1,222.2,216.6,215.8,215,207.2,206.9,188.8,183.4,175.5,161.2,154.5,161,159.1,158.9,158.6,156.3,152.9,152.4 +455,141.1,222.3,216.7,215.9,215,207.3,207.1,189.1,183.8,176.1,161.2,154.5,161.1,159.1,158.9,158.7,156.4,152.9,152.5 +456,141.2,222.3,216.8,216,215.1,207.4,207.3,189.4,184.2,176.7,161.3,154.6,161.2,159.2,159,158.7,156.4,152.9,152.5 +457,141.2,222.4,216.9,216.1,215.2,207.5,207.5,189.7,184.6,177.4,161.4,154.6,161.3,159.3,159.1,158.8,156.5,153,152.5 +458,141.2,222.5,217,216.2,215.3,207.6,207.7,190,185,178.1,161.4,154.6,161.4,159.3,159.1,158.8,156.5,153,152.5 +459,141.2,222.5,217.1,216.3,215.4,207.7,207.8,190.3,185.4,178.7,161.5,154.7,161.6,159.4,159.2,158.9,156.6,153,152.5 +460,141.2,222.6,217.1,216.4,215.5,207.7,208,190.6,185.8,179.3,161.6,154.7,161.7,159.5,159.3,159,156.6,153.1,152.5 +461,141.2,222.7,217.2,216.4,215.6,207.8,208.2,190.9,186.2,179.9,161.6,154.8,161.8,159.5,159.3,159,156.7,153.1,152.6 +462,141.3,222.8,217.3,216.5,215.7,207.9,208.3,191.2,186.5,180.4,161.7,154.8,161.9,159.6,159.4,159.1,156.7,153.1,152.6 +463,141.3,222.9,217.4,216.6,215.8,208,208.5,191.5,186.9,181,161.8,154.9,162.1,159.7,159.5,159.2,156.8,153.2,152.6 +464,141.3,222.9,217.5,216.7,215.9,208.1,208.7,191.8,187.3,181.5,161.8,154.9,162.2,159.7,159.5,159.2,156.9,153.2,152.6 +465,141.3,223,217.6,216.8,215.9,208.2,208.8,192.1,187.6,182,161.9,154.9,162.3,159.8,159.6,159.3,156.9,153.2,152.6 +466,141.3,223.1,217.7,216.9,216,208.3,209,192.4,187.9,182.5,162,155,162.4,159.9,159.6,159.4,157,153.3,152.7 +467,141.4,223.2,217.8,217,216.1,208.4,209.1,192.7,188.3,182.9,162,155,162.6,159.9,159.7,159.4,157,153.3,152.7 +468,141.4,223.2,217.8,217.1,216.2,208.5,209.3,193,188.6,183.4,162.1,155.1,162.7,160,159.8,159.5,157.1,153.3,152.7 +469,141.4,223.3,217.9,217.2,216.3,208.6,209.4,193.2,188.9,183.8,162.2,155.1,162.8,160.1,159.8,159.6,157.1,153.4,152.7 +470,141.4,223.4,218,217.2,216.4,208.7,209.6,193.5,189.3,184.2,162.2,155.2,162.9,160.1,159.9,159.6,157.2,153.4,152.7 +471,141.4,223.5,218.1,217.3,216.5,208.8,209.7,193.8,189.6,184.7,162.3,155.2,163.1,160.2,160,159.7,157.2,153.5,152.8 +472,141.4,223.5,218.2,217.4,216.6,208.9,209.8,194,190,185.1,162.4,155.2,163.2,160.3,160,159.8,157.3,153.5,152.8 +473,141.5,223.6,218.3,217.5,216.7,209,210,194.3,190.3,185.5,162.5,155.3,163.3,160.3,160.1,159.8,157.3,153.5,152.8 +474,141.5,223.7,218.4,217.6,216.8,209.1,210.1,194.5,190.6,185.8,162.5,155.3,163.5,160.4,160.2,159.9,157.4,153.6,152.8 +475,141.5,223.8,218.5,217.7,216.8,209.1,210.2,194.8,190.9,186.2,162.6,155.4,163.6,160.5,160.2,159.9,157.4,153.6,152.8 +476,141.5,223.8,218.6,217.8,216.9,209.2,210.4,195,191.2,186.6,162.7,155.4,163.7,160.5,160.3,160,157.5,153.6,152.8 +477,141.5,223.9,218.6,217.9,217,209.3,210.5,195.3,191.5,187,162.7,155.5,163.9,160.6,160.4,160.1,157.6,153.7,152.9 +478,141.6,224,218.7,218,217.1,209.4,210.6,195.5,191.8,187.3,162.8,155.5,164,160.7,160.4,160.1,157.6,153.7,152.9 +479,141.6,224.1,218.8,218.1,217.2,209.5,210.7,195.8,192.1,187.7,162.9,155.5,164.2,160.7,160.5,160.2,157.7,153.7,152.9 +480,141.6,224.2,218.9,218.1,217.3,209.6,210.9,196,192.4,188.1,162.9,155.6,164.3,160.8,160.6,160.3,157.7,153.8,152.9 +481,141.6,224.2,219,218.2,217.4,209.7,211,196.2,192.7,188.5,163,155.6,164.4,160.9,160.6,160.3,157.8,153.8,152.9 +482,141.6,224.3,219.1,218.3,217.5,209.8,211.1,196.4,193,188.8,163.1,155.7,164.6,160.9,160.7,160.4,157.8,153.8,153 +483,141.6,224.4,219.2,218.4,217.6,209.9,211.2,196.7,193.3,189.2,163.1,155.7,164.7,161,160.8,160.5,157.9,153.9,153 +484,141.7,224.5,219.3,218.5,217.7,210,211.3,196.9,193.5,189.5,163.2,155.8,164.9,161.1,160.8,160.5,157.9,153.9,153 +485,141.7,224.6,219.4,218.6,217.7,210.1,211.4,197.1,193.8,189.9,163.3,155.8,165,161.1,160.9,160.6,158,153.9,153 +486,141.7,224.6,219.5,218.7,217.8,210.2,211.5,197.3,194.1,190.2,163.3,155.8,165.2,161.2,161,160.7,158,154,153 +487,141.7,224.7,219.5,218.8,217.9,210.3,211.6,197.5,194.3,190.5,163.4,155.9,165.3,161.3,161,160.7,158.1,154,153.1 +488,141.7,224.8,219.6,218.9,218,210.4,211.7,197.7,194.6,190.8,163.5,155.9,165.5,161.3,161.1,160.8,158.2,154.1,153.1 +489,141.8,224.9,219.7,219,218.1,210.4,211.8,197.9,194.8,191.1,163.5,156,165.6,161.4,161.2,160.9,158.2,154.1,153.1 +490,141.8,225,219.8,219.1,218.2,210.5,211.9,198.1,195.1,191.5,163.6,156,165.8,161.4,161.2,160.9,158.3,154.1,153.1 +491,141.8,225,219.9,219.1,218.3,210.6,212,198.3,195.3,191.8,163.7,156.1,165.9,161.5,161.3,161,158.3,154.2,153.1 +492,141.8,225.1,220,219.2,218.4,210.7,212.1,198.5,195.5,192.1,163.8,156.1,166.1,161.6,161.4,161,158.4,154.2,153.1 +493,141.8,225.2,220.1,219.3,218.5,210.8,212.2,198.7,195.8,192.4,163.8,156.2,166.2,161.6,161.4,161.1,158.4,154.2,153.2 +494,141.8,225.3,220.2,219.4,218.6,210.9,212.3,198.9,196,192.6,163.9,156.2,166.4,161.7,161.5,161.2,158.5,154.3,153.2 +495,141.9,225.4,220.3,219.5,218.7,211,212.4,199.1,196.2,192.9,164,156.2,166.6,161.8,161.6,161.2,158.5,154.3,153.2 +496,141.9,225.4,220.4,219.6,218.8,211.1,212.4,199.2,196.4,193.2,164,156.3,166.7,161.8,161.6,161.3,158.6,154.3,153.2 +497,141.9,225.5,220.5,219.7,218.8,211.2,212.5,199.4,196.7,193.5,164.1,156.3,166.9,161.9,161.7,161.4,158.6,154.4,153.2 +498,141.9,225.6,220.5,219.8,218.9,211.3,212.6,199.6,196.9,193.7,164.2,156.4,167,162,161.7,161.4,158.7,154.4,153.2 +499,141.9,225.7,220.6,219.9,219,211.4,212.7,199.7,197.1,194,164.2,156.4,167.2,162,161.8,161.5,158.8,154.4,153.3 +500,141.9,225.8,220.7,220,219.1,211.5,212.7,199.9,197.3,194.3,164.3,156.5,167.4,162.1,161.9,161.6,158.8,154.5,153.3 +501,142,225.8,220.8,220.1,219.2,211.6,212.8,200.1,197.5,194.5,164.4,156.5,167.6,162.2,161.9,161.6,158.9,154.5,153.3 +502,142,225.9,220.9,220.2,219.3,211.6,212.9,200.2,197.7,194.8,164.4,156.5,167.7,162.2,162,161.7,158.9,154.6,153.3 +503,142,226,221,220.2,219.4,211.7,213,200.4,197.9,195,164.5,156.6,167.9,162.3,162.1,161.8,159,154.6,153.3 +504,142,226.1,221.1,220.3,219.5,211.8,213,200.6,198.1,195.3,164.6,156.6,168.1,162.4,162.1,161.8,159,154.6,153.4 +505,142,226.2,221.2,220.4,219.6,211.9,213.1,200.7,198.3,195.5,164.6,156.7,168.3,162.4,162.2,161.9,159.1,154.7,153.4 +506,142,226.3,221.3,220.5,219.7,212,213.2,200.9,198.5,195.7,164.7,156.7,168.5,162.5,162.3,161.9,159.1,154.7,153.4 +507,142.1,226.3,221.4,220.6,219.8,212.1,213.2,201,198.6,196,164.8,156.8,168.6,162.6,162.3,162,159.2,154.7,153.4 +508,142.1,226.4,221.5,220.7,219.9,212.2,213.3,201.2,198.8,196.2,164.8,156.8,168.8,162.6,162.4,162.1,159.2,154.8,153.4 +509,142.1,226.5,221.5,220.8,219.9,212.3,213.3,201.3,199,196.4,164.9,156.9,169,162.7,162.5,162.1,159.3,154.8,153.4 +510,142.1,226.6,221.6,220.9,220,212.4,213.4,201.4,199.2,196.6,165,156.9,169.2,162.8,162.5,162.2,159.4,154.8,153.5 +511,142.1,226.7,221.7,221,220.1,212.5,213.5,201.6,199.4,196.9,165,156.9,169.4,162.8,162.6,162.3,159.4,154.9,153.5 +512,142.1,226.8,221.8,221.1,220.2,212.5,213.5,201.7,199.5,197.1,165.1,157,169.6,162.9,162.7,162.3,159.5,154.9,153.5 +513,142.2,226.8,221.9,221.2,220.3,212.6,213.6,201.8,199.7,197.3,165.2,157,169.8,163,162.7,162.4,159.5,154.9,153.6 +514,142.2,226.9,222,221.3,220.4,212.7,213.6,202,199.9,197.5,165.2,157.1,170,163,162.8,162.5,159.6,155,153.6 +515,142.2,227,222.1,221.4,220.5,212.8,213.7,202.1,200,197.7,165.3,157.1,170.2,163.1,162.9,162.5,159.6,155,153.6 +516,142.2,227.1,222.2,221.4,220.6,212.9,213.7,202.2,200.2,197.9,165.4,157.2,170.4,163.2,162.9,162.6,159.7,155.1,153.7 +517,142.2,227.2,222.3,221.5,220.7,213,213.8,202.4,200.3,198.1,165.4,157.2,170.6,163.2,163,162.7,159.7,155.1,153.7 +518,142.2,227.3,222.4,221.6,220.8,213.1,213.8,202.5,200.5,198.3,165.5,157.3,170.9,163.3,163.1,162.7,159.8,155.1,153.7 +519,142.3,227.3,222.5,221.7,220.9,213.2,213.9,202.6,200.6,198.4,165.6,157.3,171.1,163.4,163.1,162.8,159.9,155.2,153.7 +520,142.3,227.4,222.6,221.8,221,213.3,213.9,202.7,200.8,198.6,165.6,157.3,171.3,163.4,163.2,162.8,159.9,155.2,153.8 +521,142.3,227.5,222.6,221.9,221.1,213.4,214,202.8,200.9,198.8,165.7,157.4,171.5,163.5,163.3,162.9,160,155.2,153.8 +522,142.3,227.6,222.7,222,221.1,213.4,214,203,201.1,199,165.8,157.4,171.8,163.6,163.3,163,160,155.3,153.8 +523,142.3,227.7,222.8,222.1,221.2,213.5,214.1,203.1,201.2,199.2,165.8,157.5,172,163.6,163.4,163,160.1,155.3,153.9 +524,142.3,227.8,222.9,222.2,221.3,213.6,214.1,203.2,201.3,199.3,165.9,157.5,172.3,163.7,163.4,163.1,160.1,155.3,153.9 +525,142.4,227.8,223,222.3,221.4,213.7,214.1,203.3,201.5,199.5,166,157.6,172.5,163.8,163.5,163.2,160.2,155.4,153.9 +526,142.4,227.9,223.1,222.4,221.5,213.8,214.2,203.4,201.6,199.7,166,157.6,172.8,163.8,163.6,163.2,160.2,155.4,154 +527,142.4,228,223.2,222.5,221.6,213.9,214.2,203.5,201.7,199.8,166.1,157.7,173,163.9,163.6,163.3,160.3,155.4,154 +528,142.4,228.1,223.3,222.6,221.7,214,214.3,203.6,201.9,200,166.2,157.7,173.3,164,163.7,163.4,160.4,155.5,154 +529,142.4,228.2,223.4,222.6,221.8,214.1,214.3,203.7,202,200.1,166.2,157.7,173.6,164,163.8,163.4,160.4,155.5,154 +530,142.4,228.3,223.5,222.7,221.9,214.2,214.3,203.8,202.1,200.3,166.3,157.8,173.8,164.1,163.8,163.5,160.5,155.6,154.1 +531,142.5,228.4,223.6,222.8,222,214.3,214.4,203.9,202.2,200.4,166.4,157.8,174.1,164.1,163.9,163.6,160.5,155.6,154.1 +532,142.5,228.4,223.7,222.9,222.1,214.3,214.4,204,202.4,200.6,166.4,157.9,174.4,164.2,164,163.6,160.6,155.6,154.1 +533,142.5,228.5,223.7,223,222.2,214.4,214.5,204.1,202.5,200.7,166.5,157.9,174.7,164.3,164,163.7,160.6,155.7,154.2 +534,142.5,228.6,223.8,223.1,222.3,214.5,214.5,204.2,202.6,200.9,166.6,158,175,164.3,164.1,163.8,160.7,155.7,154.2 +535,142.5,228.7,223.9,223.2,222.4,214.6,214.5,204.3,202.7,201,166.6,158,175.3,164.4,164.2,163.8,160.7,155.7,154.2 +536,142.5,228.8,224,223.3,222.4,214.7,214.6,204.4,202.8,201.2,166.7,158.1,175.6,164.5,164.2,163.9,160.8,155.8,154.3 +537,142.6,228.9,224.1,223.4,222.5,214.8,214.6,204.5,202.9,201.3,166.8,158.1,175.9,164.5,164.3,163.9,160.9,155.8,154.3 +538,142.6,229,224.2,223.5,222.6,214.9,214.6,204.6,203,201.4,166.8,158.1,176.1,164.6,164.4,164,160.9,155.8,154.3 +539,142.6,229,224.3,223.6,222.7,215,214.7,204.7,203.2,201.6,166.9,158.2,176.4,164.7,164.4,164.1,161,155.9,154.3 +540,142.6,229.1,224.4,223.7,222.8,215.1,214.7,204.8,203.3,201.7,167,158.2,176.7,164.7,164.5,164.1,161,155.9,154.4 +541,142.6,229.2,224.5,223.8,222.9,215.1,214.8,204.9,203.4,201.8,167.2,158.3,177,164.8,164.6,164.2,161.1,156,154.4 +542,142.6,229.3,224.6,223.9,223,215.2,214.8,204.9,203.5,202,168.2,158.3,177.3,164.9,164.6,164.3,161.1,156,154.4 +543,142.7,229.4,224.7,223.9,223.1,215.3,214.8,205,203.6,202.1,169.1,158.4,177.5,164.9,164.7,164.3,161.2,156,154.5 +544,142.7,229.5,224.8,224,223.2,215.4,214.9,205.1,203.7,202.2,169.6,158.4,177.8,165,164.7,164.4,161.3,156.1,154.5 +545,142.7,229.6,224.8,224.1,223.3,215.5,214.9,205.2,203.8,202.3,170,158.5,178.1,165.1,164.8,164.5,161.3,156.1,154.5 +546,142.7,229.6,224.9,224.2,223.4,215.6,214.9,205.3,203.9,202.4,170.5,158.5,178.4,165.1,164.9,164.5,161.4,156.1,154.6 +547,142.7,229.7,225,224.3,223.5,215.7,215,205.4,204,202.6,171,158.6,178.7,165.2,164.9,164.6,161.4,156.2,154.6 +548,142.7,229.8,225.1,224.4,223.6,215.8,215,205.5,204.1,202.7,171.5,158.6,178.9,165.3,165,164.7,161.5,156.2,154.6 +549,142.7,229.9,225.2,224.5,223.7,215.9,215,205.5,204.2,202.8,171.9,158.6,179.2,165.3,165.1,164.7,161.6,156.2,154.6 +550,142.8,230,225.3,224.6,223.8,216,215.1,205.6,204.3,202.9,172.4,158.7,179.5,165.4,165.1,164.8,161.7,156.3,154.7 +551,142.8,230.1,225.4,224.7,223.8,216,215.1,205.7,204.4,203,172.9,158.7,179.8,165.5,165.2,164.8,161.7,156.3,154.7 +552,142.8,230.2,225.5,224.8,223.9,216.1,215.1,205.8,204.4,203.1,173.3,158.8,180.1,165.5,165.3,164.9,161.8,156.4,154.7 +553,142.8,230.2,225.6,224.9,224,216.2,215.2,205.9,204.5,203.2,173.8,158.8,180.4,165.6,165.3,165,161.8,156.4,154.8 +554,142.8,230.3,225.7,225,224.1,216.3,215.2,205.9,204.6,203.3,174.3,158.9,180.6,165.7,165.4,165,161.9,156.4,154.8 +555,142.8,230.4,225.8,225.1,224.2,216.4,215.2,206,204.7,203.4,174.8,158.9,180.9,165.7,165.5,165.1,162,156.5,154.8 +556,142.9,230.5,225.9,225.2,224.3,216.5,215.3,206.1,204.8,203.5,175.2,159,181.2,165.8,165.5,165.2,162,156.5,154.9 +557,142.9,230.6,225.9,225.2,224.4,216.6,215.3,206.2,204.9,203.6,175.7,159,181.5,165.9,165.6,165.2,162.1,156.5,154.9 +558,142.9,230.7,226,225.3,224.5,216.7,215.4,206.3,205,203.8,176.2,159.1,181.8,165.9,165.7,165.3,162.1,156.6,154.9 +559,142.9,230.8,226.1,225.4,224.6,216.8,215.4,206.3,205.1,203.9,176.7,159.1,182,166,165.7,165.4,162.2,156.6,154.9 +560,142.9,230.9,226.2,225.5,224.7,216.8,215.4,206.4,205.2,204,177.1,159.1,182.3,166.1,165.8,165.4,162.2,156.6,155 +561,142.9,230.9,226.3,225.6,224.8,216.9,215.5,206.5,205.3,204.1,177.6,159.2,182.6,166.1,165.9,165.5,162.3,156.7,155 +562,143,231,226.4,225.7,224.9,217,215.5,206.6,205.3,204.1,178.1,159.2,182.9,166.2,165.9,165.6,162.3,156.7,155 +563,143,231.1,226.5,225.8,225,217.1,215.6,206.7,205.4,204.2,178.5,159.3,183.2,166.3,166,165.6,162.4,156.8,155.1 +564,143,231.2,226.6,225.9,225.1,217.2,215.6,206.7,205.5,204.3,179.2,159.3,183.5,166.3,166.1,165.7,162.4,156.8,155.1 +565,143,231.3,226.7,226,225.2,217.3,215.6,206.8,205.6,204.4,179.9,159.4,183.7,166.4,166.2,165.9,162.5,156.8,155.1 +566,143,231.4,226.8,226.1,225.2,217.4,215.7,206.9,205.7,204.5,180.5,159.4,184.1,166.6,166.3,165.9,162.5,156.9,155.2 +567,143,231.5,226.9,226.2,225.3,217.5,215.7,207,205.8,204.6,181,159.5,184.3,166.6,166.4,166,162.6,156.9,155.2 +568,143,231.5,227,226.3,225.4,217.6,215.7,207,205.9,204.7,181.6,159.5,184.6,167.1,166.4,166.1,162.7,156.9,155.2 +569,143.1,231.6,227,226.4,225.5,217.7,215.8,207.1,205.9,204.8,182.1,159.5,184.9,167.5,166.5,166.1,162.7,157,155.2 +570,143.1,231.7,227.1,226.4,225.6,217.7,215.8,207.2,206,204.9,182.7,159.6,185.2,168,166.5,166.2,162.8,157,155.3 +571,143.1,231.8,227.2,226.5,225.7,217.8,215.9,207.3,206.1,205,183.2,159.6,185.7,168.4,166.6,166.2,162.8,157,155.3 +572,143.1,231.9,227.3,226.6,225.8,217.9,215.9,207.4,206.2,205.1,183.6,159.7,186.5,168.9,166.7,166.3,162.9,157.1,155.3 +573,143.1,232,227.4,226.7,225.9,218,216,207.4,206.3,205.2,184.1,159.7,187.3,169.3,166.7,166.4,162.9,157.1,155.4 +574,143.1,232.1,227.5,226.8,226,218.1,216,207.5,206.4,205.3,184.6,159.8,188.1,169.8,166.8,166.4,163,157.2,155.4 +575,143.1,232.2,227.6,226.9,226.1,218.2,216,207.6,206.5,205.4,185,159.8,188.9,170.2,166.8,166.5,163,157.2,155.4 +576,143.2,232.2,227.7,227,226.2,218.3,216.1,207.7,206.5,205.4,185.5,159.9,189.7,170.7,166.9,166.5,163.1,157.2,155.5 +577,143.2,232.3,227.8,227.1,226.3,218.4,216.1,207.8,206.6,205.5,185.9,159.9,190.5,171.1,167,166.6,163.1,157.3,155.5 +578,143.2,232.4,227.9,227.2,226.4,218.5,216.2,207.8,206.7,205.6,186.3,160,191.3,171.6,167,166.7,163.2,157.3,155.5 +579,143.2,232.5,227.9,227.3,226.4,218.6,216.2,207.9,206.8,205.7,186.7,160,192.1,172,167.1,166.7,163.3,157.3,155.6 +580,143.2,232.6,228,227.4,226.5,218.6,216.3,208,206.9,205.8,187.1,160.1,192.9,172.5,167.1,166.8,163.3,157.4,155.6 +581,143.2,232.7,228.1,227.4,226.6,218.7,216.3,208.1,207,205.9,187.5,160.1,193.7,172.9,167.4,166.8,163.4,157.4,155.6 +582,143.3,232.8,228.2,227.5,226.7,218.8,216.4,208.1,207,206,187.9,160.1,194.5,173.4,168,166.9,163.4,157.5,155.6 +583,143.3,232.9,228.3,227.6,226.8,218.9,216.4,208.2,207.1,206.1,188.3,160.2,195.3,174.2,168.5,167,163.5,157.5,155.7 +584,143.3,232.9,228.4,227.7,226.9,219,216.5,208.3,207.2,206.1,188.7,160.2,196.1,175,169.1,167,163.5,157.5,155.7 +585,143.3,233,228.5,227.8,227,219.1,216.5,208.4,207.3,206.2,189.1,160.3,196.9,175.8,169.6,167.1,163.6,157.6,155.7 +586,143.3,233.1,228.6,227.9,227.1,219.2,216.5,208.5,207.4,206.3,189.5,160.3,197.7,176.6,170.1,167.1,163.6,157.6,155.8 +587,143.3,233.2,228.7,228,227.2,219.3,216.6,208.5,207.5,206.4,189.9,160.4,198.5,177.4,170.7,167.2,163.7,157.6,155.8 +588,143.3,233.3,228.8,228.1,227.3,219.4,216.6,208.6,207.5,206.5,190.2,160.4,199.3,178.2,171.2,167.2,163.7,157.7,155.8 +589,143.4,233.4,228.8,228.2,227.4,219.5,216.7,208.7,207.6,206.6,190.6,160.5,200.1,179,171.8,167.3,163.8,157.7,155.9 +590,143.4,233.5,228.9,228.3,227.5,219.6,216.7,208.8,207.7,206.7,190.9,160.5,200.9,179.8,172.4,167.4,163.8,157.7,155.9 +591,143.4,233.5,229,228.4,227.6,219.6,216.8,208.9,207.8,206.8,191.3,160.6,201.7,180.6,173,167.4,163.9,157.8,155.9 +592,143.4,233.6,229.1,228.4,227.6,219.7,216.8,209,207.9,206.8,191.6,160.6,202.5,181.4,173.6,167.5,164,157.8,155.9 +593,143.4,233.7,229.2,228.5,227.7,219.8,216.9,209,208,206.9,191.9,160.6,203.3,182.2,174.2,167.5,164,157.9,156 +594,143.4,233.8,229.3,228.6,227.8,219.9,216.9,209.1,208.1,207,192.2,160.7,204.1,183,174.9,168.1,164.1,157.9,156 +595,143.4,233.9,229.4,228.7,227.9,220,217,209.2,208.1,207.1,192.5,160.7,204.9,183.8,175.5,168.7,164.1,157.9,156 +596,143.5,234,229.5,228.8,228,220.1,217,209.3,208.2,207.2,192.9,160.8,205.4,184.3,176.1,169.3,164.2,158,156.1 +597,143.5,234.1,229.6,228.9,228.1,220.2,217.1,209.4,208.3,207.3,193.2,160.8,205.6,184.8,176.7,169.9,164.2,158,156.1 +598,143.5,234.1,229.6,229,228.2,220.3,217.2,209.4,208.4,207.4,193.4,160.9,205.8,185.3,177.3,170.5,164.3,158,156.1 +599,143.5,234.2,229.7,229.1,228.3,220.4,217.2,209.5,208.5,207.5,193.7,160.9,206,185.8,178,171.1,164.3,158.1,156.2 +600,143.5,234.3,229.8,229.2,228.4,220.5,217.3,209.6,208.6,207.5,194,161,206.2,186.2,178.6,171.6,164.4,158.1,156.2 +601,143.5,234.4,229.9,229.3,228.5,220.6,217.3,209.7,208.7,207.6,194.3,161,206.4,186.6,179.3,172.1,164.4,158.2,156.2 +602,143.5,234.5,230,229.3,228.6,220.7,217.4,209.8,208.7,207.7,194.6,161.1,206.6,187,179.9,172.7,164.5,158.2,156.2 +603,143.6,234.6,230.1,229.4,228.6,220.7,217.4,209.9,208.8,207.8,194.9,161.1,206.8,187.4,180.6,173.2,164.6,158.2,156.3 +604,143.6,234.7,230.2,229.5,228.7,220.8,217.5,209.9,208.9,207.9,195.1,161.2,206.9,187.8,181.2,173.7,164.6,158.3,156.3 +605,143.6,234.8,230.3,229.6,228.8,220.9,217.5,210,209,208,195.4,161.2,207.1,188.2,181.7,174.2,164.7,158.3,156.3 +606,143.6,234.8,230.3,229.7,228.9,221,217.6,210.1,209.1,208.1,195.6,161.2,207.3,188.5,182.3,174.7,164.7,158.3,156.4 +607,143.6,234.9,230.4,229.8,229,221.1,217.6,210.2,209.2,208.2,195.9,161.3,207.5,188.9,182.8,175.2,164.8,158.4,156.4 +608,143.6,235,230.5,229.9,229.1,221.2,217.7,210.3,209.3,208.2,196.1,161.3,207.7,189.2,183.3,175.7,164.8,158.4,156.4 +609,143.6,235.1,230.6,230,229.2,221.3,217.7,210.4,209.4,208.3,196.4,161.4,207.9,189.5,183.8,176.3,164.9,158.5,156.5 +610,143.7,235.2,230.7,230.1,229.3,221.4,217.8,210.5,209.4,208.4,196.6,161.4,208.1,189.9,184.2,176.8,164.9,158.5,156.5 +611,143.7,235.3,230.8,230.1,229.4,221.5,217.9,210.5,209.5,208.5,196.8,161.5,208.2,190.2,184.7,177.3,165,158.5,156.5 +612,143.7,235.4,230.9,230.2,229.4,221.6,217.9,210.6,209.6,208.6,197.1,161.5,208.4,190.5,185.1,177.8,165,158.6,156.6 +613,143.7,235.4,230.9,230.3,229.5,221.7,218,210.7,209.7,208.7,197.3,161.6,208.6,190.8,185.6,178.3,165.1,158.6,156.6 +614,143.7,235.5,231,230.4,229.6,221.8,218,210.8,209.8,208.8,197.5,161.6,208.8,191.1,186,178.8,165.2,158.6,156.6 +615,143.7,235.6,231.1,230.5,229.7,221.8,218.1,210.9,209.9,208.9,197.7,161.7,209,191.4,186.4,179.3,165.2,158.7,156.6 +616,143.7,235.7,231.2,230.6,229.8,221.9,218.1,211,210,209,198,161.7,209.1,191.7,186.8,180,165.3,158.7,156.7 +617,143.8,235.8,231.3,230.7,229.9,222,218.2,211,210.1,209,198.2,161.8,209.3,191.9,187.2,180.6,165.3,158.8,156.7 +618,143.8,235.9,231.4,230.8,230,222.1,218.2,211.1,210.1,209.1,198.4,161.8,209.5,192.2,187.5,181.2,165.4,158.8,156.7 +619,143.8,236,231.5,230.8,230.1,222.2,218.3,211.2,210.2,209.2,198.6,161.8,209.6,192.5,187.9,181.8,165.4,158.8,156.8 +620,143.8,236,231.6,230.9,230.2,222.3,218.4,211.3,210.3,209.3,198.8,161.9,209.8,192.8,188.2,182.3,165.5,158.9,156.8 +621,143.8,236.1,231.6,231,230.2,222.4,218.4,211.4,210.4,209.4,199,161.9,210,193.1,188.6,182.8,165.5,158.9,156.8 +622,143.8,236.2,231.7,231.1,230.3,222.5,218.5,211.5,210.5,209.5,199.2,162,210.1,193.4,188.9,183.3,165.6,158.9,156.9 +623,143.8,236.3,231.8,231.2,230.4,222.6,218.5,211.6,210.6,209.6,199.3,162,210.3,193.7,189.3,183.8,165.6,159,156.9 +624,143.9,236.4,231.9,231.3,230.5,222.7,218.6,211.6,210.7,209.7,199.5,162.1,210.4,194,189.6,184.3,165.7,159,156.9 +625,143.9,236.5,232,231.4,230.6,222.8,218.7,211.7,210.8,209.8,199.7,162.1,210.6,194.3,189.9,184.7,165.8,159.1,156.9 +626,143.9,236.5,232.1,231.4,230.7,222.9,218.7,211.8,210.9,209.9,199.9,162.2,210.7,194.6,190.3,185.2,165.8,159.1,157 +627,143.9,236.6,232.1,231.5,230.8,223,218.8,211.9,210.9,209.9,200.1,162.2,210.9,194.8,190.6,185.6,165.9,159.1,157 +628,143.9,236.7,232.2,231.6,230.9,223.1,218.8,212,211,210,200.2,162.3,211,195.1,191,186,165.9,159.2,157 +629,143.9,236.8,232.3,231.7,231,223.1,218.9,212.1,211.1,210.1,200.4,162.3,211.1,195.4,191.3,186.4,166,159.2,157.1 +630,143.9,236.9,232.4,231.8,231,223.2,218.9,212.2,211.2,210.2,200.6,162.4,211.3,195.6,191.6,186.8,166,159.2,157.1 +631,143.9,237,232.5,231.9,231.1,223.3,219,212.2,211.3,210.3,200.7,162.4,211.4,195.9,192,187.2,166.1,159.3,157.1 +632,144,237.1,232.6,232,231.2,223.4,219.1,212.3,211.4,210.4,200.9,162.5,211.5,196.1,192.3,187.6,166.1,159.3,157.2 +633,144,237.1,232.6,232,231.3,223.5,219.1,212.4,211.5,210.5,201.1,162.5,211.6,196.4,192.6,187.9,166.2,159.4,157.2 +634,144,237.2,232.7,232.1,231.4,223.6,219.2,212.5,211.6,210.6,201.2,162.5,211.8,196.6,192.9,188.3,166.2,159.4,157.2 +635,144,237.3,232.8,232.2,231.5,223.7,219.2,212.6,211.7,210.7,201.4,162.6,211.9,196.9,193.2,188.7,166.3,159.4,157.3 +636,144,237.4,232.9,232.3,231.6,223.8,219.3,212.7,211.7,210.8,201.5,162.6,212,197.1,193.5,189.1,166.3,159.5,157.3 +637,144,237.5,233,232.4,231.6,223.9,219.4,212.8,211.8,210.8,201.7,162.7,212.1,197.3,193.8,189.4,166.4,159.5,157.3 +638,144,237.6,233.1,232.5,231.7,224,219.4,212.9,211.9,210.9,201.8,162.7,212.2,197.6,194.1,189.8,166.5,159.5,157.3 +639,144.1,237.7,233.1,232.5,231.8,224.1,219.5,212.9,212,211,201.9,162.8,212.4,197.8,194.3,190.2,166.5,159.6,157.4 +640,144.1,237.7,233.2,232.6,231.9,224.2,219.5,213,212.1,211.1,202.1,162.8,212.5,198,194.6,190.5,166.6,159.6,157.4 +641,144.1,237.8,233.3,232.7,232,224.3,219.6,213.1,212.2,211.2,202.2,162.9,212.6,198.2,194.9,190.9,166.6,159.7,157.4 +642,144.1,237.9,233.4,232.8,232.1,224.4,219.7,213.2,212.3,211.3,202.4,162.9,212.7,198.4,195.2,191.2,166.7,159.7,157.5 +643,144.1,238,233.5,232.9,232.2,224.4,219.7,213.3,212.4,211.4,202.5,163,212.8,198.7,195.4,191.5,166.7,159.7,157.5 +644,144.1,238.1,233.6,233,232.2,224.5,219.8,213.4,212.5,211.5,202.6,163,212.9,198.9,195.7,191.9,166.8,159.8,157.5 +645,144.1,238.2,233.6,233.1,232.3,224.6,219.8,213.5,212.5,211.6,202.8,163.1,213,199.1,195.9,192.2,166.8,159.8,157.6 +646,144.2,238.2,233.7,233.1,232.4,224.7,219.9,213.5,212.6,211.7,202.9,163.1,213.1,199.3,196.2,192.5,166.9,159.8,157.6 +647,144.2,238.3,233.8,233.2,232.5,224.8,220,213.6,212.7,211.8,203,163.2,213.2,199.5,196.4,192.8,166.9,159.9,157.6 +648,144.2,238.4,233.9,233.3,232.6,224.9,220,213.7,212.8,211.8,203.1,163.2,213.3,199.7,196.7,193.1,167,159.9,157.7 +649,144.2,238.5,234,233.4,232.7,225,220.1,213.8,212.9,211.9,203.3,163.2,213.4,199.9,196.9,193.4,167,160,157.7 +650,144.2,238.6,234,233.5,232.7,225.1,220.1,213.9,213,212,203.4,163.3,213.4,200.1,197.2,193.7,167.1,160,157.7 +651,144.2,238.7,234.1,233.5,232.8,225.2,220.2,214,213.1,212.1,203.5,163.3,213.5,200.2,197.4,194,167.2,160,157.7 +652,144.2,238.8,234.2,233.6,232.9,225.3,220.3,214.1,213.2,212.2,203.6,163.4,213.6,200.4,197.6,194.3,167.2,160.1,157.8 +653,144.2,238.8,234.3,233.7,233,225.4,220.3,214.1,213.2,212.3,203.7,163.4,213.7,200.6,197.8,194.6,167.3,160.1,157.8 +654,144.3,238.9,234.4,233.8,233.1,225.5,220.4,214.2,213.3,212.4,203.8,163.5,213.8,200.8,198.1,194.9,167.3,160.2,157.8 +655,144.3,239,234.5,233.9,233.2,225.6,220.4,214.3,213.4,212.5,203.9,163.5,213.8,201,198.3,195.1,167.4,160.2,157.9 +656,144.3,239.1,234.5,234,233.3,225.7,220.5,214.4,213.5,212.6,204.1,163.6,213.9,201.1,198.5,195.4,167.4,160.2,157.9 +657,144.3,239.2,234.6,234,233.3,225.8,220.6,214.5,213.6,212.7,204.2,163.6,214,201.3,198.7,195.7,167.5,160.3,157.9 +658,144.3,239.3,234.7,234.1,233.4,225.8,220.6,214.6,213.7,212.7,204.3,163.7,214.1,201.5,198.9,195.9,167.5,160.3,158 +659,144.3,239.3,234.8,234.2,233.5,225.9,220.7,214.6,213.8,212.8,204.4,163.7,214.1,201.6,199.1,196.2,167.6,160.3,158 +660,144.3,239.4,234.9,234.3,233.6,226,220.8,214.7,213.9,212.9,204.5,163.8,214.2,201.8,199.3,196.4,167.6,160.4,158 +661,144.3,239.5,234.9,234.4,233.7,226.1,220.8,214.8,214,213,204.6,163.8,214.3,201.9,199.5,196.7,167.7,160.4,158.1 +662,144.4,239.6,235,234.4,233.7,226.2,220.9,214.9,214,213.1,204.7,163.9,214.3,202.1,199.7,196.9,167.7,160.5,158.1 +663,144.4,239.7,235.1,234.5,233.8,226.3,220.9,215,214.1,213.2,204.8,163.9,214.4,202.3,199.9,197.2,167.8,160.5,158.1 +664,144.4,239.8,235.2,234.6,233.9,226.4,221,215.1,214.2,213.3,204.9,163.9,214.5,202.4,200.1,197.4,167.8,160.5,158.1 +665,144.4,239.9,235.3,234.7,234,226.5,221.1,215.2,214.3,213.4,205,164,214.5,202.5,200.3,197.6,167.9,160.6,158.2 +666,144.4,239.9,235.3,234.8,234.1,226.6,221.1,215.2,214.4,213.5,205.1,164,214.6,202.7,200.4,197.8,168,160.6,158.2 +667,144.4,240,235.4,234.8,234.2,226.7,221.2,215.3,214.5,213.6,205.2,164.1,214.6,202.8,200.6,198.1,168,160.6,158.2 +668,144.4,240.1,235.5,234.9,234.2,226.8,221.3,215.4,214.6,213.6,205.3,164.1,214.7,203,200.8,198.3,168.1,160.7,158.3 +669,144.5,240.2,235.6,235,234.3,226.9,221.3,215.5,214.7,213.7,205.4,164.2,214.8,203.1,201,198.5,168.1,160.7,158.3 +670,144.5,240.3,235.7,235.1,234.4,227,221.4,215.6,214.7,213.8,205.5,164.2,214.8,203.2,201.1,198.7,168.2,160.8,158.3 +671,144.5,240.4,235.7,235.2,234.5,227.1,221.4,215.7,214.8,213.9,205.6,164.3,214.9,203.4,201.3,198.9,168.2,160.8,158.4 +672,144.5,240.5,235.8,235.2,234.6,227.1,221.5,215.7,214.9,214,205.7,164.3,214.9,203.5,201.4,199.1,168.3,160.8,158.4 +673,144.5,240.5,235.9,235.3,234.6,227.2,221.6,215.8,215,214.1,205.8,164.4,215,203.6,201.6,199.3,168.3,160.9,158.4 +674,144.5,240.6,236,235.4,234.7,227.3,221.6,215.9,215.1,214.2,205.9,164.4,215,203.8,201.8,199.5,168.4,160.9,158.5 +675,144.5,240.7,236,235.5,234.8,227.4,221.7,216,215.2,214.3,206,164.5,215.1,203.9,201.9,199.7,168.4,161,158.5 +676,144.5,240.8,236.1,235.6,234.9,227.5,221.8,216.1,215.3,214.4,206.1,164.5,215.1,204,202.1,199.9,168.5,161,158.5 +677,144.6,240.9,236.2,235.6,235,227.6,221.8,216.2,215.3,214.4,206.2,164.6,215.2,204.1,202.2,200.1,168.5,161,158.6 +678,144.6,241,236.3,235.7,235,227.7,221.9,216.3,215.4,214.5,206.2,164.6,215.2,204.3,202.4,200.3,168.6,161.1,158.6 +679,144.6,241.1,236.4,235.8,235.1,227.8,221.9,216.3,215.5,214.6,206.3,164.6,215.2,204.4,202.5,200.4,168.6,161.1,158.6 +680,144.6,241.1,236.4,235.9,235.2,227.9,222,216.4,215.6,214.7,206.4,164.7,215.3,204.5,202.6,200.6,168.7,161.1,158.6 +681,144.6,241.2,236.5,236,235.3,228,222.1,216.5,215.7,214.8,206.5,164.7,215.3,204.6,202.8,200.8,168.7,161.2,158.7 +682,144.6,241.3,236.6,236,235.4,228.1,222.1,216.6,215.8,214.9,206.6,164.8,215.4,204.7,202.9,201,168.8,161.2,158.7 +683,144.6,241.4,236.7,236.1,235.5,228.2,222.2,216.7,215.9,215,206.7,164.8,215.4,204.8,203.1,201.1,168.9,161.3,158.7 +684,144.6,241.5,236.8,236.2,235.5,228.3,222.3,216.8,216,215.1,206.8,164.9,215.4,204.9,203.2,201.3,168.9,161.3,158.8 +685,144.7,241.6,236.8,236.3,235.6,228.3,222.3,216.8,216,215.1,206.9,164.9,215.5,205,203.3,201.4,169,161.3,158.8 +686,144.7,241.7,236.9,236.4,235.7,228.4,222.4,216.9,216.1,215.2,207,165,215.5,205.1,203.4,201.6,169,161.4,158.8 +687,144.7,241.7,237,236.4,235.8,228.5,222.5,217,216.2,215.3,207.1,165,215.6,205.2,203.6,201.8,169.1,161.4,158.9 +688,144.7,241.8,237.1,236.5,235.9,228.6,222.5,217.1,216.3,215.4,207.2,165.1,215.6,205.3,203.7,201.9,169.1,161.5,158.9 +689,144.7,241.9,237.2,236.6,235.9,228.7,222.6,217.2,216.4,215.5,207.2,165.1,215.6,205.4,203.8,202.1,169.2,161.5,158.9 +690,144.7,242,237.2,236.7,236,228.8,222.7,217.3,216.5,215.6,207.3,165.2,215.7,205.5,203.9,202.2,169.2,161.5,159 +691,144.7,242.1,237.3,236.8,236.1,228.9,222.7,217.4,216.6,215.7,207.4,165.2,215.7,205.6,204.1,202.4,169.3,161.6,159 +692,144.7,242.2,237.4,236.8,236.2,229,222.8,217.4,216.6,215.8,207.5,165.3,215.7,205.7,204.2,202.5,169.3,161.6,159 +693,144.8,242.3,237.5,236.9,236.2,229.1,222.9,217.5,216.7,215.8,207.6,165.3,215.8,205.8,204.3,202.6,169.4,161.6,159.1 +694,144.8,242.3,237.5,237,236.3,229.2,222.9,217.6,216.8,215.9,207.7,165.4,215.8,205.9,204.4,202.8,169.4,161.7,159.1 +695,144.8,242.4,237.6,237.1,236.4,229.3,223,217.7,216.9,216,207.8,165.4,215.9,206,204.5,202.9,169.5,161.7,159.1 +696,144.8,242.5,237.7,237.2,236.5,229.4,223.1,217.8,217,216.1,207.9,165.4,215.9,206.1,204.6,203.1,169.5,161.8,159.1 +697,144.8,242.6,237.8,237.2,236.6,229.4,223.1,217.9,217.1,216.2,208,165.5,215.9,206.2,204.7,203.2,169.6,161.8,159.2 +698,144.8,242.7,237.9,237.3,236.6,229.5,223.2,217.9,217.2,216.3,208.1,165.5,216,206.3,204.8,203.3,169.6,161.8,159.2 +699,144.8,242.8,237.9,237.4,236.7,229.6,223.3,218,217.2,216.4,208.1,165.6,216,206.4,204.9,203.4,170.6,161.9,159.2 +700,144.8,242.9,238,237.5,236.8,229.7,223.3,218.1,217.3,216.5,208.2,165.6,216,206.5,205,203.6,171.6,161.9,159.3 +701,144.9,243,238.1,237.5,236.9,229.8,223.4,218.2,217.4,216.5,208.3,165.7,216.1,206.6,205.2,203.7,172.1,162,159.3 +702,144.9,243,238.2,237.6,237,229.9,223.5,218.3,217.5,216.6,208.4,165.7,216.1,206.6,205.3,203.8,172.5,162,159.3 +703,144.9,243.1,238.3,237.7,237,230,223.5,218.4,217.6,216.7,208.5,165.8,216.1,206.7,205.4,203.9,172.9,162,159.4 +704,144.9,243.2,238.3,237.8,237.1,230.1,223.6,218.4,217.7,216.8,208.6,165.8,216.2,206.8,205.5,204,173.3,162.1,159.4 +705,144.9,243.3,238.4,237.9,237.2,230.2,223.7,218.5,217.8,216.9,208.7,165.9,216.2,206.9,205.6,204.2,173.8,162.1,159.4 +706,144.9,243.4,238.5,237.9,237.3,230.3,223.7,218.6,217.8,217,208.8,165.9,216.2,207,205.7,204.3,174.2,162.2,159.5 +707,144.9,243.5,238.6,238,237.4,230.4,223.8,218.7,217.9,217.1,208.9,166,216.3,207.1,205.7,204.4,174.6,162.2,159.5 +708,144.9,243.6,238.7,238.1,237.4,230.4,223.9,218.8,218,217.2,209,166,216.3,207.1,205.8,204.5,175,162.2,159.5 +709,145,243.7,238.7,238.2,237.5,230.5,223.9,218.9,218.1,217.2,209,166.1,216.3,207.2,205.9,204.6,175.4,162.3,159.6 +710,145,243.8,238.8,238.3,237.6,230.6,224,219,218.2,217.3,209.1,166.1,216.4,207.3,206,204.7,175.8,162.3,159.6 +711,145,243.8,238.9,238.3,237.7,230.7,224.1,219,218.3,217.4,209.2,166.1,216.4,207.4,206.1,204.8,176.2,162.4,159.6 +712,145,243.9,239,238.4,237.8,230.8,224.1,219.1,218.4,217.5,209.3,166.2,216.4,207.5,206.2,204.9,176.7,162.4,159.7 +713,145,244,239.1,238.5,237.8,230.9,224.2,219.2,218.5,217.6,209.4,166.2,216.5,207.6,206.3,205,177.1,162.4,159.7 +714,145,244.1,239.1,238.6,237.9,231,224.3,219.3,218.5,217.7,209.5,166.3,216.5,207.6,206.4,205.1,177.5,162.5,159.7 +715,145,244.2,239.2,238.7,238,231.1,224.3,219.4,218.6,217.8,209.6,166.3,216.5,207.7,206.5,205.3,177.9,162.5,159.7 +716,145,244.3,239.3,238.7,238.1,231.2,224.4,219.5,218.7,217.9,209.7,166.4,216.6,207.8,206.6,205.4,178.3,162.5,159.8 +717,145.1,244.4,239.4,238.8,238.2,231.2,224.5,219.6,218.8,217.9,209.8,166.4,216.6,207.9,206.7,205.5,178.7,162.6,159.8 +718,145.1,244.5,239.5,238.9,238.2,231.3,224.5,219.6,218.9,218,209.9,166.5,216.7,208,206.8,205.6,179.1,162.6,159.8 +719,145.1,244.5,239.5,239,238.3,231.4,224.6,219.7,219,218.1,210,166.5,216.7,208,206.8,205.7,179.6,162.7,159.9 +720,145.1,244.6,239.6,239.1,238.4,231.5,224.7,219.8,219.1,218.2,210.1,166.6,216.7,208.1,206.9,205.8,180,162.7,159.9 +721,145.1,244.7,239.7,239.1,238.5,231.6,224.8,219.9,219.1,218.3,210.1,166.6,216.8,208.2,207,205.8,180.4,162.7,159.9 +722,145.1,244.8,239.8,239.2,238.6,231.7,224.8,220,219.2,218.4,210.2,166.7,216.8,208.3,207.1,205.9,180.8,162.8,160 +723,145.1,244.9,239.9,239.3,238.6,231.8,224.9,220.1,219.3,218.5,210.3,166.7,216.8,208.4,207.2,206,181.6,162.8,160 +724,145.1,245,239.9,239.4,238.7,231.9,225,220.1,219.4,218.5,210.4,166.8,216.9,208.4,207.3,206.1,182.2,162.9,160 +725,145.1,245.1,240,239.5,238.8,232,225,220.2,219.5,218.6,210.5,166.8,216.9,208.5,207.4,206.2,182.7,162.9,160.1 +726,145.2,245.2,240.1,239.5,238.9,232,225.1,220.3,219.6,218.7,210.6,166.8,217,208.6,207.4,206.3,183.3,162.9,160.1 +727,145.2,245.3,240.2,239.6,239,232.1,225.2,220.4,219.7,218.8,210.7,166.9,217,208.7,207.5,206.4,183.8,163,160.1 +728,145.2,245.3,240.3,239.7,239,232.2,225.3,220.5,219.7,218.9,210.8,166.9,217,208.7,207.6,206.5,184.3,163,160.2 +729,145.2,245.4,240.4,239.8,239.1,232.3,225.3,220.6,219.8,219,210.9,167,217.1,208.8,207.7,206.6,184.8,163.1,160.2 +730,145.2,245.5,240.4,239.9,239.2,232.4,225.4,220.7,219.9,219.1,211,167,217.1,208.9,207.8,206.7,185.3,163.1,160.2 +731,145.2,245.6,240.5,240,239.3,232.5,225.5,220.7,220,219.2,211.1,167.1,217.2,209,207.9,206.8,185.7,163.1,160.3 +732,145.2,245.7,240.6,240,239.4,232.6,225.5,220.8,220.1,219.2,211.2,167.1,217.2,209.1,208,206.9,186.2,163.2,160.3 +733,145.2,245.8,240.7,240.1,239.4,232.7,225.6,220.9,220.2,219.3,211.2,167.2,217.3,209.1,208,207,186.6,163.2,160.3 +734,145.3,245.9,240.8,240.2,239.5,232.7,225.7,221,220.3,219.4,211.3,167.2,217.3,209.2,208.1,207.1,187,163.3,160.3 +735,145.3,246,240.8,240.3,239.6,232.8,225.8,221.1,220.4,219.5,211.4,167.3,217.3,209.3,208.2,207.1,187.5,163.3,160.4 +736,145.3,246.1,240.9,240.4,239.7,232.9,225.8,221.2,220.4,219.6,211.5,167.3,217.4,209.4,208.3,207.2,187.9,163.3,160.4 +737,145.3,246.2,241,240.4,239.8,233,225.9,221.3,220.5,219.7,211.6,167.4,217.4,209.5,208.4,207.3,188.3,163.4,160.4 +738,145.3,246.2,241.1,240.5,239.8,233.1,226,221.4,220.6,219.8,211.7,167.4,217.5,209.5,208.5,207.4,188.7,163.4,160.5 +739,145.3,246.3,241.2,240.6,239.9,233.2,226.1,221.4,220.7,219.9,211.8,167.4,217.5,209.6,208.6,207.5,189.1,163.4,160.5 +740,145.3,246.4,241.3,240.7,240,233.3,226.1,221.5,220.8,219.9,211.9,167.5,217.6,209.7,208.6,207.6,189.5,163.5,160.5 +741,145.3,246.5,241.3,240.8,240.1,233.3,226.2,221.6,220.9,220,212,167.5,217.6,209.8,208.7,207.7,189.9,163.5,160.6 +742,145.3,246.6,241.4,240.8,240.2,233.4,226.3,221.7,221,220.1,212.1,167.6,217.7,209.9,208.8,207.8,190.3,163.6,160.6 +743,145.4,246.7,241.5,240.9,240.2,233.5,226.4,221.8,221.1,220.2,212.2,167.6,217.7,209.9,208.9,207.8,190.7,163.6,160.6 +744,145.4,246.8,241.6,241,240.3,233.6,226.4,221.9,221.1,220.3,212.3,167.7,217.8,210,209,207.9,191.1,163.6,160.7 +745,145.4,246.9,241.7,241.1,240.4,233.7,226.5,222,221.2,220.4,212.4,167.7,217.8,210.1,209.1,208,191.4,163.7,160.7 +746,145.4,247,241.7,241.2,240.5,233.8,226.6,222,221.3,220.5,212.5,167.8,217.9,210.2,209.1,208.1,191.8,163.7,160.7 +747,145.4,247,241.8,241.3,240.6,233.9,226.7,222.1,221.4,220.6,212.5,167.8,217.9,210.3,209.2,208.2,192.1,163.8,160.8 +748,145.4,247.1,241.9,241.3,240.7,233.9,226.7,222.2,221.5,220.6,212.6,167.9,218,210.4,209.3,208.3,192.5,163.8,160.8 +749,145.4,247.2,242,241.4,240.7,234,226.8,222.3,221.6,220.7,212.7,167.9,218,210.4,209.4,208.4,192.8,163.8,160.8 +750,145.4,247.3,242.1,241.5,240.8,234.1,226.9,222.4,221.7,220.8,212.8,168,218.1,210.5,209.5,208.5,193.1,163.9,160.9 +751,145.5,247.4,242.2,241.6,240.9,234.2,227,222.5,221.8,220.9,212.9,168,218.1,210.6,209.6,208.5,193.5,163.9,160.9 +752,145.5,247.5,242.2,241.7,241,234.3,227,222.6,221.8,221,213,168,218.2,210.7,209.7,208.6,193.8,164,160.9 +753,145.5,247.6,242.3,241.8,241.1,234.4,227.1,222.7,221.9,221.1,213.1,168.1,218.2,210.8,209.7,208.7,194.1,164,161 +754,145.5,247.7,242.4,241.8,241.1,234.4,227.2,222.7,222,221.2,213.2,168.1,218.3,210.8,209.8,208.8,194.4,164,161 +755,145.5,247.8,242.5,241.9,241.2,234.5,227.3,222.8,222.1,221.3,213.3,168.2,218.3,210.9,209.9,208.9,194.7,164.1,161 +756,145.5,247.8,242.6,242,241.3,234.6,227.3,222.9,222.2,221.4,213.4,168.2,218.4,211,210,209,195,164.1,161.1 +757,145.5,247.9,242.6,242.1,241.4,234.7,227.4,223,222.3,221.4,213.5,168.3,218.4,211.1,210.1,209.1,195.3,164.2,161.1 +758,145.5,248,242.7,242.2,241.5,234.8,227.5,223.1,222.4,221.5,213.6,168.3,218.5,211.2,210.2,209.2,195.6,164.2,161.1 +759,145.5,248.1,242.8,242.2,241.6,234.9,227.6,223.2,222.5,221.6,213.6,168.4,218.5,211.3,210.3,209.2,195.8,164.2,161.1 +760,145.6,248.2,242.9,242.3,241.6,234.9,227.6,223.3,222.6,221.7,213.7,168.4,218.6,211.3,210.3,209.3,196.1,164.3,161.2 +761,145.6,248.3,243,242.4,241.7,235,227.7,223.4,222.6,221.8,213.8,168.5,218.6,211.4,210.4,209.4,196.4,164.3,161.2 +762,145.6,248.4,243.1,242.5,241.8,235.1,227.8,223.5,222.7,221.9,213.9,168.5,218.7,211.5,210.5,209.5,196.6,164.4,161.2 +763,145.6,248.5,243.1,242.6,241.9,235.2,227.9,223.5,222.8,222,214,168.6,218.7,211.6,210.6,209.6,196.9,164.4,161.3 +764,145.6,248.6,243.2,242.7,242,235.3,228,223.6,222.9,222.1,214.1,168.6,218.8,211.7,210.7,209.7,197.1,164.4,161.3 +765,145.6,248.6,243.3,242.7,242,235.4,228,223.7,223,222.2,214.2,168.6,218.8,211.8,210.8,209.8,197.4,164.5,161.3 +766,145.6,248.7,243.4,242.8,242.1,235.4,228.1,223.8,223.1,222.2,214.3,168.7,218.9,211.9,210.9,209.9,197.6,164.5,161.4 +767,145.6,248.8,243.5,242.9,242.2,235.5,228.2,223.9,223.2,222.3,214.4,168.7,219,211.9,211,209.9,197.9,164.6,161.4 +768,145.6,248.9,243.6,243,242.3,235.6,228.3,224,223.3,222.4,214.5,168.8,219,212,211,210,198.1,164.6,161.4 +769,145.7,249,243.6,243.1,242.4,235.7,228.3,224.1,223.4,222.5,214.6,168.8,219.1,212.1,211.1,210.1,198.4,164.6,161.5 +770,145.7,249.1,243.7,243.1,242.5,235.8,228.4,224.2,223.4,222.6,214.7,168.9,219.1,212.2,211.2,210.2,198.6,164.7,161.5 +771,145.7,249.2,243.8,243.2,242.5,235.8,228.5,224.2,223.5,222.7,214.7,168.9,219.2,212.3,211.3,210.3,198.8,164.7,161.5 +772,145.7,249.3,243.9,243.3,242.6,235.9,228.6,224.3,223.6,222.8,214.8,169,219.2,212.4,211.4,210.4,199,164.8,161.6 +773,145.7,249.3,244,243.4,242.7,236,228.7,224.4,223.7,222.9,214.9,169,219.3,212.4,211.5,210.5,199.2,164.8,161.6 +774,145.7,249.4,244,243.5,242.8,236.1,228.7,224.5,223.8,223,215,169.1,219.3,212.5,211.6,210.6,199.5,164.8,161.6 +775,145.7,249.5,244.1,243.6,242.9,236.2,228.8,224.6,223.9,223,215.1,169.1,219.4,212.6,211.7,210.7,199.7,164.9,161.7 +776,145.7,249.6,244.2,243.6,243,236.2,228.9,224.7,224,223.1,215.2,169.1,219.5,212.7,211.8,210.8,199.9,164.9,161.7 +777,145.7,249.7,244.3,243.7,243,236.3,229,224.8,224.1,223.2,215.3,169.2,219.5,212.8,211.8,210.8,200.1,165,161.7 +778,145.8,249.8,244.4,243.8,243.1,236.4,229.1,224.9,224.2,223.3,215.4,169.2,219.6,212.9,211.9,210.9,200.3,165,161.8 +779,145.8,249.9,244.5,243.9,243.2,236.5,229.1,225,224.3,223.4,215.5,169.3,219.6,213,212,211,200.5,165,161.8 +780,145.8,250,244.5,244,243.3,236.6,229.2,225,224.3,223.5,215.6,169.3,219.7,213,212.1,211.1,200.6,165.1,161.8 +781,145.8,250.1,244.6,244,243.4,236.7,229.3,225.1,224.4,223.6,215.6,169.4,219.7,213.1,212.2,211.2,200.8,165.1,161.9 +782,145.8,250.1,244.7,244.1,243.4,236.7,229.4,225.2,224.5,223.7,215.7,169.4,219.8,213.2,212.3,211.3,201,165.2,161.9 +783,145.8,250.2,244.8,244.2,243.5,236.8,229.5,225.3,224.6,223.8,215.8,169.5,219.9,213.3,212.4,211.4,201.2,165.2,161.9 +784,145.8,250.3,244.9,244.3,243.6,236.9,229.5,225.4,224.7,223.9,215.9,169.5,219.9,213.4,212.5,211.5,201.4,165.2,162 +785,145.8,250.4,244.9,244.4,243.7,237,229.6,225.5,224.8,223.9,216,169.6,220,213.5,212.6,211.6,201.5,165.3,162 +786,145.8,250.5,245,244.5,243.8,237.1,229.7,225.6,224.9,224,216.1,169.6,220,213.6,212.6,211.7,201.7,165.3,162 +787,145.9,250.6,245.1,244.5,243.9,237.1,229.8,225.7,225,224.1,216.2,169.6,220.1,213.7,212.7,211.7,201.9,165.3,162.1 +788,145.9,250.7,245.2,244.6,243.9,237.2,229.9,225.8,225.1,224.2,216.3,169.7,220.1,213.7,212.8,211.8,202.1,165.4,162.1 +789,145.9,250.8,245.3,244.7,244,237.3,229.9,225.9,225.2,224.3,216.4,169.7,220.2,213.8,212.9,211.9,202.2,165.4,162.1 +790,145.9,250.8,245.3,244.8,244.1,237.4,230,225.9,225.2,224.4,216.5,169.8,220.3,213.9,213,212,202.4,165.5,162.1 +791,145.9,250.9,245.4,244.9,244.2,237.5,230.1,226,225.3,224.5,216.5,169.8,220.3,214,213.1,212.1,202.5,165.5,162.2 +792,145.9,251,245.5,244.9,244.3,237.5,230.2,226.1,225.4,224.6,216.6,169.9,220.4,214.1,213.2,212.2,202.7,165.5,162.2 +793,145.9,251.1,245.6,245,244.3,237.6,230.3,226.2,225.5,224.7,216.7,169.9,220.4,214.2,213.3,212.3,202.8,165.6,162.2 +794,145.9,251.2,245.7,245.1,244.4,237.7,230.4,226.3,225.6,224.8,216.8,170,220.5,214.3,213.4,212.4,203,165.6,162.3 +795,145.9,251.3,245.7,245.2,244.5,237.8,230.4,226.4,225.7,224.8,216.9,170,220.6,214.3,213.4,212.5,203.1,165.7,162.3 +796,146,251.4,245.8,245.3,244.6,237.9,230.5,226.5,225.8,224.9,217,170,220.6,214.4,213.5,212.6,203.3,165.7,162.3 +797,146,251.5,245.9,245.4,244.7,237.9,230.6,226.6,225.9,225,217.1,170.1,220.7,214.5,213.6,212.6,203.4,165.7,162.4 +798,146,251.5,246,245.4,244.8,238,230.7,226.7,226,225.1,217.2,170.1,220.7,214.6,213.7,212.7,203.6,165.8,162.4 +799,146,251.6,246.1,245.5,244.8,238.1,230.8,226.8,226.1,225.2,217.2,170.2,220.8,214.7,213.8,212.8,203.7,165.8,162.4 +800,146,251.7,246.2,245.6,244.9,238.2,230.8,226.8,226.1,225.3,217.3,170.2,220.9,214.8,213.9,212.9,203.8,165.9,162.5 +801,146,251.8,246.2,245.7,245,238.2,230.9,226.9,226.2,225.4,217.4,170.3,220.9,214.9,214,213,204,165.9,162.5 +802,146,251.9,246.3,245.8,245.1,238.3,231,227,226.3,225.5,217.5,170.3,221,214.9,214.1,213.1,204.1,165.9,162.5 +803,146,252,246.4,245.8,245.2,238.4,231.1,227.1,226.4,225.6,217.6,170.4,221,215,214.2,213.2,204.2,166,162.6 +804,146,252.1,246.5,245.9,245.2,238.5,231.2,227.2,226.5,225.7,217.7,170.4,221.1,215.1,214.2,213.3,204.3,166,162.6 +805,146.1,252.1,246.6,246,245.3,238.6,231.3,227.3,226.6,225.8,217.8,170.4,221.2,215.2,214.3,213.4,204.5,166.1,162.6 +806,146.1,252.2,246.6,246.1,245.4,238.6,231.3,227.4,226.7,225.8,217.9,170.5,221.2,215.3,214.4,213.5,204.6,166.1,162.7 +807,146.1,252.3,246.7,246.2,245.5,238.7,231.4,227.5,226.8,225.9,218,170.5,221.3,215.4,214.5,213.6,204.7,166.1,162.7 +808,146.1,252.4,246.8,246.2,245.6,238.8,231.5,227.6,226.9,226,218,170.6,221.3,215.5,214.6,213.6,204.8,166.2,162.7 +809,146.1,252.5,246.9,246.3,245.6,238.9,231.6,227.7,227,226.1,218.1,170.6,221.4,215.5,214.7,213.7,205,166.2,162.8 +810,146.1,252.6,247,246.4,245.7,239,231.7,227.7,227.1,226.2,218.2,170.7,221.5,215.6,214.8,213.8,205.1,166.3,162.8 +811,146.1,252.7,247,246.5,245.8,239,231.8,227.8,227.1,226.3,218.3,170.7,221.5,215.7,214.9,213.9,205.2,166.3,162.8 +812,146.1,252.8,247.1,246.6,245.9,239.1,231.8,227.9,227.2,226.4,218.4,170.8,221.6,215.8,214.9,214,205.3,166.3,162.9 +813,146.1,252.8,247.2,246.6,246,239.2,231.9,228,227.3,226.5,218.5,170.8,221.6,215.9,215,214.1,205.4,166.4,162.9 +814,146.1,252.9,247.3,246.7,246,239.3,232,228.1,227.4,226.6,218.6,170.8,221.7,216,215.1,214.2,205.5,166.4,162.9 +815,146.2,253,247.4,246.8,246.1,239.4,232.1,228.2,227.5,226.7,218.7,172.2,221.8,216.1,215.2,214.3,205.6,166.5,163 +816,146.2,253.1,247.4,246.9,246.2,239.4,232.2,228.3,227.6,226.8,218.8,173.9,221.8,216.1,215.3,214.4,205.7,166.5,163 +817,146.2,253.2,247.5,247,246.3,239.5,232.3,228.4,227.7,226.9,218.8,176.3,221.9,216.2,215.4,214.5,205.8,166.5,163 +818,146.2,253.3,247.6,247,246.4,239.6,232.3,228.5,227.8,226.9,218.9,176.6,222,216.3,215.5,214.5,206,166.6,163.1 +819,146.2,253.4,247.7,247.1,246.4,239.7,232.4,228.5,227.9,227,219,176.9,222,216.4,215.6,214.6,206.1,166.6,163.1 +820,146.2,253.4,247.8,247.2,246.5,239.8,232.5,228.6,228,227.1,219.1,177.2,222.1,216.5,215.6,214.7,206.2,166.7,163.1 +821,146.2,253.5,247.8,247.3,246.6,239.8,232.6,228.7,228.1,227.2,219.2,177.4,222.1,216.6,215.7,214.8,206.3,166.7,163.2 +822,146.2,253.6,247.9,247.4,246.7,239.9,232.7,228.8,228.1,227.3,219.3,177.7,222.2,216.6,215.8,214.9,206.4,166.7,163.2 +823,146.2,253.7,248,247.4,246.8,240,232.8,228.9,228.2,227.4,219.4,178,222.3,216.7,215.9,215,206.5,166.8,163.2 +824,146.3,253.8,248.1,247.5,246.8,240.1,232.8,229,228.3,227.5,219.5,178.3,222.3,216.8,216,215.1,206.6,166.8,163.3 +825,146.3,253.9,248.1,247.6,246.9,240.2,232.9,229.1,228.4,227.6,219.5,178.6,222.4,216.9,216.1,215.2,206.7,166.9,163.3 +826,146.3,254,248.2,247.7,247,240.2,233,229.2,228.5,227.7,219.6,178.8,222.5,217,216.2,215.3,206.8,166.9,163.3 +827,146.3,254.1,248.3,247.8,247.1,240.3,233.1,229.3,228.6,227.8,219.7,179.1,222.5,217.1,216.3,215.3,206.9,166.9,163.4 +828,146.3,254.1,248.4,247.8,247.2,240.4,233.2,229.4,228.7,227.9,219.8,179.4,222.6,217.2,216.3,215.4,207,167,163.4 +829,146.3,254.2,248.5,247.9,247.2,240.5,233.3,229.4,228.8,227.9,219.9,179.7,222.6,217.2,216.4,215.5,207.1,167,163.4 +830,146.3,254.3,248.5,248,247.3,240.6,233.3,229.5,228.9,228,220,180,222.7,217.3,216.5,215.6,207.2,167.1,163.5 +831,146.3,254.4,248.6,248.1,247.4,240.6,233.4,229.6,229,228.1,220.1,180.2,222.8,217.4,216.6,215.7,207.2,167.1,163.5 +832,146.3,254.5,248.7,248.2,247.5,240.7,233.5,229.7,229,228.2,220.2,180.5,222.8,217.5,216.7,215.8,207.3,167.1,163.5 +833,146.3,254.6,248.8,248.2,247.6,240.8,233.6,229.8,229.1,228.3,220.3,180.8,222.9,217.6,216.8,215.9,207.4,167.2,163.6 +834,146.4,254.7,248.9,248.3,247.6,240.9,233.7,229.9,229.2,228.4,220.3,181.1,223,217.7,216.9,216,207.5,167.2,163.6 +835,146.4,254.7,248.9,248.4,247.7,241,233.8,230,229.3,228.5,220.4,181.4,223,217.7,217,216.1,207.6,167.3,163.6 +836,146.4,254.8,249,248.5,247.8,241,233.8,230.1,229.4,228.6,220.5,181.6,223.1,217.8,217,216.1,207.7,167.3,163.7 +837,146.4,254.9,249.1,248.5,247.9,241.1,233.9,230.2,229.5,228.7,220.6,181.9,223.1,217.9,217.1,216.2,207.8,167.3,163.7 +838,146.4,255,249.2,248.6,248,241.2,234,230.3,229.6,228.8,220.7,182.2,223.2,218,217.2,216.3,207.9,167.4,163.7 +839,146.4,255.1,249.3,248.7,248,241.3,234.1,230.3,229.7,228.9,220.8,182.5,223.3,218.1,217.3,216.4,208,167.4,163.7 +840,146.4,255.2,249.3,248.8,248.1,241.4,234.2,230.4,229.8,228.9,220.9,182.8,223.3,218.2,217.4,216.5,208.1,167.5,163.8 +841,146.4,255.3,249.4,248.9,248.2,241.4,234.3,230.5,229.9,229,221,183.4,223.4,218.3,217.5,216.6,208.2,167.5,163.8 +842,146.4,255.3,249.5,248.9,248.3,241.5,234.3,230.6,230,229.1,221,184,223.5,218.3,217.6,216.7,208.3,167.5,163.8 +843,146.5,255.4,249.6,249,248.4,241.6,234.4,230.7,230,229.2,221.1,184.5,223.5,218.4,217.6,216.8,208.4,167.6,163.9 +844,146.5,255.5,249.6,249.1,248.4,241.7,234.5,230.8,230.1,229.3,221.2,185,223.6,218.5,217.7,216.8,208.4,167.6,163.9 +845,146.5,255.6,249.7,249.2,248.5,241.8,234.6,230.9,230.2,229.4,221.3,185.5,223.7,218.6,217.8,216.9,208.5,167.7,163.9 +846,146.5,255.7,249.8,249.3,248.6,241.8,234.7,231,230.3,229.5,221.4,186,223.7,218.7,217.9,217,208.6,167.7,164 +847,146.5,255.8,249.9,249.3,248.7,241.9,234.8,231.1,230.4,229.6,221.5,186.5,223.8,218.8,218,217.1,208.7,167.7,164 +848,146.5,255.9,250,249.4,248.8,242,234.9,231.1,230.5,229.7,221.6,186.9,223.9,218.8,218.1,217.2,208.8,167.8,164 +849,146.5,255.9,250,249.5,248.8,242.1,234.9,231.2,230.6,229.8,221.7,187.4,223.9,218.9,218.2,217.3,208.9,167.8,164.1 +850,146.5,256,250.1,249.6,248.9,242.2,235,231.3,230.7,229.9,221.8,187.8,224,219,218.2,217.4,209,167.9,164.1 +851,146.5,256.1,250.2,249.6,249,242.2,235.1,231.4,230.8,229.9,221.9,188.2,224.1,219.1,218.3,217.5,209.1,167.9,164.1 +852,146.5,256.2,250.3,249.7,249.1,242.3,235.2,231.5,230.8,230,221.9,188.6,224.1,219.2,218.4,217.5,209.2,167.9,164.2 +853,146.6,256.3,250.4,249.8,249.1,242.4,235.3,231.6,230.9,230.1,222,189.1,224.2,219.3,218.5,217.6,209.3,168,164.2 +854,146.6,256.4,250.4,249.9,249.2,242.5,235.4,231.7,231,230.2,222.1,189.5,224.3,219.3,218.6,217.7,209.4,168,164.2 +855,146.6,256.4,250.5,250,249.3,242.6,235.4,231.8,231.1,230.3,222.2,189.9,224.3,219.4,218.7,217.8,209.4,168.1,164.3 +856,146.6,256.5,250.6,250,249.4,242.7,235.5,231.8,231.2,230.4,222.3,190.3,224.4,219.5,218.8,217.9,209.5,168.1,164.3 +857,146.6,256.6,250.7,250.1,249.5,242.7,235.6,231.9,231.3,230.5,222.4,190.7,224.4,219.6,218.8,218,209.6,168.1,164.3 +858,146.6,256.7,250.7,250.2,249.5,242.8,235.7,232,231.4,230.6,222.5,191.1,224.5,219.7,218.9,218.1,209.7,168.2,164.4 +859,146.6,256.8,250.8,250.3,249.6,242.9,235.8,232.1,231.5,230.7,222.6,191.5,224.6,219.8,219,218.2,209.8,168.2,164.4 +860,146.6,256.9,250.9,250.4,249.7,243,235.9,232.2,231.6,230.8,222.7,191.9,224.7,219.8,219.1,218.2,209.9,168.3,164.4 +861,146.6,257,251,250.4,249.8,243.1,235.9,232.3,231.6,230.8,222.7,192.3,224.7,219.9,219.2,218.3,210,168.3,164.5 +862,146.6,257,251.1,250.5,249.9,243.1,236,232.4,231.7,230.9,222.8,192.6,224.8,220,219.3,218.4,210.1,168.3,164.5 +863,146.7,257.1,251.1,250.6,249.9,243.2,236.1,232.5,231.8,231,222.9,193,224.9,220.1,219.4,218.5,210.2,168.4,164.5 +864,146.7,257.2,251.2,250.7,250,243.3,236.2,232.5,231.9,231.1,223,193.3,224.9,220.2,219.4,218.6,210.3,168.4,164.6 +865,146.7,257.3,251.3,250.7,250.1,243.4,236.3,232.6,232,231.2,223.1,193.7,225,220.3,219.5,218.7,210.3,168.5,164.6 +866,146.7,257.4,251.4,250.8,250.2,243.5,236.4,232.7,232.1,231.3,223.2,194,225.1,220.4,219.6,218.8,210.4,168.5,164.6 +867,146.7,257.5,251.4,250.9,250.2,243.6,236.4,232.8,232.2,231.4,223.3,194.3,225.1,220.4,219.7,218.8,210.5,168.5,164.7 +868,146.7,257.6,251.5,251,250.3,243.6,236.5,232.9,232.3,231.5,223.4,194.6,225.2,220.5,219.8,218.9,210.6,168.6,164.7 +869,146.7,257.6,251.6,251.1,250.4,243.7,236.6,233,232.4,231.6,223.5,195,225.3,220.6,219.9,219,210.7,168.6,164.7 +870,146.7,257.7,251.7,251.1,250.5,243.8,236.7,233.1,232.4,231.6,223.6,195.3,225.3,220.7,220,219.1,210.8,168.7,164.8 +871,146.7,257.8,251.8,251.2,250.6,243.9,236.8,233.2,232.5,231.7,223.6,195.6,225.4,220.8,220,219.2,210.9,168.7,164.8 +872,146.7,257.9,251.8,251.3,250.6,244,236.9,233.2,232.6,231.8,223.7,195.9,225.5,220.9,220.1,219.3,211,168.7,164.8 +873,146.8,258,251.9,251.4,250.7,244.1,236.9,233.3,232.7,231.9,223.8,196.2,225.5,220.9,220.2,219.4,211.1,168.8,164.9 +874,146.8,258.1,252,251.4,250.8,244.1,237,233.4,232.8,232,223.9,196.4,225.6,221,220.3,219.4,211.2,168.8,164.9 +875,146.8,258.1,252.1,251.5,250.9,244.2,237.1,233.5,232.9,232.1,224,196.7,225.7,221.1,220.4,219.5,211.3,168.9,164.9 +876,146.8,258.2,252.1,251.6,250.9,244.3,237.2,233.6,233,232.2,224.1,197,225.7,221.2,220.5,219.6,211.3,168.9,165 +877,146.8,258.3,252.2,251.7,251,244.4,237.3,233.7,233.1,232.3,224.2,197.3,225.8,221.3,220.6,219.7,211.4,168.9,165 +878,146.8,258.4,252.3,251.7,251.1,244.5,237.4,233.8,233.1,232.4,224.3,197.5,225.9,221.4,220.6,219.8,211.5,169,165 +879,146.8,258.5,252.4,251.8,251.2,244.5,237.4,233.8,233.2,232.4,224.4,197.8,226,221.5,220.7,219.9,211.6,169,165.1 +880,146.8,258.6,252.4,251.9,251.3,244.6,237.5,233.9,233.3,232.5,224.5,198.1,226,221.5,220.8,220,211.7,169.1,165.1 +881,146.8,258.7,252.5,252,251.3,244.7,237.6,234,233.4,232.6,224.6,198.3,226.1,221.6,220.9,220.1,211.8,169.1,165.1 +882,146.8,258.7,252.6,252.1,251.4,244.8,237.7,234.1,233.5,232.7,224.6,198.6,226.2,221.7,221,220.1,211.9,169.1,165.2 +883,146.9,258.8,252.7,252.1,251.5,244.9,237.8,234.2,233.6,232.8,224.7,198.8,226.2,221.8,221.1,220.2,212,169.2,165.2 +884,146.9,258.9,252.8,252.2,251.6,245,237.9,234.3,233.7,232.9,224.8,199.1,226.3,221.9,221.2,220.3,212.1,169.2,165.2 +885,146.9,259,252.8,252.3,251.6,245,237.9,234.4,233.7,233,224.9,199.3,226.4,222,221.2,220.4,212.2,169.3,165.3 +886,146.9,259.1,252.9,252.4,251.7,245.1,238,234.4,233.8,233.1,225,199.5,226.5,222.1,221.3,220.5,212.3,169.3,165.3 +887,146.9,259.2,253,252.4,251.8,245.2,238.1,234.5,233.9,233.1,225.1,199.7,226.5,222.1,221.4,220.6,212.4,169.3,165.3 +888,146.9,259.2,253.1,252.5,251.9,245.3,238.2,234.6,234,233.2,225.2,200,226.6,222.2,221.5,220.7,212.5,169.4,165.4 +889,146.9,259.3,253.1,252.6,252,245.4,238.3,234.7,234.1,233.3,225.3,200.2,226.7,222.3,221.6,220.7,212.5,169.4,165.4 +890,146.9,259.4,253.2,252.7,252,245.4,238.3,234.8,234.2,233.4,225.4,200.4,226.7,222.4,221.7,220.8,212.6,169.5,165.4 +891,146.9,259.5,253.3,252.8,252.1,245.5,238.4,234.9,234.3,233.5,225.5,200.6,226.8,222.5,221.8,220.9,212.7,169.5,165.5 +892,146.9,259.6,253.4,252.8,252.2,245.6,238.5,234.9,234.3,233.6,225.6,200.8,226.9,222.6,221.9,221,212.8,169.5,165.5 +893,147,259.7,253.5,252.9,252.3,245.7,238.6,235,234.4,233.7,225.6,201,227,222.7,221.9,221.1,212.9,169.6,165.5 +894,147,259.7,253.5,253,252.3,245.8,238.7,235.1,234.5,233.8,225.7,201.2,227,222.7,222,221.2,213,169.6,165.6 +895,147,259.8,253.6,253.1,252.4,245.8,238.8,235.2,234.6,233.8,225.8,201.4,227.1,222.8,222.1,221.3,213.1,169.6,165.6 +896,147,259.9,253.7,253.1,252.5,245.9,238.8,235.3,234.7,233.9,225.9,201.6,227.2,222.9,222.2,221.4,213.2,169.7,165.6 +897,147,260,253.8,253.2,252.6,246,238.9,235.4,234.8,234,226,201.8,227.3,223,222.3,221.4,213.3,169.7,165.7 +898,147,260.1,253.8,253.3,252.7,246.1,239,235.4,234.9,234.1,226.1,202,227.3,223.1,222.4,221.5,213.4,169.8,165.7 +899,147,260.2,253.9,253.4,252.7,246.2,239.1,235.5,234.9,234.2,226.2,202.2,227.4,223.2,222.5,221.6,213.5,169.8,165.7 +900,147,260.2,254,253.4,252.8,246.3,239.2,235.6,235,234.3,226.3,202.4,227.5,223.3,222.5,221.7,213.6,169.8,165.8 +901,147,260.3,254.1,253.5,252.9,246.3,239.2,235.7,235.1,234.4,226.4,202.5,227.6,223.3,222.6,221.8,213.7,169.9,165.8 +902,147,260.4,254.1,253.6,253,246.4,239.3,235.8,235.2,234.4,226.5,202.7,227.6,223.4,222.7,221.9,213.8,169.9,165.8 +903,147.1,260.5,254.2,253.7,253,246.5,239.4,235.9,235.3,234.5,226.6,202.9,227.7,223.5,222.8,222,213.8,170,165.9 +904,147.1,260.6,254.3,253.8,253.1,246.6,239.5,235.9,235.4,234.6,226.7,203,227.8,223.6,222.9,222.1,213.9,170,165.9 +905,147.1,260.7,254.4,253.8,253.2,246.7,239.6,236,235.4,234.7,226.7,203.2,227.8,223.7,223,222.1,214,170,165.9 +906,147.1,260.8,254.4,253.9,253.3,246.7,239.7,236.1,235.5,234.8,226.8,203.4,227.9,223.8,223.1,222.2,214.1,170.1,166 +907,147.1,260.8,254.5,254,253.3,246.8,239.7,236.2,235.6,234.9,226.9,203.5,228,223.9,223.2,222.3,214.2,170.1,166 +908,147.1,260.9,254.6,254.1,253.4,246.9,239.8,236.3,235.7,235,227,203.7,228.1,224,223.2,222.4,214.3,170.2,166 +909,147.1,261,254.7,254.1,253.5,247,239.9,236.3,235.8,235,227.1,203.8,228.2,224,223.3,222.5,214.4,170.2,166.1 +910,147.1,261.1,254.8,254.2,253.6,247.1,240,236.4,235.9,235.1,227.2,204,228.2,224.1,223.4,222.6,214.5,170.2,166.1 +911,147.1,261.2,254.8,254.3,253.6,247.1,240.1,236.5,235.9,235.2,227.3,204.1,228.3,224.2,223.5,222.7,214.6,170.3,166.1 +912,147.1,261.3,254.9,254.4,253.7,247.2,240.1,236.6,236,235.3,227.4,204.3,228.4,224.3,223.6,222.8,214.7,170.3,166.2 +913,147.1,261.3,255,254.4,253.8,247.3,240.2,236.7,236.1,235.4,227.5,204.4,228.5,224.4,223.7,222.8,214.8,170.4,166.2 +914,147.2,261.4,255.1,254.5,253.9,247.4,240.3,236.7,236.2,235.5,227.6,204.6,228.5,224.5,223.8,222.9,214.9,170.4,166.2 +915,147.2,261.5,255.1,254.6,254,247.5,240.4,236.8,236.3,235.5,227.7,204.7,228.6,224.6,223.9,223,215,170.4,166.3 +916,147.2,261.6,255.2,254.7,254,247.5,240.5,236.9,236.3,235.6,227.8,204.9,228.7,224.6,223.9,223.1,215,170.5,166.3 +917,147.2,261.7,255.3,254.7,254.1,247.6,240.6,237,236.4,235.7,227.9,205,228.8,224.7,224,223.2,215.1,170.5,166.3 +918,147.2,261.8,255.4,254.8,254.2,247.7,240.6,237.1,236.5,235.8,227.9,205.1,228.8,224.8,224.1,223.3,215.2,170.6,166.4 +919,147.2,261.8,255.4,254.9,254.3,247.8,240.7,237.2,236.6,235.9,228,205.3,228.9,224.9,224.2,223.4,215.3,170.6,166.4 +920,147.2,261.9,255.5,255,254.3,247.9,240.8,237.2,236.7,236,228.1,205.4,229,225,224.3,223.5,215.4,170.6,166.4 +921,147.2,262,255.6,255,254.4,247.9,240.9,237.3,236.8,236,228.2,205.5,229.1,225.1,224.4,223.5,215.5,170.7,166.5 +922,147.2,262.1,255.7,255.1,254.5,248,241,237.4,236.8,236.1,228.3,205.6,229.1,225.2,224.5,223.6,215.6,170.7,166.5 +923,147.2,262.2,255.7,255.2,254.6,248.1,241,237.5,236.9,236.2,228.4,205.8,229.2,225.3,224.6,223.7,215.7,170.7,166.5 +924,147.3,262.3,255.8,255.3,254.6,248.2,241.1,237.6,237,236.3,228.5,205.9,229.3,225.4,224.7,223.8,215.8,170.8,166.6 +925,147.3,262.3,255.9,255.4,254.7,248.3,241.2,237.6,237.1,236.4,228.6,206,229.4,225.4,224.7,223.9,215.9,170.8,166.6 +926,147.3,262.4,256,255.4,254.8,248.3,241.3,237.7,237.2,236.4,228.7,206.1,229.5,225.5,224.8,224,216,170.9,166.6 +927,147.3,262.5,256.1,255.5,254.9,248.4,241.4,237.8,237.2,236.5,228.8,206.2,229.5,225.6,224.9,224.1,216,170.9,166.7 +928,147.3,262.6,256.1,255.6,254.9,248.5,241.4,237.9,237.3,236.6,228.9,206.3,229.6,225.7,225,224.2,216.1,170.9,166.7 +929,147.3,262.7,256.2,255.7,255,248.6,241.5,237.9,237.4,236.7,229,206.5,229.7,225.8,225.1,224.3,216.2,171,166.7 +930,147.3,262.8,256.3,255.7,255.1,248.7,241.6,238,237.5,236.8,229,206.6,229.8,225.9,225.2,224.3,216.3,171,166.8 +931,147.3,262.8,256.4,255.8,255.2,248.7,241.7,238.1,237.6,236.9,229.1,206.7,229.8,226,225.3,224.4,216.4,171.1,166.8 +932,147.3,262.9,256.4,255.9,255.3,248.8,241.8,238.2,237.6,236.9,229.2,206.8,229.9,226.1,225.4,224.5,216.5,171.1,166.8 +933,147.3,263,256.5,256,255.3,248.9,241.8,238.3,237.7,237,229.3,206.9,230,226.1,225.5,224.6,216.6,171.1,166.9 +934,147.3,263.1,256.6,256,255.4,249,241.9,238.3,237.8,237.1,229.4,207,230.1,226.2,225.5,224.7,216.7,171.2,166.9 +935,147.4,263.2,256.7,256.1,255.5,249,242,238.4,237.9,237.2,229.5,207.1,230.2,226.3,225.6,224.8,216.8,171.2,166.9 +936,147.4,263.3,256.7,256.2,255.6,249.1,242.1,238.5,238,237.3,229.6,207.2,230.2,226.4,225.7,224.9,216.9,171.3,167 +937,147.4,263.3,256.8,256.3,255.6,249.2,242.2,238.6,238,237.3,229.7,207.3,230.3,226.5,225.8,225,216.9,171.3,167 +938,147.4,263.4,256.9,256.3,255.7,249.3,242.3,238.7,238.1,237.4,229.8,207.4,230.4,226.6,225.9,225.1,217,171.3,167 +939,147.4,263.5,257,256.4,255.8,249.4,242.3,238.7,238.2,237.5,229.9,207.5,230.5,226.7,226,225.1,217.1,171.4,167.1 +940,147.4,263.6,257,256.5,255.9,249.4,242.4,238.8,238.3,237.6,230,207.6,230.6,226.8,226.1,225.2,217.2,171.4,167.1 +941,147.4,263.7,257.1,256.6,255.9,249.5,242.5,238.9,238.4,237.7,230.1,207.7,230.6,226.9,226.2,225.3,217.3,171.5,167.1 +942,147.4,263.8,257.2,256.6,256,249.6,242.6,239,238.4,237.7,230.1,207.8,230.7,226.9,226.3,225.4,217.4,171.5,167.2 +943,147.4,263.8,257.3,256.7,256.1,249.7,242.7,239,238.5,237.8,230.2,207.9,230.8,227,226.3,225.5,217.5,171.5,167.2 +944,147.4,263.9,257.3,256.8,256.2,249.8,242.7,239.1,238.6,237.9,230.3,208,230.9,227.1,226.4,225.6,217.6,171.6,167.2 +945,147.5,264,257.4,256.9,256.2,249.8,242.8,239.2,238.7,238,230.4,208.1,231,227.2,226.5,225.7,217.7,171.6,167.3 +946,147.5,264.1,257.5,256.9,256.3,249.9,242.9,239.3,238.7,238.1,230.5,208.2,231,227.3,226.6,225.8,217.8,171.6,167.3 +947,147.5,264.2,257.6,257,256.4,250,243,239.4,238.8,238.1,230.6,208.3,231.1,227.4,226.7,225.9,217.8,171.7,167.3 +948,147.5,264.3,257.6,257.1,256.5,250.1,243.1,239.4,238.9,238.2,230.7,208.4,231.2,227.5,226.8,226,217.9,171.7,167.4 +949,147.5,264.3,257.7,257.2,256.5,250.2,243.1,239.5,239,238.3,230.8,208.5,231.3,227.6,226.9,226,218,171.8,167.4 +950,147.5,264.4,257.8,257.3,256.6,250.2,243.2,239.6,239.1,238.4,230.9,208.6,231.4,227.7,227,226.1,218.1,171.8,167.4 +951,147.5,264.5,257.9,257.3,256.7,250.3,243.3,239.7,239.1,238.5,231,208.7,231.4,227.7,227.1,226.2,218.2,171.8,167.5 +952,147.5,264.6,257.9,257.4,256.8,250.4,243.4,239.7,239.2,238.5,231.1,208.8,231.5,227.8,227.2,226.3,218.3,171.9,167.5 +953,147.5,264.7,258,257.5,256.8,250.5,243.5,239.8,239.3,238.6,231.2,208.9,231.6,227.9,227.2,226.4,218.4,171.9,167.5 +954,147.5,264.7,258.1,257.6,256.9,250.5,243.6,239.9,239.4,238.7,231.2,209,231.7,228,227.3,226.5,218.5,172,167.6 +955,147.5,264.8,258.2,257.6,257,250.6,243.6,240,239.4,238.8,231.3,209.1,231.8,228.1,227.4,226.6,218.5,172,167.6 +956,147.6,264.9,258.3,257.7,257.1,250.7,243.7,240,239.5,238.9,231.4,209.2,231.9,228.2,227.5,226.7,218.6,172,167.6 +957,147.6,265,258.3,257.8,257.1,250.8,243.8,240.1,239.6,238.9,231.5,209.3,231.9,228.3,227.6,226.8,218.7,172.1,167.7 +958,147.6,265.1,258.4,257.9,257.2,250.9,243.9,240.2,239.7,239,231.6,209.3,232,228.4,227.7,226.9,218.8,172.1,167.7 +959,147.6,265.2,258.5,257.9,257.3,250.9,244,240.3,239.8,239.1,231.7,209.4,232.1,228.5,227.8,226.9,218.9,172.1,167.7 +960,147.6,265.2,258.6,258,257.4,251,244.1,240.4,239.8,239.2,231.8,209.5,232.2,228.5,227.9,227,219,172.2,167.8 +961,147.6,265.3,258.6,258.1,257.5,251.1,244.1,240.4,239.9,239.2,231.9,209.6,232.3,228.6,228,227.1,219.1,172.2,167.8 +962,147.6,265.4,258.7,258.2,257.5,251.2,244.2,240.5,240,239.3,232,209.7,232.3,228.7,228.1,227.2,219.2,172.3,167.8 +963,147.6,265.5,258.8,258.2,257.6,251.2,244.3,240.6,240.1,239.4,232.1,209.8,232.4,228.8,228.1,227.3,219.3,172.3,167.9 +964,147.6,265.6,258.9,258.3,257.7,251.3,244.4,240.7,240.1,239.5,232.2,209.9,232.5,228.9,228.2,227.4,219.3,172.3,167.9 +965,147.6,265.7,258.9,258.4,257.8,251.4,244.5,240.7,240.2,239.6,232.2,210,232.6,229,228.3,227.5,219.4,172.4,168 +966,147.6,265.7,259,258.5,257.8,251.5,244.5,240.8,240.3,239.6,232.3,210.1,232.7,229.1,228.4,227.6,219.5,172.4,168 +967,147.7,265.8,259.1,258.5,257.9,251.6,244.6,240.9,240.4,239.7,232.4,210.2,232.8,229.2,228.5,227.7,219.6,172.5,168 +968,147.7,265.9,259.2,258.6,258,251.6,244.7,241,240.4,239.8,232.5,210.3,232.8,229.3,228.6,227.8,219.7,172.5,168.1 +969,147.7,266,259.2,258.7,258.1,251.7,244.8,241,240.5,239.9,232.6,210.4,232.9,229.4,228.7,227.8,219.8,172.5,168.1 +970,147.7,266.1,259.3,258.8,258.1,251.8,244.9,241.1,240.6,239.9,232.7,210.4,233,229.4,228.8,227.9,219.9,172.6,168.1 +971,147.7,266.2,259.4,258.8,258.2,251.9,245,241.2,240.7,240,232.8,210.5,233.1,229.5,228.9,228,220,172.6,168.2 +972,147.7,266.2,259.5,258.9,258.3,251.9,245,241.3,240.8,240.1,232.9,210.6,233.2,229.6,229,228.1,220,173.8,168.2 +973,147.7,266.3,259.5,259,258.4,252,245.1,241.4,240.8,240.2,233,210.7,233.2,229.7,229,228.2,220.1,175.7,168.2 +974,147.7,266.4,259.6,259.1,258.4,252.1,245.2,241.4,240.9,240.3,233.1,210.8,233.3,229.8,229.1,228.3,220.2,177.6,168.3 +975,147.7,266.5,259.7,259.1,258.5,252.2,245.3,241.5,241,240.3,233.1,210.9,233.4,229.9,229.2,228.4,220.3,178.8,168.3 +976,147.7,266.6,259.8,259.2,258.6,252.3,245.4,241.6,241.1,240.4,233.2,211,233.5,230,229.3,228.5,220.4,179,168.3 +977,147.7,266.6,259.8,259.3,258.7,252.3,245.5,241.7,241.1,240.5,233.3,211.1,233.6,230.1,229.4,228.6,220.5,179.2,168.4 +978,147.8,266.7,259.9,259.4,258.7,252.4,245.6,241.7,241.2,240.6,233.4,211.2,233.7,230.2,229.5,228.7,220.6,179.5,168.4 +979,147.8,266.8,260,259.4,258.8,252.5,245.6,241.8,241.3,240.6,233.5,211.3,233.7,230.2,229.6,228.7,220.7,179.7,168.4 +980,147.8,266.9,260.1,259.5,258.9,252.6,245.7,241.9,241.4,240.7,233.6,211.4,233.8,230.3,229.7,228.8,220.7,180,168.5 +981,147.8,267,260.1,259.6,259,252.6,245.8,242,241.5,240.8,233.7,211.5,233.9,230.4,229.8,228.9,220.8,180.2,168.5 +982,147.8,267.1,260.2,259.7,259,252.7,245.9,242.1,241.5,240.9,233.8,211.5,234,230.5,229.9,229,220.9,180.4,168.5 +983,147.8,267.1,260.3,259.7,259.1,252.8,246,242.1,241.6,241,233.9,211.6,234.1,230.6,229.9,229.1,221,180.7,168.6 +984,147.8,267.2,260.4,259.8,259.2,252.9,246.1,242.2,241.7,241,233.9,211.7,234.2,230.7,230,229.2,221.1,180.9,168.6 +985,147.8,267.3,260.4,259.9,259.3,252.9,246.1,242.3,241.8,241.1,234,211.8,234.2,230.8,230.1,229.3,221.2,181.1,168.6 +986,147.8,267.4,260.5,260,259.3,253,246.2,242.4,241.8,241.2,234.1,211.9,234.3,230.9,230.2,229.4,221.3,181.4,168.7 +987,147.8,267.5,260.6,260,259.4,253.1,246.3,242.4,241.9,241.3,234.2,212,234.4,231,230.3,229.5,221.4,181.6,168.7 +988,147.8,267.6,260.7,260.1,259.5,253.2,246.4,242.5,242,241.3,234.3,212.1,234.5,231,230.4,229.6,221.5,181.8,168.7 +989,147.9,267.6,260.7,260.2,259.6,253.3,246.5,242.6,242.1,241.4,234.4,212.2,234.6,231.1,230.5,229.7,221.5,182.1,168.8 +990,147.9,267.7,260.8,260.3,259.6,253.3,246.6,242.7,242.2,241.5,234.5,212.3,234.7,231.2,230.6,229.7,221.6,182.3,168.8 +991,147.9,267.8,260.9,260.3,259.7,253.4,246.7,242.8,242.2,241.6,234.6,212.4,234.7,231.3,230.7,229.8,221.7,182.5,168.8 +992,147.9,267.9,261,260.4,259.8,253.5,246.7,242.8,242.3,241.7,234.6,212.5,234.8,231.4,230.8,229.9,221.8,182.8,168.9 +993,147.9,268,261,260.5,259.9,253.6,246.8,242.9,242.4,241.7,234.7,212.6,234.9,231.5,230.8,230,221.9,183,168.9 +994,147.9,268.1,261.1,260.6,259.9,253.6,246.9,243,242.5,241.8,234.8,212.7,235,231.6,230.9,230.1,222,183.2,168.9 +995,147.9,268.1,261.2,260.6,260,253.7,247,243.1,242.5,241.9,234.9,212.7,235.1,231.7,231,230.2,222.1,183.5,169 +996,147.9,268.2,261.3,260.7,260.1,253.8,247.1,243.2,242.6,242,235,212.8,235.2,231.8,231.1,230.3,222.2,183.7,169 +997,147.9,268.3,261.3,260.8,260.2,253.9,247.2,243.2,242.7,242,235.1,212.9,235.2,231.8,231.2,230.4,222.2,184,169 +998,147.9,268.4,261.4,260.9,260.2,253.9,247.3,243.3,242.8,242.1,235.2,213,235.3,231.9,231.3,230.5,222.3,184.2,169.1 +999,147.9,268.5,261.5,260.9,260.3,254,247.3,243.4,242.9,242.2,235.3,213.1,235.4,232,231.4,230.6,222.4,184.4,169.1 +1000,147.9,268.5,261.6,261,260.4,254.1,247.4,243.5,242.9,242.3,235.3,213.2,235.5,232.1,231.5,230.6,222.5,185.3,169.1 diff --git a/test/Data Tables/9,400 MHz - Lb(0.50)_P528.csv b/test/Data Tables/9,400 MHz - Lb(0.50)_P528.csv new file mode 100644 index 0000000..6376332 --- /dev/null +++ b/test/Data Tables/9,400 MHz - Lb(0.50)_P528.csv @@ -0,0 +1,1005 @@ +9400MHz / Lb(0.50) dB +,h2(m),1000,1000,1000,1000,1000,10000,10000,10000,10000,10000,10000,20000,20000,20000,20000,20000,20000,20000 +,h1(m),1.5,15,30,60,1000,1.5,15,30,60,1000,10000,1.5,15,30,60,1000,10000,20000 +D (km),FSL +0,111.9,111.9,111.8,111.7,111.4,0,132,131.9,131.9,131.9,131,0,138,138,138,138,137.5,131.9,0 +1,114.9,114.9,114.8,114.7,114.6,112,131.9,131.9,131.9,131.9,131,111.9,138,137.9,137.9,137.9,137.5,131.9,111.9 +2,118.9,118.9,118.9,118.8,118.8,118,132,132,132,132,131.1,117.9,137.9,137.9,137.9,137.9,137.5,132,118 +3,121.9,121.9,121.9,121.9,121.9,121.5,132.2,132.1,132.1,132.1,131.3,121.5,138,137.9,137.9,137.9,137.5,132.2,121.5 +4,124.2,124.3,124.2,124.2,124.2,124,132.4,132.4,132.4,132.3,131.6,124,138,138,138,138,137.6,132.4,124 +5,126.1,126.1,126.1,126.1,126.1,126,132.7,132.7,132.7,132.6,132,125.9,138,138,138,138,137.6,132.7,125.9 +6,127.6,127.7,127.7,127.7,127.6,127.5,133,133,133,133,132.4,127.5,138.1,138.1,138.1,138.1,137.7,133.1,127.5 +7,128.9,129,129,129,129,128.9,133.4,133.4,133.4,133.4,132.8,128.8,138.2,138.2,138.2,138.2,137.8,133.5,128.8 +8,130,130.1,130.1,130.1,130.1,130.1,133.8,133.8,133.8,133.8,133.3,130,138.3,138.3,138.3,138.3,137.9,133.9,130 +9,131,131.2,131.2,131.1,131.1,131.1,134.3,134.3,134.3,134.2,133.8,131,138.5,138.4,138.4,138.4,138.1,134.3,131 +10,132,132.1,132.1,132.1,132.1,132,134.7,134.7,134.7,134.7,134.3,131.9,138.6,138.6,138.6,138.6,138.2,134.8,131.9 +11,132.8,132.9,132.9,132.9,132.9,132.8,135.2,135.2,135.2,135.1,134.8,132.8,138.8,138.8,138.8,138.7,138.4,135.2,132.8 +12,133.5,133.7,133.7,133.7,133.7,133.6,135.6,135.6,135.6,135.6,135.3,133.5,138.9,138.9,138.9,138.9,138.6,135.6,133.5 +13,134.2,134.4,134.4,134.4,134.4,134.3,136.1,136.1,136,136,135.7,134.2,139.1,139.1,139.1,139.1,138.8,136,134.2 +14,134.9,135,135,135,135,134.9,136.5,136.5,136.5,136.5,136.2,134.9,139.3,139.3,139.3,139.3,139,136.5,134.9 +15,135.5,135.6,135.6,135.6,135.6,135.6,136.9,136.9,136.9,136.9,136.7,135.5,139.5,139.5,139.5,139.5,139.3,136.9,135.5 +16,136,136.2,136.2,136.2,136.2,136.1,137.3,137.3,137.3,137.3,137.1,136,139.7,139.7,139.7,139.7,139.5,137.3,136 +17,136.5,136.7,136.7,136.7,136.7,136.7,137.7,137.7,137.7,137.7,137.5,136.5,140,140,140,139.9,139.7,137.7,136.5 +18,137,137.2,137.2,137.2,137.2,137.2,138.1,138.1,138.1,138.1,137.9,137,140.2,140.2,140.2,140.2,139.9,138.1,137 +19,137.5,137.7,137.7,137.7,137.7,137.6,138.5,138.5,138.5,138.5,138.3,137.5,140.4,140.4,140.4,140.4,140.2,138.4,137.5 +20,137.9,138.2,138.2,138.2,138.2,138.1,138.9,138.9,138.9,138.9,138.7,138,140.6,140.6,140.6,140.6,140.4,138.8,138 +21,138.4,138.6,138.6,138.6,138.6,138.5,139.2,139.2,139.2,139.2,139.1,138.4,140.9,140.9,140.9,140.9,140.7,139.1,138.4 +22,138.8,139,139,139,139,138.9,139.6,139.6,139.6,139.6,139.4,138.8,141.1,141.1,141.1,141.1,140.9,139.5,138.8 +23,139.2,139.4,139.4,139.4,139.4,139.3,139.9,139.9,139.9,139.9,139.8,139.2,141.3,141.3,141.3,141.3,141.1,139.8,139.2 +24,139.5,139.8,139.8,139.8,139.8,139.7,140.2,140.2,140.2,140.2,140.1,139.5,141.5,141.5,141.5,141.5,141.4,140.1,139.5 +25,139.9,140.2,140.2,140.2,140.2,140.1,140.5,140.5,140.5,140.5,140.4,139.9,141.8,141.8,141.8,141.8,141.6,140.4,139.9 +26,140.2,140.5,140.5,140.5,140.5,140.4,140.9,140.9,140.9,140.8,140.7,140.2,142,142,142,142,141.8,140.7,140.2 +27,140.5,140.9,140.9,140.9,140.8,140.7,141.2,141.2,141.1,141.1,141,140.6,142.2,142.2,142.2,142.2,142.1,141,140.6 +28,140.9,141.2,141.2,141.2,141.2,141.1,141.4,141.4,141.4,141.4,141.3,140.9,142.4,142.4,142.4,142.4,142.3,141.3,140.9 +29,141.2,141.5,141.5,141.5,141.5,141.4,141.7,141.7,141.7,141.7,141.6,141.2,142.7,142.7,142.7,142.6,142.5,141.6,141.2 +30,141.5,141.8,141.8,141.8,141.8,141.7,142,142,142,142,141.9,141.5,142.9,142.9,142.9,142.9,142.7,141.8,141.5 +31,141.7,142.1,142.1,142.1,142.1,142,142.3,142.3,142.3,142.3,142.2,141.8,143.1,143.1,143.1,143.1,143,142.1,141.8 +32,142,142.4,142.4,142.4,142.4,142.3,142.5,142.5,142.5,142.5,142.4,142.1,143.3,143.3,143.3,143.3,143.2,142.4,142 +33,142.3,142.6,142.6,142.6,142.6,142.5,142.8,142.8,142.8,142.8,142.7,142.3,143.5,143.5,143.5,143.5,143.4,142.6,142.3 +34,142.5,142.9,142.9,142.9,142.9,142.8,143,143,143,143,142.9,142.6,143.7,143.7,143.7,143.7,143.6,142.9,142.6 +35,142.8,143.2,143.2,143.2,143.2,143.1,143.3,143.3,143.3,143.3,143.2,142.8,143.9,143.9,143.9,143.9,143.8,143.1,142.8 +36,143,143.4,143.4,143.4,143.4,143.3,143.5,143.5,143.5,143.5,143.4,143.1,144.1,144.1,144.1,144.1,144,143.3,143.1 +37,143.3,143.7,143.7,143.7,143.7,143.5,143.7,143.7,143.7,143.7,143.6,143.3,144.3,144.3,144.3,144.3,144.2,143.5,143.3 +38,143.5,143.9,143.9,143.9,143.9,143.8,143.9,143.9,143.9,143.9,143.9,143.5,144.5,144.5,144.5,144.5,144.4,143.8,143.5 +39,143.7,144.1,144.1,144.1,144.1,144,144.2,144.2,144.2,144.2,144.1,143.8,144.7,144.7,144.7,144.7,144.6,144,143.8 +40,144,144.4,144.4,144.4,144.4,144.3,144.4,144.4,144.4,144.4,144.3,144,144.9,144.9,144.9,144.8,144.8,144.2,144 +41,144.2,144.6,144.6,144.6,144.6,144.5,144.6,144.6,144.6,144.6,144.5,144.2,145,145,145,145,144.9,144.4,144.2 +42,144.4,144.8,144.8,144.8,144.8,144.7,144.8,144.8,144.8,144.8,144.7,144.4,145.2,145.2,145.2,145.2,145.1,144.6,144.4 +43,144.6,145,145,145,145,144.9,145,145,145,145,144.9,144.6,145.4,145.4,145.4,145.4,145.3,144.8,144.6 +44,144.8,145.2,145.2,145.2,145.2,145.1,145.2,145.2,145.2,145.2,145.1,144.8,145.6,145.6,145.6,145.6,145.5,145,144.8 +45,145,145.4,145.4,145.4,145.4,145.3,145.4,145.4,145.4,145.4,145.3,145,145.7,145.7,145.7,145.7,145.6,145.2,145 +46,145.2,145.6,145.6,145.6,145.6,145.5,145.6,145.6,145.6,145.6,145.5,145.2,145.9,145.9,145.9,145.9,145.8,145.4,145.2 +47,145.4,145.8,145.8,145.8,145.8,145.7,145.8,145.8,145.8,145.8,145.7,145.4,146.1,146.1,146.1,146.1,146,145.5,145.4 +48,145.5,146,146,146,146,145.9,145.9,145.9,145.9,145.9,145.9,145.6,146.2,146.2,146.2,146.2,146.2,145.7,145.6 +49,145.7,146.2,146.2,146.2,146.2,146.1,146.1,146.1,146.1,146.1,146,145.8,146.4,146.4,146.4,146.4,146.3,145.9,145.7 +50,145.9,146.4,146.4,146.4,146.4,146.3,146.3,146.3,146.3,146.3,146.2,145.9,146.6,146.5,146.5,146.5,146.5,146.1,145.9 +51,146.1,146.5,146.6,146.6,146.6,146.4,146.5,146.5,146.5,146.5,146.4,146.1,146.7,146.7,146.7,146.7,146.6,146.2,146.1 +52,146.2,146.7,146.7,146.7,146.8,146.6,146.6,146.6,146.6,146.6,146.6,146.3,146.9,146.9,146.9,146.9,146.8,146.4,146.3 +53,146.4,146.9,146.9,146.9,146.9,146.8,146.8,146.8,146.8,146.8,146.7,146.4,147,147,147,147,146.9,146.5,146.4 +54,146.6,147.1,147.1,147.1,147.1,147,147,147,147,147,146.9,146.6,147.2,147.2,147.2,147.2,147.1,146.7,146.6 +55,146.7,147.2,147.2,147.3,147.3,147.1,147.1,147.1,147.1,147.1,147.1,146.8,147.3,147.3,147.3,147.3,147.2,146.9,146.7 +56,146.9,147.4,147.4,147.4,147.4,147.3,147.3,147.3,147.3,147.3,147.2,146.9,147.5,147.5,147.5,147.4,147.4,147,146.9 +57,147,147.5,147.6,147.6,147.6,147.5,147.4,147.4,147.4,147.4,147.4,147.1,147.6,147.6,147.6,147.6,147.5,147.2,147 +58,147.2,147.7,147.7,147.7,147.7,147.6,147.6,147.6,147.6,147.6,147.5,147.2,147.7,147.7,147.7,147.7,147.7,147.3,147.2 +59,147.3,147.8,147.9,147.9,147.9,147.8,147.7,147.7,147.7,147.7,147.7,147.4,147.9,147.9,147.9,147.9,147.8,147.5,147.3 +60,147.5,148,148,148,148.1,147.9,147.9,147.9,147.9,147.9,147.8,147.5,148,148,148,148,147.9,147.6,147.5 +61,147.6,148.1,148.2,148.2,148.2,148.1,148,148,148,148,148,147.7,148.1,148.1,148.1,148.1,148.1,147.7,147.6 +62,147.8,148.3,148.3,148.3,148.3,148.2,148.2,148.2,148.2,148.2,148.1,147.8,148.3,148.3,148.3,148.3,148.2,147.9,147.8 +63,147.9,148.4,148.5,148.5,148.5,148.4,148.3,148.3,148.3,148.3,148.2,148,148.4,148.4,148.4,148.4,148.3,148,147.9 +64,148,148.6,148.6,148.6,148.6,148.5,148.5,148.5,148.4,148.4,148.4,148.1,148.5,148.5,148.5,148.5,148.5,148.2,148.1 +65,148.2,148.7,148.7,148.8,148.8,148.7,148.6,148.6,148.6,148.6,148.5,148.2,148.7,148.7,148.7,148.7,148.6,148.3,148.2 +66,148.3,148.9,148.9,148.9,148.9,148.8,148.7,148.7,148.7,148.7,148.7,148.4,148.8,148.8,148.8,148.8,148.7,148.4,148.3 +67,148.4,149,149,149,149.1,148.9,148.9,148.9,148.9,148.9,148.8,148.5,148.9,148.9,148.9,148.9,148.9,148.5,148.5 +68,148.6,149.1,149.2,149.2,149.2,149.1,149,149,149,149,148.9,148.6,149,149,149,149,149,148.7,148.6 +69,148.7,149.2,149.3,149.3,149.3,149.2,149.1,149.1,149.1,149.1,149,148.8,149.2,149.2,149.2,149.2,149.1,148.8,148.7 +70,148.8,149.4,149.4,149.4,149.4,149.3,149.2,149.2,149.2,149.2,149.2,148.9,149.3,149.3,149.3,149.3,149.2,148.9,148.8 +71,148.9,149.5,149.5,149.6,149.6,149.5,149.4,149.4,149.4,149.4,149.3,149,149.4,149.4,149.4,149.4,149.3,149,149 +72,149.1,149.6,149.7,149.7,149.7,149.6,149.5,149.5,149.5,149.5,149.4,149.1,149.5,149.5,149.5,149.5,149.5,149.2,149.1 +73,149.2,149.7,149.8,149.8,149.8,149.7,149.6,149.6,149.6,149.6,149.5,149.2,149.6,149.6,149.6,149.6,149.6,149.3,149.2 +74,149.3,149.9,149.9,149.9,150,149.8,149.7,149.7,149.7,149.7,149.7,149.4,149.8,149.8,149.8,149.8,149.7,149.4,149.3 +75,149.4,150,150,150.1,150.1,150,149.9,149.9,149.9,149.9,149.8,149.5,149.9,149.9,149.9,149.9,149.8,149.5,149.4 +76,149.5,150.1,150.1,150.2,150.2,150.1,150,150,150,150,149.9,149.6,150,150,150,150,149.9,149.6,149.5 +77,149.6,150.2,150.3,150.3,150.3,150.2,150.1,150.1,150.1,150.1,150,149.7,150.1,150.1,150.1,150.1,150,149.7,149.7 +78,149.8,150.4,150.4,150.4,150.4,150.3,150.2,150.2,150.2,150.2,150.1,149.8,150.2,150.2,150.2,150.2,150.1,149.9,149.8 +79,149.9,150.6,150.5,150.5,150.5,150.5,150.3,150.3,150.3,150.3,150.3,149.9,150.3,150.3,150.3,150.3,150.2,150,149.9 +80,150,150.8,150.6,150.6,150.7,150.6,150.4,150.4,150.4,150.4,150.4,150,150.4,150.4,150.4,150.4,150.4,150.1,150 +81,150.1,151,150.7,150.7,150.8,150.7,150.6,150.6,150.5,150.5,150.5,150.2,150.5,150.5,150.5,150.5,150.5,150.2,150.1 +82,150.2,151.2,150.8,150.8,150.9,150.8,150.7,150.7,150.7,150.7,150.6,150.3,150.6,150.6,150.6,150.6,150.6,150.3,150.2 +83,150.3,151.4,151,151,151,150.9,150.8,150.8,150.8,150.8,150.7,150.4,150.7,150.7,150.7,150.7,150.7,150.4,150.3 +84,150.4,151.6,151.1,151.1,151.1,151,150.9,150.9,150.9,150.9,150.8,150.5,150.8,150.8,150.8,150.8,150.8,150.5,150.4 +85,150.5,151.8,151.3,151.2,151.2,151.1,151,151,151,151,150.9,150.6,150.9,150.9,150.9,150.9,150.9,150.6,150.5 +86,150.6,152,151.5,151.3,151.3,151.2,151.1,151.1,151.1,151.1,151,150.7,151,151,151,151,151,150.7,150.6 +87,150.7,152.1,151.7,151.4,151.4,151.3,151.2,151.2,151.2,151.2,151.1,150.8,151.1,151.1,151.1,151.1,151.1,150.8,150.7 +88,150.8,152.3,151.9,151.6,151.5,151.4,151.3,151.3,151.3,151.3,151.2,150.9,151.2,151.2,151.2,151.2,151.2,150.9,150.8 +89,150.9,152.5,152.1,151.8,151.6,151.6,151.4,151.4,151.4,151.4,151.3,151,151.3,151.3,151.3,151.3,151.3,151,150.9 +90,151,152.7,152.2,152,151.7,151.7,151.5,151.5,151.5,151.5,151.4,151.1,151.4,151.4,151.4,151.4,151.4,151.1,151 +91,151.1,152.9,152.4,152.2,151.8,151.8,151.6,151.6,151.6,151.6,151.5,151.2,151.5,151.5,151.5,151.5,151.5,151.2,151.1 +92,151.2,153.1,152.6,152.3,152,151.9,151.7,151.7,151.7,151.7,151.6,151.3,151.6,151.6,151.6,151.6,151.6,151.3,151.2 +93,151.3,153.3,152.8,152.5,152.2,152,151.8,151.8,151.8,151.8,151.7,151.4,151.7,151.7,151.7,151.7,151.6,151.4,151.3 +94,151.4,153.5,153,152.7,152.3,152.1,151.9,151.9,151.9,151.9,151.8,151.5,151.8,151.8,151.8,151.8,151.7,151.5,151.4 +95,151.5,153.7,153.1,152.8,152.5,152.2,152,152,152,152,151.9,151.5,151.9,151.9,151.9,151.9,151.8,151.6,151.5 +96,151.6,153.8,153.3,153,152.7,152.3,152.1,152.1,152.1,152.1,152,151.6,152,152,152,152,151.9,151.6,151.6 +97,151.6,154,153.5,153.2,152.8,152.4,152.2,152.2,152.2,152.2,152.1,151.7,152.1,152.1,152.1,152.1,152,151.7,151.7 +98,151.7,154.2,153.7,153.4,153,152.4,152.3,152.3,152.3,152.3,152.2,151.8,152.2,152.2,152.2,152.2,152.1,151.8,151.8 +99,151.8,154.4,153.8,153.5,153.2,152.5,152.4,152.4,152.4,152.4,152.3,151.9,152.3,152.3,152.3,152.2,152.2,151.9,151.8 +100,151.9,154.6,154,153.7,153.3,152.6,152.5,152.5,152.5,152.5,152.4,152,152.3,152.3,152.3,152.3,152.3,152,151.9 +101,152,154.8,154.2,153.9,153.5,152.7,152.6,152.6,152.5,152.5,152.5,152.1,152.4,152.4,152.4,152.4,152.4,152.1,152 +102,152.1,155,154.4,154.1,153.7,152.8,152.6,152.6,152.6,152.6,152.6,152.2,152.5,152.5,152.5,152.5,152.4,152.2,152.1 +103,152.2,155.1,154.5,154.2,153.8,152.9,152.7,152.7,152.7,152.7,152.6,152.3,152.6,152.6,152.6,152.6,152.5,152.3,152.2 +104,152.3,155.3,154.7,154.4,154,153,152.8,152.8,152.8,152.8,152.7,152.3,152.7,152.7,152.7,152.7,152.6,152.3,152.3 +105,152.3,155.5,154.9,154.6,154.2,153.1,152.9,152.9,152.9,152.9,152.8,152.4,152.8,152.8,152.8,152.8,152.7,152.4,152.4 +106,152.4,155.7,155.1,154.7,154.3,153.2,153,153,153,153,152.9,152.5,152.8,152.8,152.8,152.8,152.8,152.5,152.4 +107,152.5,155.9,155.2,154.9,154.5,153.3,153.1,153.1,153.1,153.1,153,152.6,152.9,152.9,152.9,152.9,152.9,152.6,152.5 +108,152.6,156.1,155.4,155.1,154.6,153.3,153.2,153.2,153.2,153.2,153.1,152.7,153,153,153,153,152.9,152.7,152.6 +109,152.7,156.2,155.6,155.2,154.8,153.4,153.3,153.2,153.2,153.2,153.2,152.7,153.1,153.1,153.1,153.1,153,152.7,152.7 +110,152.7,156.4,155.8,155.4,155,153.5,153.3,153.3,153.3,153.3,153.2,152.8,153.2,153.2,153.2,153.2,153.1,152.8,152.8 +111,152.8,156.6,155.9,155.6,155.1,153.6,153.4,153.4,153.4,153.4,153.3,152.9,153.3,153.3,153.3,153.3,153.2,152.9,152.8 +112,152.9,156.8,156.1,155.7,155.3,153.7,153.5,153.5,153.5,153.5,153.4,153,153.3,153.3,153.3,153.3,153.3,153,152.9 +113,153,156.9,156.3,155.9,155.4,153.8,153.6,153.6,153.6,153.6,153.5,153.1,153.4,153.4,153.4,153.4,153.3,153.1,153 +114,153.1,157.1,156.4,156.1,155.6,153.9,153.7,153.7,153.7,153.7,153.6,153.1,153.5,153.5,153.5,153.5,153.4,153.1,153.1 +115,153.1,157.3,156.6,156.2,155.8,153.9,153.7,153.7,153.7,153.7,153.6,153.2,153.6,153.6,153.6,153.6,153.5,153.2,153.1 +116,153.2,157.5,156.8,156.4,155.9,154,153.8,153.8,153.8,153.8,153.7,153.3,153.6,153.6,153.6,153.6,153.6,153.3,153.2 +117,153.3,157.7,157,156.6,156.1,154.1,153.9,153.9,153.9,153.9,153.8,153.4,153.7,153.7,153.7,153.7,153.6,153.4,153.3 +118,153.4,157.8,157.1,156.7,156.2,154.2,154,154,154,154,153.9,153.4,153.8,153.8,153.8,153.8,153.7,153.4,153.4 +119,153.4,158,157.3,156.9,156.4,154.3,154.1,154.1,154.1,154.1,154,153.5,153.9,153.9,153.9,153.9,153.8,153.5,153.4 +120,153.5,158.2,157.5,157.1,156.6,154.3,154.1,154.1,154.1,154.1,154,153.6,153.9,153.9,153.9,153.9,153.9,153.6,153.5 +121,153.6,158.3,157.6,157.2,156.7,154.4,154.2,154.2,154.2,154.2,154.1,153.7,154,154,154,154,153.9,153.7,153.6 +122,153.6,158.5,157.8,157.4,156.9,154.5,154.3,154.3,154.3,154.3,154.2,153.7,154.1,154.1,154.1,154.1,154,153.7,153.7 +123,153.7,158.7,158,157.6,157,154.6,154.4,154.4,154.4,154.4,154.3,153.8,154.2,154.2,154.2,154.2,154.1,153.8,153.7 +124,153.8,158.9,158.1,157.7,157.2,154.6,154.4,154.4,154.4,154.4,154.3,153.9,154.2,154.2,154.2,154.2,154.2,153.9,153.8 +125,153.9,159.3,158.3,157.9,157.4,154.7,154.5,154.5,154.5,154.5,154.4,153.9,154.3,154.3,154.3,154.3,154.2,153.9,153.9 +126,153.9,160.2,158.5,158,157.5,154.8,154.6,154.6,154.6,154.6,154.5,154,154.4,154.4,154.4,154.4,154.3,154,153.9 +127,154,161.2,158.6,158.2,157.7,154.9,154.7,154.7,154.7,154.7,154.6,154.1,154.4,154.4,154.4,154.4,154.4,154.1,154 +128,154.1,162.2,158.8,158.4,157.8,154.9,154.7,154.7,154.7,154.7,154.6,154.2,154.5,154.5,154.5,154.5,154.4,154.1,154.1 +129,154.1,163.2,158.9,158.5,158,155,154.8,154.8,154.8,154.8,154.7,154.2,154.6,154.6,154.6,154.6,154.5,154.2,154.1 +130,154.2,164,159.1,158.7,158.1,155.1,154.9,154.9,154.9,154.9,154.8,154.3,154.7,154.7,154.7,154.7,154.6,154.3,154.2 +131,154.3,164.8,159.3,158.8,158.4,155.1,155,155,154.9,154.9,154.8,154.4,154.7,154.7,154.7,154.7,154.6,154.3,154.3 +132,154.3,165.7,159.4,159,158.5,155.2,155,155,155,155,154.9,154.4,154.8,154.8,154.8,154.8,154.7,154.4,154.3 +133,154.4,166.6,159.6,159.2,158.6,155.3,155.1,155.1,155.1,155.1,155,154.5,154.9,154.9,154.9,154.9,154.8,154.5,154.4 +134,154.5,167.5,159.8,159.4,158.8,155.4,155.2,155.2,155.2,155.2,155,154.6,154.9,154.9,154.9,154.9,154.8,154.5,154.5 +135,154.5,168.5,160,159.5,158.9,155.4,155.2,155.2,155.2,155.2,155.1,154.6,155,155,155,155,154.9,154.6,154.5 +136,154.6,169.4,160.1,159.7,159.1,155.5,155.3,155.3,155.3,155.3,155.2,154.7,155.1,155.1,155.1,155.1,155,154.7,154.6 +137,154.6,170.3,160.3,159.8,159.2,155.6,155.4,155.4,155.4,155.4,155.3,154.8,155.1,155.1,155.1,155.1,155,154.7,154.7 +138,154.7,171.2,160.4,160,159.4,155.6,155.4,155.4,155.4,155.4,155.3,154.8,155.2,155.2,155.2,155.2,155.1,154.8,154.7 +139,154.8,172.1,160.6,160.1,159.5,155.7,155.5,155.5,155.5,155.5,155.4,154.9,155.3,155.3,155.3,155.2,155.2,154.9,154.8 +140,154.8,173.6,160.7,160.3,159.7,155.8,155.6,155.6,155.6,155.6,155.5,154.9,155.3,155.3,155.3,155.3,155.2,154.9,154.8 +141,154.9,175.6,160.9,160.4,159.8,155.9,155.6,155.6,155.6,155.6,155.5,155,155.4,155.4,155.4,155.4,155.3,155,154.9 +142,154.9,177.6,161,160.6,160,156,155.7,155.7,155.7,155.7,155.6,155.1,155.4,155.4,155.4,155.4,155.4,155,155 +143,155,179.5,161.2,160.7,160.1,156.1,155.8,155.8,155.8,155.8,155.6,155.1,155.5,155.5,155.5,155.5,155.4,155.1,155 +144,155,181.5,161.3,160.9,160.3,156.2,155.8,155.8,155.8,155.8,155.7,155.2,155.6,155.6,155.6,155.6,155.5,155.2,155.1 +145,155.1,183.5,161.5,161,160.4,156.3,155.9,155.9,155.9,155.9,155.8,155.2,155.6,155.6,155.6,155.6,155.5,155.2,155.2 +146,155.2,185.4,161.6,161.2,160.6,156.4,156,156,156,156,155.8,155.3,155.7,155.7,155.7,155.7,155.6,155.3,155.2 +147,155.2,187.4,162.2,161.3,160.7,156.5,156,156,156,156,155.9,155.4,155.8,155.8,155.8,155.8,155.7,155.4,155.3 +148,155.3,189.4,163.8,161.5,160.9,156.7,156.1,156.1,156.1,156.1,156,155.4,155.8,155.8,155.8,155.8,155.7,155.4,155.3 +149,155.3,191.3,165.4,161.6,161,156.8,156.2,156.2,156.2,156.2,156,155.5,155.9,155.9,155.9,155.9,155.8,155.5,155.4 +150,155.4,193.3,167,161.8,161.1,156.9,156.2,156.2,156.2,156.2,156.1,155.5,155.9,155.9,155.9,155.9,155.9,155.5,155.4 +151,155.5,195.3,168.6,161.9,161.3,157,156.3,156.3,156.3,156.3,156.2,155.6,156,156,156,156,155.9,155.6,155.5 +152,155.5,196.6,170.6,162,161.4,157.1,156.3,156.3,156.3,156.3,156.2,155.7,156.1,156.1,156.1,156.1,156,155.6,155.6 +153,155.6,197.2,172.5,162.2,161.6,157.2,156.4,156.4,156.4,156.4,156.3,155.7,156.1,156.1,156.1,156.1,156,155.7,155.6 +154,155.6,197.7,174.5,162.3,161.7,157.3,156.5,156.5,156.5,156.5,156.3,155.8,156.2,156.2,156.2,156.2,156.1,155.8,155.7 +155,155.7,198.3,176.5,163.6,161.8,157.4,156.5,156.5,156.5,156.5,156.4,155.8,156.2,156.2,156.2,156.2,156.1,155.8,155.7 +156,155.7,198.8,178.5,165.3,162,157.5,156.6,156.6,156.6,156.6,156.5,155.9,156.3,156.3,156.3,156.3,156.2,155.9,155.8 +157,155.8,199.2,180.4,167,162.1,157.6,156.7,156.7,156.7,156.6,156.5,155.9,156.4,156.4,156.4,156.3,156.3,155.9,155.8 +158,155.8,199.7,182.4,168.8,162.3,157.7,156.7,156.7,156.7,156.7,156.6,156,156.4,156.4,156.4,156.4,156.3,156,155.9 +159,155.9,200.1,184.1,170.7,162.4,157.9,156.8,156.8,156.8,156.8,156.6,156.1,156.5,156.5,156.5,156.5,156.4,156,155.9 +160,156,200.5,185.4,172.6,162.5,158,156.8,156.8,156.8,156.8,156.7,156.1,156.5,156.5,156.5,156.5,156.4,156.1,156 +161,156,201,186.6,174.5,162.7,158.1,156.9,156.9,156.9,156.9,156.8,156.2,156.6,156.6,156.6,156.6,156.5,156.1,156.1 +162,156.1,201.3,187.7,176.4,162.8,158.2,157,156.9,156.9,156.9,156.8,156.2,156.6,156.6,156.6,156.6,156.5,156.2,156.1 +163,156.1,201.7,188.7,178.3,162.9,158.3,157,157,157,157,156.9,156.3,156.7,156.7,156.7,156.7,156.6,156.3,156.2 +164,156.2,202.1,189.7,180.2,163.1,158.4,157.1,157.1,157.1,157.1,156.9,156.3,156.7,156.7,156.7,156.7,156.7,156.3,156.2 +165,156.2,202.5,190.5,182,163.7,158.5,157.1,157.1,157.1,157.1,157,156.4,156.8,156.8,156.8,156.8,156.7,156.4,156.3 +166,156.3,202.8,191.4,183.5,165.5,158.6,157.2,157.2,157.2,157.2,157,156.4,156.9,156.9,156.9,156.9,156.8,156.4,156.3 +167,156.3,203.1,192.1,184.9,167.3,158.7,157.2,157.2,157.2,157.2,157.1,156.5,156.9,156.9,156.9,156.9,156.8,156.5,156.4 +168,156.4,203.5,192.9,186.2,169.1,158.8,157.3,157.3,157.3,157.3,157.2,156.5,157,157,157,157,156.9,156.5,156.4 +169,156.4,203.8,193.6,187.3,171,158.9,157.4,157.4,157.3,157.3,157.2,156.6,157,157,157,157,156.9,156.6,156.5 +170,156.5,204.1,194.2,188.4,172.9,159,157.4,157.4,157.4,157.4,157.3,156.6,157.1,157.1,157.1,157.1,157,156.6,156.5 +171,156.5,204.4,194.8,189.3,174.7,159.2,157.5,157.5,157.5,157.5,157.3,156.7,157.1,157.1,157.1,157.1,157,156.7,156.6 +172,156.6,204.7,195.4,190.3,176.6,159.3,157.5,157.5,157.5,157.5,157.4,156.7,157.2,157.2,157.2,157.2,157.1,156.7,156.6 +173,156.6,205,196,191.1,178.4,159.4,157.6,157.6,157.6,157.6,157.4,156.8,157.2,157.2,157.2,157.2,157.1,156.8,156.7 +174,156.7,205.3,196.6,191.9,180.3,159.5,157.6,157.6,157.6,157.6,157.5,156.8,157.3,157.3,157.3,157.3,157.2,156.8,156.7 +175,156.7,205.6,197.1,192.7,182.1,159.6,157.7,157.7,157.7,157.7,157.5,156.9,157.3,157.3,157.3,157.3,157.2,156.9,156.8 +176,156.8,205.9,197.6,193.4,183.7,159.7,157.7,157.7,157.7,157.7,157.6,156.9,157.4,157.4,157.4,157.4,157.3,156.9,156.8 +177,156.8,206.1,198.1,194.1,185.1,159.8,157.8,157.8,157.8,157.8,157.6,157,157.4,157.4,157.4,157.4,157.3,157,156.9 +178,156.9,206.4,198.6,194.7,186.4,159.9,157.8,157.8,157.8,157.8,157.7,157,157.5,157.5,157.5,157.5,157.4,157,156.9 +179,156.9,206.7,199,195.3,187.5,160,157.9,157.9,157.9,157.9,157.7,157.1,157.5,157.5,157.5,157.5,157.4,157.1,157 +180,157,206.9,199.5,195.9,188.6,160.1,158,158,157.9,157.9,157.8,157.1,157.6,157.6,157.6,157.6,157.5,157.1,157 +181,157,207.2,199.9,196.5,189.6,160.2,158,158,158,158,157.8,157.2,157.7,157.7,157.6,157.6,157.5,157.2,157.1 +182,157.1,207.4,200.3,197,190.5,160.3,158.1,158.1,158.1,158,157.9,157.2,157.7,157.7,157.7,157.7,157.6,157.2,157.1 +183,157.1,207.6,200.7,197.6,191.4,160.4,158.1,158.1,158.1,158.1,157.9,157.3,157.8,157.8,157.7,157.7,157.6,157.3,157.2 +184,157.2,207.9,201.1,198.1,192.2,160.5,158.2,158.2,158.2,158.2,158,157.3,157.8,157.8,157.8,157.8,157.7,157.3,157.2 +185,157.2,208.1,201.5,198.5,193,160.6,158.2,158.2,158.2,158.2,158,157.4,157.9,157.9,157.8,157.8,157.7,157.4,157.3 +186,157.3,208.3,201.9,199,193.7,160.8,158.3,158.3,158.3,158.3,158.1,157.4,157.9,157.9,157.9,157.9,157.8,157.4,157.3 +187,157.3,208.6,202.2,199.5,194.4,160.9,158.3,158.3,158.3,158.3,158.1,157.5,158,158,157.9,157.9,157.8,157.4,157.4 +188,157.4,208.8,202.6,199.9,195,161,158.4,158.4,158.4,158.4,158.2,157.5,158,158,158,158,157.9,157.5,157.4 +189,157.4,209,202.9,200.3,195.6,161.1,158.4,158.4,158.4,158.4,158.2,157.6,158,158,158,158,157.9,157.5,157.4 +190,157.5,209.2,203.3,200.7,196.2,161.2,158.5,158.5,158.5,158.5,158.3,157.6,158.1,158.1,158.1,158.1,158,157.6,157.5 +191,157.5,209.4,203.6,201.1,196.8,161.3,158.5,158.5,158.5,158.5,158.3,157.7,158.1,158.1,158.1,158.1,158,157.6,157.5 +192,157.5,209.7,203.9,201.5,197.3,161.4,158.6,158.6,158.6,158.6,158.4,157.7,158.2,158.2,158.2,158.2,158.1,157.7,157.6 +193,157.6,209.9,204.3,201.9,197.9,161.5,158.6,158.6,158.6,158.6,158.4,157.8,158.2,158.2,158.2,158.2,158.1,157.7,157.6 +194,157.6,210.1,204.6,202.3,198.4,161.6,158.7,158.7,158.7,158.6,158.5,157.8,158.3,158.3,158.3,158.3,158.2,157.8,157.7 +195,157.7,210.3,204.9,202.6,198.8,161.7,158.7,158.7,158.7,158.7,158.5,157.8,158.3,158.3,158.3,158.3,158.2,157.8,157.7 +196,157.7,210.5,205.2,203,199.3,161.8,158.7,158.7,158.7,158.7,158.6,157.9,158.4,158.4,158.4,158.4,158.3,157.9,157.8 +197,157.8,210.7,205.4,203.3,199.8,161.9,158.8,158.8,158.8,158.8,158.6,157.9,158.4,158.4,158.4,158.4,158.3,157.9,157.8 +198,157.8,210.9,205.7,203.7,200.2,162,158.8,158.8,158.8,158.8,158.6,158,158.5,158.5,158.5,158.5,158.4,157.9,157.8 +199,157.9,211,206,204,200.6,162.1,158.9,158.9,158.9,158.9,158.7,158,158.5,158.5,158.5,158.5,158.4,158,157.9 +200,157.9,211.2,206.3,204.3,201,162.2,158.9,158.9,158.9,158.9,158.7,158.1,158.6,158.6,158.6,158.6,158.5,158,157.9 +201,157.9,211.4,206.5,204.6,201.4,162.3,159,159,159,159,158.8,158.1,158.6,158.6,158.6,158.6,158.5,158.1,158 +202,158,211.6,206.8,204.9,201.8,162.4,159,159,159,159,158.8,158.2,158.7,158.7,158.7,158.7,158.5,158.1,158 +203,158,211.8,207.1,205.2,202.2,162.5,159.1,159.1,159.1,159.1,158.9,158.2,158.7,158.7,158.7,158.7,158.6,158.2,158.1 +204,158.1,212,207.3,205.5,202.6,162.6,159.1,159.1,159.1,159.1,158.9,158.2,158.8,158.8,158.8,158.7,158.6,158.2,158.1 +205,158.1,212.2,207.6,205.8,202.9,162.7,159.1,159.1,159.1,159.1,159,158.3,158.8,158.8,158.8,158.8,158.7,158.2,158.1 +206,158.2,212.3,207.8,206.1,203.3,162.8,159.2,159.2,159.2,159.2,159,158.3,158.8,158.8,158.8,158.8,158.7,158.3,158.2 +207,158.2,212.5,208.1,206.4,203.6,162.9,159.2,159.2,159.2,159.2,159,158.4,158.9,158.9,158.9,158.9,158.8,158.3,158.2 +208,158.2,212.7,208.3,206.6,204,163,159.3,159.3,159.3,159.3,159.1,158.4,158.9,158.9,158.9,158.9,158.8,158.4,158.3 +209,158.3,212.9,208.5,206.9,204.3,163.1,159.3,159.3,159.3,159.3,159.1,158.4,159,159,159,159,158.9,158.4,158.3 +210,158.3,213,208.8,207.2,204.6,163.3,159.3,159.4,159.4,159.3,159.2,158.5,159,159,159,159,158.9,158.4,158.4 +211,158.4,213.2,209,207.4,204.9,163.4,159.4,159.4,159.4,159.4,159.2,158.5,159.1,159.1,159.1,159.1,159,158.5,158.4 +212,158.4,213.4,209.2,207.7,205.2,163.5,159.4,159.4,159.4,159.4,159.3,158.6,159.1,159.1,159.1,159.1,159,158.5,158.4 +213,158.5,213.5,209.4,207.9,205.5,163.6,159.5,159.5,159.5,159.5,159.3,158.6,159.2,159.2,159.2,159.2,159,158.6,158.5 +214,158.5,213.7,209.7,208.2,205.8,163.7,159.5,159.5,159.5,159.5,159.3,158.7,159.2,159.2,159.2,159.2,159.1,158.6,158.5 +215,158.5,213.9,209.9,208.4,206.1,163.8,159.5,159.5,159.5,159.5,159.4,158.7,159.2,159.2,159.2,159.2,159.1,158.6,158.6 +216,158.6,214,210.1,208.6,206.4,163.9,159.6,159.6,159.6,159.6,159.4,158.7,159.3,159.3,159.3,159.3,159.2,158.7,158.6 +217,158.6,214.2,210.3,208.9,206.7,164,159.6,159.6,159.6,159.6,159.5,158.8,159.3,159.3,159.3,159.3,159.2,158.7,158.6 +218,158.7,214.4,210.5,209.1,206.9,164.1,159.6,159.7,159.7,159.7,159.5,158.8,159.4,159.4,159.4,159.4,159.3,158.8,158.7 +219,158.7,214.5,210.7,209.3,207.2,164.2,159.7,159.7,159.7,159.7,159.6,158.9,159.4,159.4,159.4,159.4,159.3,158.8,158.7 +220,158.7,214.7,210.9,209.6,207.5,164.3,159.7,159.7,159.7,159.7,159.6,158.9,159.5,159.5,159.5,159.5,159.3,158.8,158.8 +221,158.8,214.8,211.1,209.8,207.7,164.4,159.8,159.8,159.8,159.8,159.6,158.9,159.5,159.5,159.5,159.5,159.4,158.9,158.8 +222,158.8,215,211.3,210,208,164.5,159.8,159.8,159.8,159.8,159.7,159,159.5,159.5,159.5,159.5,159.4,158.9,158.8 +223,158.8,215.1,211.5,210.2,208.2,164.6,159.8,159.8,159.8,159.9,159.7,159,159.6,159.6,159.6,159.6,159.5,159,158.9 +224,158.9,215.3,211.7,210.4,208.5,164.7,159.9,159.9,159.9,159.9,159.8,159.1,159.6,159.6,159.6,159.6,159.5,159,158.9 +225,158.9,215.5,211.9,210.6,208.7,164.8,159.9,159.9,159.9,159.9,159.8,159.1,159.7,159.7,159.7,159.7,159.5,159,158.9 +226,159,215.6,212.1,210.8,208.9,164.9,159.9,160,160,160,159.8,159.1,159.7,159.7,159.7,159.7,159.6,159.1,159 +227,159,215.8,212.3,211,209.2,165,160,160,160,160,159.9,159.2,159.8,159.8,159.8,159.7,159.6,159.1,159 +228,159,215.9,212.5,211.2,209.4,165.1,160,160,160,160,159.9,159.2,159.8,159.8,159.8,159.8,159.7,159.2,159.1 +229,159.1,216.1,212.7,211.4,209.6,165.2,160.1,160.1,160.1,160.1,160,159.2,159.8,159.8,159.8,159.8,159.7,159.2,159.1 +230,159.1,216.2,212.8,211.6,209.9,165.3,160.1,160.1,160.1,160.1,160,159.3,159.9,159.9,159.9,159.9,159.7,159.2,159.1 +231,159.2,216.4,213,211.8,210.1,165.4,160.1,160.1,160.2,160.2,160,159.3,159.9,159.9,159.9,159.9,159.8,159.3,159.2 +232,159.2,216.5,213.2,212,210.3,165.5,160.2,160.2,160.2,160.2,160.1,159.4,160,160,160,160,159.8,159.3,159.2 +233,159.2,216.7,213.4,212.2,210.5,165.6,160.2,160.2,160.2,160.2,160.1,159.4,160,160,160,160,159.9,159.3,159.2 +234,159.3,216.8,213.6,212.4,210.7,165.7,160.3,160.3,160.3,160.3,160.2,159.4,160,160,160,160,159.9,159.4,159.3 +235,159.3,216.9,213.7,212.6,210.9,165.8,160.4,160.3,160.3,160.3,160.2,159.5,160.1,160.1,160.1,160.1,159.9,159.4,159.3 +236,159.3,217.1,213.9,212.8,211.1,165.9,160.5,160.3,160.3,160.4,160.2,159.5,160.1,160.1,160.1,160.1,160,159.5,159.4 +237,159.4,217.2,214.1,213,211.3,165.9,160.6,160.4,160.4,160.4,160.3,159.5,160.2,160.2,160.2,160.2,160,159.5,159.4 +238,159.4,217.4,214.3,213.2,211.5,166.1,160.6,160.5,160.4,160.4,160.3,159.6,160.2,160.2,160.2,160.2,160.1,159.5,159.4 +239,159.5,217.5,214.4,213.3,211.7,166.1,160.7,160.6,160.5,160.5,160.4,159.6,160.2,160.2,160.2,160.2,160.1,159.6,159.5 +240,159.5,217.7,214.6,213.5,211.9,166.2,160.8,160.7,160.6,160.5,160.4,159.7,160.3,160.3,160.3,160.3,160.1,159.6,159.5 +241,159.5,217.8,214.8,213.7,212.1,166.3,160.9,160.7,160.6,160.5,160.4,159.7,160.3,160.3,160.3,160.3,160.2,159.6,159.5 +242,159.6,218,214.9,213.9,212.3,166.4,161,160.8,160.7,160.6,160.5,159.7,160.4,160.4,160.4,160.4,160.2,159.7,159.6 +243,159.6,218.1,215.1,214,212.5,166.5,161.1,160.9,160.8,160.7,160.5,159.8,160.4,160.4,160.4,160.4,160.3,159.7,159.6 +244,159.6,218.2,215.3,214.2,212.7,166.6,161.1,161,160.9,160.8,160.6,159.8,160.4,160.4,160.4,160.4,160.3,159.7,159.6 +245,159.7,218.4,215.4,214.4,212.9,166.7,161.2,161.1,161,160.8,160.6,159.8,160.5,160.5,160.5,160.5,160.3,159.8,159.7 +246,159.7,218.5,215.6,214.6,213.1,166.8,161.3,161.1,161,160.9,160.6,159.9,160.5,160.5,160.5,160.5,160.4,159.8,159.7 +247,159.7,218.7,215.8,214.7,213.3,166.9,161.4,161.2,161.1,161,160.7,159.9,160.6,160.6,160.5,160.5,160.4,159.8,159.8 +248,159.8,218.8,215.9,214.9,213.5,167,161.4,161.3,161.2,161.1,160.7,159.9,160.6,160.6,160.6,160.6,160.4,159.9,159.8 +249,159.8,218.9,216.1,215.1,213.6,167.1,161.5,161.4,161.3,161.1,160.7,160,160.6,160.6,160.6,160.6,160.5,159.9,159.8 +250,159.8,219.1,216.2,215.2,213.8,167.2,161.6,161.4,161.3,161.2,160.8,160,160.7,160.7,160.7,160.7,160.5,160,159.9 +251,159.9,219.2,216.4,215.4,214,167.3,161.7,161.5,161.4,161.3,160.8,160.1,160.7,160.7,160.7,160.7,160.6,160,159.9 +252,159.9,219.4,216.6,215.6,214.2,167.4,161.8,161.6,161.5,161.4,160.9,160.1,160.7,160.7,160.7,160.7,160.6,160,159.9 +253,159.9,219.5,216.7,215.7,214.3,167.5,161.8,161.7,161.6,161.4,160.9,160.1,160.8,160.8,160.8,160.8,160.6,160.1,160 +254,160,219.6,216.9,215.9,214.5,167.6,161.9,161.7,161.6,161.5,160.9,160.2,160.8,160.8,160.8,160.8,160.7,160.1,160 +255,160,219.8,217,216.1,214.7,167.7,162,161.8,161.7,161.6,161,160.2,160.9,160.9,160.9,160.8,160.7,160.1,160 +256,160,219.9,217.2,216.2,214.9,167.8,162.1,161.9,161.8,161.6,161,160.2,160.9,160.9,160.9,160.9,160.7,160.2,160.1 +257,160.1,220,217.3,216.4,215,167.9,162.1,162,161.9,161.7,161,160.3,160.9,160.9,160.9,160.9,160.8,160.2,160.1 +258,160.1,220.2,217.5,216.5,215.2,167.9,162.2,162,161.9,161.8,161.1,160.3,161,161,161,161,160.8,160.2,160.1 +259,160.2,220.3,217.7,216.7,215.4,168,162.3,162.1,162,161.9,161.1,160.3,161,161,161,161,160.9,160.3,160.2 +260,160.2,220.4,217.8,216.9,215.5,168.1,162.4,162.2,162.1,161.9,161.2,160.4,161,161,161,161,160.9,160.3,160.2 +261,160.2,220.6,218,217,215.7,168.2,162.4,162.3,162.1,162,161.2,160.4,161.1,161.1,161.1,161.1,160.9,160.3,160.2 +262,160.3,220.7,218.1,217.2,215.9,168.3,162.5,162.3,162.2,162.1,161.2,160.4,161.1,161.1,161.1,161.1,161,160.4,160.3 +263,160.3,220.8,218.3,217.3,216,168.4,162.6,162.4,162.3,162.1,161.3,160.5,161.2,161.2,161.1,161.1,161,160.4,160.3 +264,160.3,221,218.4,217.5,216.2,168.5,162.7,162.5,162.4,162.2,161.3,160.5,161.2,161.2,161.2,161.2,161,160.4,160.3 +265,160.4,221.1,218.6,217.6,216.4,168.6,162.7,162.5,162.4,162.3,161.3,160.5,161.2,161.2,161.2,161.2,161.1,160.5,160.4 +266,160.4,221.3,218.7,217.8,216.5,168.7,162.8,162.6,162.5,162.4,161.4,160.6,161.3,161.3,161.3,161.3,161.1,160.5,160.4 +267,160.4,221.4,218.9,217.9,216.7,168.8,162.9,162.7,162.6,162.4,161.4,160.6,161.3,161.3,161.3,161.3,161.1,160.5,160.4 +268,160.4,221.5,219,218.1,216.8,172.1,163,162.8,162.6,162.5,161.4,160.6,161.3,161.3,161.3,161.3,161.2,160.6,160.5 +269,160.5,221.7,219.2,218.3,217,175.8,163,162.8,162.7,162.6,161.5,160.7,161.4,161.4,161.4,161.4,161.2,160.6,160.5 +270,160.5,221.8,219.3,218.4,217.2,176.9,163.1,162.9,162.8,162.6,161.5,160.7,161.4,161.4,161.4,161.4,161.2,160.6,160.5 +271,160.5,221.9,219.4,218.6,217.3,178,163.2,163,162.9,162.7,161.5,160.7,161.4,161.4,161.4,161.4,161.3,160.7,160.5 +272,160.6,222.1,219.6,218.7,217.5,179.2,163.3,163.1,162.9,162.8,161.6,160.8,161.5,161.5,161.5,161.5,161.3,160.7,160.6 +273,160.6,222.2,219.7,218.9,217.6,180.3,163.3,163.1,163,162.8,161.6,160.8,161.5,161.5,161.5,161.5,161.3,160.7,160.6 +274,160.6,222.3,219.9,219,217.8,181.5,163.4,163.2,163.1,162.9,161.6,160.8,161.5,161.5,161.5,161.5,161.4,160.7,160.6 +275,160.7,222.4,220,219.2,217.9,182.6,163.5,163.3,163.1,163,161.7,160.8,161.6,161.6,161.6,161.6,161.4,160.8,160.7 +276,160.7,222.6,220.2,219.3,218.1,183.7,163.5,163.3,163.2,163,161.7,160.9,161.6,161.6,161.6,161.6,161.5,160.8,160.7 +277,160.7,222.7,220.3,219.4,218.2,185.5,163.6,163.4,163.3,163.1,161.7,160.9,161.6,161.6,161.6,161.6,161.5,160.8,160.7 +278,160.8,222.8,220.5,219.6,218.4,187,163.7,163.5,163.4,163.2,161.8,160.9,161.7,161.7,161.7,161.7,161.5,160.9,160.8 +279,160.8,223,220.6,219.7,218.5,188.4,163.8,163.5,163.4,163.3,161.8,161,161.7,161.7,161.7,161.7,161.6,160.9,160.8 +280,160.8,223.1,220.8,219.9,218.7,189.7,163.8,163.6,163.5,163.3,161.9,161,161.8,161.8,161.7,161.7,161.6,160.9,160.8 +281,160.9,223.2,220.9,220,218.8,190.8,163.9,163.7,163.6,163.4,161.9,161,161.8,161.8,161.8,161.8,161.6,161,160.9 +282,160.9,223.4,221,220.2,219,191.9,164,163.8,163.6,163.5,161.9,161.1,161.8,161.8,161.8,161.8,161.7,161,160.9 +283,160.9,223.5,221.2,220.3,219.1,192.9,164,163.8,163.7,163.5,162,161.1,161.9,161.9,161.9,161.8,161.7,161,160.9 +284,161,223.6,221.3,220.5,219.3,193.8,164.1,163.9,163.8,163.6,162,161.1,161.9,161.9,161.9,161.9,161.7,161.1,160.9 +285,161,223.8,221.5,220.6,219.4,194.6,164.2,164,163.8,163.7,162.1,161.2,161.9,161.9,161.9,161.9,161.8,161.1,161 +286,161,223.9,221.6,220.8,219.6,195.4,164.3,164,163.9,163.7,162.2,161.2,162,162,162,161.9,161.8,161.1,161 +287,161,224,221.7,220.9,219.7,196.2,164.3,164.1,164,163.8,162.2,161.2,162,162,162,162,161.8,161.1,161 +288,161.1,224.1,221.9,221,219.9,196.9,164.4,164.2,164.1,163.9,162.3,161.2,162,162,162,162,161.9,161.2,161.1 +289,161.1,224.3,222,221.2,220,197.5,164.5,164.3,164.1,163.9,162.3,161.3,162.1,162.1,162.1,162,161.9,161.2,161.1 +290,161.1,224.4,222.2,221.3,220.2,198.2,164.5,164.3,164.2,164,162.4,161.3,162.1,162.1,162.1,162.1,161.9,161.2,161.1 +291,161.2,224.5,222.3,221.5,220.3,198.8,164.6,164.4,164.3,164.1,162.4,161.3,162.1,162.1,162.1,162.1,161.9,161.3,161.2 +292,161.2,224.7,222.4,221.6,220.5,199.4,164.7,164.5,164.3,164.1,162.5,161.4,162.2,162.2,162.2,162.1,162,161.3,161.2 +293,161.2,224.8,222.6,221.8,220.6,199.9,164.8,164.5,164.4,164.2,162.6,161.4,162.2,162.2,162.2,162.2,162,161.3,161.2 +294,161.3,224.9,222.7,221.9,220.8,200.5,164.8,164.6,164.5,164.3,162.6,161.4,162.2,162.2,162.2,162.2,162,161.4,161.2 +295,161.3,225,222.9,222,220.9,201,164.9,164.7,164.5,164.3,162.7,161.5,162.3,162.3,162.3,162.2,162.1,161.4,161.3 +296,161.3,225.2,223,222.2,221,201.5,165,164.7,164.6,164.4,162.7,161.5,162.3,162.3,162.3,162.3,162.1,161.4,161.3 +297,161.3,225.3,223.1,222.3,221.2,201.9,165,164.8,164.7,164.5,162.8,161.5,162.3,162.3,162.3,162.3,162.1,161.4,161.3 +298,161.4,225.4,223.3,222.5,221.3,202.4,165.1,164.9,164.7,164.6,162.8,161.5,162.4,162.3,162.3,162.3,162.2,161.5,161.4 +299,161.4,225.6,223.4,222.6,221.5,202.9,165.2,164.9,164.8,164.6,162.9,161.6,162.4,162.4,162.4,162.4,162.2,161.5,161.4 +300,161.4,225.7,223.5,222.7,221.6,203.3,165.3,165,164.9,164.7,163,161.6,162.4,162.4,162.4,162.4,162.2,161.5,161.4 +301,161.5,225.8,223.7,222.9,221.8,203.7,165.3,165.1,164.9,164.8,163,161.6,162.4,162.4,162.4,162.4,162.3,161.6,161.4 +302,161.5,225.9,223.8,223,221.9,204.1,165.4,165.2,165,164.8,163.1,161.7,162.5,162.5,162.5,162.5,162.3,161.6,161.5 +303,161.5,226.1,224,223.2,222,204.5,165.5,165.2,165.1,164.9,163.1,161.7,162.5,162.5,162.5,162.5,162.3,161.6,161.5 +304,161.5,226.2,224.1,223.3,222.2,204.9,165.5,165.3,165.2,165,163.2,161.7,162.5,162.5,162.5,162.5,162.4,161.6,161.5 +305,161.6,226.3,224.2,223.4,222.3,205.3,165.6,165.4,165.2,165,163.2,161.7,162.6,162.6,162.6,162.6,162.4,161.7,161.6 +306,161.6,226.4,224.4,223.6,222.5,205.6,165.7,165.4,165.3,165.1,163.3,161.8,162.6,162.6,162.6,162.6,162.4,161.7,161.6 +307,161.6,226.6,224.5,223.7,222.6,206,165.7,165.5,165.4,165.2,163.4,161.8,162.6,162.6,162.6,162.6,162.4,161.7,161.6 +308,161.7,226.7,224.6,223.8,222.7,206.3,165.8,165.6,165.4,165.2,163.4,161.8,162.7,162.7,162.7,162.7,162.5,161.8,161.6 +309,161.7,226.8,224.8,224,222.9,206.6,165.9,165.6,165.5,165.3,163.5,161.9,162.7,162.7,162.7,162.7,162.5,161.8,161.7 +310,161.7,226.9,224.9,224.1,223,207,166,165.7,165.6,165.4,163.5,161.9,162.7,162.7,162.7,162.7,162.5,161.8,161.7 +311,161.7,227.1,225,224.2,223.2,207.3,166,165.8,165.6,165.4,163.6,161.9,162.8,162.8,162.8,162.7,162.6,161.8,161.7 +312,161.8,227.2,225.2,224.4,223.3,207.6,166.1,165.8,165.7,165.5,163.6,161.9,162.8,162.8,162.8,162.8,162.6,161.9,161.8 +313,161.8,227.3,225.3,224.5,223.4,207.9,166.2,165.9,165.8,165.6,163.7,162,162.8,162.8,162.8,162.8,162.6,161.9,161.8 +314,161.8,227.4,225.4,224.7,223.6,208.2,166.2,166,165.8,165.6,163.8,162,162.8,162.8,162.8,162.8,162.7,161.9,161.8 +315,161.9,227.6,225.6,224.8,223.7,208.5,166.3,166,165.9,165.7,163.8,162,162.9,162.9,162.9,162.9,162.7,161.9,161.8 +316,161.9,227.7,225.7,224.9,223.9,208.8,166.4,166.1,166,165.8,163.9,162.1,162.9,162.9,162.9,162.9,162.7,162,161.9 +317,161.9,227.8,225.8,225.1,224,209.1,166.4,166.2,166,165.8,163.9,162.1,162.9,162.9,162.9,162.9,162.7,162,161.9 +318,161.9,227.9,226,225.2,224.1,209.3,166.5,166.3,166.1,165.9,164,162.1,163,163,163,163,162.8,162,161.9 +319,162,228.1,226.1,225.3,224.3,209.6,166.6,166.3,166.2,166,164,162.1,163,163,163,163,162.8,162.1,161.9 +320,162,228.2,226.2,225.5,224.4,209.9,166.6,166.4,166.2,166,164.1,162.2,163,163,163,163,162.8,162.1,162 +321,162,228.3,226.4,225.6,224.5,210.1,166.7,166.5,166.3,166.1,164.2,162.2,163.1,163.1,163,163,162.8,162.1,162 +322,162,228.4,226.5,225.7,224.7,210.4,166.8,166.5,166.4,166.2,164.2,162.2,163.1,163.1,163.1,163.1,162.9,162.1,162 +323,162.1,228.5,226.6,225.9,224.8,210.6,166.9,166.6,166.4,166.2,164.3,162.2,163.1,163.1,163.1,163.1,162.9,162.2,162 +324,162.1,228.7,226.7,226,224.9,210.9,166.9,166.7,166.5,166.3,164.3,162.3,163.1,163.1,163.1,163.1,162.9,162.2,162.1 +325,162.1,228.8,226.9,226.1,225.1,211.1,167,166.7,166.6,166.4,164.4,162.3,163.2,163.2,163.2,163.2,162.9,162.2,162.1 +326,162.1,228.9,227,226.3,225.2,211.4,167.1,166.8,166.6,166.4,164.4,162.3,163.2,163.2,163.2,163.2,163,162.2,162.1 +327,162.2,229,227.1,226.4,225.3,211.6,167.1,166.9,166.7,166.5,164.5,162.4,163.2,163.2,163.2,163.2,163,162.3,162.2 +328,162.2,229.2,227.3,226.5,225.5,211.8,167.2,166.9,166.8,166.6,164.6,162.4,163.2,163.2,163.2,163.2,163,162.3,162.2 +329,162.2,229.3,227.4,226.6,225.6,212.1,167.3,167,166.8,166.6,164.6,162.4,163.3,163.3,163.3,163.3,163,162.3,162.2 +330,162.3,229.4,227.5,226.8,225.7,212.3,167.3,167.1,166.9,166.7,164.7,162.4,163.3,163.3,163.3,163.3,163.1,162.4,162.2 +331,162.3,229.5,227.7,226.9,225.9,212.5,167.4,167.1,167,166.8,164.7,162.5,163.3,163.3,163.3,163.3,163.1,162.4,162.3 +332,162.3,229.6,227.8,227,226,212.7,167.5,167.2,167,166.8,164.8,162.5,163.3,163.3,163.3,163.3,163.1,162.4,162.3 +333,162.3,229.8,227.9,227.2,226.1,213,167.5,167.3,167.1,166.9,164.8,162.5,163.4,163.4,163.4,163.4,163.1,162.4,162.3 +334,162.4,229.9,228,227.3,226.3,213.2,167.6,167.3,167.2,166.9,164.9,162.5,163.4,163.4,163.4,163.4,163.2,162.5,162.3 +335,162.4,230,228.2,227.4,226.4,213.4,167.7,167.4,167.2,167,164.9,162.6,163.4,163.4,163.4,163.4,163.2,162.5,162.4 +336,162.4,230.1,228.3,227.6,226.5,213.6,167.7,167.5,167.3,167.1,165,162.6,163.4,163.4,163.4,163.4,163.2,162.5,162.4 +337,162.4,230.2,228.4,227.7,226.7,213.8,167.8,167.5,167.4,167.1,165.1,162.6,163.5,163.5,163.5,163.5,163.2,162.5,162.4 +338,162.5,230.4,228.5,227.8,226.8,214,167.9,167.6,167.4,167.2,165.1,162.6,163.5,163.5,163.5,163.5,163.3,162.6,162.4 +339,162.5,230.5,228.7,227.9,226.9,214.2,167.9,167.7,167.5,167.3,165.2,162.7,163.5,163.5,163.5,163.5,163.3,162.6,162.5 +340,162.5,230.6,228.8,228.1,227.1,214.4,168,167.7,167.6,167.3,165.2,162.7,163.5,163.5,163.5,163.5,163.3,162.6,162.5 +341,162.5,230.7,228.9,228.2,227.2,214.6,168.1,167.8,167.6,167.4,165.3,162.7,163.6,163.6,163.6,163.6,163.3,162.6,162.5 +342,162.6,230.8,229,228.3,227.3,214.8,168.1,167.9,167.7,167.5,165.3,162.7,163.6,163.6,163.6,163.6,163.4,162.7,162.5 +343,162.6,230.9,229.2,228.5,227.5,215,168.2,167.9,167.8,167.5,165.4,162.8,163.6,163.6,163.6,163.6,163.4,162.7,162.6 +344,162.6,231.1,229.3,228.6,227.6,215.2,168.3,168,167.8,167.6,165.5,162.8,163.6,163.6,163.6,163.6,163.4,162.7,162.6 +345,162.6,231.2,229.4,228.7,227.7,215.4,168.3,168.1,167.9,167.7,165.5,162.8,163.6,163.6,163.6,163.6,163.4,162.7,162.6 +346,162.7,231.3,229.5,228.8,227.8,215.5,168.4,168.1,168,167.7,165.6,162.8,163.6,163.7,163.7,163.7,163.5,162.8,162.6 +347,162.7,231.4,229.7,229,228,215.7,168.5,168.2,168,167.8,165.6,162.9,163.7,163.7,163.7,163.7,163.5,162.8,162.7 +348,162.7,231.5,229.8,229.1,228.1,215.9,168.5,168.3,168.1,167.9,165.7,162.9,163.7,163.7,163.7,163.7,163.5,162.8,162.7 +349,162.7,231.6,229.9,229.2,228.2,216.1,168.6,168.3,168.2,167.9,165.7,162.9,163.7,163.7,163.7,163.7,163.5,162.8,162.7 +350,162.8,231.8,230,229.3,228.4,216.3,168.7,168.4,168.2,168,165.8,162.9,163.7,163.7,163.7,163.7,163.5,162.9,162.7 +351,162.8,231.9,230.2,229.5,228.5,216.4,168.7,168.5,168.3,168.1,165.9,163,163.7,163.8,163.8,163.8,163.6,162.9,162.8 +352,162.8,232,230.3,229.6,228.6,216.6,168.8,168.5,168.4,168.1,165.9,163,163.8,163.8,163.8,163.8,163.6,162.9,162.8 +353,162.8,232.1,230.4,229.7,228.7,216.8,168.9,168.6,168.4,168.2,166,163,163.8,163.8,163.8,163.8,163.6,162.9,162.8 +354,162.9,232.2,230.5,229.8,228.9,217,168.9,168.7,168.5,168.3,166,163,163.8,163.8,163.8,163.8,163.6,163,162.8 +355,162.9,232.3,230.7,230,229,217.1,169,168.7,168.6,168.3,166.1,163.1,163.8,163.8,163.8,163.8,163.7,163,162.8 +356,162.9,232.5,230.8,230.1,229.1,217.3,169.1,168.8,168.6,168.4,166.1,163.1,163.9,163.9,163.9,163.9,163.7,163,162.9 +357,162.9,232.6,230.9,230.2,229.2,217.5,169.1,168.9,168.7,168.4,166.2,163.1,164,163.9,163.9,163.9,163.7,163,162.9 +358,163,232.7,231,230.3,229.4,217.6,169.2,168.9,168.7,168.5,166.2,163.1,164.1,164,163.9,163.9,163.7,163,162.9 +359,163,232.8,231.1,230.5,229.5,217.8,169.3,169,168.8,168.6,166.3,163.2,164.2,164.1,164,163.9,163.8,163.1,162.9 +360,163,232.9,231.3,230.6,229.6,218,169.3,169,168.9,168.6,166.4,163.2,164.3,164.2,164.1,164,163.8,163.1,163 +361,163,233,231.4,230.7,229.7,218.1,169.4,169.1,168.9,168.7,166.4,163.2,164.4,164.2,164.2,164.1,163.8,163.1,163 +362,163.1,233.1,231.5,230.8,229.9,218.3,169.5,169.2,169,168.8,166.5,163.2,164.4,164.3,164.3,164.2,163.8,163.1,163 +363,163.1,233.3,231.6,230.9,230,218.5,169.5,169.2,169.1,168.8,166.5,163.3,164.5,164.4,164.4,164.3,163.9,163.2,163 +364,163.1,233.4,231.7,231.1,230.1,218.6,169.6,169.3,169.1,168.9,166.6,163.3,164.6,164.5,164.4,164.3,163.9,163.2,163.1 +365,163.1,233.5,231.9,231.2,230.2,218.8,169.7,169.4,169.2,169,166.6,163.3,164.7,164.6,164.5,164.4,163.9,163.2,163.1 +366,163.2,233.6,232,231.3,230.4,219,169.7,169.4,169.3,169,166.7,163.3,164.8,164.7,164.6,164.5,163.9,163.2,163.1 +367,163.2,233.7,232.1,231.4,230.5,219.1,169.8,169.5,169.3,169.1,166.8,163.4,164.9,164.7,164.7,164.6,164,163.3,163.1 +368,163.2,233.8,232.2,231.6,230.6,219.3,169.9,169.6,169.4,169.2,166.8,163.4,164.9,164.8,164.7,164.6,164,163.3,163.2 +369,163.2,233.9,232.3,231.7,230.7,219.4,169.9,169.6,169.5,169.2,166.9,163.4,165,164.9,164.8,164.7,164,163.3,163.2 +370,163.2,234.1,232.5,231.8,230.9,219.6,170,169.7,169.5,169.3,166.9,163.4,165.1,165,164.9,164.8,164,163.3,163.2 +371,163.3,234.2,232.6,231.9,231,219.7,170,169.8,169.6,169.3,167,163.4,165.2,165,165,164.9,164.1,163.4,163.2 +372,163.3,234.3,232.7,232,231.1,219.9,170.1,169.8,169.7,169.4,167,163.5,165.2,165.1,165,164.9,164.1,163.4,163.2 +373,163.3,234.4,232.8,232.2,231.2,220.1,170.2,169.9,169.7,169.5,167.1,163.5,165.3,165.2,165.1,165,164.1,163.4,163.3 +374,163.3,234.5,232.9,232.3,231.3,220.2,170.2,170,169.8,169.5,167.1,163.5,165.4,165.2,165.2,165.1,164.1,163.4,163.3 +375,163.4,234.6,233.1,232.4,231.5,220.4,170.3,170,169.8,169.6,167.2,163.5,165.4,165.3,165.2,165.1,164.2,163.4,163.3 +376,163.4,234.7,233.2,232.5,231.6,220.5,170.4,170.1,169.9,169.7,167.3,163.6,165.5,165.4,165.3,165.2,164.2,163.5,163.3 +377,163.4,234.8,233.3,232.6,231.7,220.7,170.4,170.1,170,169.7,167.3,163.6,165.6,165.4,165.4,165.3,164.2,163.5,163.4 +378,163.4,235,233.4,232.7,231.8,220.8,170.5,170.2,170,169.8,167.4,163.6,165.7,165.5,165.4,165.3,164.3,163.5,163.4 +379,163.5,235.1,233.5,232.9,231.9,221,170.6,170.3,170.1,169.9,167.4,163.6,165.7,165.6,165.5,165.4,164.3,163.5,163.4 +380,163.5,235.2,233.6,233,232.1,221.1,170.6,170.3,170.2,169.9,167.5,163.7,165.8,165.6,165.6,165.4,164.4,163.6,163.4 +381,163.5,235.3,233.8,233.1,232.2,221.3,170.7,170.4,170.2,170,167.5,163.7,165.8,165.7,165.6,165.5,164.4,163.6,163.4 +382,163.5,235.4,233.9,233.2,232.3,221.4,170.8,170.5,170.3,170,167.6,163.7,165.9,165.8,165.7,165.6,164.5,163.6,163.5 +383,163.5,235.5,234,233.3,232.4,221.6,170.8,170.5,170.4,170.1,167.6,163.7,166,165.8,165.8,165.6,164.5,163.6,163.5 +384,163.6,235.6,234.1,233.5,232.5,221.7,170.9,170.6,170.4,170.2,167.7,163.7,166,165.9,165.8,165.7,164.6,163.6,163.5 +385,163.6,235.7,234.2,233.6,232.7,221.9,170.9,170.7,170.5,170.2,167.8,163.8,166.1,166,165.9,165.8,164.6,163.7,163.5 +386,163.6,235.9,234.3,233.7,232.8,222,171,170.7,170.6,170.3,167.9,163.8,166.2,166,165.9,165.8,164.7,163.7,163.6 +387,163.6,236,234.5,233.8,232.9,222.1,171.1,170.8,170.6,170.4,167.9,163.8,166.2,166.1,166,165.9,164.7,163.7,163.6 +388,163.7,236.1,234.6,233.9,233,222.3,171.1,170.9,170.7,170.4,168,163.8,166.3,166.1,166.1,165.9,164.8,163.7,163.6 +389,163.7,236.2,234.7,234,233.1,222.4,171.2,170.9,170.7,170.5,168,163.9,166.4,166.2,166.1,166,164.8,163.8,163.6 +390,163.7,236.3,234.8,234.2,233.3,222.6,171.3,171,170.8,170.6,168.1,163.9,166.4,166.3,166.2,166,164.9,163.8,163.6 +391,163.7,236.4,234.9,234.3,233.4,222.7,171.3,171,170.9,170.6,168.1,163.9,166.5,166.3,166.2,166.1,164.9,163.8,163.7 +392,163.7,236.5,235,234.4,233.5,222.9,171.4,171.1,170.9,170.7,168.2,163.9,166.5,166.4,166.3,166.2,165,163.8,163.7 +393,163.8,236.6,235.1,234.5,233.6,223,171.5,171.2,171,170.7,168.2,163.9,166.6,166.4,166.3,166.2,165,163.8,163.7 +394,163.8,236.7,235.3,234.6,233.7,223.2,171.5,171.2,171.1,170.8,168.3,164,166.7,166.5,166.4,166.3,165.1,163.9,163.7 +395,163.8,236.8,235.4,234.7,233.8,223.3,171.6,171.3,171.1,170.9,168.3,164,166.7,166.6,166.5,166.3,165.1,163.9,163.7 +396,163.8,237,235.5,234.9,234,223.4,171.6,171.4,171.2,170.9,168.4,164,166.8,166.6,166.5,166.4,165.2,163.9,163.8 +397,163.9,237.1,235.6,235,234.1,223.6,171.7,171.4,171.2,171,168.4,164,166.8,166.7,166.6,166.4,165.2,163.9,163.8 +398,163.9,237.2,235.7,235.1,234.2,223.7,171.8,171.5,171.3,171.1,168.5,164,166.9,166.7,166.6,166.5,165.2,164,163.8 +399,163.9,237.3,235.8,235.2,234.3,223.9,171.8,171.5,171.4,171.1,168.6,164.1,166.9,166.8,166.7,166.6,165.3,164,163.8 +400,163.9,237.4,235.9,235.3,234.4,224,171.9,171.6,171.4,171.2,168.6,164.1,167,166.8,166.7,166.6,165.3,164,163.9 +401,163.9,237.5,236.1,235.4,234.5,224.1,172.3,171.7,171.5,171.3,168.7,164.1,167.1,166.9,166.8,166.7,165.4,164,163.9 +402,164,237.6,236.2,235.5,234.7,224.3,173.2,171.7,171.6,171.3,168.7,164.1,167.1,167,166.9,166.7,165.4,164,163.9 +403,164,237.7,236.3,235.7,234.8,224.4,174.1,171.8,171.6,171.4,168.8,164.2,167.2,167,166.9,166.8,165.5,164.1,163.9 +404,164,237.8,236.4,235.8,234.9,224.6,174.8,171.9,171.7,171.4,168.8,164.2,167.2,167.1,167,166.8,165.5,164.1,163.9 +405,164,237.9,236.5,235.9,235,224.7,175.5,171.9,171.8,171.5,168.9,164.2,167.3,167.1,167,166.9,165.6,164.1,164 +406,164,238.1,236.6,236,235.1,224.8,176.4,172,171.8,171.6,168.9,164.2,167.3,167.2,167.1,166.9,165.6,164.1,164 +407,164.1,238.2,236.7,236.1,235.2,225,177.4,172.1,171.9,171.6,169,164.2,167.4,167.2,167.1,167,165.7,164.1,164 +408,164.1,238.3,236.8,236.2,235.4,225.1,178.3,172.1,172,171.8,169.1,164.3,167.5,167.3,167.2,167,165.7,164.2,164 +409,164.1,238.4,237,236.3,235.5,225.3,179.2,172.3,172.1,171.8,169.1,164.3,167.5,167.3,167.2,167.1,165.8,164.2,164 +410,164.1,238.5,237.1,236.5,235.6,225.4,180.1,172.3,172.1,171.9,169.2,164.3,167.6,167.4,167.3,167.2,165.8,164.2,164.1 +411,164.2,238.6,237.2,236.6,235.7,225.5,181,172.4,172.2,171.9,169.2,164.3,167.6,167.5,167.4,167.2,165.8,164.2,164.1 +412,164.2,238.7,237.3,236.7,235.8,225.7,181.9,172.4,172.3,172,169.3,164.4,167.7,167.5,167.4,167.3,165.9,164.2,164.1 +413,164.2,238.8,237.4,236.8,235.9,225.8,182.8,172.5,172.3,172,169.3,164.4,167.7,167.6,167.5,167.3,165.9,164.3,164.1 +414,164.2,238.9,237.5,236.9,236,225.9,184.4,172.5,172.3,172.1,169.4,164.4,167.8,167.6,167.5,167.4,166,164.3,164.1 +415,164.2,239,237.6,237,236.2,226.1,186.3,172.6,172.4,172.2,169.4,164.5,167.8,167.7,167.6,167.4,166,164.3,164.2 +416,164.3,239.1,237.7,237.1,236.3,226.2,188.3,172.7,172.5,172.2,169.5,164.5,167.9,167.7,167.6,167.5,166.1,164.3,164.2 +417,164.3,239.3,237.9,237.2,236.4,226.4,190.2,172.7,172.5,172.3,169.5,164.5,168,167.8,167.7,167.5,166.1,164.3,164.2 +418,164.3,239.4,238,237.4,236.5,226.5,192.2,172.7,172.6,172.3,169.6,164.6,168,167.8,167.7,167.6,166.2,164.4,164.2 +419,164.3,239.5,238.1,237.5,236.6,226.6,194.2,172.8,172.7,172.4,169.7,164.6,168.1,167.9,167.8,167.6,166.2,164.4,164.2 +420,164.3,239.6,238.2,237.6,236.7,226.8,196.1,172.9,172.7,172.4,169.7,164.6,168.1,167.9,167.8,167.7,166.2,164.4,164.3 +421,164.4,239.7,238.3,237.7,236.8,226.9,198.1,172.9,172.8,172.5,169.8,164.7,168.2,168,167.9,167.7,166.3,164.4,164.3 +422,164.4,239.8,238.4,237.8,237,227,199.7,174.2,172.8,172.6,169.8,164.7,168.2,168,167.9,167.8,166.3,164.5,164.3 +423,164.4,239.9,238.5,237.9,237.1,227.2,200.4,175.8,172.9,172.6,169.9,164.8,168.3,168.1,168,167.8,166.4,164.5,164.3 +424,164.4,240,238.6,238,237.2,227.3,201.1,177.4,173,172.7,169.9,164.8,168.3,168.2,168,167.9,166.4,164.5,164.3 +425,164.4,240.1,238.8,238.1,237.3,227.4,201.8,179,173,172.8,170,164.8,168.4,168.2,168.1,167.9,166.5,164.5,164.4 +426,164.5,240.2,238.9,238.3,237.4,227.6,202.4,180.2,173.1,172.8,170,164.9,168.4,168.3,168.1,168,166.5,164.5,164.4 +427,164.5,240.3,239,238.4,237.5,227.7,203,181.5,173.1,172.9,170.1,164.9,168.5,168.3,168.2,168.1,166.6,164.6,164.4 +428,164.5,240.4,239.1,238.5,237.6,227.8,203.5,182.8,173.2,172.9,170.1,164.9,168.5,168.4,168.3,168.1,166.6,164.6,164.4 +429,164.5,240.6,239.2,238.6,237.7,228,204,184,173.8,173,170.2,165,168.6,168.4,168.3,168.2,166.7,164.6,164.4 +430,164.5,240.7,239.3,238.7,237.9,228.1,204.5,185.3,175.6,173,170.3,165,168.7,168.5,168.4,168.2,166.7,164.6,164.5 +431,164.6,240.8,239.4,238.8,238,228.2,205,186.6,177.3,173.1,170.3,165,168.7,168.5,168.4,168.3,166.7,164.6,164.5 +432,164.6,240.9,239.5,238.9,238.1,228.4,205.4,188.3,178.9,173.2,170.4,165.1,168.8,168.6,168.5,168.3,166.8,164.7,164.5 +433,164.6,241,239.6,239,238.2,228.5,205.8,189.8,180.1,173.2,170.4,165.1,168.8,168.6,168.5,168.4,166.8,164.7,164.5 +434,164.6,241.1,239.8,239.1,238.3,228.6,206.2,191.1,181.3,173.3,170.5,165.1,168.9,168.7,168.6,168.4,166.9,164.7,164.5 +435,164.6,241.2,239.9,239.3,238.4,228.7,206.6,192.3,182.5,173.3,170.5,165.2,168.9,168.7,168.6,168.5,166.9,164.7,164.6 +436,164.7,241.3,240,239.4,238.5,228.9,207,193.4,183.7,173.4,170.6,165.2,169,168.8,168.7,168.5,167,164.7,164.6 +437,164.7,241.4,240.1,239.5,238.6,229,207.4,194.4,184.9,173.5,170.6,165.3,169,168.8,168.7,168.6,167,164.7,164.6 +438,164.7,241.5,240.2,239.6,238.8,229.1,207.7,195.3,186.2,173.5,170.7,165.3,169.1,168.9,168.8,168.6,167.1,164.8,164.6 +439,164.7,241.6,240.3,239.7,238.9,229.3,208.1,196.2,187.4,173.6,170.8,165.3,169.1,168.9,168.8,168.7,167.1,164.8,164.6 +440,164.7,241.7,240.4,239.8,239,229.4,208.4,197,189.1,175.5,170.8,165.4,169.2,169,168.9,168.7,167.1,164.8,164.6 +441,164.8,241.8,240.5,239.9,239.1,229.5,208.7,197.8,190.5,177.5,170.9,165.4,169.2,169,168.9,168.8,167.2,164.8,164.7 +442,164.8,242,240.6,240,239.2,229.7,209.1,198.5,191.7,179,170.9,165.4,169.3,169.1,169,168.8,167.2,164.8,164.7 +443,164.8,242.1,240.7,240.1,239.3,229.8,209.4,199.2,192.9,180.3,171,165.5,169.3,169.1,169,168.9,167.3,164.9,164.7 +444,164.8,242.2,240.9,240.3,239.4,229.9,209.7,199.8,193.9,181.5,171,165.5,169.4,169.2,169.1,168.9,167.3,164.9,164.7 +445,164.8,242.3,241,240.4,239.5,230,210,200.5,194.9,182.7,171.1,165.5,169.4,169.2,169.1,169,167.4,164.9,164.7 +446,164.9,242.4,241.1,240.5,239.6,230.2,210.3,201.1,195.8,184,171.1,165.6,169.5,169.3,169.2,169,167.4,164.9,164.8 +447,164.9,242.5,241.2,240.6,239.8,230.3,210.5,201.6,196.7,185.2,171.2,165.6,169.5,169.4,169.2,169.1,167.5,164.9,164.8 +448,164.9,242.6,241.3,240.7,239.9,230.4,210.8,202.2,197.5,186.5,171.3,165.6,169.6,169.4,169.3,169.1,167.5,165,164.8 +449,164.9,242.7,241.4,240.8,240,230.6,211.1,202.7,198.2,187.7,171.3,165.7,169.6,169.5,169.3,169.2,167.5,165,164.8 +450,164.9,242.8,241.5,240.9,240.1,230.7,211.4,203.2,198.9,189,171.4,165.7,169.7,169.5,169.4,169.2,167.6,165,164.8 +451,165,242.9,241.6,241,240.2,230.8,211.6,203.7,199.6,190.6,171.4,165.8,169.8,169.6,169.4,169.3,167.6,165,164.9 +452,165,243,241.7,241.1,240.3,230.9,211.9,204.1,200.2,191.8,171.5,165.8,169.8,169.6,169.5,169.3,167.7,165,164.9 +453,165,243.1,241.8,241.2,240.4,231.1,212.1,204.6,200.9,193,171.5,165.8,169.9,169.7,169.5,169.4,167.7,165.1,164.9 +454,165,243.2,242,241.4,240.5,231.2,212.4,205,201.4,194.1,171.6,165.9,169.9,169.7,169.6,169.4,167.8,165.1,164.9 +455,165,243.3,242.1,241.5,240.6,231.3,212.6,205.5,202,195.1,171.6,165.9,170,169.8,169.6,169.5,167.8,165.1,164.9 +456,165,243.5,242.2,241.6,240.7,231.4,212.8,205.9,202.5,196,171.7,165.9,170,169.8,169.7,169.5,167.9,165.1,164.9 +457,165.1,243.6,242.3,241.7,240.9,231.6,213.1,206.3,203,196.8,171.7,166,170.1,169.9,169.7,169.6,167.9,165.1,165 +458,165.1,243.7,242.4,241.8,241,231.7,213.3,206.6,203.5,197.6,171.8,166,170.1,169.9,169.8,169.6,167.9,165.1,165 +459,165.1,243.8,242.5,241.9,241.1,231.8,213.5,207,204,198.4,171.9,166,170.2,170,169.8,169.7,168,165.2,165 +460,165.1,243.9,242.6,242,241.2,231.9,213.7,207.4,204.5,199.1,171.9,166.1,170.2,170,169.9,169.7,168,165.2,165 +461,165.1,244,242.7,242.1,241.3,232.1,214,207.7,204.9,199.8,172,166.1,170.3,170.1,169.9,169.8,168.1,165.2,165 +462,165.2,244.1,242.8,242.2,241.4,232.2,214.2,208.1,205.4,200.4,172,166.1,170.3,170.1,170,169.8,168.1,165.2,165.1 +463,165.2,244.2,242.9,242.3,241.5,232.3,214.4,208.4,205.8,201,172.1,166.2,170.4,170.2,170,169.9,168.2,165.2,165.1 +464,165.2,244.3,243,242.5,241.6,232.4,214.6,208.8,206.2,201.6,172.1,166.2,170.4,170.2,170.1,169.9,168.2,165.3,165.1 +465,165.2,244.4,243.2,242.6,241.7,232.6,214.8,209.1,206.6,202.2,172.2,166.3,170.5,170.3,170.2,170,168.2,165.3,165.1 +466,165.2,244.5,243.3,242.7,241.8,232.7,215,209.4,207,202.7,172.2,166.3,170.5,170.3,170.2,170,168.3,165.3,165.1 +467,165.3,244.6,243.4,242.8,242,232.8,215.2,209.7,207.3,203.2,172.3,166.3,170.6,170.4,170.3,170.1,168.3,165.3,165.1 +468,165.3,244.7,243.5,242.9,242.1,232.9,215.4,210,207.7,203.7,172.4,166.4,170.6,170.4,170.3,170.1,168.4,165.3,165.2 +469,165.3,244.8,243.6,243,242.2,233,215.6,210.3,208,204.2,172.4,166.4,170.7,170.5,170.4,170.2,168.4,165.3,165.2 +470,165.3,244.9,243.7,243.1,242.3,233.2,215.8,210.6,208.4,204.7,172.5,166.4,170.7,170.5,170.4,170.2,168.5,165.4,165.2 +471,165.3,245.1,243.8,243.2,242.4,233.3,216,210.9,208.7,205.1,172.5,166.5,170.8,170.6,170.5,170.3,168.5,165.4,165.2 +472,165.3,245.2,243.9,243.3,242.5,233.4,216.2,211.2,209.1,205.5,172.6,166.5,170.8,170.6,170.5,170.3,168.6,165.4,165.2 +473,165.4,245.3,244,243.4,242.6,233.5,216.4,211.4,209.4,206,172.6,166.5,170.9,170.7,170.6,170.4,168.6,165.4,165.2 +474,165.4,245.4,244.1,243.5,242.7,233.7,216.5,211.7,209.7,206.4,172.7,166.6,170.9,170.7,170.6,170.4,168.6,165.4,165.3 +475,165.4,245.5,244.2,243.7,242.8,233.8,216.7,212,210,206.8,172.7,166.6,171,170.8,170.7,170.5,168.7,165.5,165.3 +476,165.4,245.6,244.3,243.8,242.9,233.9,216.9,212.2,210.3,207.1,172.8,166.6,171,170.8,170.7,170.5,168.7,165.5,165.3 +477,165.4,245.7,244.5,243.9,243.1,234,217.1,212.5,210.6,207.5,172.8,166.7,171.1,170.9,170.8,170.6,168.8,165.5,165.3 +478,165.5,245.8,244.6,244,243.2,234.1,217.3,212.7,210.9,207.9,172.9,166.7,171.1,170.9,170.8,170.6,168.8,165.5,165.3 +479,165.5,245.9,244.7,244.1,243.3,234.3,217.4,213,211.2,208.2,173,166.7,171.2,171,170.9,170.7,168.9,165.5,165.4 +480,165.5,246,244.8,244.2,243.4,234.4,217.6,213.2,211.4,208.6,173,166.8,171.2,171,170.9,170.7,168.9,165.5,165.4 +481,165.5,246.1,244.9,244.3,243.5,234.5,217.8,213.4,211.7,208.9,173.1,166.8,171.3,171.1,171,170.8,169,165.6,165.4 +482,165.5,246.2,245,244.4,243.6,234.6,217.9,213.7,212,209.2,173.1,166.9,171.3,171.1,171,170.8,169,165.6,165.4 +483,165.5,246.3,245.1,244.5,243.7,234.7,218.1,213.9,212.2,209.6,173.2,166.9,171.4,171.2,171.1,170.9,169,165.6,165.4 +484,165.6,246.4,245.2,244.6,243.8,234.9,218.3,214.1,212.5,209.9,173.2,166.9,171.4,171.2,171.1,170.9,169.1,165.6,165.4 +485,165.6,246.5,245.3,244.7,243.9,235,218.4,214.4,212.7,210.2,173.3,167,171.5,171.3,171.2,171,169.1,165.6,165.5 +486,165.6,246.6,245.4,244.8,244,235.1,218.6,214.6,213,210.5,173.3,167,171.5,171.3,171.2,171,169.2,165.6,165.5 +487,165.6,246.7,245.5,245,244.1,235.2,218.8,214.8,213.2,210.8,173.4,167,171.6,171.4,171.2,171.1,169.2,165.7,165.5 +488,165.6,246.8,245.6,245.1,244.2,235.3,218.9,215,213.5,211.1,173.5,167.1,171.6,171.4,171.3,171.1,169.3,165.7,165.5 +489,165.7,247,245.7,245.2,244.4,235.4,219.1,215.2,213.7,211.4,173.5,167.1,171.7,171.5,171.3,171.2,169.3,165.7,165.5 +490,165.7,247.1,245.9,245.3,244.5,235.6,219.2,215.4,213.9,211.6,173.6,167.1,171.7,171.5,171.4,171.2,169.4,165.7,165.5 +491,165.7,247.2,246,245.4,244.6,235.7,219.4,215.6,214.2,211.9,173.6,167.2,171.8,171.6,171.4,171.3,169.4,165.8,165.6 +492,165.7,247.3,246.1,245.5,244.7,235.8,219.6,215.8,214.4,212.2,173.7,167.2,171.8,171.6,171.5,171.3,169.4,165.8,165.6 +493,165.7,247.4,246.2,245.6,244.8,235.9,219.7,216,214.6,212.4,173.7,167.2,171.9,171.7,171.5,171.4,169.5,165.8,165.6 +494,165.7,247.5,246.3,245.7,244.9,236,219.9,216.2,214.8,212.7,173.8,167.3,171.9,171.7,171.6,171.4,169.5,165.9,165.6 +495,165.8,247.6,246.4,245.8,245,236.1,220,216.4,215.1,212.9,173.8,167.3,172,171.8,171.6,171.5,169.6,165.9,165.6 +496,165.8,247.7,246.5,245.9,245.1,236.3,220.2,216.6,215.3,213.2,173.9,167.3,172,171.8,171.7,171.5,169.6,165.9,165.6 +497,165.8,247.8,246.6,246,245.2,236.4,220.3,216.8,215.5,213.4,174,167.4,172.1,171.9,171.7,171.6,169.7,165.9,165.7 +498,165.8,247.9,246.7,246.1,245.3,236.5,220.5,217,215.7,213.7,174,167.4,172.1,171.9,171.8,171.6,169.7,166,165.7 +499,165.8,248,246.8,246.2,245.4,236.6,220.6,217.2,215.9,213.9,174.1,167.5,172.2,172,171.8,171.7,169.7,166,165.7 +500,165.8,248.1,246.9,246.4,245.5,236.7,220.8,217.4,216.1,214.1,174.1,167.5,172.2,172,171.9,171.7,169.8,166,165.7 +501,165.9,248.2,247,246.5,245.7,236.8,220.9,217.6,216.3,214.4,174.2,167.5,172.3,172.1,171.9,171.8,169.8,166.1,165.7 +502,165.9,248.3,247.1,246.6,245.8,237,221.1,217.8,216.5,214.6,174.2,167.6,172.3,172.1,172,171.8,169.9,166.1,165.7 +503,165.9,248.4,247.2,246.7,245.9,237.1,221.2,217.9,216.7,214.8,174.3,167.6,172.4,172.2,172,171.9,169.9,166.1,165.7 +504,165.9,248.5,247.4,246.8,246,237.2,221.4,218.1,216.9,215,174.3,167.6,172.4,172.2,172.1,171.9,170,166.2,165.8 +505,165.9,248.6,247.5,246.9,246.1,237.3,221.5,218.3,217.1,215.3,174.4,167.7,172.5,172.3,172.1,172,170,166.2,165.8 +506,165.9,248.7,247.6,247,246.2,237.4,221.6,218.5,217.3,215.5,174.5,167.7,172.5,172.3,172.2,172,170.1,166.2,165.8 +507,166,248.8,247.7,247.1,246.3,237.5,221.8,218.7,217.5,215.7,174.5,167.7,172.6,172.4,172.2,172.1,170.1,166.2,165.8 +508,166,248.9,247.8,247.2,246.4,237.6,221.9,218.8,217.6,215.9,174.6,167.8,172.6,172.4,172.3,172.1,170.1,166.3,165.8 +509,166,249,247.9,247.3,246.5,237.8,222.1,219,217.8,216.1,174.6,167.8,172.7,172.5,172.3,172.2,170.2,166.3,165.8 +510,166,249.1,248,247.4,246.6,237.9,222.2,219.2,218,216.3,174.7,167.8,172.7,172.5,172.4,172.2,170.2,166.3,165.9 +511,166,249.3,248.1,247.5,246.7,238,222.4,219.3,218.2,216.5,174.7,167.9,172.8,172.6,172.4,172.2,170.3,166.4,165.9 +512,166,249.4,248.2,247.6,246.8,238.1,222.5,219.5,218.4,216.7,174.8,167.9,172.8,172.6,172.5,172.3,170.3,166.4,165.9 +513,166.1,249.5,248.3,247.7,246.9,238.2,222.6,219.7,218.5,216.9,174.9,167.9,172.9,172.7,172.5,172.3,170.4,166.4,165.9 +514,166.1,249.6,248.4,247.8,247.1,238.3,222.8,219.8,218.7,217.1,174.9,168,172.9,172.7,172.6,172.4,170.4,166.4,165.9 +515,166.1,249.7,248.5,248,247.2,238.4,222.9,220,218.9,217.3,175,168,173,172.8,172.6,172.4,170.5,166.5,165.9 +516,166.1,249.8,248.6,248.1,247.3,238.6,223.1,220.2,219.1,217.5,175,168,173,172.8,172.7,172.5,170.5,166.5,166 +517,166.1,249.9,248.7,248.2,247.4,238.7,223.2,220.3,219.2,217.7,175.1,168.1,173.1,172.9,172.7,172.5,170.5,166.5,166 +518,166.1,250,248.8,248.3,247.5,238.8,223.3,220.5,219.4,217.8,175.1,168.1,173.1,172.9,172.8,172.6,170.6,166.6,166 +519,166.2,250.1,248.9,248.4,247.6,238.9,223.5,220.7,219.6,218,175.2,168.2,173.2,173,172.8,172.6,170.6,166.6,166 +520,166.2,250.2,249,248.5,247.7,239,223.6,220.8,219.8,218.2,175.2,168.2,173.2,173,172.9,172.7,170.7,166.6,166 +521,166.2,250.3,249.2,248.6,247.8,239.1,223.7,221,219.9,218.4,175.3,168.2,173.3,173.1,172.9,172.7,170.7,166.7,166 +522,166.2,250.4,249.3,248.7,247.9,239.2,223.9,221.1,220.1,218.6,175.4,168.3,173.3,173.1,173,172.8,170.8,166.7,166.1 +523,166.2,250.5,249.4,248.8,248,239.3,224,221.3,220.2,218.7,175.4,168.3,173.4,173.2,173,172.8,170.8,166.7,166.1 +524,166.2,250.6,249.5,248.9,248.1,239.5,224.1,221.4,220.4,218.9,175.5,168.3,173.4,173.2,173.1,172.9,170.8,166.7,166.1 +525,166.3,250.7,249.6,249,248.2,239.6,224.3,221.6,220.6,219.1,175.5,168.4,173.5,173.2,173.1,172.9,170.9,166.8,166.1 +526,166.3,250.8,249.7,249.1,248.3,239.7,224.4,221.8,220.7,219.3,175.6,168.4,173.5,173.3,173.2,173,170.9,166.8,166.1 +527,166.3,250.9,249.8,249.2,248.4,239.8,224.5,221.9,220.9,219.4,175.7,168.4,173.6,173.3,173.2,173,171,166.8,166.1 +528,166.3,251,249.9,249.3,248.5,239.9,224.7,222.1,221.1,219.6,175.7,168.5,173.6,173.4,173.3,173.1,171,166.9,166.1 +529,166.3,251.1,250,249.4,248.6,240,224.8,222.2,221.2,219.8,175.8,168.5,173.7,173.4,173.3,173.1,171.1,166.9,166.2 +530,166.3,251.2,250.1,249.5,248.8,240.1,225,222.4,221.4,220,175.8,168.5,173.7,173.5,173.4,173.2,171.1,166.9,166.2 +531,166.4,251.3,250.2,249.6,248.9,240.2,225.1,222.5,221.5,220.1,175.9,168.6,173.8,173.5,173.4,173.2,171.2,167,166.2 +532,166.4,251.4,250.3,249.7,249,240.4,225.2,222.7,221.7,220.3,175.9,168.6,173.8,173.6,173.5,173.3,171.2,167,166.2 +533,166.4,251.5,250.4,249.8,249.1,240.5,225.3,222.8,221.8,220.5,176,168.6,173.9,173.6,173.5,173.3,171.2,167,166.2 +534,166.4,251.6,250.5,250,249.2,240.6,225.5,223,222,220.6,176.1,168.7,173.9,173.7,173.6,173.4,171.3,167,166.2 +535,166.4,251.7,250.6,250.1,249.3,240.7,225.6,223.1,222.2,220.8,176.1,168.7,173.9,173.7,173.6,173.4,171.3,167.1,166.3 +536,166.4,251.8,250.7,250.2,249.4,240.8,225.7,223.3,222.3,220.9,176.2,168.7,174,173.8,173.7,173.5,171.4,167.1,166.3 +537,166.5,251.9,250.8,250.3,249.5,240.9,225.9,223.4,222.5,221.1,176.2,168.8,174,173.8,173.7,173.5,171.4,167.1,166.3 +538,166.5,252,250.9,250.4,249.6,241,226,223.6,222.6,221.3,176.3,168.8,174.1,173.9,173.8,173.6,171.5,167.2,166.3 +539,166.5,252.1,251,250.5,249.7,241.1,226.1,223.7,222.8,221.4,176.3,168.8,174.1,173.9,173.8,173.6,171.5,167.2,166.3 +540,166.5,252.2,251.1,250.6,249.8,241.2,226.3,223.9,222.9,221.6,176.4,168.9,174.2,174,173.9,173.7,171.6,167.2,166.3 +541,166.5,252.3,251.2,250.7,249.9,241.4,226.4,224,223.1,221.7,176.5,168.9,174.2,174,173.9,173.7,171.6,167.3,166.3 +542,166.5,252.4,251.3,250.8,250,241.5,226.5,224.1,223.2,221.9,180.1,169,174.3,174.1,173.9,173.8,171.6,167.3,166.4 +543,166.6,252.5,251.4,250.9,250.1,241.6,226.7,224.3,223.4,222,184.8,169,174.3,174.1,174,173.8,171.7,167.3,166.4 +544,166.6,252.6,251.5,251,250.2,241.7,226.8,224.4,223.5,222.2,185.4,169,174.4,174.2,174,173.9,171.7,167.3,166.4 +545,166.6,252.7,251.6,251.1,250.3,241.8,226.9,224.6,223.7,222.4,186.1,169.1,174.4,174.2,174.1,173.9,171.8,167.4,166.4 +546,166.6,252.8,251.7,251.2,250.4,241.9,227.1,224.7,223.8,222.5,186.7,169.1,174.5,174.3,174.1,174,171.8,167.4,166.4 +547,166.6,252.9,251.8,251.3,250.5,242,227.2,224.9,223.9,222.7,187.3,169.1,174.5,174.3,174.2,174,171.9,167.4,166.4 +548,166.6,253,251.9,251.4,250.6,242.1,227.3,225,224.1,222.8,187.9,169.2,174.6,174.4,174.2,174.1,171.9,167.5,166.4 +549,166.6,253.1,252,251.5,250.7,242.2,227.4,225.1,224.2,223,188.5,169.2,174.6,174.4,174.3,174.1,172,167.5,166.5 +550,166.7,253.2,252.1,251.6,250.8,242.3,227.6,225.3,224.4,223.1,189.1,169.2,174.7,174.5,174.3,174.2,172.1,167.5,166.5 +551,166.7,253.3,252.2,251.7,250.9,242.5,227.7,225.4,224.5,223.3,189.8,169.3,174.7,174.5,174.4,174.2,172.1,167.5,166.5 +552,166.7,253.4,252.4,251.8,251.1,242.6,227.8,225.6,224.7,223.4,191.4,169.3,174.8,174.6,174.4,174.2,172.1,167.6,166.5 +553,166.7,253.5,252.5,251.9,251.2,242.7,228,225.7,224.8,223.6,192.8,169.3,174.8,174.6,174.5,174.3,172.2,167.6,166.5 +554,166.7,253.6,252.6,252,251.3,242.8,228.1,225.9,225,223.7,194,169.4,174.9,174.7,174.5,174.3,172.2,167.6,166.5 +555,166.7,253.7,252.7,252.1,251.4,242.9,228.2,226,225.1,223.9,195.2,169.4,174.9,174.7,174.6,174.4,172.3,167.7,166.5 +556,166.8,253.8,252.8,252.2,251.5,243,228.3,226.1,225.2,224,196.2,169.4,175,174.8,174.6,174.4,172.3,167.7,166.6 +557,166.8,253.9,252.9,252.3,251.6,243.1,228.5,226.3,225.4,224.2,197.2,169.5,175,174.8,174.7,174.5,172.3,167.7,166.6 +558,166.8,254,253,252.4,251.7,243.2,228.6,226.4,225.5,224.3,198.1,169.5,175.1,174.9,174.7,174.5,172.4,167.8,166.6 +559,166.8,254.1,253.1,252.5,251.8,243.3,228.7,226.5,225.7,224.4,199,169.5,175.9,174.9,174.8,174.6,172.4,167.8,166.6 +560,166.8,254.2,253.2,252.6,251.9,243.4,228.8,226.7,225.8,224.6,199.8,169.6,176.8,175,174.8,174.6,172.5,167.8,166.6 +561,166.8,254.3,253.3,252.7,252,243.6,229,226.8,226,224.7,200.5,169.6,177.5,175,174.9,174.7,172.5,167.8,166.6 +562,166.9,254.4,253.4,252.8,252.1,243.7,229.1,227,226.1,224.9,201.2,169.6,178.2,175.1,174.9,174.7,172.5,167.9,166.6 +563,166.9,254.5,253.5,252.9,252.2,243.8,229.2,227.1,226.2,225,201.9,169.7,179.1,175.1,175,174.8,172.6,167.9,166.7 +564,166.9,254.6,253.6,253,252.3,243.9,229.4,227.2,226.4,225.2,202.5,169.7,180,175.2,175,174.8,172.6,167.9,166.7 +565,166.9,254.7,253.7,253.1,252.4,244,229.5,227.4,226.5,225.3,203.1,169.7,180.9,175.2,175.1,175,172.7,168,166.7 +566,166.9,254.8,253.8,253.2,252.5,244.1,229.6,227.5,226.7,225.5,203.7,169.8,181.9,175.4,175.2,175,172.7,168,166.7 +567,166.9,254.9,253.9,253.3,252.6,244.2,229.7,227.6,226.8,225.6,204.3,169.8,182.8,175.4,175.3,175.1,172.8,168,166.7 +568,166.9,255,254,253.4,252.7,244.3,229.9,227.8,226.9,225.7,204.8,169.8,183.7,175.4,175.3,175.1,172.8,168,166.7 +569,167,255.1,254.1,253.5,252.8,244.4,230,227.9,227.1,225.9,205.3,169.9,184.6,175.5,175.3,175.1,172.9,168.1,166.8 +570,167,255.2,254.2,253.6,252.9,244.5,230.1,228,227.2,226,205.8,169.9,185.5,175.5,175.4,175.2,172.9,168.1,166.8 +571,167,255.3,254.3,253.7,253,244.6,230.2,228.2,227.3,226.2,206.3,170,186.8,175.5,175.4,175.2,172.9,168.1,166.8 +572,167,255.4,254.4,253.8,253.1,244.8,230.4,228.3,227.5,226.3,206.7,170,188.8,175.6,175.5,175.3,173,168.2,166.8 +573,167,255.5,254.5,253.9,253.2,244.9,230.5,228.5,227.6,226.4,207.2,170,190.8,175.7,175.5,175.3,173,168.2,166.9 +574,167,255.5,254.5,254,253.3,245,230.6,228.6,227.8,226.6,207.6,170.1,192.7,175.7,175.5,175.3,173.1,168.2,166.9 +575,167,255.6,254.6,254.1,253.4,245.1,230.7,228.7,227.9,226.7,208,170.1,194.7,175.7,175.6,175.4,173.1,168.3,166.9 +576,167.1,255.7,254.7,254.2,253.5,245.2,230.9,228.9,228,226.9,208.4,170.1,196.6,175.8,175.7,175.5,173.1,168.3,166.9 +577,167.1,255.8,254.8,254.3,253.6,245.3,231,229,228.2,227,208.8,170.2,198.6,175.8,175.7,175.5,173.2,168.3,167 +578,167.1,255.9,254.9,254.4,253.7,245.4,231.1,229.1,228.3,227.1,209.2,170.2,200.2,175.9,175.7,175.5,173.2,168.3,167 +579,167.1,256,255,254.5,253.8,245.5,231.2,229.3,228.4,227.3,209.6,170.2,201,176.7,175.8,175.6,173.3,168.4,167 +580,167.1,256.1,255.1,254.6,253.9,245.6,231.3,229.4,228.6,227.4,209.9,170.3,201.7,178.3,175.8,175.6,173.3,168.4,167 +581,167.1,256.2,255.2,254.7,254,245.7,231.5,229.5,228.7,227.6,210.3,170.3,202.4,179.9,175.9,175.7,173.4,168.4,167.1 +582,167.2,256.3,255.3,254.8,254.1,245.8,231.6,229.6,228.8,227.7,210.6,170.3,203.1,181.5,175.9,175.7,173.4,168.5,167.1 +583,167.2,256.4,255.4,254.9,254.2,245.9,231.7,229.8,229,227.8,211,170.4,203.7,182.7,176,175.8,173.5,168.5,167.1 +584,167.2,256.5,255.5,255,254.3,246.1,231.8,229.9,229.1,228,211.3,170.4,204.3,183.8,176,175.8,173.5,168.5,167.1 +585,167.2,256.6,255.6,255.1,254.4,246.2,232,230,229.2,228.1,211.6,170.4,204.9,184.9,176.1,175.9,173.5,168.5,167.2 +586,167.2,256.7,255.7,255.2,254.5,246.3,232.1,230.2,229.4,228.2,211.9,170.5,205.4,186,176.2,175.9,173.6,168.6,167.2 +587,167.2,256.8,255.8,255.3,254.6,246.4,232.2,230.3,229.5,228.4,212.2,170.5,205.8,187.2,178,176,173.6,168.6,167.2 +588,167.2,256.9,255.9,255.4,254.7,246.5,232.3,230.4,229.6,228.5,212.5,170.5,206.3,188.3,179.8,176,173.7,168.6,167.2 +589,167.3,257,256,255.5,254.8,246.6,232.4,230.6,229.8,228.6,212.8,170.6,206.7,189.4,181.5,176.1,173.7,168.7,167.3 +590,167.3,257.1,256.1,255.6,254.9,246.7,232.6,230.7,229.9,228.8,213.1,170.6,207.2,190.9,182.5,176.1,173.8,168.7,167.3 +591,167.3,257.2,256.2,255.7,255,246.8,232.7,230.8,230,228.9,213.4,170.6,207.6,192.3,183.6,176.2,173.8,168.7,167.3 +592,167.3,257.2,256.3,255.8,255.1,246.9,232.8,231,230.2,229,213.7,170.7,208,193.5,184.7,176.2,173.8,168.8,167.3 +593,167.3,257.3,256.4,255.9,255.2,247,232.9,231.1,230.3,229.2,213.9,170.7,208.4,194.6,185.8,176.3,173.9,168.8,167.4 +594,167.3,257.4,256.5,256,255.3,247.1,233.1,231.2,230.4,229.3,214.2,170.7,208.7,195.6,186.9,176.3,173.9,168.8,167.4 +595,167.3,257.5,256.6,256.1,255.4,247.2,233.2,231.3,230.6,229.4,214.4,170.8,209.1,196.6,188,176.4,174,168.8,167.4 +596,167.4,257.6,256.7,256.2,255.5,247.4,233.3,231.5,230.7,229.6,214.7,170.8,209.4,197.5,189.1,176.4,174,168.9,167.4 +597,167.4,257.7,256.8,256.3,255.6,247.5,233.4,231.6,230.8,229.7,215,170.8,209.8,198.3,190.1,177.8,174.1,168.9,167.5 +598,167.4,257.8,256.9,256.4,255.7,247.6,233.5,231.7,230.9,229.8,215.2,170.9,210.1,199.1,191.6,179.8,174.1,168.9,167.5 +599,167.4,257.9,257,256.5,255.8,247.7,233.7,231.8,231.1,230,215.4,170.9,210.4,199.8,192.9,181.5,174.2,169,167.5 +600,167.4,258,257,256.6,255.9,247.8,233.8,232,231.2,230.1,215.7,170.9,210.7,200.5,194.1,182.5,174.2,169,167.5 +601,167.4,258.1,257.1,256.7,256,247.9,233.9,232.1,231.3,230.2,215.9,171,211.1,201.2,195.2,183.6,174.2,169,167.6 +602,167.4,258.2,257.2,256.8,256.1,248,234,232.2,231.5,230.4,216.1,171,211.4,201.8,196.2,184.7,174.3,169,167.6 +603,167.5,258.3,257.3,256.8,256.2,248.1,234.1,232.4,231.6,230.5,216.4,171.1,211.6,202.4,197.1,185.8,174.3,169.1,167.6 +604,167.5,258.3,257.4,256.9,256.3,248.2,234.2,232.5,231.7,230.6,216.6,171.1,211.9,203,198,186.8,174.4,169.1,167.6 +605,167.5,258.4,257.5,257,256.4,248.3,234.4,232.6,231.8,230.8,216.8,171.1,212.2,203.5,198.8,187.9,174.4,169.1,167.7 +606,167.5,258.5,257.6,257.1,256.4,248.4,234.5,232.7,232,230.9,217,171.2,212.5,204.1,199.5,189,174.5,169.2,167.7 +607,167.5,258.6,257.7,257.2,256.5,248.5,234.6,232.9,232.1,231,217.3,171.2,212.7,204.6,200.3,190.1,174.5,169.2,167.7 +608,167.5,258.7,257.8,257.3,256.6,248.6,234.7,233,232.2,231.2,217.5,171.2,213,205.1,200.9,191.7,174.6,169.2,167.7 +609,167.5,258.8,257.9,257.4,256.7,248.7,234.8,233.1,232.3,231.3,217.7,171.3,213.3,205.5,201.6,193,174.6,169.2,167.8 +610,167.6,258.9,258,257.5,256.8,248.9,235,233.2,232.5,231.4,217.9,171.3,213.5,206,202.2,194.2,174.6,169.3,167.8 +611,167.6,259,258.1,257.6,256.9,249,235.1,233.4,232.6,231.5,218.1,171.3,213.8,206.4,202.8,195.3,174.7,169.3,167.8 +612,167.6,259.1,258.2,257.7,257,249.1,235.2,233.5,232.7,231.7,218.3,171.4,214,206.9,203.4,196.3,174.7,169.3,167.8 +613,167.6,259.1,258.3,257.8,257.1,249.2,235.3,233.6,232.9,231.8,218.5,171.4,214.2,207.3,203.9,197.2,174.8,169.4,167.9 +614,167.6,259.2,258.3,257.9,257.2,249.3,235.4,233.7,233,231.9,218.7,171.4,214.5,207.7,204.4,198.1,174.8,169.4,167.9 +615,167.6,259.3,258.4,258,257.3,249.4,235.5,233.8,233.1,232.1,218.9,171.5,214.7,208.1,204.9,198.9,174.9,169.4,167.9 +616,167.6,259.4,258.5,258.1,257.4,249.5,235.7,234,233.2,232.2,219.1,171.5,214.9,208.5,205.4,199.7,174.9,169.5,167.9 +617,167.7,259.5,258.6,258.2,257.5,249.6,235.8,234.1,233.4,232.3,219.3,171.5,215.2,208.8,205.9,200.4,175,169.5,168 +618,167.7,259.6,258.7,258.2,257.6,249.7,235.9,234.2,233.5,232.4,219.5,171.6,215.4,209.2,206.3,201.1,175,169.5,168 +619,167.7,259.7,258.8,258.3,257.7,249.8,236,234.3,233.6,232.6,219.6,171.6,215.6,209.5,206.8,201.7,175,169.5,168 +620,167.7,259.8,258.9,258.4,257.8,249.9,236.1,234.5,233.7,232.7,219.8,171.6,215.8,209.9,207.2,202.3,175.1,169.6,168 +621,167.7,259.9,259,258.5,257.9,250,236.2,234.6,233.8,232.8,220,171.7,216,210.2,207.6,202.9,175.1,169.6,168.1 +622,167.7,259.9,259.1,258.6,258,250.1,236.3,234.7,234,232.9,220.2,171.7,216.2,210.5,208,203.5,175.2,169.6,168.1 +623,167.7,260,259.2,258.7,258.1,250.2,236.5,234.8,234.1,233.1,220.4,171.7,216.4,210.9,208.4,204,175.2,169.7,168.1 +624,167.8,260.1,259.3,258.8,258.1,250.3,236.6,234.9,234.2,233.2,220.6,171.8,216.6,211.2,208.8,204.6,175.3,169.7,168.1 +625,167.8,260.2,259.3,258.9,258.2,250.4,236.7,235.1,234.3,233.3,220.7,171.8,216.8,211.5,209.1,205.1,175.3,169.7,168.2 +626,167.8,260.3,259.4,259,258.3,250.6,236.8,235.2,234.5,233.4,220.9,171.8,217,211.8,209.5,205.6,175.4,169.7,168.2 +627,167.8,260.4,259.5,259.1,258.4,250.7,236.9,235.3,234.6,233.6,221.1,171.9,217.2,212.1,209.8,206,175.4,169.8,168.2 +628,167.8,260.5,259.6,259.2,258.5,250.8,237,235.4,234.7,233.7,221.3,171.9,217.4,212.3,210.2,206.5,175.4,169.8,168.2 +629,167.8,260.5,259.7,259.2,258.6,250.9,237.1,235.5,234.8,233.8,221.4,171.9,217.6,212.6,210.5,206.9,175.5,169.8,168.3 +630,167.8,260.6,259.8,259.3,258.7,251,237.3,235.7,235,233.9,221.6,172,217.8,212.9,210.8,207.3,175.5,169.9,168.3 +631,167.8,260.7,259.9,259.4,258.8,251.1,237.4,235.8,235.1,234.1,221.8,172,218,213.2,211.1,207.8,175.6,169.9,168.3 +632,167.9,260.8,260,259.5,258.9,251.2,237.5,235.9,235.2,234.2,221.9,172,218.2,213.4,211.4,208.2,175.6,169.9,168.3 +633,167.9,260.9,260,259.6,259,251.3,237.6,236,235.3,234.3,222.1,172.1,218.3,213.7,211.7,208.5,175.7,169.9,168.4 +634,167.9,261,260.1,259.7,259.1,251.4,237.7,236.1,235.4,234.4,222.3,172.1,218.5,214,212,208.9,175.7,170,168.4 +635,167.9,261.1,260.2,259.8,259.2,251.5,237.8,236.3,235.6,234.6,222.4,172.1,218.7,214.2,212.3,209.3,175.8,170,168.4 +636,167.9,261.1,260.3,259.9,259.2,251.6,237.9,236.4,235.7,234.7,222.6,172.2,218.9,214.5,212.6,209.6,175.8,170,168.4 +637,167.9,261.2,260.4,260,259.3,251.7,238,236.5,235.8,234.8,222.8,172.2,219,214.7,212.9,210,175.9,170.1,168.5 +638,167.9,261.3,260.5,260,259.4,251.8,238.2,236.6,235.9,234.9,222.9,172.2,219.2,214.9,213.2,210.3,175.9,170.1,168.5 +639,168,261.4,260.6,260.1,259.5,251.9,238.3,236.7,236,235,223.1,172.3,219.4,215.2,213.4,210.7,175.9,170.1,168.5 +640,168,261.5,260.7,260.2,259.6,252,238.4,236.8,236.1,235.2,223.2,172.3,219.6,215.4,213.7,211,176,170.1,168.5 +641,168,261.6,260.7,260.3,259.7,252.1,238.5,237,236.3,235.3,223.4,172.3,219.7,215.6,214,211.3,176,170.2,168.6 +642,168,261.6,260.8,260.4,259.8,252.2,238.6,237.1,236.4,235.4,223.6,172.4,219.9,215.9,214.2,211.6,176.1,170.2,168.6 +643,168,261.7,260.9,260.5,259.9,252.3,238.7,237.2,236.5,235.5,223.7,172.4,220.1,216.1,214.5,211.9,176.1,170.2,168.6 +644,168,261.8,261,260.6,260,252.4,238.8,237.3,236.6,235.6,223.9,172.4,220.2,216.3,214.7,212.2,176.2,170.3,168.6 +645,168,261.9,261.1,260.7,260,252.5,238.9,237.4,236.7,235.8,224,172.5,220.4,216.5,215,212.5,176.2,170.3,168.7 +646,168.1,262,261.2,260.7,260.1,252.6,239,237.5,236.9,235.9,224.2,172.5,220.5,216.7,215.2,212.8,176.3,170.3,168.7 +647,168.1,262.1,261.3,260.8,260.2,252.8,239.2,237.7,237,236,224.3,172.5,220.7,216.9,215.4,213.1,176.3,170.4,168.7 +648,168.1,262.1,261.3,260.9,260.3,252.9,239.3,237.8,237.1,236.1,224.5,172.6,220.9,217.2,215.7,213.3,176.4,170.4,168.7 +649,168.1,262.2,261.4,261,260.4,253,239.4,237.9,237.2,236.2,224.6,172.6,221,217.4,215.9,213.6,176.4,170.4,168.7 +650,168.1,262.3,261.5,261.1,260.5,253.1,239.5,238,237.3,236.4,224.8,172.6,221.2,217.6,216.1,213.9,176.4,170.4,168.8 +651,168.1,262.4,261.6,261.2,260.6,253.2,239.6,238.1,237.4,236.5,224.9,172.7,221.3,217.8,216.3,214.1,176.5,170.5,168.8 +652,168.1,262.5,261.7,261.3,260.7,253.3,239.7,238.2,237.6,236.6,225.1,172.7,221.5,218,216.6,214.4,176.5,170.5,168.8 +653,168.1,262.6,261.8,261.4,260.8,253.4,239.8,238.4,237.7,236.7,225.2,172.7,221.6,218.2,216.8,214.6,176.6,170.5,168.8 +654,168.2,262.6,261.9,261.4,260.8,253.5,239.9,238.5,237.8,236.8,225.4,172.8,221.8,218.3,217,214.9,176.6,170.6,168.9 +655,168.2,262.7,261.9,261.5,260.9,253.6,240,238.6,237.9,237,225.5,172.8,221.9,218.5,217.2,215.1,176.7,170.6,168.9 +656,168.2,262.8,262,261.6,261,253.7,240.1,238.7,238,237.1,225.7,172.9,222.1,218.7,217.4,215.4,176.7,170.6,168.9 +657,168.2,262.9,262.1,261.7,261.1,253.8,240.3,238.8,238.1,237.2,225.8,172.9,222.2,218.9,217.6,215.6,176.8,170.6,168.9 +658,168.2,263,262.2,261.8,261.2,253.9,240.4,238.9,238.3,237.3,226,172.9,222.4,219.1,217.8,215.8,176.8,170.7,169 +659,168.2,263.1,262.3,261.9,261.3,254,240.5,239,238.4,237.4,226.1,173,222.5,219.3,218,216.1,176.9,170.7,169 +660,168.2,263.1,262.4,261.9,261.4,254.1,240.6,239.1,238.5,237.5,226.3,173,222.7,219.5,218.2,216.3,176.9,170.7,169 +661,168.2,263.2,262.4,262,261.4,254.2,240.7,239.3,238.6,237.7,226.4,173,222.8,219.7,218.4,216.5,177,170.8,169 +662,168.3,263.3,262.5,262.1,261.5,254.3,240.8,239.4,238.7,237.8,226.6,173.1,223,219.8,218.6,216.7,177,170.8,169.1 +663,168.3,263.4,262.6,262.2,261.6,254.4,240.9,239.5,238.8,237.9,226.7,173.1,223.1,220,218.8,216.9,177.1,170.8,169.1 +664,168.3,263.5,262.7,262.3,261.7,254.5,241,239.6,238.9,238,226.9,173.1,223.3,220.2,219,217.2,177.1,170.8,169.1 +665,168.3,263.5,262.8,262.4,261.8,254.6,241.1,239.7,239.1,238.1,227,173.2,223.4,220.4,219.2,217.4,177.2,170.9,169.1 +666,168.3,263.6,262.9,262.5,261.9,254.7,241.2,239.8,239.2,238.2,227.1,173.2,223.6,220.5,219.3,217.6,177.2,170.9,169.2 +667,168.3,263.7,262.9,262.5,262,254.8,241.3,239.9,239.3,238.4,227.3,173.2,223.7,220.7,219.5,217.8,177.2,170.9,169.2 +668,168.3,263.8,263,262.6,262,254.9,241.4,240,239.4,238.5,227.4,173.3,223.8,220.9,219.7,218,177.3,171,169.2 +669,168.4,263.9,263.1,262.7,262.1,255,241.6,240.2,239.5,238.6,227.6,173.3,224,221,219.9,218.2,177.3,171,169.2 +670,168.4,264,263.2,262.8,262.2,255.1,241.7,240.3,239.6,238.7,227.7,173.3,224.1,221.2,220.1,218.4,177.4,171,169.3 +671,168.4,264,263.3,262.9,262.3,255.2,241.8,240.4,239.7,238.8,227.8,173.4,224.3,221.4,220.2,218.6,177.4,171,169.3 +672,168.4,264.1,263.4,263,262.4,255.3,241.9,240.5,239.8,238.9,228,173.4,224.4,221.6,220.4,218.8,177.5,171.1,169.3 +673,168.4,264.2,263.4,263,262.5,255.4,242,240.6,240,239,228.1,173.4,224.5,221.7,220.6,219,177.5,171.1,169.3 +674,168.4,264.3,263.5,263.1,262.5,255.5,242.1,240.7,240.1,239.2,228.3,173.5,224.7,221.9,220.8,219.2,177.6,171.1,169.4 +675,168.4,264.4,263.6,263.2,262.6,255.6,242.2,240.8,240.2,239.3,228.4,173.5,224.8,222,220.9,219.3,177.6,171.2,169.4 +676,168.4,264.4,263.7,263.3,262.7,255.7,242.3,240.9,240.3,239.4,228.6,173.5,225,222.2,221.1,219.5,177.7,171.2,169.4 +677,168.5,264.5,263.8,263.4,262.8,255.8,242.4,241.1,240.4,239.5,228.7,173.6,225.1,222.4,221.3,219.7,177.7,171.2,169.4 +678,168.5,264.6,263.8,263.4,262.9,255.9,242.5,241.2,240.5,239.6,228.8,173.6,225.2,222.5,221.5,219.9,177.8,171.2,169.5 +679,168.5,264.7,263.9,263.5,263,256,242.6,241.3,240.6,239.7,229,173.6,225.4,222.7,221.6,220.1,177.8,171.3,169.5 +680,168.5,264.8,264,263.6,263,256.1,242.7,241.4,240.7,239.8,229.1,173.7,225.5,222.8,221.8,220.3,177.9,171.3,169.5 +681,168.5,264.8,264.1,263.7,263.1,256.2,242.8,241.5,240.9,239.9,229.2,173.7,225.6,223,222,220.4,177.9,171.3,169.5 +682,168.5,264.9,264.2,263.8,263.2,256.3,243,241.6,241,240.1,229.4,173.7,225.8,223.2,222.1,220.6,178,171.4,169.5 +683,168.5,265,264.3,263.9,263.3,256.4,243.1,241.7,241.1,240.2,229.5,173.8,225.9,223.3,222.3,220.8,178,171.4,169.6 +684,168.5,265.1,264.3,263.9,263.4,256.5,243.2,241.8,241.2,240.3,229.7,173.8,226,223.5,222.4,221,178.1,171.4,169.6 +685,168.6,265.2,264.4,264,263.5,256.6,243.3,241.9,241.3,240.4,229.8,173.8,226.2,223.6,222.6,221.1,178.1,171.5,169.6 +686,168.6,265.2,264.5,264.1,263.5,256.7,243.4,242,241.4,240.5,229.9,173.9,226.3,223.8,222.8,221.3,178.2,171.5,169.6 +687,168.6,265.3,264.6,264.2,263.6,256.8,243.5,242.2,241.5,240.6,230.1,173.9,226.4,223.9,222.9,221.5,178.2,171.5,169.7 +688,168.6,265.4,264.7,264.3,263.7,256.9,243.6,242.3,241.6,240.7,230.2,173.9,226.6,224.1,223.1,221.6,178.3,171.5,169.7 +689,168.6,265.5,264.7,264.3,263.8,257,243.7,242.4,241.7,240.8,230.3,174,226.7,224.2,223.2,221.8,178.3,171.6,169.7 +690,168.6,265.6,264.8,264.4,263.9,257.1,243.8,242.5,241.8,241,230.5,174,226.8,224.4,223.4,222,178.4,171.6,169.7 +691,168.6,265.7,264.9,264.5,264,257.2,243.9,242.6,242,241.1,230.6,174,227,224.5,223.5,222.1,178.4,171.6,169.8 +692,168.6,265.7,265,264.6,264,257.3,244,242.7,242.1,241.2,230.7,174.1,227.1,224.7,223.7,222.3,178.5,171.7,169.8 +693,168.7,265.8,265.1,264.7,264.1,257.4,244.1,242.8,242.2,241.3,230.9,174.1,227.2,224.8,223.9,222.5,178.5,171.7,169.8 +694,168.7,265.9,265.1,264.8,264.2,257.5,244.2,242.9,242.3,241.4,231,174.1,227.4,225,224,222.6,178.6,171.7,169.8 +695,168.7,266,265.2,264.8,264.3,257.6,244.3,243,242.4,241.5,231.1,174.2,227.5,225.1,224.2,222.8,178.6,171.7,169.9 +696,168.7,266.1,265.3,264.9,264.4,257.7,244.4,243.1,242.5,241.6,231.3,174.2,227.6,225.3,224.3,222.9,178.7,171.8,169.9 +697,168.7,266.1,265.4,265,264.4,257.8,244.5,243.2,242.6,241.7,231.4,174.2,227.8,225.4,224.5,223.1,178.8,171.8,169.9 +698,168.7,266.2,265.5,265.1,264.5,257.9,244.7,243.4,242.7,241.8,231.5,174.3,227.9,225.6,224.6,223.3,178.8,171.8,169.9 +699,168.7,266.3,265.6,265.2,264.6,258,244.8,243.5,242.8,242,231.7,174.3,228,225.7,224.8,223.4,181.3,171.9,170 +700,168.7,266.4,265.6,265.2,264.7,258.1,244.9,243.6,242.9,242.1,231.8,174.3,228.2,225.9,224.9,223.6,186.6,171.9,170 +701,168.8,266.5,265.7,265.3,264.8,258.2,245,243.7,243.1,242.2,231.9,174.4,228.3,226,225.1,223.7,187.8,171.9,170 +702,168.8,266.6,265.8,265.4,264.9,258.3,245.1,243.8,243.2,242.3,232.1,174.4,228.4,226.1,225.2,223.9,188.4,171.9,170 +703,168.8,266.6,265.9,265.5,264.9,258.4,245.2,243.9,243.3,242.4,232.2,174.4,228.6,226.3,225.4,224,189,172,170.1 +704,168.8,266.7,266,265.6,265,258.5,245.3,244,243.4,242.5,232.3,174.5,228.7,226.4,225.5,224.2,189.5,172,170.1 +705,168.8,266.8,266,265.7,265.1,258.6,245.4,244.1,243.5,242.6,232.5,174.5,228.8,226.6,225.7,224.3,190.1,172,170.1 +706,168.8,266.9,266.1,265.7,265.2,258.7,245.5,244.2,243.6,242.7,232.6,174.5,229,226.7,225.8,224.5,190.7,172.1,170.1 +707,168.8,267,266.2,265.8,265.3,258.8,245.6,244.3,243.7,242.8,232.7,174.6,229.1,226.9,225.9,224.7,191.3,172.1,170.2 +708,168.8,267,266.3,265.9,265.3,258.8,245.7,244.4,243.8,242.9,232.9,174.6,229.2,227,226.1,224.8,191.8,172.1,170.2 +709,168.9,267.1,266.4,266,265.4,258.9,245.8,244.5,243.9,243.1,233,174.6,229.3,227.1,226.2,225,192.4,172.1,170.2 +710,168.9,267.2,266.5,266.1,265.5,259,245.9,244.7,244,243.2,233.1,174.7,229.5,227.3,226.4,225.1,193,172.2,170.2 +711,168.9,267.3,266.5,266.1,265.6,259.1,246,244.8,244.1,243.3,233.3,174.7,229.6,227.4,226.5,225.3,195,172.2,170.2 +712,168.9,267.4,266.6,266.2,265.7,259.2,246.1,244.9,244.3,243.4,233.4,174.7,229.7,227.6,226.7,225.4,196.2,172.2,170.3 +713,168.9,267.5,266.7,266.3,265.8,259.3,246.2,245,244.4,243.5,233.5,174.8,229.9,227.7,226.8,225.5,197.3,172.3,170.3 +714,168.9,267.5,266.8,266.4,265.8,259.4,246.3,245.1,244.5,243.6,233.6,174.8,230,227.8,227,225.7,198.3,172.3,170.3 +715,168.9,267.6,266.9,266.5,265.9,259.5,246.5,245.2,244.6,243.7,233.8,174.8,230.1,228,227.1,225.8,199.2,172.3,170.3 +716,168.9,267.7,267,266.6,266,259.6,246.6,245.3,244.7,243.8,233.9,174.9,230.2,228.1,227.2,226,200,172.3,170.4 +717,168.9,267.8,267,266.6,266.1,259.7,246.7,245.4,244.8,243.9,234,174.9,230.4,228.3,227.4,226.1,200.8,172.4,170.4 +718,169,267.9,267.1,266.7,266.2,259.8,246.8,245.5,244.9,244,234.2,174.9,230.5,228.4,227.5,226.3,201.6,172.4,170.4 +719,169,268,267.2,266.8,266.2,259.9,246.9,245.6,245,244.1,234.3,175,230.6,228.5,227.7,226.4,202.3,172.4,170.4 +720,169,268,267.3,266.9,266.3,260,247,245.7,245.1,244.3,234.4,175,230.7,228.7,227.8,226.6,203,172.5,170.5 +721,169,268.1,267.4,267,266.4,260.1,247.1,245.8,245.2,244.4,234.5,175,230.9,228.8,227.9,226.7,203.6,172.5,170.5 +722,169,268.2,267.4,267,266.5,260.2,247.2,245.9,245.3,244.5,234.7,175.1,231,228.9,228.1,226.9,204.2,172.5,170.5 +723,169,268.3,267.5,267.1,266.6,260.3,247.3,246.1,245.4,244.6,234.8,175.1,231.1,229.1,228.2,227,204.8,172.5,170.5 +724,169,268.4,267.6,267.2,266.7,260.3,247.4,246.2,245.6,244.7,234.9,175.1,231.3,229.2,228.4,227.1,205.4,172.6,170.6 +725,169,268.5,267.7,267.3,266.7,260.4,247.5,246.3,245.7,244.8,235,175.2,231.4,229.4,228.5,227.3,205.9,172.6,170.6 +726,169.1,268.5,267.8,267.4,266.8,260.5,247.6,246.4,245.8,244.9,235.2,175.2,231.5,229.5,228.6,227.4,206.5,172.6,170.6 +727,169.1,268.6,267.9,267.5,266.9,260.6,247.7,246.5,245.9,245,235.3,175.2,231.6,229.6,228.8,227.6,207,172.7,170.6 +728,169.1,268.7,267.9,267.5,267,260.7,247.8,246.6,246,245.1,235.4,175.3,231.8,229.8,228.9,227.7,207.4,172.7,170.7 +729,169.1,268.8,268,267.6,267.1,260.8,247.9,246.7,246.1,245.2,235.5,175.3,231.9,229.9,229,227.9,207.9,172.7,170.7 +730,169.1,268.9,268.1,267.7,267.1,260.9,248,246.8,246.2,245.3,235.7,175.3,232,230,229.2,228,208.4,172.7,170.7 +731,169.1,269,268.2,267.8,267.2,261,248.1,246.9,246.3,245.4,235.8,175.4,232.1,230.2,229.3,228.1,208.8,172.8,170.7 +732,169.1,269,268.3,267.9,267.3,261.1,248.2,247,246.4,245.6,235.9,175.4,232.3,230.3,229.5,228.3,209.2,172.8,170.7 +733,169.1,269.1,268.4,268,267.4,261.2,248.3,247.1,246.5,245.7,236,175.4,232.4,230.4,229.6,228.4,209.6,172.8,170.8 +734,169.2,269.2,268.4,268,267.5,261.3,248.4,247.2,246.6,245.8,236.2,175.5,232.5,230.6,229.7,228.6,210,172.9,170.8 +735,169.2,269.3,268.5,268.1,267.6,261.4,248.6,247.3,246.7,245.9,236.3,175.5,232.6,230.7,229.9,228.7,210.4,172.9,170.8 +736,169.2,269.4,268.6,268.2,267.6,261.4,248.7,247.4,246.8,246,236.4,175.5,232.8,230.8,230,228.8,210.8,172.9,170.8 +737,169.2,269.5,268.7,268.3,267.7,261.5,248.8,247.6,246.9,246.1,236.5,175.6,232.9,231,230.1,229,211.1,172.9,170.9 +738,169.2,269.5,268.8,268.4,267.8,261.6,248.9,247.7,247.1,246.2,236.7,175.6,233,231.1,230.3,229.1,211.5,173,170.9 +739,169.2,269.6,268.9,268.5,267.9,261.7,249,247.8,247.2,246.3,236.8,175.6,233.1,231.2,230.4,229.2,211.8,173,170.9 +740,169.2,269.7,268.9,268.5,268,261.8,249.1,247.9,247.3,246.4,236.9,175.7,233.2,231.4,230.5,229.4,212.2,173,170.9 +741,169.2,269.8,269,268.6,268.1,261.9,249.2,248,247.4,246.5,237,175.7,233.4,231.5,230.7,229.5,212.5,173.1,171 +742,169.2,269.9,269.1,268.7,268.1,262,249.3,248.1,247.5,246.6,237.1,175.7,233.5,231.6,230.8,229.7,212.8,173.1,171 +743,169.3,270,269.2,268.8,268.2,262.1,249.4,248.2,247.6,246.7,237.3,175.8,233.6,231.8,230.9,229.8,213.1,173.1,171 +744,169.3,270,269.3,268.9,268.3,262.2,249.5,248.3,247.7,246.8,237.4,175.8,233.7,231.9,231.1,229.9,213.5,173.1,171 +745,169.3,270.1,269.4,269,268.4,262.3,249.6,248.4,247.8,247,237.5,175.8,233.9,232,231.2,230.1,213.8,173.2,171.1 +746,169.3,270.2,269.5,269,268.5,262.3,249.7,248.5,247.9,247.1,237.6,175.9,234,232.1,231.3,230.2,214.1,173.2,171.1 +747,169.3,270.3,269.5,269.1,268.6,262.4,249.8,248.6,248,247.2,237.7,175.9,234.1,232.3,231.5,230.3,214.3,173.2,171.1 +748,169.3,270.4,269.6,269.2,268.6,262.5,249.9,248.7,248.1,247.3,237.9,175.9,234.2,232.4,231.6,230.5,214.6,173.3,171.1 +749,169.3,270.5,269.7,269.3,268.7,262.6,250,248.8,248.2,247.4,238,176,234.3,232.5,231.7,230.6,214.9,173.3,171.1 +750,169.3,270.5,269.8,269.4,268.8,262.7,250.1,248.9,248.3,247.5,238.1,176,234.5,232.7,231.9,230.7,215.2,173.3,171.2 +751,169.4,270.6,269.9,269.5,268.9,262.8,250.2,249,248.4,247.6,238.2,176,234.6,232.8,232,230.9,215.4,173.3,171.2 +752,169.4,270.7,270,269.5,269,262.9,250.3,249.1,248.5,247.7,238.3,176.1,234.7,232.9,232.1,231,215.7,173.4,171.2 +753,169.4,270.8,270,269.6,269.1,263,250.4,249.2,248.7,247.8,238.5,176.1,234.8,233,232.3,231.1,216,173.4,171.2 +754,169.4,270.9,270.1,269.7,269.1,263,250.5,249.4,248.8,247.9,238.6,176.1,234.9,233.2,232.4,231.3,216.2,173.4,171.3 +755,169.4,271,270.2,269.8,269.2,263.1,250.6,249.5,248.9,248,238.7,176.2,235.1,233.3,232.5,231.4,216.5,173.5,171.3 +756,169.4,271,270.3,269.9,269.3,263.2,250.7,249.6,249,248.1,238.8,176.2,235.2,233.4,232.6,231.5,216.7,173.5,171.3 +757,169.4,271.1,270.4,270,269.4,263.3,250.8,249.7,249.1,248.2,238.9,176.2,235.3,233.6,232.8,231.7,217,173.5,171.3 +758,169.4,271.2,270.5,270,269.5,263.4,250.9,249.8,249.2,248.3,239.1,176.3,235.4,233.7,232.9,231.8,217.2,173.5,171.4 +759,169.4,271.3,270.5,270.1,269.6,263.5,251,249.9,249.3,248.5,239.2,176.3,235.5,233.8,233,231.9,217.4,173.6,171.4 +760,169.5,271.4,270.6,270.2,269.6,263.6,251.1,250,249.4,248.6,239.3,176.3,235.7,233.9,233.2,232.1,217.7,173.6,171.4 +761,169.5,271.5,270.7,270.3,269.7,263.6,251.3,250.1,249.5,248.7,239.4,176.4,235.8,234.1,233.3,232.2,217.9,173.6,171.4 +762,169.5,271.5,270.8,270.4,269.8,263.7,251.4,250.2,249.6,248.8,239.5,176.4,235.9,234.2,233.4,232.3,218.1,173.7,171.5 +763,169.5,271.6,270.9,270.5,269.9,263.8,251.5,250.3,249.7,248.9,239.6,176.4,236,234.3,233.5,232.5,218.3,173.7,171.5 +764,169.5,271.7,271,270.6,270,263.9,251.6,250.4,249.8,249,239.8,176.5,236.1,234.4,233.7,232.6,218.5,173.7,171.5 +765,169.5,271.8,271,270.6,270.1,264,251.7,250.5,249.9,249.1,239.9,176.5,236.3,234.6,233.8,232.7,218.8,173.7,171.5 +766,169.5,271.9,271.1,270.7,270.1,264.1,251.8,250.6,250,249.2,240,176.5,236.4,234.7,233.9,232.8,219,173.8,171.6 +767,169.5,272,271.2,270.8,270.2,264.2,251.9,250.7,250.1,249.3,240.1,176.6,236.5,234.8,234.1,233,219.2,173.8,171.6 +768,169.5,272,271.3,270.9,270.3,264.2,252,250.8,250.2,249.4,240.2,176.6,236.6,234.9,234.2,233.1,219.4,173.8,171.6 +769,169.6,272.1,271.4,271,270.4,264.3,252.1,250.9,250.3,249.5,240.3,176.6,236.7,235.1,234.3,233.2,219.6,173.9,171.6 +770,169.6,272.2,271.5,271.1,270.5,264.4,252.2,251,250.4,249.6,240.5,176.7,236.8,235.2,234.4,233.4,219.8,173.9,171.6 +771,169.6,272.3,271.5,271.1,270.6,264.5,252.3,251.1,250.6,249.7,240.6,176.7,237,235.3,234.6,233.5,220,173.9,171.7 +772,169.6,272.4,271.6,271.2,270.6,264.6,252.4,251.2,250.7,249.8,240.7,176.7,237.1,235.4,234.7,233.6,220.2,173.9,171.7 +773,169.6,272.5,271.7,271.3,270.7,264.7,252.5,251.3,250.8,249.9,240.8,176.8,237.2,235.6,234.8,233.7,220.4,174,171.7 +774,169.6,272.5,271.8,271.4,270.8,264.8,252.6,251.5,250.9,250,240.9,176.8,237.3,235.7,234.9,233.9,220.6,174,171.7 +775,169.6,272.6,271.9,271.5,270.9,264.8,252.7,251.6,251,250.1,241,176.8,237.4,235.8,235.1,234,220.8,174,171.8 +776,169.6,272.7,272,271.6,271,264.9,252.8,251.7,251.1,250.3,241.1,176.9,237.5,235.9,235.2,234.1,221,174.1,171.8 +777,169.6,272.8,272,271.6,271.1,265,252.9,251.8,251.2,250.4,241.3,176.9,237.7,236,235.3,234.2,221.1,174.1,171.8 +778,169.7,272.9,272.1,271.7,271.1,265.1,253,251.9,251.3,250.5,241.4,176.9,237.8,236.2,235.4,234.4,221.3,174.1,171.8 +779,169.7,272.9,272.2,271.8,271.2,265.2,253.1,252,251.4,250.6,241.5,177,237.9,236.3,235.5,234.5,221.5,174.1,171.9 +780,169.7,273,272.3,271.9,271.3,265.3,253.2,252.1,251.5,250.7,241.6,177,238,236.4,235.7,234.6,221.7,174.2,171.9 +781,169.7,273.1,272.4,272,271.4,265.3,253.3,252.2,251.6,250.8,241.7,177,238.1,236.5,235.8,234.8,221.9,174.2,171.9 +782,169.7,273.2,272.5,272.1,271.5,265.4,253.4,252.3,251.7,250.9,241.8,177.1,238.2,236.6,235.9,234.9,222.1,174.2,171.9 +783,169.7,273.3,272.5,272.1,271.6,265.5,253.5,252.4,251.8,251,241.9,177.1,238.3,236.8,236,235,222.2,174.3,171.9 +784,169.7,273.4,272.6,272.2,271.6,265.6,253.6,252.5,251.9,251.1,242.1,177.1,238.5,236.9,236.2,235.1,222.4,174.3,172 +785,169.7,273.4,272.7,272.3,271.7,265.7,253.7,252.6,252,251.2,242.2,177.2,238.6,237,236.3,235.3,222.6,174.3,172 +786,169.7,273.5,272.8,272.4,271.8,265.7,253.8,252.7,252.1,251.3,242.3,177.2,238.7,237.1,236.4,235.4,222.8,174.3,172 +787,169.8,273.6,272.9,272.5,271.9,265.8,253.9,252.8,252.2,251.4,242.4,177.2,238.8,237.2,236.5,235.5,222.9,174.4,172 +788,169.8,273.7,272.9,272.5,272,265.9,254,252.9,252.3,251.5,242.5,177.3,238.9,237.4,236.6,235.6,223.1,174.4,172.1 +789,169.8,273.8,273,272.6,272.1,266,254.1,253,252.4,251.6,242.6,177.3,239,237.5,236.8,235.7,223.3,174.4,172.1 +790,169.8,273.8,273.1,272.7,272.1,266.1,254.2,253.1,252.5,251.7,242.7,177.3,239.1,237.6,236.9,235.9,223.4,174.5,172.1 +791,169.8,273.9,273.2,272.8,272.2,266.2,254.3,253.2,252.6,251.8,242.8,177.4,239.2,237.7,237,236,223.6,174.5,172.1 +792,169.8,274,273.3,272.9,272.3,266.2,254.4,253.3,252.7,251.9,243,177.4,239.4,237.8,237.1,236.1,223.8,174.5,172.2 +793,169.8,274.1,273.4,273,272.4,266.3,254.5,253.4,252.8,252,243.1,177.4,239.5,238,237.2,236.2,223.9,174.5,172.2 +794,169.8,274.2,273.4,273,272.5,266.4,254.6,253.5,252.9,252.1,243.2,177.5,239.6,238.1,237.4,236.4,224.1,174.6,172.2 +795,169.8,274.3,273.5,273.1,272.6,266.5,254.7,253.6,253.1,252.2,243.3,177.5,239.7,238.2,237.5,236.5,224.3,174.6,172.2 +796,169.9,274.3,273.6,273.2,272.6,266.6,254.8,253.7,253.2,252.3,243.4,177.5,239.8,238.3,237.6,236.6,224.4,174.6,172.3 +797,169.9,274.4,273.7,273.3,272.7,266.7,254.9,253.8,253.3,252.5,243.5,177.6,239.9,238.4,237.7,236.7,224.6,174.7,172.3 +798,169.9,274.5,273.8,273.4,272.8,266.7,255,253.9,253.4,252.6,243.6,177.6,240,238.5,237.8,236.8,224.7,174.7,172.3 +799,169.9,274.6,273.8,273.5,272.9,266.8,255.1,254,253.5,252.7,243.7,177.6,240.1,238.7,238,237,224.9,174.7,172.3 +800,169.9,274.7,273.9,273.5,273,266.9,255.2,254.1,253.6,252.8,243.8,177.7,240.3,238.8,238.1,237.1,225.1,174.7,172.3 +801,169.9,274.7,274,273.6,273.1,267,255.3,254.2,253.7,252.9,244,177.7,240.4,238.9,238.2,237.2,225.2,174.8,172.4 +802,169.9,274.8,274.1,273.7,273.1,267.1,255.4,254.3,253.8,253,244.1,177.7,240.5,239,238.3,237.3,225.4,174.8,172.4 +803,169.9,274.9,274.2,273.8,273.2,267.1,255.5,254.4,253.9,253.1,244.2,177.8,240.6,239.1,238.4,237.4,225.5,174.8,172.4 +804,169.9,275,274.3,273.9,273.3,267.2,255.6,254.5,254,253.2,244.3,177.8,240.7,239.2,238.5,237.6,225.7,174.9,172.4 +805,170,275.1,274.3,273.9,273.4,267.3,255.7,254.6,254.1,253.3,244.4,177.8,240.8,239.4,238.7,237.7,225.8,174.9,172.5 +806,170,275.1,274.4,274,273.5,267.4,255.8,254.7,254.2,253.4,244.5,177.9,240.9,239.5,238.8,237.8,226,174.9,172.5 +807,170,275.2,274.5,274.1,273.6,267.5,255.9,254.8,254.3,253.5,244.6,177.9,241,239.6,238.9,237.9,226.1,174.9,172.5 +808,170,275.3,274.6,274.2,273.6,267.5,256,255,254.4,253.6,244.7,177.9,241.1,239.7,239,238,226.3,175,172.5 +809,170,275.4,274.7,274.3,273.7,267.6,256.1,255.1,254.5,253.7,244.8,178,241.2,239.8,239.1,238.2,226.4,175,172.6 +810,170,275.5,274.7,274.4,273.8,267.7,256.2,255.2,254.6,253.8,244.9,178,241.4,239.9,239.2,238.3,226.6,175,172.6 +811,170,275.5,274.8,274.4,273.9,267.8,256.3,255.3,254.7,253.9,245.1,178,241.5,240,239.4,238.4,226.7,175.1,172.6 +812,170,275.6,274.9,274.5,274,267.9,256.4,255.4,254.8,254,245.2,178.1,241.6,240.2,239.5,238.5,226.9,175.1,172.6 +813,170,275.7,275,274.6,274,268,256.5,255.5,254.9,254.1,245.3,178.1,241.7,240.3,239.6,238.6,227,175.1,172.6 +814,170,275.8,275.1,274.7,274.1,268,256.6,255.6,255,254.2,245.4,178.1,241.8,240.4,239.7,238.7,227.2,175.1,172.7 +815,170.1,275.9,275.1,274.8,274.2,268.1,256.7,255.7,255.1,254.3,245.5,178.2,241.9,240.5,239.8,238.9,227.3,175.2,172.7 +816,170.1,275.9,275.2,274.8,274.3,268.2,256.8,255.8,255.2,254.4,245.6,181.9,242,240.6,239.9,239,227.5,175.2,172.7 +817,170.1,276,275.3,274.9,274.4,268.3,256.9,255.9,255.3,254.5,245.7,192.6,242.1,240.7,240,239.1,227.6,175.2,172.7 +818,170.1,276.1,275.4,275,274.4,268.4,257,256,255.4,254.6,245.8,192.9,242.2,240.8,240.2,239.2,227.8,175.3,172.8 +819,170.1,276.2,275.5,275.1,274.5,268.4,257.1,256.1,255.5,254.7,245.9,193.3,242.3,240.9,240.3,239.3,227.9,175.3,172.8 +820,170.1,276.3,275.5,275.2,274.6,268.5,257.2,256.2,255.6,254.8,246,193.6,242.4,241.1,240.4,239.4,228.1,175.3,172.8 +821,170.1,276.3,275.6,275.2,274.7,268.6,257.3,256.3,255.7,254.9,246.2,193.9,242.6,241.2,240.5,239.6,228.2,175.3,172.8 +822,170.1,276.4,275.7,275.3,274.8,268.7,257.4,256.4,255.8,255,246.3,194.2,242.7,241.3,240.6,239.7,228.4,175.4,172.9 +823,170.1,276.5,275.8,275.4,274.9,268.8,257.5,256.5,255.9,255.1,246.4,194.5,242.8,241.4,240.7,239.8,228.5,175.4,172.9 +824,170.2,276.6,275.9,275.5,274.9,268.9,257.6,256.6,256,255.2,246.5,194.8,242.9,241.5,240.8,239.9,228.7,175.4,172.9 +825,170.2,276.7,275.9,275.6,275,268.9,257.7,256.7,256.1,255.3,246.6,195.1,243,241.6,241,240,228.8,175.5,172.9 +826,170.2,276.7,276,275.6,275.1,269,257.8,256.8,256.2,255.4,246.7,195.4,243.1,241.7,241.1,240.1,228.9,175.5,172.9 +827,170.2,276.8,276.1,275.7,275.2,269.1,257.9,256.9,256.3,255.5,246.8,195.7,243.2,241.8,241.2,240.2,229.1,175.5,173 +828,170.2,276.9,276.2,275.8,275.3,269.2,258,257,256.4,255.6,246.9,197.1,243.3,242,241.3,240.4,229.2,175.5,173 +829,170.2,277,276.3,275.9,275.3,269.3,258.1,257.1,256.5,255.7,247,198.3,243.4,242.1,241.4,240.5,229.4,175.6,173 +830,170.2,277.1,276.3,276,275.4,269.3,258.2,257.1,256.6,255.8,247.1,199.3,243.5,242.2,241.5,240.6,229.5,175.6,173 +831,170.2,277.1,276.4,276,275.5,269.4,258.3,257.2,256.7,255.9,247.2,200.3,243.6,242.3,241.6,240.7,229.6,175.6,173.1 +832,170.2,277.2,276.5,276.1,275.6,269.5,258.4,257.3,256.8,256,247.4,201.2,243.7,242.4,241.7,240.8,229.8,175.7,173.1 +833,170.2,277.3,276.6,276.2,275.7,269.6,258.4,257.4,256.9,256.1,247.5,202.1,243.8,242.5,241.9,240.9,229.9,175.7,173.1 +834,170.3,277.4,276.7,276.3,275.7,269.7,258.5,257.5,257,256.2,247.6,202.8,243.9,242.6,242,241,230.1,175.7,173.1 +835,170.3,277.5,276.7,276.4,275.8,269.8,258.6,257.6,257.1,256.3,247.7,203.6,244.1,242.7,242.1,241.2,230.2,175.7,173.2 +836,170.3,277.5,276.8,276.4,275.9,269.8,258.7,257.7,257.2,256.4,247.8,204.3,244.2,242.8,242.2,241.3,230.3,175.8,173.2 +837,170.3,277.6,276.9,276.5,276,269.9,258.8,257.8,257.3,256.5,247.9,205,244.3,242.9,242.3,241.4,230.5,175.8,173.2 +838,170.3,277.7,277,276.6,276.1,270,258.9,257.9,257.4,256.6,248,205.6,244.4,243.1,242.4,241.5,230.6,175.8,173.2 +839,170.3,277.8,277.1,276.7,276.1,270.1,259,258,257.5,256.7,248.1,206.2,244.5,243.2,242.5,241.6,230.8,175.9,173.2 +840,170.3,277.8,277.1,276.8,276.2,270.2,259.1,258.1,257.6,256.8,248.2,206.8,244.6,243.3,242.6,241.7,230.9,175.9,173.3 +841,170.3,277.9,277.2,276.8,276.3,270.2,259.2,258.2,257.7,256.9,248.3,207.3,244.7,243.4,242.7,241.8,231,175.9,173.3 +842,170.3,278,277.3,276.9,276.4,270.3,259.3,258.3,257.8,257,248.4,207.9,244.8,243.5,242.9,241.9,231.2,175.9,173.3 +843,170.4,278.1,277.4,277,276.5,270.4,259.4,258.4,257.9,257.1,248.5,208.4,244.9,243.6,243,242.1,231.3,176,173.3 +844,170.4,278.2,277.5,277.1,276.5,270.5,259.5,258.5,258,257.2,248.7,208.9,245,243.7,243.1,242.2,231.4,176,173.4 +845,170.4,278.2,277.5,277.2,276.6,270.6,259.6,258.6,258.1,257.3,248.8,209.4,245.1,243.8,243.2,242.3,231.6,176,173.4 +846,170.4,278.3,277.6,277.2,276.7,270.7,259.7,258.7,258.2,257.4,248.9,209.8,245.2,243.9,243.3,242.4,231.7,176.1,173.4 +847,170.4,278.4,277.7,277.3,276.8,270.7,259.8,258.8,258.3,257.5,249,210.3,245.3,244,243.4,242.5,231.9,176.1,173.4 +848,170.4,278.5,277.8,277.4,276.9,270.8,259.9,258.9,258.4,257.6,249.1,210.7,245.4,244.2,243.5,242.6,232,176.1,173.5 +849,170.4,278.6,277.9,277.5,276.9,270.9,260,259,258.5,257.7,249.2,211.1,245.5,244.3,243.6,242.7,232.1,176.1,173.5 +850,170.4,278.6,277.9,277.6,277,271,260.1,259.1,258.6,257.8,249.3,211.5,245.7,244.4,243.7,242.8,232.3,176.2,173.5 +851,170.4,278.7,278,277.6,277.1,271.1,260.1,259.2,258.7,257.9,249.4,211.9,245.8,244.5,243.8,242.9,232.4,176.2,173.5 +852,170.4,278.8,278.1,277.7,277.2,271.2,260.2,259.3,258.8,258,249.5,212.3,245.9,244.6,244,243.1,232.5,176.2,173.5 +853,170.5,278.9,278.2,277.8,277.3,271.2,260.3,259.4,258.9,258.1,249.6,212.7,246,244.7,244.1,243.2,232.7,176.3,173.6 +854,170.5,278.9,278.3,277.9,277.3,271.3,260.4,259.5,259,258.2,249.7,213,246.1,244.8,244.2,243.3,232.8,176.3,173.6 +855,170.5,279,278.3,278,277.4,271.4,260.5,259.6,259.1,258.3,249.8,213.4,246.2,244.9,244.3,243.4,232.9,176.3,173.6 +856,170.5,279.1,278.4,278,277.5,271.5,260.6,259.7,259.1,258.4,249.9,213.7,246.3,245,244.4,243.5,233.1,176.3,173.6 +857,170.5,279.2,278.5,278.1,277.6,271.6,260.7,259.8,259.2,258.5,250.1,214,246.4,245.1,244.5,243.6,233.2,176.4,173.7 +858,170.5,279.3,278.6,278.2,277.7,271.7,260.8,259.9,259.3,258.6,250.2,214.4,246.5,245.2,244.6,243.7,233.3,176.4,173.7 +859,170.5,279.3,278.6,278.3,277.7,271.7,260.9,259.9,259.4,258.7,250.3,214.7,246.6,245.3,244.7,243.8,233.5,176.4,173.7 +860,170.5,279.4,278.7,278.3,277.8,271.8,261,260,259.5,258.8,250.4,215,246.7,245.5,244.8,243.9,233.6,176.5,173.7 +861,170.5,279.5,278.8,278.4,277.9,271.9,261.1,260.1,259.6,258.9,250.5,215.3,246.8,245.6,244.9,244,233.7,176.5,173.8 +862,170.5,279.6,278.9,278.5,278,272,261.2,260.2,259.7,259,250.6,215.6,246.9,245.7,245,244.2,233.9,176.5,173.8 +863,170.6,279.7,279,278.6,278.1,272.1,261.3,260.3,259.8,259.1,250.7,215.9,247,245.8,245.1,244.3,234,176.5,173.8 +864,170.6,279.7,279,278.7,278.1,272.2,261.3,260.4,259.9,259.2,250.8,216.2,247.1,245.9,245.3,244.4,234.1,176.6,173.8 +865,170.6,279.8,279.1,278.7,278.2,272.2,261.4,260.5,260,259.3,250.9,216.5,247.2,246,245.4,244.5,234.3,176.6,173.8 +866,170.6,279.9,279.2,278.8,278.3,272.3,261.5,260.6,260.1,259.4,251,216.7,247.3,246.1,245.5,244.6,234.4,176.6,173.9 +867,170.6,280,279.3,278.9,278.4,272.4,261.6,260.7,260.2,259.5,251.1,217,247.4,246.2,245.6,244.7,234.5,176.7,173.9 +868,170.6,280,279.3,279,278.4,272.5,261.7,260.8,260.3,259.6,251.2,217.3,247.6,246.3,245.7,244.8,234.6,176.7,173.9 +869,170.6,280.1,279.4,279.1,278.5,272.6,261.8,260.9,260.4,259.7,251.3,217.5,247.7,246.4,245.8,244.9,234.8,176.7,173.9 +870,170.6,280.2,279.5,279.1,278.6,272.7,261.9,261,260.5,259.8,251.4,217.8,247.8,246.5,245.9,245,234.9,176.7,174 +871,170.6,280.3,279.6,279.2,278.7,272.7,262,261.1,260.6,259.9,251.5,218.1,247.9,246.6,246,245.1,235,176.8,174 +872,170.6,280.4,279.7,279.3,278.8,272.8,262.1,261.2,260.7,260,251.7,218.3,248,246.7,246.1,245.2,235.2,176.8,174 +873,170.7,280.4,279.7,279.4,278.8,272.9,262.2,261.3,260.8,260,251.8,218.5,248.1,246.8,246.2,245.4,235.3,176.8,174 +874,170.7,280.5,279.8,279.4,278.9,273,262.2,261.3,260.9,260.1,251.9,218.8,248.2,247,246.3,245.5,235.4,176.9,174 +875,170.7,280.6,279.9,279.5,279,273.1,262.3,261.4,260.9,260.2,252,219,248.3,247.1,246.4,245.6,235.5,176.9,174.1 +876,170.7,280.7,280,279.6,279.1,273.2,262.4,261.5,261,260.3,252.1,219.3,248.4,247.2,246.5,245.7,235.7,176.9,174.1 +877,170.7,280.7,280.1,279.7,279.2,273.2,262.5,261.6,261.1,260.4,252.2,219.5,248.5,247.3,246.7,245.8,235.8,176.9,174.1 +878,170.7,280.8,280.1,279.8,279.2,273.3,262.6,261.7,261.2,260.5,252.3,219.7,248.6,247.4,246.8,245.9,235.9,177,174.1 +879,170.7,280.9,280.2,279.8,279.3,273.4,262.7,261.8,261.3,260.6,252.4,219.9,248.7,247.5,246.9,246,236.1,177,174.2 +880,170.7,281,280.3,279.9,279.4,273.5,262.8,261.9,261.4,260.7,252.5,220.1,248.8,247.6,247,246.1,236.2,177,174.2 +881,170.7,281,280.4,280,279.5,273.6,262.9,262,261.5,260.8,252.6,220.4,248.9,247.7,247.1,246.2,236.3,177.1,174.2 +882,170.7,281.1,280.4,280.1,279.5,273.7,262.9,262.1,261.6,260.9,252.7,220.6,249,247.8,247.2,246.3,236.4,177.1,174.2 +883,170.8,281.2,280.5,280.1,279.6,273.7,263,262.2,261.7,261,252.8,220.8,249.1,247.9,247.3,246.4,236.6,177.1,174.3 +884,170.8,281.3,280.6,280.2,279.7,273.8,263.1,262.3,261.8,261.1,252.9,221,249.2,248,247.4,246.5,236.7,177.1,174.3 +885,170.8,281.4,280.7,280.3,279.8,273.9,263.2,262.3,261.9,261.2,253,221.2,249.3,248.1,247.5,246.6,236.8,177.2,174.3 +886,170.8,281.4,280.7,280.4,279.9,274,263.3,262.4,262,261.3,253.1,221.4,249.4,248.2,247.6,246.8,236.9,177.2,174.3 +887,170.8,281.5,280.8,280.5,279.9,274.1,263.4,262.5,262,261.4,253.2,221.6,249.5,248.3,247.7,246.9,237.1,177.2,174.3 +888,170.8,281.6,280.9,280.5,280,274.2,263.5,262.6,262.1,261.5,253.3,221.8,249.6,248.4,247.8,247,237.2,177.3,174.4 +889,170.8,281.7,281,280.6,280.1,274.2,263.6,262.7,262.2,261.5,253.5,222,249.7,248.6,247.9,247.1,237.3,177.3,174.4 +890,170.8,281.7,281.1,280.7,280.2,274.3,263.6,262.8,262.3,261.6,253.6,222.2,249.9,248.7,248,247.2,237.4,177.3,174.4 +891,170.8,281.8,281.1,280.8,280.2,274.4,263.7,262.9,262.4,261.7,253.7,222.4,250,248.8,248.2,247.3,237.6,177.3,174.4 +892,170.8,281.9,281.2,280.8,280.3,274.5,263.8,263,262.5,261.8,253.8,222.6,250.1,248.9,248.3,247.4,237.7,177.4,174.5 +893,170.9,282,281.3,280.9,280.4,274.6,263.9,263.1,262.6,261.9,253.9,222.8,250.2,249,248.4,247.5,237.8,177.4,174.5 +894,170.9,282.1,281.4,281,280.5,274.6,264,263.1,262.7,262,254,223,250.3,249.1,248.5,247.6,237.9,177.4,174.5 +895,170.9,282.1,281.4,281.1,280.6,274.7,264.1,263.2,262.8,262.1,254.1,223.1,250.4,249.2,248.6,247.7,238.1,177.5,174.5 +896,170.9,282.2,281.5,281.2,280.6,274.8,264.2,263.3,262.9,262.2,254.2,223.3,250.5,249.3,248.7,247.8,238.2,177.5,174.5 +897,170.9,282.3,281.6,281.2,280.7,274.9,264.2,263.4,262.9,262.3,254.3,223.5,250.6,249.4,248.8,247.9,238.3,177.5,174.6 +898,170.9,282.4,281.7,281.3,280.8,275,264.3,263.5,263,262.4,254.4,223.7,250.7,249.5,248.9,248,238.4,177.6,174.6 +899,170.9,282.4,281.8,281.4,280.9,275.1,264.4,263.6,263.1,262.5,254.5,223.9,250.8,249.6,249,248.2,238.5,177.6,174.6 +900,170.9,282.5,281.8,281.5,280.9,275.1,264.5,263.7,263.2,262.5,254.6,224,250.9,249.7,249.1,248.3,238.7,177.6,174.6 +901,170.9,282.6,281.9,281.5,281,275.2,264.6,263.8,263.3,262.6,254.7,224.2,251,249.8,249.2,248.4,238.8,177.6,174.7 +902,170.9,282.7,282,281.6,281.1,275.3,264.7,263.8,263.4,262.7,254.8,224.4,251.1,249.9,249.3,248.5,238.9,177.7,174.7 +903,171,282.7,282.1,281.7,281.2,275.4,264.7,263.9,263.5,262.8,254.9,224.6,251.2,250,249.4,248.6,239,177.7,174.7 +904,171,282.8,282.1,281.8,281.3,275.5,264.8,264,263.6,262.9,255,224.7,251.3,250.1,249.5,248.7,239.1,177.7,174.7 +905,171,282.9,282.2,281.9,281.3,275.6,264.9,264.1,263.6,263,255.1,224.9,251.4,250.2,249.6,248.8,239.3,177.8,174.8 +906,171,283,282.3,281.9,281.4,275.6,265,264.2,263.7,263.1,255.2,225.1,251.5,250.3,249.7,248.9,239.4,177.8,174.8 +907,171,283,282.4,282,281.5,275.7,265.1,264.3,263.8,263.2,255.3,225.2,251.6,250.5,249.9,249,239.5,177.8,174.8 +908,171,283.1,282.4,282.1,281.6,275.8,265.2,264.4,263.9,263.3,255.4,225.4,251.7,250.6,250,249.1,239.6,177.8,174.8 +909,171,283.2,282.5,282.2,281.6,275.9,265.3,264.4,264,263.4,255.5,225.6,251.8,250.7,250.1,249.2,239.7,177.9,174.8 +910,171,283.3,282.6,282.2,281.7,276,265.3,264.5,264.1,263.4,255.6,225.7,251.9,250.8,250.2,249.3,239.9,177.9,174.9 +911,171,283.4,282.7,282.3,281.8,276,265.4,264.6,264.2,263.5,255.7,225.9,252,250.9,250.3,249.4,240,177.9,174.9 +912,171,283.4,282.8,282.4,281.9,276.1,265.5,264.7,264.3,263.6,255.9,226.1,252.1,251,250.4,249.5,240.1,178,174.9 +913,171,283.5,282.8,282.5,282,276.2,265.6,264.8,264.3,263.7,256,226.2,252.2,251.1,250.5,249.6,240.2,178,174.9 +914,171.1,283.6,282.9,282.5,282,276.3,265.7,264.9,264.4,263.8,256.1,226.4,252.3,251.2,250.6,249.7,240.3,178,175 +915,171.1,283.7,283,282.6,282.1,276.4,265.7,265,264.5,263.9,256.2,226.5,252.4,251.3,250.7,249.9,240.5,178.1,175 +916,171.1,283.7,283.1,282.7,282.2,276.4,265.8,265,264.6,264,256.3,226.7,252.5,251.4,250.8,250,240.6,178.1,175 +917,171.1,283.8,283.1,282.8,282.3,276.5,265.9,265.1,264.7,264.1,256.4,226.9,252.6,251.5,250.9,250.1,240.7,178.1,175 +918,171.1,283.9,283.2,282.8,282.3,276.6,266,265.2,264.8,264.1,256.5,227,252.7,251.6,251,250.2,240.8,178.1,175 +919,171.1,284,283.3,282.9,282.4,276.7,266.1,265.3,264.9,264.2,256.6,227.2,252.8,251.7,251.1,250.3,240.9,178.2,175.1 +920,171.1,284,283.4,283,282.5,276.8,266.2,265.4,264.9,264.3,256.7,227.3,253,251.8,251.2,250.4,241,178.2,175.1 +921,171.1,284.1,283.4,283.1,282.6,276.9,266.2,265.5,265,264.4,256.8,227.5,253.1,251.9,251.3,250.5,241.2,178.2,175.1 +922,171.1,284.2,283.5,283.2,282.6,276.9,266.3,265.5,265.1,264.5,256.9,227.6,253.2,252,251.4,250.6,241.3,178.3,175.1 +923,171.1,284.3,283.6,283.2,282.7,277,266.4,265.6,265.2,264.6,257,227.8,253.3,252.1,251.5,250.7,241.4,178.3,175.2 +924,171.2,284.3,283.7,283.3,282.8,277.1,266.5,265.7,265.3,264.7,257.1,227.9,253.4,252.2,251.6,250.8,241.5,178.3,175.2 +925,171.2,284.4,283.7,283.4,282.9,277.2,266.6,265.8,265.4,264.7,257.2,228.1,253.5,252.3,251.7,250.9,241.6,178.3,175.2 +926,171.2,284.5,283.8,283.5,283,277.3,266.6,265.9,265.4,264.8,257.3,228.2,253.6,252.4,251.8,251,241.7,178.4,175.2 +927,171.2,284.6,283.9,283.5,283,277.3,266.7,266,265.5,264.9,257.4,228.4,253.7,252.5,252,251.1,241.9,178.4,175.2 +928,171.2,284.7,284,283.6,283.1,277.4,266.8,266,265.6,265,257.5,228.5,253.8,252.6,252.1,251.2,242,178.4,175.3 +929,171.2,284.7,284.1,283.7,283.2,277.5,266.9,266.1,265.7,265.1,257.6,228.7,253.9,252.8,252.2,251.3,242.1,178.5,175.3 +930,171.2,284.8,284.1,283.8,283.3,277.6,267,266.2,265.8,265.2,257.7,228.8,254,252.9,252.3,251.4,242.2,178.5,175.3 +931,171.2,284.9,284.2,283.8,283.3,277.7,267,266.3,265.9,265.3,257.8,229,254.1,253,252.4,251.5,242.3,178.5,175.3 +932,171.2,285,284.3,283.9,283.4,277.7,267.1,266.4,265.9,265.3,257.9,229.1,254.2,253.1,252.5,251.6,242.4,178.6,175.4 +933,171.2,285,284.4,284,283.5,277.8,267.2,266.4,266,265.4,258,229.3,254.3,253.2,252.6,251.7,242.5,178.6,175.4 +934,171.2,285.1,284.4,284.1,283.6,277.9,267.3,266.5,266.1,265.5,258.1,229.4,254.4,253.3,252.7,251.9,242.7,178.6,175.4 +935,171.3,285.2,284.5,284.1,283.6,278,267.4,266.6,266.2,265.6,258.2,229.6,254.5,253.4,252.8,252,242.8,178.6,175.4 +936,171.3,285.3,284.6,284.2,283.7,278.1,267.4,266.7,266.3,265.7,258.3,229.7,254.6,253.5,252.9,252.1,242.9,178.7,175.4 +937,171.3,285.3,284.7,284.3,283.8,278.1,267.5,266.8,266.4,265.8,258.4,229.9,254.7,253.6,253,252.2,243,178.7,175.5 +938,171.3,285.4,284.7,284.4,283.9,278.2,267.6,266.9,266.4,265.8,258.5,230,254.8,253.7,253.1,252.3,243.1,178.7,175.5 +939,171.3,285.5,284.8,284.5,283.9,278.3,267.7,266.9,266.5,265.9,258.6,230.2,254.9,253.8,253.2,252.4,243.2,178.8,175.5 +940,171.3,285.6,284.9,284.5,284,278.4,267.8,267,266.6,266,258.7,230.3,255,253.9,253.3,252.5,243.3,178.8,175.5 +941,171.3,285.6,285,284.6,284.1,278.5,267.8,267.1,266.7,266.1,258.8,230.5,255.1,254,253.4,252.6,243.4,178.8,175.6 +942,171.3,285.7,285,284.7,284.2,278.5,267.9,267.2,266.8,266.2,258.9,230.6,255.2,254.1,253.5,252.7,243.6,178.9,175.6 +943,171.3,285.8,285.1,284.8,284.2,278.6,268,267.3,266.9,266.3,259,230.7,255.3,254.2,253.6,252.8,243.7,178.9,175.6 +944,171.3,285.9,285.2,284.8,284.3,278.7,268.1,267.3,266.9,266.3,259.1,230.9,255.4,254.3,253.7,252.9,243.8,178.9,175.6 +945,171.4,285.9,285.3,284.9,284.4,278.8,268.2,267.4,267,266.4,259.2,231,255.5,254.4,253.8,253,243.9,178.9,175.6 +946,171.4,286,285.3,285,284.5,278.9,268.2,267.5,267.1,266.5,259.3,231.2,255.6,254.5,253.9,253.1,244,179,175.7 +947,171.4,286.1,285.4,285.1,284.6,278.9,268.3,267.6,267.2,266.6,259.4,231.3,255.7,254.6,254,253.2,244.1,179,175.7 +948,171.4,286.2,285.5,285.1,284.6,279,268.4,267.7,267.3,266.7,259.5,231.5,255.8,254.7,254.1,253.3,244.2,179,175.7 +949,171.4,286.2,285.6,285.2,284.7,279.1,268.5,267.7,267.3,266.8,259.6,231.6,255.9,254.8,254.2,253.4,244.3,179.1,175.7 +950,171.4,286.3,285.6,285.3,284.8,279.2,268.6,267.8,267.4,266.8,259.7,231.7,256,254.9,254.3,253.5,244.5,179.1,175.8 +951,171.4,286.4,285.7,285.4,284.9,279.2,268.6,267.9,267.5,266.9,259.8,231.9,256.1,255,254.4,253.6,244.6,179.1,175.8 +952,171.4,286.5,285.8,285.4,284.9,279.3,268.7,268,267.6,267,259.9,232,256.2,255.1,254.5,253.7,244.7,179.2,175.8 +953,171.4,286.5,285.9,285.5,285,279.4,268.8,268.1,267.7,267.1,260,232.2,256.3,255.2,254.6,253.8,244.8,179.2,175.8 +954,171.4,286.6,286,285.6,285.1,279.5,268.9,268.1,267.7,267.2,260.1,232.3,256.4,255.3,254.7,253.9,244.9,179.2,175.9 +955,171.4,286.7,286,285.7,285.2,279.6,269,268.2,267.8,267.2,260.2,232.4,256.5,255.4,254.8,254,245,179.3,175.9 +956,171.5,286.8,286.1,285.7,285.2,279.6,269,268.3,267.9,267.3,260.3,232.6,256.6,255.5,254.9,254.1,245.1,179.3,175.9 +957,171.5,286.9,286.2,285.8,285.3,279.7,269.1,268.4,268,267.4,260.4,232.7,256.7,255.6,255.1,254.2,245.2,179.3,175.9 +958,171.5,286.9,286.3,285.9,285.4,279.8,269.2,268.5,268.1,267.5,260.5,232.9,256.8,255.7,255.2,254.3,245.3,179.4,175.9 +959,171.5,287,286.3,286,285.5,279.9,269.3,268.5,268.1,267.6,260.6,233,256.9,255.8,255.3,254.4,245.5,179.4,176 +960,171.5,287.1,286.4,286,285.5,280,269.3,268.6,268.2,267.7,260.7,233.1,257,255.9,255.4,254.5,245.6,179.4,176 +961,171.5,287.2,286.5,286.1,285.6,280,269.4,268.7,268.3,267.7,260.8,233.3,257.1,256,255.5,254.7,245.7,179.4,176 +962,171.5,287.2,286.6,286.2,285.7,280.1,269.5,268.8,268.4,267.8,260.9,233.4,257.2,256.1,255.6,254.8,245.8,179.5,176 +963,171.5,287.3,286.6,286.3,285.8,280.2,269.6,268.9,268.5,267.9,261,233.5,257.3,256.2,255.7,254.9,245.9,179.5,176.1 +964,171.5,287.4,286.7,286.4,285.8,280.3,269.7,268.9,268.5,268,261.1,233.7,257.4,256.3,255.8,255,246,179.5,176.1 +965,171.5,287.5,286.8,286.4,285.9,280.4,269.7,269,268.6,268.1,261.2,233.8,257.5,256.4,255.9,255.1,246.1,179.6,176.1 +966,171.5,287.5,286.9,286.5,286,280.4,269.8,269.1,268.7,268.1,261.3,233.9,257.6,256.5,256,255.2,246.2,179.6,176.1 +967,171.6,287.6,286.9,286.6,286.1,280.5,269.9,269.2,268.8,268.2,261.4,234.1,257.7,256.6,256.1,255.3,246.3,179.6,176.1 +968,171.6,287.7,287,286.7,286.1,280.6,270,269.3,268.9,268.3,261.5,234.2,257.8,256.7,256.2,255.4,246.4,179.7,176.2 +969,171.6,287.8,287.1,286.7,286.2,280.7,270.1,269.3,268.9,268.4,261.6,234.4,257.9,256.8,256.3,255.5,246.6,179.7,176.2 +970,171.6,287.8,287.2,286.8,286.3,280.7,270.1,269.4,269,268.5,261.7,234.5,258,256.9,256.4,255.6,246.7,179.7,176.2 +971,171.6,287.9,287.2,286.9,286.4,280.8,270.2,269.5,269.1,268.5,261.8,234.6,258.1,257,256.5,255.7,246.8,179.8,176.2 +972,171.6,288,287.3,287,286.5,280.9,270.3,269.6,269.2,268.6,261.8,234.8,258.2,257.1,256.6,255.8,246.9,179.8,176.3 +973,171.6,288.1,287.4,287,286.5,281,270.4,269.7,269.3,268.7,261.9,234.9,258.3,257.2,256.7,255.9,247,181.4,176.3 +974,171.6,288.1,287.5,287.1,286.6,281.1,270.5,269.7,269.3,268.8,262,235,258.4,257.3,256.8,256,247.1,191.1,176.3 +975,171.6,288.2,287.5,287.2,286.7,281.1,270.5,269.8,269.4,268.9,262.1,235.2,258.5,257.4,256.9,256.1,247.2,195,176.3 +976,171.6,288.3,287.6,287.3,286.8,281.2,270.6,269.9,269.5,268.9,262.2,235.3,258.5,257.5,257,256.2,247.3,195.2,176.3 +977,171.6,288.4,287.7,287.3,286.8,281.3,270.7,270,269.6,269,262.3,235.4,258.6,257.6,257.1,256.3,247.4,195.3,176.4 +978,171.7,288.4,287.8,287.4,286.9,281.4,270.8,270.1,269.7,269.1,262.4,235.6,258.7,257.7,257.2,256.4,247.5,195.5,176.4 +979,171.7,288.5,287.8,287.5,287,281.4,270.9,270.1,269.7,269.2,262.5,235.7,258.8,257.8,257.3,256.5,247.7,195.7,176.4 +980,171.7,288.6,287.9,287.6,287.1,281.5,270.9,270.2,269.8,269.3,262.6,235.8,258.9,257.9,257.4,256.6,247.8,195.8,176.4 +981,171.7,288.7,288,287.6,287.1,281.6,271,270.3,269.9,269.3,262.7,236,259,258,257.5,256.7,247.9,196,176.4 +982,171.7,288.7,288.1,287.7,287.2,281.7,271.1,270.4,270,269.4,262.8,236.1,259.1,258.1,257.6,256.8,248,196.2,176.5 +983,171.7,288.8,288.1,287.8,287.3,281.8,271.2,270.5,270.1,269.5,262.9,236.2,259.2,258.2,257.7,256.9,248.1,196.3,176.5 +984,171.7,288.9,288.2,287.9,287.4,281.8,271.3,270.5,270.1,269.6,263,236.3,259.3,258.3,257.8,257,248.2,196.5,176.5 +985,171.7,289,288.3,287.9,287.4,281.9,271.3,270.6,270.2,269.7,263.1,236.5,259.4,258.4,257.9,257.1,248.3,196.7,176.5 +986,171.7,289,288.4,288,287.5,282,271.4,270.7,270.3,269.7,263.2,236.6,259.5,258.5,258,257.2,248.4,198.9,176.6 +987,171.7,289.1,288.4,288.1,287.6,282.1,271.5,270.8,270.4,269.8,263.3,236.7,259.6,258.6,258.1,257.3,248.5,200,176.6 +988,171.7,289.2,288.5,288.2,287.7,282.1,271.6,270.9,270.5,269.9,263.4,236.9,259.7,258.7,258.2,257.4,248.6,201,176.6 +989,171.7,289.3,288.6,288.2,287.7,282.2,271.7,270.9,270.5,270,263.5,237,259.8,258.8,258.3,257.5,248.7,201.9,176.6 +990,171.8,289.3,288.7,288.3,287.8,282.3,271.7,271,270.6,270.1,263.5,237.1,259.9,258.9,258.4,257.6,248.8,202.8,176.6 +991,171.8,289.4,288.7,288.4,287.9,282.4,271.8,271.1,270.7,270.1,263.6,237.3,260,259,258.5,257.7,249,203.6,176.7 +992,171.8,289.5,288.8,288.5,288,282.5,271.9,271.2,270.8,270.2,263.7,237.4,260.1,259.1,258.6,257.8,249.1,204.3,176.7 +993,171.8,289.6,288.9,288.5,288,282.5,272,271.3,270.9,270.3,263.8,237.5,260.2,259.2,258.7,257.9,249.2,205,176.7 +994,171.8,289.6,289,288.6,288.1,282.6,272.1,271.3,270.9,270.4,263.9,237.6,260.3,259.3,258.8,258,249.3,205.7,176.7 +995,171.8,289.7,289,288.7,288.2,282.7,272.2,271.4,271,270.5,264,237.8,260.4,259.4,258.9,258.1,249.4,206.4,176.8 +996,171.8,289.8,289.1,288.8,288.3,282.8,272.2,271.5,271.1,270.5,264.1,237.9,260.5,259.5,258.9,258.2,249.5,207,176.8 +997,171.8,289.9,289.2,288.8,288.3,282.8,272.3,271.6,271.2,270.6,264.2,238,260.6,259.6,259,258.3,249.6,207.6,176.8 +998,171.8,289.9,289.3,288.9,288.4,282.9,272.4,271.7,271.3,270.7,264.3,238.2,260.6,259.7,259.1,258.4,249.7,208.1,176.8 +999,171.8,290,289.3,289,288.5,283,272.5,271.7,271.3,270.8,264.4,238.3,260.7,259.8,259.2,258.5,249.8,208.7,176.8 +1000,171.8,290.1,289.4,289.1,288.6,283.1,272.6,271.8,271.4,270.9,264.5,238.4,260.8,259.9,259.3,258.6,249.9,209.2,176.9 diff --git a/test/data/P528Test_001.csv b/test/data/P528Test_001.csv new file mode 100644 index 0000000..05ed88d --- /dev/null +++ b/test/data/P528Test_001.csv @@ -0,0 +1,203 @@ +d__km,h_1__meter,h_2__meter,f__mhz,T_pol,p,rtn,propagation_mode,warnings,d__km,A__db,A_fs__db,A_a__db,theta_h1__rad +600.0,10.0,20000.0,3000.0,1,50.0,0,3,0,600.0,189.11195445017134,157.56081810327066,2.2077361083354972,-0.0014752519346306059 +0,15.0,15000.0,450.0,0,10.0,0,1,0,0.0,105.659494672113,109.027385221140,0.020349528794,1.570796326795 +9,15.0,15000.0,450.0,0,10.0,0,1,0,9.0,106.488759195344,110.026583289306,0.024104685551,1.004681234295 +18,15.0,15000.0,450.0,0,10.0,0,1,0,18.0,108.801669367062,112.604404675361,0.033652499475,0.648519118337 +27,15.0,15000.0,450.0,0,10.0,0,1,0,27.0,111.135558539318,115.110421399121,0.045664986599,0.460555578611 +36,15.0,15000.0,450.0,0,10.0,0,1,0,36.0,113.141004708388,117.205902392602,0.058583739295,0.352981862866 +45,15.0,15000.0,450.0,0,10.0,0,1,0,45.0,114.830053226552,118.948104011665,0.071900175930,0.284726369709 +54,15.0,15000.0,450.0,0,10.0,0,1,0,54.0,116.271636521937,120.422666788371,0.085426056043,0.237857098144 +63,15.0,15000.0,450.0,0,10.0,0,1,0,63.0,117.523372041482,121.694984803189,0.099080657915,0.203742340703 +72,15.0,15000.0,450.0,0,10.0,0,1,0,72.0,118.627224575885,122.811338410534,0.112825548198,0.177798370287 +81,15.0,15000.0,450.0,0,10.0,0,1,0,81.0,119.606963403152,123.804306425493,0.126637138886,0.157392771137 +90,15.0,15000.0,450.0,0,10.0,0,1,0,90.0,120.477897587672,124.697928302150,0.140507682921,0.140901445890 +99,15.0,15000.0,450.0,0,10.0,0,1,0,99.0,121.266775818164,125.509752585795,0.154429676125,0.127280643133 +108,15.0,15000.0,450.0,0,10.0,0,1,0,108.0,121.988666973139,126.253432480391,0.168404855528,0.115821617523 +117,15.0,15000.0,450.0,0,10.0,0,1,0,117.0,122.654529676464,126.939071800784,0.182427114838,0.106036943983 +126,15.0,15000.0,450.0,0,10.0,0,1,0,126.0,123.279537238849,127.575250134532,0.196504976516,0.097567794883 +135,15.0,15000.0,450.0,0,10.0,0,1,0,135.0,123.865186514915,128.168435564895,0.210638356249,0.090155522703 +144,15.0,15000.0,450.0,0,10.0,0,1,0,144.0,124.413962386000,128.723968282886,0.224829690830,0.083604276702 +153,15.0,15000.0,450.0,0,10.0,0,1,0,153.0,124.933003626253,129.246383263218,0.239085716701,0.077762311411 +162,15.0,15000.0,450.0,0,10.0,0,1,0,162.0,125.422630198230,129.739380886217,0.253411501961,0.072512267837 +171,15.0,15000.0,450.0,0,10.0,0,1,0,171.0,125.885865839292,130.206061351430,0.267812075663,0.067761454735 +180,15.0,15000.0,450.0,0,10.0,0,1,0,180.0,126.325230147753,130.649027851758,0.282291787581,0.063435868126 +189,15.0,15000.0,450.0,0,10.0,0,1,0,189.0,126.743842540879,131.070647017962,0.296860080677,0.059474210110 +198,15.0,15000.0,450.0,0,10.0,0,1,0,198.0,127.142757094573,131.472871694331,0.311523602509,0.055827142240 +207,15.0,15000.0,450.0,0,10.0,0,1,0,207.0,127.523271573414,131.857261218940,0.326283876728,0.052455043335 +216,15.0,15000.0,450.0,0,10.0,0,1,0,216.0,127.886720955507,132.225506600694,0.341155876918,0.049322026356 +225,15.0,15000.0,450.0,0,10.0,0,1,0,225.0,128.233699497982,132.578801566019,0.356142674147,0.046400427307 +234,15.0,15000.0,450.0,0,10.0,0,1,0,234.0,128.564322813013,132.918351121204,0.371254087742,0.043665569542 +243,15.0,15000.0,450.0,0,10.0,0,1,0,243.0,128.871614479781,133.245119848774,0.386495290167,0.041097260520 +252,15.0,15000.0,450.0,0,10.0,0,1,0,252.0,129.156563530292,133.560048512051,0.401875489033,0.038677547499 +261,15.0,15000.0,450.0,0,10.0,0,1,0,261.0,129.409461605305,133.864062014602,0.417408495376,0.036390343182 +270,15.0,15000.0,450.0,0,10.0,0,1,0,270.0,129.600449321637,134.157777710839,0.433097050910,0.034223297320 +279,15.0,15000.0,450.0,0,10.0,0,1,0,279.0,129.656676020898,134.441917962417,0.448953094252,0.032164428314 +288,15.0,15000.0,450.0,0,10.0,0,1,0,288.0,129.519948150944,134.717033284391,0.464982874162,0.030203994488 +297,15.0,15000.0,450.0,0,10.0,0,1,0,297.0,129.882512981635,134.983738568354,0.481199793110,0.028332621558 +306,15.0,15000.0,450.0,0,10.0,0,1,0,306.0,130.383640944073,135.242539116589,0.497614279054,0.026542425134 +315,15.0,15000.0,450.0,0,10.0,0,1,0,315.0,130.794438613670,135.493864871968,0.514234955904,0.024826635483 +324,15.0,15000.0,450.0,0,10.0,0,1,0,324.0,131.138199817570,135.738110893502,0.531070721994,0.023179221539 +333,15.0,15000.0,450.0,0,10.0,0,1,0,333.0,131.392644891785,135.975683191611,0.548133856243,0.021594513780 +342,15.0,15000.0,450.0,0,10.0,0,1,0,342.0,131.685733154771,136.206934861343,0.565435558717,0.020067576103 +351,15.0,15000.0,450.0,0,10.0,0,1,0,351.0,132.021206272131,136.432214843937,0.582989282065,0.018593826622 +360,15.0,15000.0,450.0,0,10.0,0,1,0,360.0,132.342814466154,136.651804642009,0.600805684568,0.017169407390 +369,15.0,15000.0,450.0,0,10.0,0,1,0,369.0,132.652330486895,136.865970323859,0.618896251441,0.015790801225 +378,15.0,15000.0,450.0,0,10.0,0,1,0,378.0,132.951022893645,137.074959620726,0.637272992096,0.014454820085 +387,15.0,15000.0,450.0,0,10.0,0,1,0,387.0,133.239924852034,137.279059895533,0.655953752826,0.013158210967 +396,15.0,15000.0,450.0,0,10.0,0,1,0,396.0,133.519844444130,137.478510535234,0.674954694602,0.011898194147 +405,15.0,15000.0,450.0,0,10.0,0,1,0,405.0,133.791394862851,137.673474551187,0.694286795558,0.010672614292 +414,15.0,15000.0,450.0,0,10.0,0,1,0,414.0,134.055138949308,137.864134794281,0.713964690578,0.009479313482 +423,15.0,15000.0,450.0,0,10.0,0,1,0,423.0,134.311663178507,138.050739608500,0.734012288978,0.008315837197 +432,15.0,15000.0,450.0,0,10.0,0,1,0,432.0,134.561345426768,138.233383949387,0.754439509016,0.007180787053 +441,15.0,15000.0,450.0,0,10.0,0,1,0,441.0,134.804691871085,138.412298698407,0.775273425076,0.006072005336 +450,15.0,15000.0,450.0,0,10.0,0,1,0,450.0,135.042055415079,138.587594209188,0.796529916152,0.004988160747 +459,15.0,15000.0,450.0,0,10.0,0,1,0,459.0,135.273809761426,138.759406768747,0.818229615896,0.003927828903 +468,15.0,15000.0,450.0,0,10.0,0,1,0,468.0,135.500375872840,138.927909747669,0.840399372542,0.002889418459 +477,15.0,15000.0,450.0,0,10.0,0,1,0,477.0,135.722092405472,139.093174204214,0.863049924089,0.001872023574 +486,15.0,15000.0,450.0,0,10.0,0,1,0,486.0,135.939570868789,139.255377943686,0.886171658484,0.000874129959 +495,15.0,15000.0,450.0,0,10.0,0,1,0,495.0,137.199319920418,139.414605604770,0.916049707140,-0.000105158983 +504,15.0,15000.0,450.0,0,10.0,0,1,0,504.0,140.281785949190,139.570962826788,0.932825026821,-0.001066829707 +513,15.0,15000.0,450.0,0,10.0,0,2,0,513.0,144.193168567113,139.721338133089,0.957200300783,-0.001805753464 +522,15.0,15000.0,450.0,0,10.0,0,2,0,522.0,150.371986211606,139.868386419062,0.980626787783,-0.001805753464 +531,15.0,15000.0,450.0,0,10.0,0,3,0,531.0,155.895067866431,140.016123398629,1.004562628856,-0.001805753464 +540,15.0,15000.0,450.0,0,10.0,0,3,0,540.0,158.416221842395,140.161895984896,1.028576934330,-0.001805753464 +549,15.0,15000.0,450.0,0,10.0,0,3,0,549.0,160.417159202551,140.305304815475,1.052590169194,-0.001805753464 +558,15.0,15000.0,450.0,0,10.0,0,3,0,558.0,161.381644919253,140.446438363671,1.076601924427,-0.001805753464 +567,15.0,15000.0,450.0,0,10.0,0,3,0,567.0,162.196064861307,140.585361265979,1.100608388345,-0.001805753464 +576,15.0,15000.0,450.0,0,10.0,0,3,0,576.0,163.033923585489,140.721991670241,1.124580284499,-0.001805753464 +585,15.0,15000.0,450.0,0,10.0,0,3,0,585.0,163.939272350241,140.856565311688,1.148544392409,-0.001805753464 +594,15.0,15000.0,450.0,0,10.0,0,3,0,594.0,164.931255867120,140.989000271650,1.172471836872,-0.001805753464 +603,15.0,15000.0,450.0,0,10.0,0,3,0,603.0,166.011563982297,141.119456723516,1.196377558014,-0.001805753464 +612,15.0,15000.0,450.0,0,10.0,0,3,0,612.0,167.169528131378,141.247920605188,1.220245266228,-0.001805753464 +621,15.0,15000.0,450.0,0,10.0,0,3,0,621.0,168.387424736589,141.374490889286,1.244079926454,-0.001805753464 +630,15.0,15000.0,450.0,0,10.0,0,3,0,630.0,169.644577840999,141.499210336706,1.267876519141,-0.001805753464 +639,15.0,15000.0,450.0,0,10.0,0,3,0,639.0,170.920849488838,141.622122012763,1.291630377773,-0.001805753464 +648,15.0,15000.0,450.0,0,10.0,0,3,0,648.0,172.198999067938,141.743268798179,1.315337098737,-0.001805753464 +657,15.0,15000.0,450.0,0,10.0,0,3,0,657.0,173.465935852939,141.862693040777,1.338992471136,-0.001805753464 +666,15.0,15000.0,450.0,0,10.0,0,3,0,666.0,174.713045045431,141.980484696694,1.362602333721,-0.001805753464 +675,15.0,15000.0,450.0,0,10.0,0,3,0,675.0,175.935546255641,142.096634733307,1.386152797822,-0.001805753464 +684,15.0,15000.0,450.0,0,10.0,0,3,0,684.0,177.131784299247,142.211183128670,1.409640019041,-0.001805753464 +693,15.0,15000.0,450.0,0,10.0,0,3,0,693.0,178.302212521162,142.324215028567,1.433070054747,-0.001805753464 +702,15.0,15000.0,450.0,0,10.0,0,3,0,702.0,179.448365441064,142.435766431922,1.456439127110,-0.001805753464 +711,15.0,15000.0,450.0,0,10.0,0,3,0,711.0,180.572177107317,142.545827657900,1.479733705500,-0.001805753464 +720,15.0,15000.0,450.0,0,10.0,0,3,0,720.0,181.675671000175,142.654434775300,1.502950118602,-0.001805753464 +729,15.0,15000.0,450.0,0,10.0,0,3,0,729.0,182.760819975347,142.761710299740,1.526104304496,-0.001805753464 +738,15.0,15000.0,450.0,0,10.0,0,3,0,738.0,183.829191968358,142.867598683328,1.549172991356,-0.001805753464 +747,15.0,15000.0,450.0,0,10.0,0,3,0,747.0,184.882325486696,142.972133186326,1.572152527165,-0.001805753464 +756,15.0,15000.0,450.0,0,10.0,0,3,0,756.0,185.921789694112,143.075430307471,1.595058804675,-0.001805753464 +765,15.0,15000.0,450.0,0,10.0,0,3,0,765.0,186.948912642804,143.177435238173,1.617868561699,-0.001805753464 +774,15.0,15000.0,450.0,0,10.0,0,3,0,774.0,187.965149870477,143.278219670027,1.640587859131,-0.001805753464 +783,15.0,15000.0,450.0,0,10.0,0,3,0,783.0,188.971842795741,143.377811902663,1.663212943632,-0.001805753464 +792,15.0,15000.0,450.0,0,10.0,0,3,0,792.0,189.970168532657,143.476199411534,1.685730277242,-0.001805753464 +801,15.0,15000.0,450.0,0,10.0,0,3,0,801.0,190.961283600672,143.573489634770,1.708155538408,-0.001805753464 +810,15.0,15000.0,450.0,0,10.0,0,3,0,810.0,191.945928826131,143.669628962068,1.730465353509,-0.001805753464 +819,15.0,15000.0,450.0,0,10.0,0,3,0,819.0,192.924749786700,143.764682823173,1.752665538938,-0.001805753464 +828,15.0,15000.0,450.0,0,10.0,0,3,0,828.0,193.898041843899,143.858637604853,1.774742366760,-0.001805753464 +837,15.0,15000.0,450.0,0,10.0,0,3,0,837.0,194.866001696410,143.951594437398,1.796711282427,-0.001805753464 +846,15.0,15000.0,450.0,0,10.0,0,3,0,846.0,195.828459020988,144.043537920677,1.818558408314,-0.001805753464 +855,15.0,15000.0,450.0,0,10.0,0,3,0,855.0,196.785051912794,144.134453814344,1.840269838246,-0.001805753464 +864,15.0,15000.0,450.0,0,10.0,0,3,0,864.0,197.735350302533,144.224402127678,1.861851034487,-0.001805753464 +873,15.0,15000.0,450.0,0,10.0,0,3,0,873.0,198.678744284464,144.313404452653,1.883297658301,-0.001805753464 +882,15.0,15000.0,450.0,0,10.0,0,3,0,882.0,199.614519222220,144.401481800506,1.904605285481,-0.001805753464 +891,15.0,15000.0,450.0,0,10.0,0,3,0,891.0,200.541880026112,144.488654621533,1.925769404496,-0.001805753464 +900,15.0,15000.0,450.0,0,10.0,0,3,0,900.0,201.459972271503,144.574942819718,1.946785413870,-0.001805753464 +909,15.0,15000.0,450.0,0,10.0,0,3,0,909.0,202.367856230325,144.660330885833,1.967638895450,-0.001805753464 +918,15.0,15000.0,450.0,0,10.0,0,3,0,918.0,203.264702923285,144.744907862671,1.988344536294,-0.001805753464 +927,15.0,15000.0,450.0,0,10.0,0,3,0,927.0,204.149498260729,144.828622603696,2.008877989637,-0.001805753464 +936,15.0,15000.0,450.0,0,10.0,0,3,0,936.0,205.021417507737,144.911561823214,2.029253758380,-0.001805753464 +945,15.0,15000.0,450.0,0,10.0,0,3,0,945.0,205.879494207243,144.993674777026,2.049447319690,-0.001805753464 +954,15.0,15000.0,450.0,0,10.0,0,3,0,954.0,206.722955908690,145.075012616646,2.069463246202,-0.001805753464 +963,15.0,15000.0,450.0,0,10.0,0,3,0,963.0,207.551086031208,145.155591831259,2.089296295347,-0.001805753464 +972,15.0,15000.0,450.0,0,10.0,0,3,0,972.0,208.363317232074,145.235428467279,2.108941134992,-0.001805753464 +981,15.0,15000.0,450.0,0,10.0,0,3,0,981.0,209.159295309263,145.314538137114,2.128392345916,-0.001805753464 +990,15.0,15000.0,450.0,0,10.0,0,3,0,990.0,209.938958111400,145.392936031618,2.147644426334,-0.001805753464 +999,15.0,15000.0,450.0,0,10.0,0,3,0,999.0,210.702626395815,145.470636930039,2.166691796680,-0.001805753464 +1008,15.0,15000.0,450.0,0,10.0,0,3,0,1008.0,211.451097906545,145.547655210168,2.185528805490,-0.001805753464 +1017,15.0,15000.0,450.0,0,10.0,0,3,0,1017.0,212.185728375038,145.624004857782,2.204149736149,-0.001805753464 +1026,15.0,15000.0,450.0,0,10.0,0,3,0,1026.0,212.908434407286,145.699668595676,2.222539112975,-0.001805753464 +1035,15.0,15000.0,450.0,0,10.0,0,3,0,1035.0,213.621831710141,145.774721748559,2.240710538995,-0.001805753464 +1044,15.0,15000.0,450.0,0,10.0,0,3,0,1044.0,214.328828267582,145.849115607375,2.258638728285,-0.001805753464 +1053,15.0,15000.0,450.0,0,10.0,0,3,0,1053.0,215.032710471578,145.922923754121,2.276337230855,-0.001805753464 +1062,15.0,15000.0,450.0,0,10.0,0,3,0,1062.0,215.736475621565,145.996097816394,2.293780717246,-0.001805753464 +1071,15.0,15000.0,450.0,0,10.0,0,3,0,1071.0,216.442705432726,146.068679996500,2.310972997090,-0.001805753464 +1080,15.0,15000.0,450.0,0,10.0,0,3,0,1080.0,217.153062939014,146.140711237779,2.327917917175,-0.001805753464 +1089,15.0,15000.0,450.0,0,10.0,0,3,0,1089.0,217.867929876083,146.212143643416,2.344590177432,-0.001805753464 +1098,15.0,15000.0,450.0,0,10.0,0,3,0,1098.0,218.586633389116,146.283017719364,2.360993685048,-0.001805753464 +1107,15.0,15000.0,450.0,0,10.0,0,3,0,1107.0,219.307557032579,146.353344027646,2.377122696800,-0.001805753464 +1116,15.0,15000.0,450.0,0,10.0,0,3,0,1116.0,220.028663239111,146.423132830239,2.392971552436,-0.001805753464 +1125,15.0,15000.0,450.0,0,10.0,0,3,0,1125.0,220.748065731700,146.492422341235,2.408544414891,-0.001805753464 +1134,15.0,15000.0,450.0,0,10.0,0,3,0,1134.0,221.464267032223,146.561165542799,2.423816414484,-0.001805753464 +1143,15.0,15000.0,450.0,0,10.0,0,3,0,1143.0,222.176513506842,146.629400303148,2.438791981803,-0.001805753464 +1152,15.0,15000.0,450.0,0,10.0,0,3,0,1152.0,222.884535351764,146.697135762928,2.453466001093,-0.001805753464 +1161,15.0,15000.0,450.0,0,10.0,0,3,0,1161.0,223.588340935778,146.764353440635,2.467823835178,-0.001805753464 +1170,15.0,15000.0,450.0,0,10.0,0,3,0,1170.0,224.288188246810,146.831116901678,2.481880212074,-0.001805753464 +1179,15.0,15000.0,450.0,0,10.0,0,3,0,1179.0,224.984263281046,146.897406935671,2.495620948456,-0.001805753464 +1188,15.0,15000.0,450.0,0,10.0,0,3,0,1188.0,225.676791672333,146.963231673547,2.509041845238,-0.001805753464 +1197,15.0,15000.0,450.0,0,10.0,0,3,0,1197.0,226.365992294442,147.028599009972,2.522138993464,-0.001805753464 +1206,15.0,15000.0,450.0,0,10.0,0,3,0,1206.0,227.052076558644,147.093516610500,2.534908798964,-0.001805753464 +1215,15.0,15000.0,450.0,0,10.0,0,3,0,1215.0,227.735213371954,147.157965802417,2.547338304808,-0.001805753464 +1224,15.0,15000.0,450.0,0,10.0,0,3,0,1224.0,228.415673418651,147.222006276124,2.559444036762,-0.001805753464 +1233,15.0,15000.0,450.0,0,10.0,0,3,0,1233.0,229.093614086975,147.285618699056,2.571213770882,-0.001805753464 +1242,15.0,15000.0,450.0,0,10.0,0,3,0,1242.0,229.769188639068,147.348784340478,2.582635706716,-0.001805753464 +1251,15.0,15000.0,450.0,0,10.0,0,3,0,1251.0,230.442651623003,147.411561130497,2.593727586326,-0.001805753464 +1260,15.0,15000.0,450.0,0,10.0,0,3,0,1260.0,231.114111923759,147.473904516629,2.604468757617,-0.001805753464 +1269,15.0,15000.0,450.0,0,10.0,0,3,0,1269.0,231.783814428508,147.535871356464,2.614877887231,-0.001805753464 +1278,15.0,15000.0,450.0,0,10.0,0,3,0,1278.0,232.451859840587,147.597417424743,2.624935252430,-0.001805753464 +1287,15.0,15000.0,450.0,0,10.0,0,3,0,1287.0,233.118483529277,147.658598519025,2.634660493643,-0.001805753464 +1296,15.0,15000.0,450.0,0,10.0,0,3,0,1296.0,233.783778090110,147.719370770994,2.644034879424,-0.001805753464 +1305,15.0,15000.0,450.0,0,10.0,0,3,0,1305.0,234.447969367629,147.779788932128,2.653079055815,-0.001805753464 +1314,15.0,15000.0,450.0,0,10.0,0,3,0,1314.0,235.111141877565,147.839809518871,2.661775324709,-0.001805753464 +1323,15.0,15000.0,450.0,0,10.0,0,3,0,1323.0,235.773511962661,147.899486250044,2.670145348650,-0.001805753464 +1332,15.0,15000.0,450.0,0,10.0,0,3,0,1332.0,236.435156161094,147.958776053096,2.678172482669,-0.001805753464 +1341,15.0,15000.0,450.0,0,10.0,0,3,0,1341.0,237.096248092499,148.017707980123,2.685869697217,-0.001805753464 +1350,15.0,15000.0,450.0,0,10.0,0,3,0,1350.0,237.756956557941,148.076310336612,2.693250486512,-0.001805753464 +1359,15.0,15000.0,450.0,0,10.0,0,3,0,1359.0,238.417346378158,148.134540591005,2.700299720232,-0.001805753464 +1368,15.0,15000.0,450.0,0,10.0,0,3,0,1368.0,239.077578224191,148.192426900796,2.707031858893,-0.001805753464 +1377,15.0,15000.0,450.0,0,10.0,0,3,0,1377.0,239.737770356291,148.249974176484,2.713446529511,-0.001805753464 +1386,15.0,15000.0,450.0,0,10.0,0,3,0,1386.0,240.397997685234,148.307217510333,2.719474050763,-0.001805753464 +1395,15.0,15000.0,450.0,0,10.0,0,3,0,1395.0,241.058299175463,148.364115867710,2.725089031140,-0.001805753464 +1404,15.0,15000.0,450.0,0,10.0,0,3,0,1404.0,241.718830457635,148.420694829106,2.730320121272,-0.001805753464 +1413,15.0,15000.0,450.0,0,10.0,0,3,0,1413.0,242.379710486981,148.476956967668,2.735186173512,-0.001805753464 +1422,15.0,15000.0,450.0,0,10.0,0,3,0,1422.0,243.041051499476,148.532905159901,2.739702764410,-0.001805753464 +1431,15.0,15000.0,450.0,0,10.0,0,3,0,1431.0,243.702967657097,148.588541712897,2.743891589149,-0.001805753464 +1440,15.0,15000.0,450.0,0,10.0,0,3,0,1440.0,244.365566542077,148.643869221152,2.747770975704,-0.001805753464 +1449,15.0,15000.0,450.0,0,10.0,0,3,0,1449.0,245.028983320081,148.698912208519,2.751368283962,-0.001805753464 +1458,15.0,15000.0,450.0,0,10.0,0,3,0,1458.0,245.693254497226,148.753629377843,2.754681292778,-0.001805753464 +1467,15.0,15000.0,450.0,0,10.0,0,3,0,1467.0,246.358508005446,148.808045380040,2.757736398302,-0.001805753464 +1476,15.0,15000.0,450.0,0,10.0,0,3,0,1476.0,247.024836467234,148.862162830766,2.760549746869,-0.001805753464 +1485,15.0,15000.0,450.0,0,10.0,0,3,0,1485.0,247.692329005856,148.915984335376,2.763136908198,-0.001805753464 +1494,15.0,15000.0,450.0,0,10.0,0,3,0,1494.0,248.361071324018,148.969512484962,2.765512849348,-0.001805753464 +1503,15.0,15000.0,450.0,0,10.0,0,3,0,1503.0,249.031145787928,149.022749854052,2.767691915988,-0.001805753464 +1512,15.0,15000.0,450.0,0,10.0,0,3,0,1512.0,249.702631513277,149.075698997988,2.769687819614,-0.001805753464 +1521,15.0,15000.0,450.0,0,10.0,0,3,0,1521.0,250.375604453579,149.128362450674,2.771513630543,-0.001805753464 +1530,15.0,15000.0,450.0,0,10.0,0,3,0,1530.0,251.050107073489,149.180722011619,2.773172070397,-0.001805753464 +1539,15.0,15000.0,450.0,0,10.0,0,3,0,1539.0,251.726270244401,149.232821720809,2.774694342867,-0.001805753464 +1548,15.0,15000.0,450.0,0,10.0,0,3,0,1548.0,252.404130423779,149.284643193148,2.776081892410,-0.001805753464 +1557,15.0,15000.0,450.0,0,10.0,0,3,0,1557.0,253.083751825679,149.336188859582,2.777345251181,-0.001805753464 +1566,15.0,15000.0,450.0,0,10.0,0,3,0,1566.0,253.765194821091,149.387461226138,2.778493101500,-0.001805753464 +1575,15.0,15000.0,450.0,0,10.0,0,3,0,1575.0,254.448517281511,149.438462751067,2.779533666983,-0.001805753464 +1584,15.0,15000.0,450.0,0,10.0,0,3,0,1584.0,255.133777381737,149.489195610595,2.780477677721,-0.001805753464 +1593,15.0,15000.0,450.0,0,10.0,0,3,0,1593.0,255.821029049907,149.539662112412,2.781333338249,-0.001805753464 +1602,15.0,15000.0,450.0,0,10.0,0,3,0,1602.0,256.510294418729,149.589844785108,2.782098623945,-0.001805753464 +1611,15.0,15000.0,450.0,0,10.0,0,3,0,1611.0,257.201681836173,149.639785499097,2.782800108420,-0.001805753464 +1620,15.0,15000.0,450.0,0,10.0,0,3,0,1620.0,257.895205495642,149.689466878704,2.783431122126,-0.001805753464 +1629,15.0,15000.0,450.0,0,10.0,0,3,0,1629.0,258.590911896741,149.738890964300,2.783999494264,-0.001805753464 +1638,15.0,15000.0,450.0,0,10.0,0,3,0,1638.0,259.288816549846,149.788040455006,2.784502960531,-0.001805753464 +1647,15.0,15000.0,450.0,0,10.0,0,3,0,1647.0,259.989018685927,149.836956216419,2.784966313558,-0.001805753464 +1656,15.0,15000.0,450.0,0,10.0,0,3,0,1656.0,260.691524332348,149.885621261419,2.785380448598,-0.001805753464 +1665,15.0,15000.0,450.0,0,10.0,0,3,0,1665.0,261.396370538441,149.934037732256,2.785749559869,-0.001805753464 +1674,15.0,15000.0,450.0,0,10.0,0,3,0,1674.0,262.103567393261,149.982188478580,2.786071535230,-0.001805753464 +1683,15.0,15000.0,450.0,0,10.0,0,3,0,1683.0,262.813205387402,150.030113407391,2.786368924912,-0.001805753464 +1692,15.0,15000.0,450.0,0,10.0,0,3,0,1692.0,263.525283104130,150.077795868662,2.786630205718,-0.001805753464 +1701,15.0,15000.0,450.0,0,10.0,0,3,0,1701.0,264.239809218475,150.125218668185,2.786855727646,-0.001805753464 +1710,15.0,15000.0,450.0,0,10.0,0,3,0,1710.0,264.956868836654,150.172421018751,2.787067064100,-0.001805753464 +1719,15.0,15000.0,450.0,0,10.0,0,3,0,1719.0,265.676455516960,150.219386549727,2.787250986640,-0.001805753464 +1728,15.0,15000.0,450.0,0,10.0,0,3,0,1728.0,266.398574652943,150.266098232090,2.787407887949,-0.001805753464 +1737,15.0,15000.0,450.0,0,10.0,0,3,0,1737.0,267.123304028765,150.312594788760,2.787555892946,-0.001805753464 +1746,15.0,15000.0,450.0,0,10.0,0,3,0,1746.0,267.850637557585,150.358859732036,2.787685527031,-0.001805753464 +1755,15.0,15000.0,450.0,0,10.0,0,3,0,1755.0,268.580575492212,150.404876391485,2.787794867229,-0.001805753464 +1764,15.0,15000.0,450.0,0,10.0,0,3,0,1764.0,269.313186270988,150.450683203146,2.787896068296,-0.001805753464 +1773,15.0,15000.0,450.0,0,10.0,0,3,0,1773.0,270.048442086242,150.496245382285,2.787979228791,-0.001805753464 +1782,15.0,15000.0,450.0,0,10.0,0,3,0,1782.0,270.786413013838,150.541600613434,2.788060801833,-0.001805753464 +1791,15.0,15000.0,450.0,0,10.0,0,3,0,1791.0,271.527062640236,150.586714962891,2.788123281746,-0.001805753464 +1800,15.0,15000.0,450.0,0,10.0,0,3,0,1800.0,272.270464370090,150.631625250884,2.788189112331,-0.001805753464 diff --git a/test/lib/.git-keep b/test/lib/.git-keep new file mode 100644 index 0000000..e69de29 diff --git a/test/lib/googletest b/test/lib/googletest new file mode 160000 index 0000000..ff233bd --- /dev/null +++ b/test/lib/googletest @@ -0,0 +1 @@ +Subproject commit ff233bdd4cac0a0bf6e5cd45bda3406814cb2796 diff --git a/test/src/P528GTest.h b/test/src/P528GTest.h new file mode 100644 index 0000000..25bdd39 --- /dev/null +++ b/test/src/P528GTest.h @@ -0,0 +1,30 @@ +#pragma once +#ifndef ITS_ITU_PSERIES_P528GTEST_H +#define ITS_ITU_PSERIES_P528GTEST_H + +#include "gtest/gtest.h" + +#include + +struct InputsAndResult { + double d__km; + double h_1__meter; + double h_2__meter; + double f__mhz; + int T_pol; + double p; + int expectedReturn; + Result expectedResult; +}; + +std::vector ReadP528InputsAndResultFromPoints(const std::string& filename); + +std::vector GetDataTablesFileList(); + +std::vector ReadP528InputsAndResultFromDataTable(const std::string& filename, int testStep); + +std::vector readCSVRow(const std::string& row); + +std::vector> readCSV(std::istream& in); + +#endif \ No newline at end of file diff --git a/test/src/P528GTestUtils.cpp b/test/src/P528GTestUtils.cpp new file mode 100644 index 0000000..4b51b1a --- /dev/null +++ b/test/src/P528GTestUtils.cpp @@ -0,0 +1,260 @@ +#include "P528GTest.h" +#include +#include +#include + + +/*============================================================================= + | + | Description: This function appends director separator based on + | Operating System + | + | Input: &str - Path name + | + | Outputs: str - Path name with director separator + | + | Returns: [void] + | + *===========================================================================*/ +static void AppendDirectorySep(std::string &str) { + #ifdef _WIN32 + str += "\\"; + #else + str += "/"; + #endif +} + +/*============================================================================= + | + | Description: This function gets the full path of a given directory + | + | Input: name - directory name + | + | Returns: dataDir - full path of the given directory + | + *===========================================================================*/ +static std::string GetDirectory(std::string name) { + std::string dataDir(__FILE__); + dataDir.resize(dataDir.find_last_of("/\\")); + dataDir.resize(dataDir.find_last_of("/\\")); + AppendDirectorySep(dataDir); + dataDir += name; + AppendDirectorySep(dataDir); + return dataDir; +} + +/*============================================================================= + | + | Description: This function loads test data from a straight line CSV file + | + | Input: &filename - CSV file name + | + | Returns: testData - a vector includes one or more test cases + | in InputsAndResult Structure + | + *===========================================================================*/ +std::vector ReadP528InputsAndResultFromPoints(const std::string& filename) { + std::vector testData; + std::string dataDir = GetDirectory("data"); + std::ifstream file(dataDir + filename); + std::string line; + InputsAndResult d{}; // struct to store data from a single line of CSV + char c; // single-character representing the comma (delimiter) + while (std::getline(file, line)) { + std::istringstream iss(line); + if (iss >> d.d__km >> c >> d.h_1__meter >> c >> d.h_2__meter >> c >> d.f__mhz >> c >> d.T_pol >> c >> d.p + >> c >> d.expectedReturn >> c >> d.expectedResult.propagation_mode >> c >> d.expectedResult.warnings >> c >> d.expectedResult.d__km + >> c >> d.expectedResult.A__db >> c >> d.expectedResult.A_fs__db >> c >> d.expectedResult.A_a__db >> c >> d.expectedResult.theta_h1__rad + ) { + testData.push_back(d); + } + } + return testData; +} + +/*============================================================================= + | + | Description: This function gets a list of data table file name + | + | Input: N/A + | + | Returns: rtn - vector includes a list of data table file name + | + *===========================================================================*/ +std::vector GetDataTablesFileList() +{ + std::vector ret; + std::string dataTableDir = GetDirectory("Data Tables"); + for (const auto& entry : std::filesystem::directory_iterator(dataTableDir)) { + ret.push_back(entry.path().filename().string()); + } + return ret; +} + +/*============================================================================= + | + | Description: This function loads test data from a Data Table file + | + | Input: &filename - Data Table file name + | testStep - load one test case every testStep, + | set to 1 to load all test cases in the file + | + | Returns: testData - a vector includes one or more test cases + | in InputsAndResult Structure + | + *===========================================================================*/ +std::vector ReadP528InputsAndResultFromDataTable(const std::string& filename, int testStep) { + std::vector testData; + std::string dataDir = GetDirectory("Data Tables"); + std::ifstream file(dataDir + filename); + InputsAndResult d{}; // struct to store data from a single line of CSV + + double d__km; + std::vector h_1__meter; + std::vector h_2__meter; + double f__mhz = NAN; + int T_pol = 0; + double p = NAN; + + double A_fs__db; + + std::vector> csvRows = readCSV(file); + if (csvRows.size() <= 4) { + return testData; + } + + if (csvRows[0].size() > 0) { + string strCell = csvRows[0][0]; + strCell.resize(strCell.find("M")); + f__mhz = std::stod(strCell); + strCell = csvRows[0][0]; + strCell.resize(strCell.find(")")); + strCell = strCell.substr(strCell.find("(") + 1); + p = std::stod(strCell) * 100.0; + } + + typedef std::vector >::size_type row_vec_size_t; + typedef std::vector::size_type cell_vec_size_t; + + if (csvRows[1].size() > 2) { + for (cell_vec_size_t i = 2; i < csvRows[1].size(); i++) { + h_2__meter.push_back(std::stod(csvRows[1][i])); + } + } + if (csvRows[2].size() > 2) { + for (cell_vec_size_t i = 2; i < csvRows[2].size(); i++) { + h_1__meter.push_back(std::stod(csvRows[2][i])); + } + } + + for (row_vec_size_t r = 4; r < csvRows.size(); r += testStep) { + if (csvRows[r].size() > 2) { + d__km = std::stod(csvRows[r][0]); + A_fs__db = std::stod(csvRows[r][1]); + + for (cell_vec_size_t i = 2; i < csvRows[r].size(); i++) { + d.d__km = d__km; + d.h_1__meter = h_1__meter[i-2]; + d.h_2__meter = h_2__meter[i-2]; + d.f__mhz = f__mhz; + d.T_pol = T_pol; + d.p = p; + + if (i == 2) { + d.expectedResult.A_fs__db = A_fs__db; + } + else { + d.expectedResult.A_fs__db = NAN; + } + d.expectedResult.A__db = std::stod(csvRows[r][i]); + testData.push_back(d); + } + } + } + + return testData; +} + +enum class CSVState { + UnquotedField, + QuotedField, + QuotedQuote +}; + +/*============================================================================= + | + | Description: This function parse a CSV row into cells + | + | Input: &row - a CSV row in string + | + | Returns: fields - a vector of CSV cells in string + | + *===========================================================================*/ +std::vector readCSVRow(const std::string& row) { + CSVState state = CSVState::UnquotedField; + std::vector fields{ "" }; + size_t i = 0; // index of the current field + for (char c : row) { + switch (state) { + case CSVState::UnquotedField: + switch (c) { + case ',': // end of field + fields.push_back(""); i++; + break; + case '"': state = CSVState::QuotedField; + break; + default: fields[i].push_back(c); + break; + } + break; + case CSVState::QuotedField: + switch (c) { + case '"': state = CSVState::QuotedQuote; + break; + default: fields[i].push_back(c); + break; + } + break; + case CSVState::QuotedQuote: + switch (c) { + case ',': // , after closing quote + fields.push_back(""); i++; + state = CSVState::UnquotedField; + break; + case '"': // "" -> " + fields[i].push_back('"'); + state = CSVState::QuotedField; + break; + default: // end of quote + state = CSVState::UnquotedField; + break; + } + break; + } + } + return fields; +} + +/// Read CSV file, Excel dialect. Accept "quoted fields ""with quotes""" +/*============================================================================= + | + | Description: This function loads a CSV file in vector + | + | Input: &in - Input file stream + | + | Returns: table - A vector includes CSV file cells by row + | + *===========================================================================*/ +std::vector> readCSV(std::istream& in) { + std::vector> table; + std::string row; + while (!in.eof()) { + std::getline(in, row); + if (in.bad() || in.fail()) { + break; + } + auto fields = readCSVRow(row); + table.push_back(fields); + } + return table; +} \ No newline at end of file diff --git a/test/src/TestP528.cpp b/test/src/TestP528.cpp new file mode 100644 index 0000000..71a4061 --- /dev/null +++ b/test/src/TestP528.cpp @@ -0,0 +1,45 @@ +#include "P528GTest.h" + + +/*============================================================================= + | + | Description: The purpose of this is to ensure that CMAKE compiles + | the P.528 model DLL correctly. + | Test Data is stored in CSV format. + | + *===========================================================================*/ +class TestP528 : public ::testing::Test { +protected: + void SetUp() override { + // Load test data from CSV + testData = ReadP528InputsAndResultFromPoints("P528Test_001.csv"); + } + + // Vector to hold test data + std::vector testData; + + double TOLERANCE = 1.0e-10; +}; + +/*============================================================================= + | + | Description: Test case to verify P528 results are correct + | + *===========================================================================*/ +TEST_F(TestP528, TestP528Success) { + // Ensure test data was loaded + EXPECT_NE(static_cast(testData.size()), 0); + std::cout << "TestP528 from 'P528Test_001.csv': " << testData.size() << " Test instances." << std::endl; + for (const auto& data : testData) { + Result result; + int rtn = P528(data.d__km, data.h_1__meter, data.h_2__meter, data.f__mhz, data.T_pol, data.p, &result); + + EXPECT_EQ(rtn, data.expectedReturn); + EXPECT_EQ(result.propagation_mode, data.expectedResult.propagation_mode); + EXPECT_EQ(result.warnings, data.expectedResult.warnings); + EXPECT_NEAR(result.A__db, data.expectedResult.A__db, TOLERANCE); + EXPECT_NEAR(result.A_fs__db, data.expectedResult.A_fs__db, TOLERANCE); + EXPECT_NEAR(result.A_a__db, data.expectedResult.A_a__db, TOLERANCE); + EXPECT_NEAR(result.theta_h1__rad, data.expectedResult.theta_h1__rad, TOLERANCE); + } +} diff --git a/test/src/TestP528DataTables.cpp b/test/src/TestP528DataTables.cpp new file mode 100644 index 0000000..774f7ae --- /dev/null +++ b/test/src/TestP528DataTables.cpp @@ -0,0 +1,63 @@ +#include "P528GTest.h" +#include +#include +#include + + +/*============================================================================= + | + | Description: The purpose of this is to ensure that CMAKE compiles + | the P.528 model DLL correctly. + | Test Data is stored in Data Table format. + | Data Table test files are from Recommendation ITU-R P.528-5 + | publication website: + | https://www.itu.int/rec/R-REC-P.528-5-202109-I/en + | + *===========================================================================*/ +class TestP528DataTables : public ::testing::TestWithParam +{ +public: + struct PrintToStringParamName + { + template + std::string operator() (const testing::TestParamInfo& info) const + { + std::string testName = static_cast(info.param); + testName.resize(testName.find_last_of(".")); + testName.erase(remove_if(testName.begin(), testName.end(), [](char c) { return !isalnum(c); }), testName.end()); + + return testName; + } + }; + + double TOLERANCE = 1.0e-1; + int testStep = 100; +}; + +/*============================================================================= + | + | Description: Test case to verify P528 results are correct + | + *===========================================================================*/ +TEST_P(TestP528DataTables, TestDataTable) { + std::string fileName = GetParam(); + std::vector testData = ReadP528InputsAndResultFromDataTable(fileName, testStep); + EXPECT_NE(static_cast(testData.size()), 0); + std::cout << "TestP528 from Data Table '" << fileName << "', " << testData.size() << " Test instances." << std::endl; + for (const auto& data : testData) { + Result result; + int rtn = P528(data.d__km, data.h_1__meter, data.h_2__meter, data.f__mhz, data.T_pol, data.p, &result); + EXPECT_EQ(0, rtn); + if (!isnan(data.expectedResult.A_fs__db)) { + EXPECT_NEAR(result.A_fs__db, data.expectedResult.A_fs__db, TOLERANCE); + } + EXPECT_NEAR(result.A__db, data.expectedResult.A__db, TOLERANCE); + } +} + +// Note: Microsoft.googletest doesn't have INSTANTIATE_TEST_SUITE_P +// Refer to: https://github.com/microsoft/react-native-windows/issues/9791 +INSTANTIATE_TEST_CASE_P( + TestP528, + TestP528DataTables, + ::testing::ValuesIn(GetDataTablesFileList())); \ No newline at end of file diff --git a/win32/p528.sln b/win32/p528.sln index 78614a5..0bdd95d 100644 --- a/win32/p528.sln +++ b/win32/p528.sln @@ -10,6 +10,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "P528Drvr", "..\P528Drvr\P52 {1802289F-BF6D-4386-84F9-A850C27DB1AF} = {1802289F-BF6D-4386-84F9-A850C27DB1AF} EndProjectSection EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "P528GTest", "..\P528GTest\P528GTest.vcxproj", "{C47D3094-B751-4CC3-923B-3C177EB4C020}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x64 = Debug|x64 @@ -34,6 +36,14 @@ Global {FEA7F42A-C452-409A-9AC2-19ECF8F908B3}.Release|x64.Build.0 = Release|x64 {FEA7F42A-C452-409A-9AC2-19ECF8F908B3}.Release|x86.ActiveCfg = Release|Win32 {FEA7F42A-C452-409A-9AC2-19ECF8F908B3}.Release|x86.Build.0 = Release|Win32 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Debug|x64.ActiveCfg = Debug|x64 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Debug|x64.Build.0 = Debug|x64 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Debug|x86.ActiveCfg = Debug|Win32 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Debug|x86.Build.0 = Debug|Win32 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Release|x64.ActiveCfg = Release|x64 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Release|x64.Build.0 = Release|x64 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Release|x86.ActiveCfg = Release|Win32 + {C47D3094-B751-4CC3-923B-3C177EB4C020}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/win32/p528.vcxproj b/win32/p528.vcxproj index 1127ec4..8ae36b6 100644 --- a/win32/p528.vcxproj +++ b/win32/p528.vcxproj @@ -141,6 +141,7 @@ MultiThreadedDebug StdCall Neither + ..\include;%(AdditionalIncludeDirectories) Windows @@ -157,6 +158,7 @@ _DEBUG;_WINDOWS;_USRDLL;P528_EXPORTS;%(PreprocessorDefinitions) StdCall MultiThreadedDebug + ..\include;%(AdditionalIncludeDirectories) Windows @@ -175,6 +177,7 @@ WIN32;NDEBUG;_WINDOWS;_USRDLL;P528_EXPORTS;%(PreprocessorDefinitions) MultiThreaded StdCall + ..\include;%(AdditionalIncludeDirectories) Windows @@ -195,6 +198,7 @@ NDEBUG;_WINDOWS;_USRDLL;P528_EXPORTS;%(PreprocessorDefinitions) MultiThreaded StdCall + ..\include;%(AdditionalIncludeDirectories) Windows